diff --git a/Word Embeddings.ipynb b/Word Embeddings.ipynb new file mode 100644 index 0000000..11e9e6c --- /dev/null +++ b/Word Embeddings.ipynb @@ -0,0 +1,1384 @@ +{ + "cells": [ + { + "attachments": {}, + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Souce : https://www.youtube.com/watch?v=xzHhZh7F25I&t=371s\n" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "!pip install openai -q\n", + "!pip install matplotlib\n", + "!pip install plotly\n", + "!pip install scipy\n", + "!pip install pandas\n", + "!pip install numpy\n", + "!pip install scikit-learn" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": {}, + "outputs": [], + "source": [ + "import openai\n", + "import pandas as pd\n", + "import numpy as np\n", + "from getpass import getpass\n", + "import matplotlib\n", + "import os\n", + "\n", + "openai.api_key = os.environ[\"OPENAI_API_KEY\"]" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "df = pd.read_csv('words.csv')\n", + "print(df)" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "metadata": {}, + "outputs": [], + "source": [ + "from openai.embeddings_utils import get_embedding\n", + "\n", + "df['embedding'] = df['text'].apply(lambda x: get_embedding(x, engine='text-embedding-ada-002'))\n", + "df.to_csv('word_embeddings.csv')" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "get_embedding(\"the fox crossed the road\", engine='text-embedding-ada-002')" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "df = pd.read_csv('word_embeddings.csv')\n", + "df['embedding'] = df['embedding'].apply(eval).apply(np.array)\n", + "df" + ] + }, + { + "cell_type": "code", + "execution_count": 25, + "metadata": {}, + "outputs": [], + "source": [ + "search_term = input('Enter a search term: ')" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# semantic search\n", + "search_term_vector = get_embedding(search_term, engine=\"text-embedding-ada-002\")\n", + "search_term_vector" + ] + }, + { + "cell_type": "code", + "execution_count": 27, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Unnamed: 0textembeddingsimilarities
00red[1.8579006791696884e-05, -0.024676261469721794...0.808966
11potatoes[0.005025846417993307, -0.031079445034265518, ...0.827480
22soda[0.02582913264632225, -0.007537944242358208, -...0.828346
33cheese[-0.0032554215285927057, -0.008896322920918465...0.839099
44water[0.019031280651688576, -0.01257743313908577, 0...0.796891
55blue[0.005379225127398968, -0.007354139816015959, ...0.787710
66crispy[-0.0010056837927550077, -0.005415474995970726...0.823643
77hamburger[-0.013206875883042812, -0.0018223668448626995...0.913614
88coffee[-0.0007566261338070035, -0.0194522924721241, ...0.802847
99green[0.01538460049778223, -0.010931522585451603, 0...0.786308
1010milk[0.0009292512550018728, -0.019319288432598114,...0.815801
1111la croix[-0.012410983443260193, -0.01145013328641653, ...0.768867
1212yellow[0.007648157421499491, -0.024834953248500824, ...0.802653
1313chocolate[0.0015591585543006659, -0.013005273416638374,...0.830714
1414french fries[0.0014257068978622556, -0.016548126935958862,...0.853867
1515latte[-0.015675576403737068, -0.003918894100934267,...0.797174
1616cake[-0.013669422827661037, -0.016827937215566635,...0.829604
1717brown[-0.0033683686051517725, -0.015937969088554382...0.787217
1818cheeseburger[-0.01824556663632393, 0.00504859397187829, 0....0.886417
1919espresso[-0.022529492154717445, -0.012672839686274529,...0.813151
2020cheesecake[0.011245746165513992, -0.012743037194013596, ...0.821882
2121black[-0.015190942212939262, -0.031228860840201378,...0.776495
2222mocha[-0.012487593106925488, -0.026140518486499786,...0.813406
2323fizzy[-0.013046763837337494, -0.010264534503221512,...0.806922
2424carbon[0.004404176026582718, -0.025098854675889015, ...0.780440
2525banana[-0.013975119218230247, -0.03290277719497681, ...0.821447
\n", + "
" + ], + "text/plain": [ + " Unnamed: 0 text \\\n", + "0 0 red \n", + "1 1 potatoes \n", + "2 2 soda \n", + "3 3 cheese \n", + "4 4 water \n", + "5 5 blue \n", + "6 6 crispy \n", + "7 7 hamburger \n", + "8 8 coffee \n", + "9 9 green \n", + "10 10 milk \n", + "11 11 la croix \n", + "12 12 yellow \n", + "13 13 chocolate \n", + "14 14 french fries \n", + "15 15 latte \n", + "16 16 cake \n", + "17 17 brown \n", + "18 18 cheeseburger \n", + "19 19 espresso \n", + "20 20 cheesecake \n", + "21 21 black \n", + "22 22 mocha \n", + "23 23 fizzy \n", + "24 24 carbon \n", + "25 25 banana \n", + "\n", + " embedding similarities \n", + "0 [1.8579006791696884e-05, -0.024676261469721794... 0.808966 \n", + "1 [0.005025846417993307, -0.031079445034265518, ... 0.827480 \n", + "2 [0.02582913264632225, -0.007537944242358208, -... 0.828346 \n", + "3 [-0.0032554215285927057, -0.008896322920918465... 0.839099 \n", + "4 [0.019031280651688576, -0.01257743313908577, 0... 0.796891 \n", + "5 [0.005379225127398968, -0.007354139816015959, ... 0.787710 \n", + "6 [-0.0010056837927550077, -0.005415474995970726... 0.823643 \n", + "7 [-0.013206875883042812, -0.0018223668448626995... 0.913614 \n", + "8 [-0.0007566261338070035, -0.0194522924721241, ... 0.802847 \n", + "9 [0.01538460049778223, -0.010931522585451603, 0... 0.786308 \n", + "10 [0.0009292512550018728, -0.019319288432598114,... 0.815801 \n", + "11 [-0.012410983443260193, -0.01145013328641653, ... 0.768867 \n", + "12 [0.007648157421499491, -0.024834953248500824, ... 0.802653 \n", + "13 [0.0015591585543006659, -0.013005273416638374,... 0.830714 \n", + "14 [0.0014257068978622556, -0.016548126935958862,... 0.853867 \n", + "15 [-0.015675576403737068, -0.003918894100934267,... 0.797174 \n", + "16 [-0.013669422827661037, -0.016827937215566635,... 0.829604 \n", + "17 [-0.0033683686051517725, -0.015937969088554382... 0.787217 \n", + "18 [-0.01824556663632393, 0.00504859397187829, 0.... 0.886417 \n", + "19 [-0.022529492154717445, -0.012672839686274529,... 0.813151 \n", + "20 [0.011245746165513992, -0.012743037194013596, ... 0.821882 \n", + "21 [-0.015190942212939262, -0.031228860840201378,... 0.776495 \n", + "22 [-0.012487593106925488, -0.026140518486499786,... 0.813406 \n", + "23 [-0.013046763837337494, -0.010264534503221512,... 0.806922 \n", + "24 [0.004404176026582718, -0.025098854675889015, ... 0.780440 \n", + "25 [-0.013975119218230247, -0.03290277719497681, ... 0.821447 " + ] + }, + "execution_count": 27, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "from openai.embeddings_utils import cosine_similarity\n", + "\n", + "df[\"similarities\"] = df['embedding'].apply(lambda x: cosine_similarity(x, search_term_vector))\n", + "\n", + "df" + ] + }, + { + "cell_type": "code", + "execution_count": 28, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Unnamed: 0textembeddingsimilarities
77hamburger[-0.013206875883042812, -0.0018223668448626995...0.913614
1818cheeseburger[-0.01824556663632393, 0.00504859397187829, 0....0.886417
1414french fries[0.0014257068978622556, -0.016548126935958862,...0.853867
33cheese[-0.0032554215285927057, -0.008896322920918465...0.839099
1313chocolate[0.0015591585543006659, -0.013005273416638374,...0.830714
1616cake[-0.013669422827661037, -0.016827937215566635,...0.829604
22soda[0.02582913264632225, -0.007537944242358208, -...0.828346
11potatoes[0.005025846417993307, -0.031079445034265518, ...0.827480
66crispy[-0.0010056837927550077, -0.005415474995970726...0.823643
2020cheesecake[0.011245746165513992, -0.012743037194013596, ...0.821882
2525banana[-0.013975119218230247, -0.03290277719497681, ...0.821447
1010milk[0.0009292512550018728, -0.019319288432598114,...0.815801
2222mocha[-0.012487593106925488, -0.026140518486499786,...0.813406
1919espresso[-0.022529492154717445, -0.012672839686274529,...0.813151
00red[1.8579006791696884e-05, -0.024676261469721794...0.808966
2323fizzy[-0.013046763837337494, -0.010264534503221512,...0.806922
88coffee[-0.0007566261338070035, -0.0194522924721241, ...0.802847
1212yellow[0.007648157421499491, -0.024834953248500824, ...0.802653
1515latte[-0.015675576403737068, -0.003918894100934267,...0.797174
44water[0.019031280651688576, -0.01257743313908577, 0...0.796891
\n", + "
" + ], + "text/plain": [ + " Unnamed: 0 text \\\n", + "7 7 hamburger \n", + "18 18 cheeseburger \n", + "14 14 french fries \n", + "3 3 cheese \n", + "13 13 chocolate \n", + "16 16 cake \n", + "2 2 soda \n", + "1 1 potatoes \n", + "6 6 crispy \n", + "20 20 cheesecake \n", + "25 25 banana \n", + "10 10 milk \n", + "22 22 mocha \n", + "19 19 espresso \n", + "0 0 red \n", + "23 23 fizzy \n", + "8 8 coffee \n", + "12 12 yellow \n", + "15 15 latte \n", + "4 4 water \n", + "\n", + " embedding similarities \n", + "7 [-0.013206875883042812, -0.0018223668448626995... 0.913614 \n", + "18 [-0.01824556663632393, 0.00504859397187829, 0.... 0.886417 \n", + "14 [0.0014257068978622556, -0.016548126935958862,... 0.853867 \n", + "3 [-0.0032554215285927057, -0.008896322920918465... 0.839099 \n", + "13 [0.0015591585543006659, -0.013005273416638374,... 0.830714 \n", + "16 [-0.013669422827661037, -0.016827937215566635,... 0.829604 \n", + "2 [0.02582913264632225, -0.007537944242358208, -... 0.828346 \n", + "1 [0.005025846417993307, -0.031079445034265518, ... 0.827480 \n", + "6 [-0.0010056837927550077, -0.005415474995970726... 0.823643 \n", + "20 [0.011245746165513992, -0.012743037194013596, ... 0.821882 \n", + "25 [-0.013975119218230247, -0.03290277719497681, ... 0.821447 \n", + "10 [0.0009292512550018728, -0.019319288432598114,... 0.815801 \n", + "22 [-0.012487593106925488, -0.026140518486499786,... 0.813406 \n", + "19 [-0.022529492154717445, -0.012672839686274529,... 0.813151 \n", + "0 [1.8579006791696884e-05, -0.024676261469721794... 0.808966 \n", + "23 [-0.013046763837337494, -0.010264534503221512,... 0.806922 \n", + "8 [-0.0007566261338070035, -0.0194522924721241, ... 0.802847 \n", + "12 [0.007648157421499491, -0.024834953248500824, ... 0.802653 \n", + "15 [-0.015675576403737068, -0.003918894100934267,... 0.797174 \n", + "4 [0.019031280651688576, -0.01257743313908577, 0... 0.796891 " + ] + }, + "execution_count": 28, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.sort_values(\"similarities\", ascending=False).head(20)" + ] + }, + { + "cell_type": "code", + "execution_count": 29, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "array([-0.02160024, -0.03199213, -0.01623621, ..., -0.00423047,\n", + " 0.00083153, -0.02900861])" + ] + }, + "execution_count": 29, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "food_df = df.copy()\n", + "\n", + "milk_vector = food_df['embedding'][10]\n", + "espresso_vector = food_df['embedding'][19]\n", + "\n", + "milk_espresso_vector = milk_vector + espresso_vector\n", + "milk_espresso_vector" + ] + }, + { + "cell_type": "code", + "execution_count": 30, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Unnamed: 0textembeddingsimilarities
1919espresso[-0.022529492154717445, -0.012672839686274529,...0.960471
1010milk[0.0009292512550018728, -0.019319288432598114,...0.960471
1515latte[-0.015675576403737068, -0.003918894100934267,...0.922988
2222mocha[-0.012487593106925488, -0.026140518486499786,...0.899328
88coffee[-0.0007566261338070035, -0.0194522924721241, ...0.895389
33cheese[-0.0032554215285927057, -0.008896322920918465...0.884663
1313chocolate[0.0015591585543006659, -0.013005273416638374,...0.883418
22soda[0.02582913264632225, -0.007537944242358208, -...0.874203
44water[0.019031280651688576, -0.01257743313908577, 0...0.866025
77hamburger[-0.013206875883042812, -0.0018223668448626995...0.852707
2323fizzy[-0.013046763837337494, -0.010264534503221512,...0.851090
11potatoes[0.005025846417993307, -0.031079445034265518, ...0.850823
2525banana[-0.013975119218230247, -0.03290277719497681, ...0.848958
2020cheesecake[0.011245746165513992, -0.012743037194013596, ...0.846989
1818cheeseburger[-0.01824556663632393, 0.00504859397187829, 0....0.846296
1414french fries[0.0014257068978622556, -0.016548126935958862,...0.842877
1616cake[-0.013669422827661037, -0.016827937215566635,...0.842138
1212yellow[0.007648157421499491, -0.024834953248500824, ...0.837775
00red[1.8579006791696884e-05, -0.024676261469721794...0.836119
66crispy[-0.0010056837927550077, -0.005415474995970726...0.835187
1717brown[-0.0033683686051517725, -0.015937969088554382...0.829839
99green[0.01538460049778223, -0.010931522585451603, 0...0.828841
2121black[-0.015190942212939262, -0.031228860840201378,...0.824785
55blue[0.005379225127398968, -0.007354139816015959, ...0.822992
2424carbon[0.004404176026582718, -0.025098854675889015, ...0.816680
1111la croix[-0.012410983443260193, -0.01145013328641653, ...0.802982
\n", + "
" + ], + "text/plain": [ + " Unnamed: 0 text \\\n", + "19 19 espresso \n", + "10 10 milk \n", + "15 15 latte \n", + "22 22 mocha \n", + "8 8 coffee \n", + "3 3 cheese \n", + "13 13 chocolate \n", + "2 2 soda \n", + "4 4 water \n", + "7 7 hamburger \n", + "23 23 fizzy \n", + "1 1 potatoes \n", + "25 25 banana \n", + "20 20 cheesecake \n", + "18 18 cheeseburger \n", + "14 14 french fries \n", + "16 16 cake \n", + "12 12 yellow \n", + "0 0 red \n", + "6 6 crispy \n", + "17 17 brown \n", + "9 9 green \n", + "21 21 black \n", + "5 5 blue \n", + "24 24 carbon \n", + "11 11 la croix \n", + "\n", + " embedding similarities \n", + "19 [-0.022529492154717445, -0.012672839686274529,... 0.960471 \n", + "10 [0.0009292512550018728, -0.019319288432598114,... 0.960471 \n", + "15 [-0.015675576403737068, -0.003918894100934267,... 0.922988 \n", + "22 [-0.012487593106925488, -0.026140518486499786,... 0.899328 \n", + "8 [-0.0007566261338070035, -0.0194522924721241, ... 0.895389 \n", + "3 [-0.0032554215285927057, -0.008896322920918465... 0.884663 \n", + "13 [0.0015591585543006659, -0.013005273416638374,... 0.883418 \n", + "2 [0.02582913264632225, -0.007537944242358208, -... 0.874203 \n", + "4 [0.019031280651688576, -0.01257743313908577, 0... 0.866025 \n", + "7 [-0.013206875883042812, -0.0018223668448626995... 0.852707 \n", + "23 [-0.013046763837337494, -0.010264534503221512,... 0.851090 \n", + "1 [0.005025846417993307, -0.031079445034265518, ... 0.850823 \n", + "25 [-0.013975119218230247, -0.03290277719497681, ... 0.848958 \n", + "20 [0.011245746165513992, -0.012743037194013596, ... 0.846989 \n", + "18 [-0.01824556663632393, 0.00504859397187829, 0.... 0.846296 \n", + "14 [0.0014257068978622556, -0.016548126935958862,... 0.842877 \n", + "16 [-0.013669422827661037, -0.016827937215566635,... 0.842138 \n", + "12 [0.007648157421499491, -0.024834953248500824, ... 0.837775 \n", + "0 [1.8579006791696884e-05, -0.024676261469721794... 0.836119 \n", + "6 [-0.0010056837927550077, -0.005415474995970726... 0.835187 \n", + "17 [-0.0033683686051517725, -0.015937969088554382... 0.829839 \n", + "9 [0.01538460049778223, -0.010931522585451603, 0... 0.828841 \n", + "21 [-0.015190942212939262, -0.031228860840201378,... 0.824785 \n", + "5 [0.005379225127398968, -0.007354139816015959, ... 0.822992 \n", + "24 [0.004404176026582718, -0.025098854675889015, ... 0.816680 \n", + "11 [-0.012410983443260193, -0.01145013328641653, ... 0.802982 " + ] + }, + "execution_count": 30, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "food_df[\"similarities\"] = food_df['embedding'].apply(lambda x: cosine_similarity(x, milk_espresso_vector))\n", + "food_df.sort_values(\"similarities\", ascending=False)" + ] + }, + { + "cell_type": "code", + "execution_count": 31, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
text
0Thank you, Brett. To start, I want to outline ...
1With that context, this quarter, the Microsoft...
2It helps them align their spend with demand an...
3We are the platform of choice for customers' S...
4Now to data and AI. With our Microsoft Intelli...
......
57Other income and expense should be roughly $10...
58And finally, as a reminder, for Q2 cash flow, ...
59And FX should decrease COGS and operating expe...
60With the high margins in our Windows OEM busin...
61And while we continue to help our customers do...
\n", + "

62 rows × 1 columns

\n", + "
" + ], + "text/plain": [ + " text\n", + "0 Thank you, Brett. To start, I want to outline ...\n", + "1 With that context, this quarter, the Microsoft...\n", + "2 It helps them align their spend with demand an...\n", + "3 We are the platform of choice for customers' S...\n", + "4 Now to data and AI. With our Microsoft Intelli...\n", + ".. ...\n", + "57 Other income and expense should be roughly $10...\n", + "58 And finally, as a reminder, for Q2 cash flow, ...\n", + "59 And FX should decrease COGS and operating expe...\n", + "60 With the high margins in our Windows OEM busin...\n", + "61 And while we continue to help our customers do...\n", + "\n", + "[62 rows x 1 columns]" + ] + }, + "execution_count": 31, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "earnings_df = pd.read_csv('microsoft-earnings.csv')\n", + "earnings_df" + ] + }, + { + "cell_type": "code", + "execution_count": 32, + "metadata": {}, + "outputs": [], + "source": [ + "earnings_df['embedding'] = earnings_df['text'].apply(lambda x: get_embedding(x, engine='text-embedding-ada-002'))\n", + "earnings_df.to_csv('earnings-embeddings.csv')" + ] + }, + { + "cell_type": "code", + "execution_count": 33, + "metadata": {}, + "outputs": [], + "source": [ + "earnings_search = input(\"Search earnings for a sentence:\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "earnings_search_vector = get_embedding(earnings_search, engine=\"text-embedding-ada-002\")\n", + "earnings_search_vector" + ] + }, + { + "cell_type": "code", + "execution_count": 35, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
textembeddingsimilarities
0Thank you, Brett. To start, I want to outline ...[-0.009504559449851513, -0.003731543431058526,...0.737052
1With that context, this quarter, the Microsoft...[-0.0016425022622570395, -0.028921114280819893...0.792230
2It helps them align their spend with demand an...[0.008895465172827244, -0.031935952603816986, ...0.789605
3We are the platform of choice for customers' S...[0.012019618414342403, -0.024120725691318512, ...0.790901
4Now to data and AI. With our Microsoft Intelli...[-0.004754434805363417, 0.0038801338523626328,...0.815737
............
57Other income and expense should be roughly $10...[-0.01832527294754982, -0.014160438440740108, ...0.685018
58And finally, as a reminder, for Q2 cash flow, ...[-0.012947804294526577, -0.010494815185666084,...0.710533
59And FX should decrease COGS and operating expe...[0.0009612650028429925, -0.01565629616379738, ...0.761581
60With the high margins in our Windows OEM busin...[0.010544494725763798, -0.03846913203597069, -...0.747335
61And while we continue to help our customers do...[-0.014238400384783745, -0.011069077998399734,...0.740366
\n", + "

62 rows × 3 columns

\n", + "
" + ], + "text/plain": [ + " text \\\n", + "0 Thank you, Brett. To start, I want to outline ... \n", + "1 With that context, this quarter, the Microsoft... \n", + "2 It helps them align their spend with demand an... \n", + "3 We are the platform of choice for customers' S... \n", + "4 Now to data and AI. With our Microsoft Intelli... \n", + ".. ... \n", + "57 Other income and expense should be roughly $10... \n", + "58 And finally, as a reminder, for Q2 cash flow, ... \n", + "59 And FX should decrease COGS and operating expe... \n", + "60 With the high margins in our Windows OEM busin... \n", + "61 And while we continue to help our customers do... \n", + "\n", + " embedding similarities \n", + "0 [-0.009504559449851513, -0.003731543431058526,... 0.737052 \n", + "1 [-0.0016425022622570395, -0.028921114280819893... 0.792230 \n", + "2 [0.008895465172827244, -0.031935952603816986, ... 0.789605 \n", + "3 [0.012019618414342403, -0.024120725691318512, ... 0.790901 \n", + "4 [-0.004754434805363417, 0.0038801338523626328,... 0.815737 \n", + ".. ... ... \n", + "57 [-0.01832527294754982, -0.014160438440740108, ... 0.685018 \n", + "58 [-0.012947804294526577, -0.010494815185666084,... 0.710533 \n", + "59 [0.0009612650028429925, -0.01565629616379738, ... 0.761581 \n", + "60 [0.010544494725763798, -0.03846913203597069, -... 0.747335 \n", + "61 [-0.014238400384783745, -0.011069077998399734,... 0.740366 \n", + "\n", + "[62 rows x 3 columns]" + ] + }, + "execution_count": 35, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "earnings_df[\"similarities\"] = earnings_df['embedding'].apply(lambda x: cosine_similarity(x, earnings_search_vector))\n", + "\n", + "earnings_df" + ] + }, + { + "cell_type": "code", + "execution_count": 36, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
textembeddingsimilarities
5Cosmos DB now supports postscript SQL, making ...[-0.00441406574100256, -0.005979578942060471, ...0.842245
12Our cloud for sustainability is off to a fast ...[0.008848659694194794, -0.016215553507208824, ...0.818365
4Now to data and AI. With our Microsoft Intelli...[-0.004754434805363417, 0.0038801338523626328,...0.815737
11All up more than 400,000 organizations now use...[-0.0010528546990826726, -0.020452534779906273...0.803985
9Power Automate has more than seven million mon...[-0.025379547849297523, -0.03403877094388008, ...0.800751
............
29Thank you, Satya, and good afternoon, everyone...[0.013616200536489487, -0.01455166470259428, -...0.712389
58And finally, as a reminder, for Q2 cash flow, ...[-0.012947804294526577, -0.010494815185666084,...0.710533
44Operating expenses increased 2% and 5% in cons...[0.017512913793325424, 0.008054900914430618, 0...0.707797
57Other income and expense should be roughly $10...[-0.01832527294754982, -0.014160438440740108, ...0.685018
46This quarter, other income and expense was $54...[-0.030022066086530685, -0.006907156202942133,...0.672180
\n", + "

62 rows × 3 columns

\n", + "
" + ], + "text/plain": [ + " text \\\n", + "5 Cosmos DB now supports postscript SQL, making ... \n", + "12 Our cloud for sustainability is off to a fast ... \n", + "4 Now to data and AI. With our Microsoft Intelli... \n", + "11 All up more than 400,000 organizations now use... \n", + "9 Power Automate has more than seven million mon... \n", + ".. ... \n", + "29 Thank you, Satya, and good afternoon, everyone... \n", + "58 And finally, as a reminder, for Q2 cash flow, ... \n", + "44 Operating expenses increased 2% and 5% in cons... \n", + "57 Other income and expense should be roughly $10... \n", + "46 This quarter, other income and expense was $54... \n", + "\n", + " embedding similarities \n", + "5 [-0.00441406574100256, -0.005979578942060471, ... 0.842245 \n", + "12 [0.008848659694194794, -0.016215553507208824, ... 0.818365 \n", + "4 [-0.004754434805363417, 0.0038801338523626328,... 0.815737 \n", + "11 [-0.0010528546990826726, -0.020452534779906273... 0.803985 \n", + "9 [-0.025379547849297523, -0.03403877094388008, ... 0.800751 \n", + ".. ... ... \n", + "29 [0.013616200536489487, -0.01455166470259428, -... 0.712389 \n", + "58 [-0.012947804294526577, -0.010494815185666084,... 0.710533 \n", + "44 [0.017512913793325424, 0.008054900914430618, 0... 0.707797 \n", + "57 [-0.01832527294754982, -0.014160438440740108, ... 0.685018 \n", + "46 [-0.030022066086530685, -0.006907156202942133,... 0.672180 \n", + "\n", + "[62 rows x 3 columns]" + ] + }, + "execution_count": 36, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "earnings_df.sort_values(\"similarities\", ascending=False)" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "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.11.2" + }, + "orig_nbformat": 4 + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/conversationlangchain.ipynb b/conversationlangchain.ipynb new file mode 100644 index 0000000..077250d --- /dev/null +++ b/conversationlangchain.ipynb @@ -0,0 +1,302 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "!pip install google-search-results" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [], + "source": [ + "import os\n", + "#os.environ[\"SERPAPI_API_KEY\"] = \"\"\n" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\u001b[1mOpenAI\u001b[0m\n", + "Params: {'model_name': 'text-davinci-003', 'temperature': 0.0, 'max_tokens': 256, 'top_p': 1, 'frequency_penalty': 0, 'presence_penalty': 0, 'n': 1, 'best_of': 1, 'request_timeout': None, 'logit_bias': {}}\n", + "\n", + "\n", + "\u001b[1m> Entering new AgentExecutor chain...\u001b[0m\n", + "\u001b[32;1m\u001b[1;3m I need to find the temperature first, then use the calculator to raise it to the .023 power.\n", + "Action: Search\n", + "Action Input: \"High temperature in SF yesterday\"\u001b[0m\n", + "Observation: \u001b[36;1m\u001b[1;3mHigh: 62.6ºf @3:10 PM Low: 44.06ºf @5:56 AM Approx. Precipitation / Rain Total: in. 1hr.\u001b[0m\n", + "Thought:\u001b[32;1m\u001b[1;3m I now need to use the calculator to raise 62.6 to the .023 power\n", + "Action: Calculator\n", + "Action Input: 62.6^.023\u001b[0m\n", + "Observation: \u001b[33;1m\u001b[1;3mAnswer: 1.0998189786478374\n", + "\u001b[0m\n", + "Thought:\u001b[32;1m\u001b[1;3m I now know the final answer\n", + "Final Answer: The high temperature in SF yesterday in Fahrenheit raised to the .023 power is 1.0998189786478374.\u001b[0m\n", + "\n", + "\u001b[1m> Finished chain.\u001b[0m\n" + ] + }, + { + "data": { + "text/plain": [ + "'The high temperature in SF yesterday in Fahrenheit raised to the .023 power is 1.0998189786478374.'" + ] + }, + "execution_count": 3, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "from langchain.agents import load_tools\n", + "from langchain.agents import initialize_agent\n", + "from langchain.llms import OpenAI\n", + "\n", + "OpenAI.api_key = os.environ[\"OPENAI_API_KEY\"]\n", + "# First, let's load the language model we're going to use to control the agent.\n", + "llm = OpenAI(temperature=0)\n", + "print(llm)\n", + "# Next, let's load some tools to use. Note that the `llm-math` tool uses an LLM, so we need to pass that in.\n", + "tools = load_tools([\"serpapi\", \"llm-math\"], llm=llm)\n", + "\n", + "\n", + "# Finally, let's initialize an agent with the tools, the language model, and the type of agent we want to use.\n", + "agent = initialize_agent(tools, llm, agent=\"zero-shot-react-description\", verbose=True)\n", + "\n", + "# Now let's test it out!\n", + "agent.run(\"What was the high temperature in SF yesterday in Fahrenheit? What is that number raised to the .023 power?\")" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "\n", + "\u001b[1m> Entering new ConversationChain chain...\u001b[0m\n", + "Prompt after formatting:\n", + "\u001b[32;1m\u001b[1;3mThe following is a friendly conversation between a human and an AI. The AI is talkative and provides lots of specific details from its context. If the AI does not know the answer to a question, it truthfully says it does not know.\n", + "\n", + "Current conversation:\n", + "\n", + "Human: Hi there!\n", + "AI:\u001b[0m\n", + "\n", + "\u001b[1m> Finished chain.\u001b[0m\n" + ] + }, + { + "data": { + "text/plain": [ + "'Hello! How can I assist you today?'" + ] + }, + "execution_count": 12, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "from langchain import OpenAI, ConversationChain\n", + "\n", + "llm = OpenAI(temperature=0,model_name=\"gpt-3.5-turbo\")\n", + "conversation = ConversationChain(llm=llm, verbose=True)\n", + "\n", + "conversation.predict(input=\"Hi there!\")" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "\n", + "\u001b[1m> Entering new ConversationChain chain...\u001b[0m\n", + "Prompt after formatting:\n", + "\u001b[32;1m\u001b[1;3mThe following is a friendly conversation between a human and an AI. The AI is talkative and provides lots of specific details from its context. If the AI does not know the answer to a question, it truthfully says it does not know.\n", + "\n", + "Current conversation:\n", + "Human: Hi there!\n", + "AI: Hello! How can I assist you today?\n", + "Human: Just having a conversation with an AI.\n", + "AI:\u001b[0m\n", + "\n", + "\u001b[1m> Finished chain.\u001b[0m\n" + ] + }, + { + "data": { + "text/plain": [ + "\"Great! I'm always happy to chat. Is there anything specific you'd like to talk about?\"" + ] + }, + "execution_count": 13, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "conversation.predict(input=\"Just having a conversation with an AI.\")" + ] + }, + { + "attachments": {}, + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# CHAT MODELS" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [], + "source": [ + "from langchain.chat_models import ChatOpenAI\n", + "from langchain.schema import (\n", + " AIMessage,\n", + " HumanMessage,\n", + " SystemMessage\n", + ")\n", + "\n", + "chat = ChatOpenAI(temperature=0)" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "AIMessage(content=\"J'aime programmer.\", additional_kwargs={})" + ] + }, + "execution_count": 3, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "chat([HumanMessage(content=\"Translate this sentence from English to French. I love programming.\")])\n" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "AIMessage(content=\"J'aime programmer.\", additional_kwargs={})" + ] + }, + "execution_count": 4, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "messages = [\n", + " SystemMessage(content=\"You are a helpful assistant that translates English to French.\"),\n", + " HumanMessage(content=\"Translate this sentence from English to French. I love programming.\")\n", + "]\n", + "chat(messages)" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Retrying langchain.chat_models.openai.ChatOpenAI.completion_with_retry.._completion_with_retry in 4.0 seconds as it raised RateLimitError: That model is currently overloaded with other requests. You can retry your request, or contact us through our help center at help.openai.com if the error persists. (Please include the request ID f916d3d53c453210d7bd304f593af697 in your message.).\n" + ] + }, + { + "data": { + "text/plain": [ + "LLMResult(generations=[[ChatGeneration(text=\"J'aime programmer.\", generation_info=None, message=AIMessage(content=\"J'aime programmer.\", additional_kwargs={}))], [ChatGeneration(text=\"J'aime l'intelligence artificielle.\", generation_info=None, message=AIMessage(content=\"J'aime l'intelligence artificielle.\", additional_kwargs={}))]], llm_output=None)" + ] + }, + "execution_count": 8, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "batch_messages = [\n", + " [\n", + " SystemMessage(content=\"You are a helpful assistant that translates English to French.\"),\n", + " HumanMessage(content=\"Translate this sentence from English to French. I love programming.\")\n", + " ],\n", + " [\n", + " SystemMessage(content=\"You are a helpful assistant that translates English to French.\"),\n", + " HumanMessage(content=\"Translate this sentence from English to French. I love artificial intelligence.\")\n", + " ],\n", + "]\n", + "result = chat.generate(batch_messages)\n", + "result" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "result.llm_output['token_usage']" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "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.11.2" + }, + "orig_nbformat": 4 + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/earnings-embeddings.csv b/earnings-embeddings.csv new file mode 100644 index 0000000..d693500 --- /dev/null +++ b/earnings-embeddings.csv @@ -0,0 +1,63 @@ +,text,embedding +0,"Thank you, Brett. To start, I want to outline the principles that are guiding us through these changing economic times. First, we will invest behind categories that will drive the long-term secular trend where digital technology as a percentage of world's GDP will continue to increase.Second, we'll prioritize helping our customers get the most value out of their digital spending, so that they can do more with less. And finally, we will be disciplined in managing our cost structure.","[-0.009504559449851513, -0.003731543431058526, 0.006251590326428413, -0.021994352340698242, 0.012168512679636478, 0.01847364939749241, -0.017402714118361473, 0.0010993829928338528, -0.0003465900954324752, -0.01829962246119976, 0.013500490225851536, 0.03614409640431404, -0.005137147381901741, -0.004792439751327038, 0.011003869585692883, 0.00783122144639492, 0.018727997317910194, -0.0015227374387905002, 0.023225929588079453, -0.00789815466850996, -0.01962490752339363, -0.016639672219753265, -0.010026640258729458, -0.0037650102749466896, -0.0025150268338620663, -0.022864488884806633, 0.006536057684570551, 0.0023594063241034746, -0.0028865078929811716, -0.009886080399155617, -0.0005626598722301424, -0.006505937781184912, -0.009009251371026039, 0.008962397463619709, -0.010046720504760742, -0.012074805796146393, -0.012061419896781445, 0.01989264041185379, 0.0175633542239666, -0.0232527032494545, 0.013266222551465034, 0.015622282400727272, -0.004471158608794212, 0.0036478766705840826, -0.015046654269099236, 0.015260841697454453, -0.004457772243767977, -0.007637114264070988, 0.01144563127309084, -0.00024367982405237854, 0.013139048591256142, 0.026545831933617592, -0.024136224761605263, -0.021191151812672615, -0.0013620969839394093, 0.017991729080677032, 0.0017519848188385367, 0.0177106074988842, 0.008861997164785862, -0.020200535655021667, -0.0032429287675768137, 0.010327841155230999, -0.018219303339719772, 0.005943696014583111, -0.029879121109843254, -0.022248700261116028, -0.010441628284752369, 0.013152435421943665, -0.006057483144104481, 0.025970203801989555, 0.025742629542946815, 0.030307495966553688, 0.026840340346097946, 0.027148233726620674, 0.018353169783949852, 0.024524439126253128, -0.02749628759920597, -0.0029902548994868994, -0.0016206277068704367, 0.02103050984442234, 0.007402846589684486, -0.000467697944259271, 0.005110373720526695, -0.0005844132392667234, 0.004993240348994732, -0.011505871079862118, -0.009825839661061764, 0.0022974929306656122, -0.01634516380727291, -0.0007839588215574622, 0.013400089927017689, 0.005331254564225674, 0.01417651865631342, 0.03692052885890007, -0.014698600396513939, 0.021244697272777557, 0.009866000153124332, 0.012784301303327084, 0.009932933375239372, -0.026371804997324944, 0.008513943292200565, -0.021231310442090034, -0.007161885965615511, -0.007663887459784746, -0.026090683415532112, 0.0012926534982398152, 0.012596887536346912, -0.010528641752898693, 0.028567224740982056, 0.003388509154319763, -0.018246077001094818, 0.0005103680305182934, -0.0020113522186875343, -0.02017376199364662, 0.006887458730489016, 0.009879386983811855, -0.0038687572814524174, 0.007724127732217312, 0.006248243618756533, 0.006157883442938328, 0.02931687980890274, -0.0026472206227481365, 0.03346675634384155, -0.019410720095038414, 0.008072181604802608, -0.004598332569003105, -0.02622455172240734, -0.016412097960710526, 0.02848690375685692, -0.011646431870758533, 0.015341161750257015, -0.010890083387494087, 0.002305859699845314, 0.013159128837287426, -0.027683701366186142, 0.0076036471873521805, -0.014189905487000942, 0.009973093867301941, -0.020280854776501656, -0.020133601501584053, -0.004799133166670799, 0.0016423810739070177, -0.012389393523335457, 0.004367412067949772, 0.02461814694106579, 0.008567489683628082, 0.013052035123109818, 0.016358550637960434, 0.023788170889019966, -0.00047606462612748146, 0.004685346037149429, -0.017683833837509155, 0.0177106074988842, 0.019357172772288322, -0.003821903606876731, 0.01765706203877926, 0.007630420848727226, -0.000648000102955848, -0.012001179158687592, 0.00010113235475728288, -0.001234923372976482, 0.0015260841464623809, 0.01797834224998951, 0.0229046493768692, 0.030334269627928734, 0.02813884988427162, 0.006047443021088839, 0.010434934869408607, -0.0012725734850391746, -0.0018473650561645627, 0.008266288787126541, -0.0027911276556551456, -0.022141607478260994, 0.01151925791054964, -0.008045408874750137, 0.02821917086839676, -0.004042784217745066, 0.0065862578339874744, -0.030387815088033676, -0.017309006303548813, 0.02744274213910103, -0.005311174318194389, 0.011907472275197506, 0.02176677994430065, 0.011740138754248619, -0.0034219759982079268, 0.03592991083860397, 0.0034939295146614313, 0.008821837604045868, -0.003925650846213102, 0.0015637342585250735, 0.02613084390759468, -0.01825946383178234, -0.0028128810226917267, -0.6571264863014221, -0.0012081499444320798, 0.017041273415088654, -0.0018891984364017844, 0.0006986185908317566, -0.010361308231949806, 0.016104204580187798, 0.0038854905869811773, 2.3688189685344696e-05, 0.05448388308286667, -0.004514665808528662, -0.0007781021413393319, -0.03212808817625046, -0.030709097161889076, 0.014578119851648808, -0.012871314771473408, 0.01069597527384758, -0.024912653490900993, -0.006837258581072092, 0.016679832711815834, -0.008159195072948933, 0.021137604489922523, -0.016907405108213425, -0.0037081167101860046, 0.019491039216518402, 0.015301001258194447, -0.01281107496470213, 0.0069075389765203, -0.01097040344029665, 0.030200401321053505, -0.01943749375641346, 0.00860095676034689, 0.0036512231454253197, 0.012623661197721958, 0.04623767361044884, 0.017014499753713608, -0.025180388242006302, 0.00041310529923066497, 0.00896909087896347, 0.025983590632677078, -0.011693284846842289, -0.026800179854035378, -0.01306542195379734, -0.007690661121159792, -0.009156504645943642, 0.0167467650026083, 0.0017452914034947753, -0.02461814694106579, -0.012362619861960411, -0.0009362325654365122, -0.007329219952225685, -0.02449766732752323, 0.0034738495014607906, -0.0049296533688902855, 0.030842963606119156, 0.016827085986733437, -0.0013118969509378076, -0.0409633107483387, 0.01287800818681717, 0.005046787206083536, 0.006211430300027132, 0.0044042253866791725, -0.0138150779530406, -0.03582281619310379, -0.03362739831209183, -0.0003037108399439603, -0.021780166774988174, 0.019370559602975845, 0.023373182862997055, -0.019879253581166267, -0.012088192626833916, 0.030655549839138985, -0.028031757101416588, -0.02808530256152153, 0.009323839098215103, 0.001187233254313469, 0.03148552402853966, -0.025461509823799133, -0.012991795316338539, 0.009089571423828602, -0.011211363598704338, -0.024283479899168015, 0.014578119851648808, -0.0010475094895809889, 0.0021251391153782606, 0.0016340144211426377, -0.003524049650877714, -0.018741384148597717, 0.004732199478894472, 0.015649056062102318, 0.005816522520035505, -0.014966334216296673, -0.003671303391456604, -0.035474762320518494, 0.029049145057797432, 0.02121792361140251, 0.003037108341231942, -0.011619658209383488, 0.010173894464969635, -0.02052181586623192, -0.020910030230879784, 0.022248700261116028, 0.004514665808528662, 0.01554196234792471, 0.005351334344595671, 0.013185902498662472, 0.007650500629097223, 0.013707984238862991, 0.022636914625763893, -0.01684047281742096, -0.010247521102428436, -0.04090976342558861, -0.029477519914507866, 0.031110698357224464, 0.0008734823786653578, -0.03686698153614998, 0.005622415337711573, -0.026425352320075035, -0.02835303731262684, -0.0024765401612967253, 0.006556137930601835, 0.012944941408932209, 0.013721371069550514, -0.02353382483124733, -0.003831943729892373, 0.009799066931009293, -0.013721371069550514, 0.0060541364364326, -0.014497799798846245, 0.016786925494670868, -0.009283678606152534, -0.021686458960175514, 0.031753260642290115, 0.01443086564540863, -0.007804447785019875, 0.005980509798973799, 0.008139115758240223, -0.05547449737787247, 0.015408094972372055, -0.04238230362534523, -0.014310385100543499, -0.010803068988025188, -0.01985247991979122, -0.013145742006599903, -0.03373449295759201, -0.02048165537416935, -0.001822264981456101, 0.004119758028537035, 0.0010274294763803482, -0.00166162452660501, -0.012938248924911022, -0.00705479271709919, -0.002640527207404375, 0.017001112923026085, 0.018326396122574806, 0.015113587491214275, -0.01579630933701992, -0.04214134067296982, -0.016090817749500275, -0.01204133965075016, 0.01554196234792471, 0.021097443997859955, -0.01488601416349411, -0.023841718211770058, -0.027656927704811096, -0.010849922895431519, -0.028781412169337273, 0.02607729844748974, 0.0005354681052267551, -0.007837914861738682, 0.026371804997324944, 0.001548674190416932, -0.0018891984364017844, 0.028942052274942398, -0.01097040344029665, 0.02129824459552765, -0.013935557566583157, 0.0037984768860042095, 0.00949117261916399, -0.01306542195379734, 0.0010550395818427205, -0.004809173289686441, -0.01181376539170742, -0.013205982744693756, 0.03445737436413765, 0.0032261954620480537, -0.008206048980355263, 0.030521683394908905, 0.0023426730185747147, -0.0011713365092873573, -0.0008153338567353785, 0.03263678029179573, -0.00848716963082552, -0.009176584891974926, -0.01186061929911375, 0.0011253197444602847, -0.017456261441111565, -0.01647903211414814, -0.010187281295657158, -0.01269728783518076, 0.03592991083860397, -0.013962331227958202, 0.021043896675109863, 0.0193437859416008, 0.00287981447763741, -0.013567423447966576, -0.00428039813414216, -0.01925007812678814, -0.001582977594807744, 0.026023751124739647, 0.019504426047205925, -0.019129598513245583, -0.013507183641195297, -0.020655682310461998, -0.026063911616802216, 0.013453636318445206, 0.0031308152247220278, 0.02034778892993927, 0.0015018207486718893, 0.03108392469584942, 0.03196744620800018, -0.0013369969092309475, 0.017898021265864372, -0.0081257289275527, -0.034618012607097626, 0.021914033219218254, -0.025193775072693825, 0.020963577553629875, -0.0017821048386394978, -0.037750501185655594, 0.00045682123163715005, 0.004300478380173445, 0.0003574668080545962, 0.006542751099914312, -0.006566178053617477, 0.001474210643209517, 0.010863309726119041, -0.03684020787477493, 0.046960555016994476, -0.008152502588927746, 0.014082811772823334, 0.03362739831209183, 0.015528575517237186, 0.0021519125439226627, 0.02704114094376564, 0.02357398346066475, 0.047549568116664886, 0.006258283741772175, -0.005639148876070976, 0.003979197703301907, -0.0006233183667063713, -0.008861997164785862, -0.010963710024952888, -0.014230065047740936, 0.002031432231888175, -0.003252968890592456, -0.007389460224658251, 0.004370758775621653, 0.021338405087590218, 0.027148233726620674, 0.017496420070528984, 0.01839333027601242, 0.027161620557308197, -0.002449766732752323, 0.0032864355016499758, -0.006459084339439869, -0.010127040557563305, -0.0009747192962095141, 0.00151353410910815, -0.0016490744892507792, 0.0027375807985663414, -0.004702079575508833, 0.030923284590244293, -0.005257627461105585, 0.012382700107991695, 0.019276851788163185, 0.013005182147026062, -0.01233584713190794, -0.016545964404940605, 0.022877875715494156, -0.005993896164000034, -0.02499297447502613, 0.002461479976773262, 0.03022717498242855, -0.007489860523492098, -0.01903589256107807, -0.0039323437958955765, -0.027349034324288368, -0.015167134813964367, 0.005207427311688662, -0.010588882490992546, -0.014203292317688465, 0.004956427030265331, 0.005368067882955074, 0.02256998047232628, -0.03362739831209183, 0.03681343421339989, -0.024792173877358437, -0.004196731373667717, -0.010127040557563305, 0.012556727044284344, -0.0005952899227850139, -0.011097576469182968, -0.016639672219753265, 0.01495294738560915, 0.018232690170407295, -0.038580477237701416, -0.0067100850865244865, -0.00042126281186938286, -0.013440249487757683, 0.008949010632932186, -0.030441362410783768, -0.021740006282925606, 0.00712172593921423, 4.392511982587166e-05, 0.009645119309425354, -0.001187233254313469, -4.4787935621570796e-05, 0.015823082998394966, 0.0180318895727396, 0.009437625296413898, -0.0028061876073479652, -0.03558185696601868, -0.0006078399601392448, 0.09831194579601288, 0.016412097960710526, 0.006188003346323967, 0.023640917614102364, -8.56016922625713e-05, 0.015301001258194447, 0.009665199555456638, -0.022114833816885948, 0.015635669231414795, -0.02271723560988903, 0.013085502199828625, 0.02563553676009178, 0.009276985190808773, -0.006596297957003117, 0.006659884937107563, 0.010602268390357494, 0.006131109781563282, 0.007248899899423122, 0.008949010632932186, -0.00012518659059423953, -0.006188003346323967, 0.014578119851648808, 0.019317012280225754, 0.03737567365169525, 0.010950323194265366, 0.002361079677939415, 0.02671985886991024, 0.007496553938835859, -0.014015878550708294, 0.006325216963887215, 0.00409633107483387, 0.011679898016154766, -0.001109422999434173, 0.04265003651380539, -0.017630288377404213, 0.012476406991481781, -0.018045276403427124, -0.006074216682463884, 0.021793551743030548, 0.008252902887761593, 0.006653191521763802, -0.009886080399155617, -0.0015687543200328946, -0.014524572528898716, 0.0029132813215255737, -0.012777607887983322, -0.019102824851870537, 0.017817702144384384, 0.002339326310902834, -0.03724180907011032, 0.012985101900994778, -0.01518052164465189, -0.04184683412313461, -0.005518668331205845, -0.00040515692671760917, 0.004842639900743961, 0.007951701991260052, -0.007857995107769966, -0.0028329610358923674, -0.027014367282390594, -0.02402913197875023, -0.012349233962595463, -0.009832533076405525, -0.02207467332482338, -0.01204133965075016, 0.022221926599740982, -0.015126974321901798, 0.004661919549107552, -0.0282727163285017, -0.013011875562369823, -0.015073427930474281, -0.01784447580575943, -0.03218163549900055, -0.00572281563654542, 0.01915637217462063, 0.006589604541659355, -0.003657916560769081, 0.0028245942667126656, -0.004963119979947805, -0.0065862578339874744, 0.004109717905521393, -0.02184709906578064, -0.011164510622620583, -0.041257817298173904, -0.008480476215481758, -0.0036746500991284847, -0.017309006303548813, 0.013493796810507774, -0.016545964404940605, 0.028326263651251793, -0.02271723560988903, -0.013908784836530685, 0.006653191521763802, -0.005572215188294649, -0.0010709362104535103, 0.002352713141590357, 0.007322526536881924, -0.011077497154474258, 0.004909573122859001, -0.01566244289278984, 0.0024815599899739027, 0.008132422342896461, -0.013018568977713585, -0.015046654269099236, 0.017228687182068825, 0.011961019597947598, 0.0034805426839739084, -0.0015152074629440904, 0.029049145057797432, -0.01269728783518076, 0.0012692267773672938, -0.021284857764840126, 0.0006325216963887215, -0.0016733378870412707, -0.007128419354557991, -0.005816522520035505, 0.025140227749943733, 0.00014286121586337686, 0.02230224758386612, -0.0005940349656157196, 0.018500423058867455, -0.015260841697454453, 0.015528575517237186, 0.015649056062102318, -0.0048158662393689156, 0.015086814761161804, 0.01358750369399786, -0.02476540021598339, -0.01661289855837822, 0.0016038944013416767, -0.002213825937360525, 0.012543341144919395, -0.012362619861960411, -0.022382566705346107, -0.021472271531820297, 0.010568802244961262, -0.01894218474626541, 0.009531332179903984, -0.015568736009299755, -0.02685372717678547, -0.002235579304397106, -0.016184523701667786, 0.010836536064743996, -0.00991954654455185, 0.0014850873267278075, -0.025836337357759476, -0.006626417860388756, -0.00794500857591629, -0.0015319408848881721, 0.030976830050349236, -0.04286422207951546, 0.0008052938501350582, -0.012389393523335457, 0.005414921324700117, 0.00301033491268754, -0.04002624377608299, 0.01729561947286129, -0.02977202832698822, 0.02558198943734169, 0.024457506835460663, 0.03341320902109146, -0.0003225358668714762, 0.02144549787044525, 0.016880633309483528, 0.0065862578339874744, -0.014899400062859058, 0.0088553037494421, -0.00867458339780569, -0.019102824851870537, 0.011003869585692883, -0.021472271531820297, -0.011894085444509983, -0.0056558819487690926, -0.02175339311361313, 0.006405537482351065, 0.015729375183582306, -0.025729242712259293, -0.0019711919594556093, -0.042355529963970184, -0.015903403982520103, -0.028165623545646667, 0.007161885965615511, -0.008861997164785862, 0.01410958543419838, -0.029343653470277786, -0.0022071327548474073, 0.0435335598886013, 0.03204776719212532, 0.04101685807108879, -0.001822264981456101, 0.03796469047665596, 0.008252902887761593, 0.0180318895727396, 0.011298377066850662, 0.021967580541968346, -0.017697220668196678, -0.016987726092338562, -0.045675430446863174, -0.007556793745607138, -0.012837848626077175, 0.0024112798273563385, 0.02958461456000805, -0.016626285389065742, -0.022596754133701324, -0.002053185598924756, 0.014578119851648808, -0.00783122144639492, -0.018246077001094818, 0.009370692074298859, -0.005876762792468071, -0.004933000076562166, -0.01970522664487362, -0.023734625428915024, -0.01293155550956726, 0.00534798763692379, 0.01583646982908249, -0.02321254275739193, 0.013962331227958202, 0.0113786980509758, -0.030414588749408722, -0.004862719681113958, 0.004822559654712677, 0.015006493777036667, -0.04088298976421356, 0.02135179191827774, 0.014993107877671719, 0.008607650175690651, -0.008413542993366718, -0.0071551925502717495, -0.006432310678064823, 0.004648532718420029, 0.022422727197408676, 0.0034504227805882692, -0.01651919074356556, -0.004564865957945585, -0.01651919074356556, 0.02025408111512661, -0.0129248620942235, -0.01394894439727068, 0.006134456489235163, 0.026050524786114693, -0.002439726609736681, -0.004698732867836952, -0.015715990215539932, -0.04797794297337532, 0.027790796011686325, 0.0011713365092873573, -0.0012976735597476363, -0.01524745486676693, -0.026438739150762558, 0.001275083515793085, 0.015876630321145058, -0.015408094972372055, 0.035207029432058334, 0.0012801034608855844, -0.010187281295657158, 0.010187281295657158, 0.010100267827510834, 0.007570180576294661, -0.01287800818681717, -0.01784447580575943, 0.013989104889333248, -0.02713484689593315, 0.014163131825625896, -0.0011453997576609254, 0.021231310442090034, -0.01008018758147955, -0.01139877736568451, 0.010602268390357494, 0.022047899663448334, -0.019584747031331062, -0.01638532429933548, 0.02070922963321209, -0.02344011701643467, -0.008882077410817146, -0.010455015115439892, -0.019825708121061325, -0.016130976378917694, -0.013192595914006233, 0.0014290305553004146, 0.030923284590244293, 0.015207294374704361, -0.026934046298265457, 0.0013001835905015469, 0.02002650685608387, -0.012027952820062637, 0.00931045226752758, 0.0014767206739634275, 0.0031592620071023703, -0.003530742833390832, -0.010421548038721085, 0.006171270273625851, 0.028781412169337273, -0.0011997832916676998, -0.0045949858613312244, 0.00439418526366353, -0.0009102958138100803, 0.002673993818461895, -0.0062750172801315784, -0.0026388538535684347, 0.02006666734814644, -0.013828463852405548, -0.03694729879498482, 0.022315634414553642, -0.015943562611937523, -0.009471092373132706, 0.02266368828713894, -0.014618279412388802, -0.012268912978470325, -0.007985168136656284, -0.0036545698530972004, -0.010508561506867409, -0.00866788998246193, 0.02317238226532936, -0.022047899663448334, 0.03445737436413765, 0.019557973369956017, 0.004591639153659344, -0.04104363173246384, 0.0022288861218839884, 0.01008688099682331, -0.011412164196372032, 0.015260841697454453, -0.01833978295326233, 0.025019748136401176, 0.004226851277053356, 0.0006387967150658369, 0.0032763956114649773, -0.012409473769366741, -0.029798800125718117, -0.026278097182512283, 0.004016011022031307, -0.004973160102963448, -0.007429620251059532, 0.0024146265350282192, -0.0009169891709461808, -0.0007668070611543953, -0.011532644741237164, -0.0017503114650025964, 0.008774983696639538, 0.007115032523870468, -0.002510006772354245, 0.033386439085006714, -0.007884767837822437, -0.009350611828267574, -0.012141739949584007, -0.006569524295628071, -0.012094886042177677, -0.01780431531369686, -0.009538025595247746, -0.019651679322123528, 0.023239316418766975, 0.01287800818681717, -0.01574276201426983, -0.034751880913972855, 0.0039022238925099373, -0.05175299569964409, -0.026465512812137604, 0.007061485666781664, 0.014096198603510857, 0.025515055283904076, 0.006208083592355251, 0.014350545592606068, 0.039223041385412216, -0.011050723493099213, 0.01848703622817993, -0.017322393134236336, 0.02427009306848049, 0.01413635816425085, -0.02685372717678547, 0.002657260512933135, 0.0052208141423761845, -0.02539457567036152, -0.019424106925725937, 0.019906027242541313, -0.018179142847657204, 0.026184391230344772, 0.02302512899041176, 0.024698467925190926, 0.003935690503567457, 0.013788304291665554, 0.03183358162641525, 0.012938248924911022, 0.0012859601993113756, -0.0025819602888077497, -0.04570220410823822, 0.007991861552000046, 0.00944431871175766, -0.0021234657615423203, -0.017175139859318733, -0.008888770826160908, 0.012416167184710503, -0.0030019681435078382, 0.0033031690400093794, -0.010501868091523647, 0.00949117261916399, 0.01295163482427597, -0.009993174113333225, -0.0028714477084577084, -0.0042703584767878056, 0.022154994308948517, 0.018460264429450035, 0.036706339567899704, -0.012529954314231873, 0.005736202467232943, 0.021311631426215172, -0.012563420459628105, 0.0015905076870694757, 0.0037817435804754496, -0.030414588749408722, 0.035715725272893906, 0.0056692687794566154, -0.0027727207634598017, 0.004979853518307209, 0.01856735721230507, -0.03882144019007683, -0.009732132777571678, -0.0007722454611212015, 0.008246209472417831, 0.008299755863845348, -0.010093574412167072, -0.005568868480622768, -0.008594263345003128, 0.019946187734603882, -0.01022074744105339, -0.01459150668233633, 0.008989171124994755, -0.04107040539383888, -0.024109452962875366, 0.00273088738322258, -0.01943749375641346, -0.012985101900994778, -0.002667300635948777, 0.004839293193072081, -0.006894152145832777, 0.012496487237513065, 0.21954193711280823, -0.0048359464854002, 0.0014340506168082356, 0.004534745588898659, 0.0011495831422507763, 0.0052007343620061874, 0.02658599242568016, 0.009216745384037495, -0.011144430376589298, 0.007697354070842266, -0.010622348636388779, 0.02676001936197281, -0.009906160645186901, 0.002526740310713649, 0.016920791938900948, -0.025822950527071953, -0.055420950055122375, 0.00890215765684843, -0.009912854060530663, 0.04682668671011925, 0.01583646982908249, -0.00819266214966774, 0.0064523909240961075, -0.022824328392744064, 0.0331454761326313, -0.00890215765684843, -0.01303864922374487, 0.019785547628998756, 0.03954432159662247, 0.025180388242006302, -0.015301001258194447, -0.0015946909552440047, -0.012429554015398026, -0.022195152938365936, 0.0069075389765203, -0.020146988332271576, 0.009230132214725018, -0.008119035512208939, 0.01311227586120367, -0.00564249511808157, 0.024377185851335526, 0.01820591650903225, 0.008734824135899544, -0.005990549456328154, 0.01985247991979122, 0.03651892766356468, -0.006967778783291578, -0.0025685736909508705, 0.002023065462708473, 0.012784301303327084, -0.018286235630512238, 0.011546031571924686, 0.020923417061567307, 0.024363799020648003, -0.004718812648206949, 0.01388201117515564, -0.002113425638526678, 0.0064523909240961075, -0.002335979603230953, -0.008313142694532871, -0.014537959359586239, 0.02311883680522442, 0.0069075389765203, 0.007971781305968761, 0.00012654617603402585, 0.008547409437596798, -0.00664649810642004, 0.012275606393814087, 0.016465645283460617, -0.01767044886946678, 0.007195353042334318, -0.011057416908442974, -9.245191904483363e-05, 0.013761530630290508, -0.02313222363591194, -0.009517946280539036, 0.037750501185655594, 0.0034370359499007463, 0.039303358644247055, 0.01593017578125, -0.0014993107179179788, -0.005732855759561062, 0.00031856170971877873, -0.027737248688936234, 0.010649122297763824, -0.044229667633771896, 0.007837914861738682, -0.007677274290472269, -0.01429699920117855, -0.008393462747335434, 0.018540583550930023, -0.009691973216831684, -0.02526070922613144, -0.02235579490661621, 0.011693284846842289, 0.0014466006541624665, -0.0037382368464022875, 0.0032830890268087387, -0.007416233420372009, 0.006994552444666624, 0.0008207722567021847, 0.056331247091293335, 0.004554825834929943, 0.009357305243611336, 0.007871381007134914, -0.02294480986893177, -0.01888863742351532, 0.0312177911400795, 0.00590688269585371, -0.030120082199573517, -0.0036277964245527983, -0.011760219000279903, 0.020334402099251747, -0.013159128837287426, 0.004665265791118145, 0.0032897822093218565, -0.0006931801908649504, -0.014993107877671719, 0.038714345544576645, -0.027978209778666496, -0.006425617262721062, -0.031887125223875046, 0.003187708556652069, 0.005752935539931059, 0.006777018308639526, -0.01839333027601242, 0.009765599854290485, -0.023480277508497238, -0.010240827687084675, -0.0170680470764637, 0.005552134942263365, 0.015033267438411713, -0.016224684193730354, -0.035394441336393356, -0.027295487001538277, 0.005465121474117041, 0.021833712235093117, -0.013721371069550514, -0.006375417113304138, 0.018821705132722855, -0.011934245936572552, 0.0037482769694179296, 0.007590260822325945, -0.012857927940785885, 0.01638532429933548, -0.02416299842298031, 0.014859240502119064, 0.006084256339818239, -0.024912653490900993, -0.0014491105685010552, -0.010307760909199715, 0.009879386983811855, -0.014323771931231022, -0.03137843310832977, 0.015381322242319584, 0.015809696167707443, -0.018687836825847626, -0.008460395969450474, 0.009772293269634247, -0.0013671170454472303, -0.0376969575881958, -0.011385390534996986, 0.017549967393279076, -0.0060541364364326, -0.0005969632766209543, 0.001009022700600326, -0.17049305140972137, 0.039490774273872375, 0.01436393242329359, -0.006191350053995848, 0.029745254665613174, 0.01144563127309084, 0.025849724188447, -0.0033851624466478825, -0.0088553037494421, 0.016827085986733437, 0.010836536064743996, 0.0112916836515069, -0.034939296543598175, -0.019598133862018585, 0.008621037006378174, -0.004999933764338493, -0.00866788998246193, 0.01579630933701992, 0.009591572917997837, 0.017536580562591553, 0.023881878703832626, -0.0032462754752486944, -0.01597033627331257, 0.000315424200380221, 0.0006605501403100789, 0.018861863762140274, -0.016171136870980263, 0.026438739150762558, -0.014444252476096153, -0.023640917614102364, -0.0013303036103025079, -0.013667823746800423, 0.038580477237701416, 0.00560902850702405, -0.0018758117221295834, -0.011117656715214252, -0.007978474721312523, -0.023814944550395012, -0.009819146245718002, 0.02676001936197281, 0.032529689371585846, 0.027603382244706154, 0.010849922895431519, 0.009792373515665531, -0.0009111324907280505, 0.010883389972150326, -0.0011797031620517373, -0.017764154821634293, -0.010093574412167072, 0.003022048156708479, 0.0056692687794566154, -0.009169891476631165, -0.006211430300027132, -0.013734756968915462, 0.0020247388165444136, -0.008052102290093899, -0.012463020160794258, -0.007670580875128508, 0.011940939351916313, -0.009765599854290485, -0.02180693857371807, -0.006204736884683371, -0.01340678334236145, -0.006449044216424227, -0.006522670853883028, -0.025662310421466827, -0.002195419277995825, -0.00345376948826015, -0.04251616820693016, 0.025595376268029213, 0.00151353410910815, 0.012268912978470325, 0.004702079575508833, 0.0014758839970454574, 0.007141806185245514, -0.021244697272777557, -0.021231310442090034, 0.02995944209396839, -0.0026890540029853582, 0.00878837052732706, 0.015100200660526752, 0.01597033627331257, -0.010327841155230999, 0.013868624344468117, -0.02385510504245758, -0.006706738378852606, 0.004253624938428402, 0.011465711519122124, 0.011525951325893402, -0.011967712081968784, 0.010575495660305023, -0.03592991083860397, 0.005876762792468071, 0.01233584713190794, 0.004896186757832766, 0.0018774850759655237, 0.0007605320424772799, 0.021914033219218254, 0.00842023640871048, 0.00406286446377635, 0.0077843680046498775, 0.009993174113333225, -0.022516435012221336, 0.023868491873145103, -0.0042469315230846405, 0.013687903992831707, 0.006740204989910126, 0.03815210238099098, 0.0112180570140481, 0.008507249876856804, -0.04578252509236336, 0.034484148025512695, 0.010100267827510834, 0.013259529136121273, 0.01429699920117855, 0.015006493777036667, -0.019410720095038414, -0.0006659884820692241, 0.004922959953546524, -0.006602991372346878, 0.03841983899474144, -0.02480556070804596, -0.013975718058645725, -0.0010282661532983184, -0.022931423038244247, -0.028299489989876747, -0.12637047469615936, -0.023788170889019966, 0.0011822131928056479, 0.026465512812137604, 0.015729375183582306, 0.00949117261916399, 0.0006814668304286897, -0.003818557132035494, -0.023975584656000137, 0.037536315619945526, -0.02303851582109928, -0.03595668449997902, -0.022476274520158768, -0.01966506615281105, -0.0016315043903887272, -0.0012709001312032342, 0.0008366689435206354, -0.0027325607370585203, -0.009256904944777489, 0.016907405108213425, -0.003587636398151517, -0.02977202832698822, -0.003408589167520404, -0.007770981173962355, -0.009270291775465012, 0.004216811619699001, -0.01911621168255806, 0.005465121474117041, 0.01606404408812523, 0.0027241939678788185, -0.026867112144827843, -0.012570113874971867, 0.027415968477725983, -0.025153614580631256, 0.0036746500991284847, -0.01317920908331871, -0.0162514578551054, -0.01287800818681717, 0.018085435032844543, -0.016050657257437706, 0.005973816383630037, -0.003135835286229849, 0.0001263370068045333, -0.026010364294052124, -0.013386703096330166, -0.0016206277068704367, -0.016398711130023003, 0.007596953772008419, 0.004775706212967634, -0.003386835800483823, -0.03036104328930378, -0.0056558819487690926, -0.030120082199573517, -0.025421349331736565, 0.001852385001257062, -0.021017123013734818, 0.007389460224658251, -0.007302446290850639, -0.0002160697476938367, -0.020414723083376884, 0.0023861797526478767, 0.012509874068200588, -0.020414723083376884, 0.03426995873451233, 0.0032563155982643366, 0.011472404934465885, -0.00830644927918911, 1.1752584214264061e-05, 0.002535106847062707, -0.03244936838746071, 0.008962397463619709, 0.032476142048835754, -0.012871314771473408, 0.024337025359272957, -0.029798800125718117, -0.008734824135899544, -0.02717500738799572, -0.006258283741772175, 0.0403207503259182, 0.0001897146867122501, -0.020923417061567307, -0.04348001256585121, 0.007181966211646795, -0.04050816223025322, 0.018594130873680115, 0.023092063143849373, -0.0069075389765203, -0.006064176559448242, 0.010910162702202797, -0.03847338631749153, 0.004554825834929943, 0.019972961395978928, -0.002909934613853693, -0.01761690154671669, -0.0020899989176541567, 0.007028019055724144, -0.004267011769115925, 0.0022405993659049273, 0.008132422342896461, 0.008527330122888088, -0.015126974321901798, 0.003092328319326043, -0.04883469268679619, 0.016920791938900948, -0.016452258452773094, -0.005977163091301918, 0.004943040199577808, 0.015675829723477364, 0.025742629542946815, -0.013252835720777512, -0.021740006282925606, 0.01742948777973652, -0.017817702144384384, 0.03568895161151886, 0.004658572841435671, -0.003000294789671898, -0.02676001936197281, -0.026746632531285286, 0.0007705721072852612, -0.021740006282925606, -0.002327613066881895, 0.013313076458871365, 0.005545441526919603, 0.015301001258194447, 0.005773015785962343, 0.0053981877863407135, -0.025274096056818962, 0.008821837604045868, -0.02626471221446991, 0.009705360047519207, -0.01020066812634468, -0.022154994308948517, -0.005943696014583111, 0.00150516745634377, -0.002904914552345872, 0.018232690170407295, -0.008587569929659367, -0.019049277529120445, -0.013393396511673927, 0.03700084611773491, 0.0308697372674942, 0.020749390125274658, -0.02431025356054306, -0.017911408096551895, 0.004019357729703188, -0.010388081893324852, 0.009384078904986382, 0.008507249876856804, -0.010829842649400234, -0.012991795316338539, 0.02152581885457039, 0.006619724445044994, 0.007777674589306116, 0.0154348686337471, -0.0038988771848380566, -0.031298112124204636, -0.0022405993659049273, -0.0227573961019516, 0.014618279412388802, 0.006442350801080465, 0.014778920449316502, 0.003661263268440962, 0.025100069120526314, 0.010649122297763824, 0.018861863762140274, -0.02226208709180355, 0.0057897488586604595, 0.002379486570134759, 0.007007939275354147, 0.002192072570323944, -0.01501988060772419, -0.03140520676970482, 0.010608961805701256, -0.019009118899703026, 0.011311763897538185, 0.014912786893546581, -0.0011646432103589177, -0.007536713965237141, -5.905706075282069e-06, -0.008634423837065697, -0.029825573787093163, 0.022837715223431587, -0.004748933017253876, 0.0019778853747993708, 0.00427705142647028, 0.012442940846085548, 0.015341161750257015, 0.011653125286102295, 0.026519058272242546, -0.0007885604863986373, -0.009825839661061764, -8.356230682693422e-05, 0.011418857611715794, 0.006449044216424227, -0.015153747983276844, -0.012255527079105377, 0.0022523128427565098, -0.021017123013734818, 0.01712159253656864, 0.005240894388407469, -0.011030643247067928, 0.010053413920104504, -0.002625467022880912, 0.003154241945594549, 0.01602388359606266, -0.01807204820215702, -0.0065293642692267895, 0.00807887502014637, -0.013594197109341621, -0.02038794942200184, -0.02180693857371807, 0.017630288377404213, -0.0025635536294430494, 0.026117457076907158, 0.0018758117221295834, 0.007175272796303034, -0.025796176865696907, 0.022998355329036713, -0.005679308902472258, -0.006847298704087734, -0.016224684193730354, 0.035528309643268585, 0.014002491720020771, 0.003661263268440962, 0.02854045107960701, -0.017268847674131393, 0.029825573787093163, -1.4262590411817655e-05, 0.010280988179147243, 0.000391561072319746, -0.014752146787941456, 0.016452258452773094, -0.012148433364927769, 0.011740138754248619, 0.012509874068200588, -0.018246077001094818, 0.0007383603369817138, -0.022007739171385765, -0.008815144188702106, 0.02376139722764492, 0.029477519914507866, 0.06077563017606735, 0.010957016609609127, -0.012777607887983322, -0.008888770826160908, 0.009953013621270657, 0.026197778061032295, 0.007128419354557991, 0.003641183255240321, -0.012068112380802631, -0.003945730626583099, 0.026786793023347855, -0.0038921840023249388, -0.016626285389065742, -0.009772293269634247, 0.02330625057220459, 0.00712172593921423, -0.010341227985918522, 0.01015381421893835, -0.012442940846085548, -0.00661303149536252, 0.004675305914133787, 0.0031626084819436073, 0.012463020160794258, 0.01044832170009613, -0.000387168547604233, 0.0008098955149762332, 0.006341950502246618, -0.003731543431058526, -0.023466890677809715, -0.025247322395443916, 0.008754903450608253, -0.0017971649067476392, -0.02480556070804596, -0.005719468928873539, 0.013908784836530685, -0.007382766809314489, -0.001979558728635311, -0.0193437859416008, 0.013694597408175468, 0.013788304291665554, 0.010247521102428436, 0.029290106147527695, -0.01008688099682331, -0.02744274213910103, -0.00883522443473339, 0.0136544369161129, -0.014631666243076324, -0.0024631533306092024, 0.00638545723631978]" +1,"With that context, this quarter, the Microsoft Cloud again exceeded $25 billion in quarterly revenue, up 24% and 31% in constant currency. And based on current trends continuing, we expect our broader commercial business to grow at around 20% in constant currency this fiscal year, as we manage through the cyclical trends affecting our consumer business. With that, let me highlight our progress starting with Azure. Moving to the cloud is the best way for organizations to do more with less today.","[-0.0016425022622570395, -0.028921114280819893, 0.0223837923258543, -0.010283208452165127, 0.023495135828852654, -0.01826527900993824, -0.023730479180812836, -0.04259719327092171, -0.012048285454511642, -0.040165308862924576, 0.03838715702295303, 0.03475240617990494, 0.0027326007839292288, -0.0014349422417581081, -0.009570639580488205, 0.010793118737637997, 0.013584556058049202, -0.004831081256270409, -0.0022194208577275276, -0.023939674720168114, -0.04149892181158066, 0.004111975897103548, -0.030699266120791435, -0.001670285826548934, -0.020932506769895554, 0.014460557140409946, 0.020932506769895554, -0.013754526153206825, 0.031143803149461746, -0.016970889642834663, -0.005475007463246584, -0.024083495140075684, -0.014120616018772125, 0.01928510144352913, -0.022906778380274773, -0.012316315434873104, -0.007779413368552923, 0.011629896238446236, 0.013741451315581799, -0.0003601656062528491, 0.030673116445541382, 0.003209825372323394, -0.004429035820066929, 0.02493334747850895, -0.020919431000947952, 0.0024858168326318264, 0.005929351318627596, -0.023011375218629837, 0.003399407723918557, -0.005726694595068693, 0.0005413719918578863, 0.03859635069966316, -0.05091266706585884, -0.030333176255226135, -0.008518131449818611, 0.002105017891153693, -0.01950736902654171, 0.022475313395261765, 0.010878104716539383, 0.005220051854848862, -0.008354698307812214, 0.014617452397942543, -0.02722140960395336, -0.004049871116876602, -0.01885363832116127, -0.011858702637255192, -0.023795852437615395, -0.0029630414210259914, 0.012257479131221771, 0.010440103709697723, 0.029967086389660835, 0.01987346075475216, 0.026528453454375267, -0.001180803868919611, 0.011244194582104683, -0.00742639834061265, -0.007204129360616207, -0.01715393364429474, -0.010008640587329865, 0.011656045913696289, 0.012250942178070545, -0.0034092136193066835, -0.013506107963621616, -0.014865870587527752, 0.008302398957312107, 0.006890337914228439, -0.027927441522479057, 0.013218466192483902, -0.02105017751455307, 0.005510962568223476, 0.02729985862970352, 0.005376947578042746, 0.0038341395556926727, 0.03174523636698723, 0.011852165684103966, 0.009322221390902996, -0.002771824598312378, 0.023599734529852867, 0.021089401096105576, -0.021390119567513466, 0.005792067386209965, 0.0038079903461039066, -0.03621676564216614, -0.012466673739254475, -0.03705354407429695, 0.001211038907058537, 0.03271276131272316, 0.004726483952254057, 0.032242074608802795, -0.01159067265689373, -0.0005732414429076016, 0.00416427431628108, 0.016225634142756462, -0.009577177464962006, -0.007687890902161598, 0.0006512807449325919, -0.0017340247286483645, 0.021403193473815918, -0.003389601595699787, -0.0023109435569494963, 0.013323063030838966, 0.012845838442444801, 0.027116812765598297, 0.014395183883607388, -0.002799608279019594, 0.003765497589483857, -0.00784478709101677, -0.023952748626470566, 0.01438210904598236, -0.0006574094877578318, 0.00685765128582716, 0.015140438452363014, 0.015231961384415627, 0.00548481335863471, -0.009975953958928585, 0.02743060514330864, -0.015336558222770691, 0.017938412725925446, -0.018278352916240692, -0.0005650697858072817, -0.010538163594901562, 0.013963720761239529, -0.0007178796804510057, 0.007779413368552923, -6.66500418446958e-05, 0.020069578662514687, 0.02522099018096924, 0.004429035820066929, 0.022174596786499023, -0.0019464876968413591, 0.010126312263309956, -0.014787423424422741, 0.022684508934617043, 0.02561322972178459, 0.01499661710113287, -0.016251783818006516, -0.0052592759020626545, 0.018461398780345917, -0.020043430849909782, -0.007354487664997578, -0.012590882368385792, 0.030202429741621017, -0.0011227851500734687, -0.00021654879674315453, 0.001290304004214704, 0.02267143316566944, 0.02435806393623352, -0.0018304502591490746, -0.011669120751321316, -0.01745465025305748, -0.004775513894855976, 0.0047166780568659306, -0.008779623545706272, 0.015310408547520638, 0.005994724575430155, 0.030986906960606575, 0.012335927225649357, 0.004478065762668848, -0.018317576497793198, -0.02361280843615532, 0.01893208548426628, -0.010799656622111797, 0.01041395403444767, 0.012041747570037842, 0.011871777474880219, -0.007328338455408812, 0.023521285504102707, 0.0005642526084557176, 0.00983213260769844, 0.011119985021650791, -0.011727956123650074, 0.02369125559926033, -0.004177349153906107, -0.016983963549137115, -0.6447368860244751, 0.011433776468038559, 0.00419696094468236, 0.00024474100791849196, 0.006517710164189339, -0.015807244926691055, 0.018762115389108658, 0.004961827769875526, -0.033627986907958984, 0.01708856038749218, 0.016539424657821655, 0.010028252378106117, -0.017624620348215103, -0.0018664054805412889, 0.01884056255221367, -0.008518131449818611, -0.008825385011732578, -0.005040275398641825, -0.02685531973838806, -0.005935888737440109, -0.010956551879644394, 0.03137914836406708, -0.011812941171228886, -0.00033748926944099367, 0.003520348109304905, -0.007766338996589184, -0.012819688767194748, -0.004095632582902908, -0.01783381588757038, 0.007733652368187904, -0.01385912299156189, 0.003687049727886915, 0.007504845969378948, 0.016016440466046333, 0.03836100921034813, -0.014617452397942543, -0.015192736871540546, 0.008335085585713387, 0.006216993555426598, 0.026227736845612526, -0.018461398780345917, -0.002194905886426568, 0.020801760256290436, 0.008067055605351925, -0.013257689774036407, 0.027822844684123993, 0.017415426671504974, -0.021455492824316025, 0.009707923978567123, 0.003030048916116357, -0.00851159356534481, -0.00397796044126153, 0.012571270577609539, -0.03838715702295303, 0.013375361450016499, 0.004321170039474964, 0.012087509036064148, -0.03498774766921997, 0.004739558789879084, -0.009982490912079811, -0.016081813722848892, -0.01737620308995247, -0.017912263050675392, -0.038256410509347916, -0.03637365996837616, 0.022357642650604248, -0.018134532496333122, 0.0005144055467098951, 0.026580752804875374, 0.0019611967727541924, 0.0023109435569494963, 0.022174596786499023, 0.004435573238879442, -0.005752843804657459, 0.009381057694554329, 0.018905935809016228, 0.026227736845612526, -0.03749807924032211, -0.02369125559926033, 0.019925758242607117, 0.014735125005245209, -0.051095712929964066, -0.0031738700345158577, -0.02244916558265686, 0.0022063462529331446, 0.00802783202379942, -0.01276085339486599, -0.02837197855114937, -0.0020085922442376614, 0.002693376736715436, 0.0021017491817474365, 0.012074434198439121, -0.016160260885953903, -0.03490930050611496, 0.020134951919317245, 0.020710237324237823, -0.01591184176504612, -0.0026083916891366243, 0.0019579280633479357, 0.008433145470917225, -0.0075767566449940205, -0.013924496248364449, 0.02412271872162819, 0.015048916451632977, 0.02999323420226574, 0.029940936714410782, 0.006292172707617283, 0.019193578511476517, 0.037001244723796844, -0.031274549663066864, 0.001740562031045556, -0.023599734529852867, -0.008746936917304993, -0.0028322949074208736, 0.010570850223302841, -0.031065355986356735, 0.025273287668824196, -0.006132008507847786, -0.019847311079502106, -0.01023090910166502, -0.00817819032818079, 0.02112862654030323, 0.006975322961807251, -0.02612314000725746, -0.014865870587527752, 0.006220262032002211, 0.015624199993908405, -0.00010745723557192832, 0.008642340078949928, -0.006949173752218485, -0.0024629360996186733, -0.021664686501026154, 0.037890318781137466, 0.0005662955227307975, 0.03710584342479706, 0.0011644605547189713, 0.007204129360616207, -0.031039206311106682, 0.011446851305663586, -0.03660900518298149, -0.03271276131272316, 0.0015812148340046406, -0.002489085542038083, 0.0029025711119174957, -0.0110023133456707, -0.02978404052555561, -0.023926598951220512, 0.0017650770023465157, -0.027195261791348457, -0.001381826470606029, -0.02170391008257866, -0.010361655615270138, 0.00019101238285657018, -0.004638230428099632, 0.00912610162049532, 0.004049871116876602, -0.009361445903778076, -0.025652453303337097, -0.022056926041841507, -0.029810190200805664, -0.0155849764123559, 0.010342043824493885, 0.007942846976220608, 0.013479958288371563, -0.015519603155553341, -0.0033258628100156784, -0.04534286633133888, 0.015650350600481033, -0.0037230050656944513, -0.00021716167975682765, 0.018605219200253487, -0.011146134696900845, 0.01568957418203354, 0.0019840772729367018, 0.006259486079216003, 0.002325652400031686, -0.026280036196112633, -0.015061990357935429, 0.005778993014246225, -0.017807666212320328, 0.01737620308995247, 0.0304377730935812, 0.014473631978034973, -0.011048074811697006, 0.02259298600256443, 0.007204129360616207, 0.017846889793872833, 0.011492612771689892, -0.003415751038119197, -0.010923865251243114, 0.003585721366107464, 0.03843945637345314, -0.018579069525003433, 0.0012486285995692015, -0.007282576989382505, -0.0194289218634367, -0.0410543829202652, -0.0028126828838139772, 0.004755902104079723, -0.010525088757276535, 0.009211087599396706, 0.02397889830172062, -0.000778758549131453, 0.018356801941990852, -0.001333613763563335, -0.02443651109933853, -0.011682194657623768, -0.007615980692207813, 0.015192736871540546, 0.028659621253609657, 0.020134951919317245, -0.023887375369668007, -0.013623779639601707, -0.01995190791785717, -0.010381268337368965, 0.016813993453979492, 0.022736806422472, -0.003843945451080799, -0.008537743240594864, 0.004445379134267569, 0.013133480213582516, -0.017219306901097298, -0.004370199982076883, -0.011734494008123875, -0.005913008004426956, 0.003000630997121334, -0.017271606251597404, 0.01155144814401865, 0.009459505788981915, -0.009276460856199265, 0.0024858168326318264, 0.03292195498943329, 0.01499661710113287, 0.0038145275320857763, 0.0035268852952867746, 0.0006651725270785391, 0.01306157000362873, -0.020265698432922363, 0.01253858394920826, -3.2201420253841206e-05, 0.0046937973238527775, -0.0008036820800043643, 0.01140108983963728, -0.021324746310710907, 0.012904674746096134, 0.011708344332873821, 0.01921972818672657, 0.005942426156252623, -0.01041395403444767, 0.010060939006507397, -0.019821161404252052, 0.009701386094093323, 0.010067475959658623, -0.0205271914601326, -0.0033667210955172777, -0.001936681685037911, -0.004955290351063013, -0.003193482058122754, 0.030986906960606575, 0.022645285353064537, 0.011296493001282215, 0.01269548013806343, 0.027404455468058586, -0.008295862004160881, 0.018657518550753593, 0.01591184176504612, -0.008053980767726898, -0.01385912299156189, -0.014434407465159893, 0.013989869505167007, 0.0021589507814496756, -0.01066891010850668, 0.01627793349325657, 0.005540380720049143, -0.020801760256290436, 0.015245035290718079, -0.005824754014611244, -0.012715091928839684, -0.01952044479548931, 0.031143803149461746, 0.009583714418113232, -0.03574607893824577, -0.009230699390172958, 0.023429762572050095, -0.005030469503253698, 0.006772665772587061, 0.005589410662651062, -0.013159629888832569, 0.006599426735192537, 0.02722140960395336, -0.025508631020784378, 0.015061990357935429, -0.024763377383351326, -0.0030414892826229334, 0.011525299400091171, -0.0008907101582735777, 0.03028087690472603, -0.0106362234801054, -0.004798394627869129, -0.02105017751455307, 0.018356801941990852, -0.005256006959825754, -0.005677664652466774, 0.016474051401019096, 0.027116812765598297, 0.004360394086688757, -0.027482902631163597, -0.011642971076071262, -0.00792323425412178, -0.02926105447113514, 0.0019105324754491448, -0.02324671857059002, -0.02852887474000454, 0.02582242339849472, 0.006929561495780945, 0.009805983863770962, 0.024815674871206284, -0.01716700755059719, 0.022972149774432182, 0.014774348586797714, -0.004464990925043821, -0.016630947589874268, -0.03263431414961815, 0.018971309065818787, 0.07358410209417343, 0.006187575403600931, -0.005883590318262577, 0.01952044479548931, 0.021324746310710907, 0.009047654457390308, 0.0017748830141499639, -0.015075065195560455, 0.003778572427108884, -0.006625576410442591, -0.029522547498345375, 0.0019481220515444875, 0.014434407465159893, -0.023416688665747643, 0.020566416904330254, 0.0087992362678051, -0.0022014433052390814, -0.002067428082227707, -0.014486705884337425, 0.01426443737000227, 0.00321963126771152, 0.02485490031540394, 0.03791647031903267, 0.04685952514410019, 0.02472415380179882, 0.020448744297027588, 0.022174596786499023, 0.03096075914800167, 0.0022423015907406807, -0.011361866258084774, 0.0010345312766730785, 0.006994934752583504, -0.020514117553830147, 0.03174523636698723, -0.00021287155686877668, 0.016970889642834663, -0.028293531388044357, -0.008086667396128178, -0.0021442417055368423, 0.01195676252245903, -0.015415006317198277, -0.007504845969378948, 0.004919335246086121, -0.004334244877099991, 0.0026083916891366243, -0.03433401510119438, -0.008890758268535137, 0.022854479029774666, -0.007328338455408812, -0.01715393364429474, 0.008119354024529457, -0.015611126087605953, -0.025940094143152237, -0.00913263950496912, -0.027169112116098404, 0.03543228656053543, -0.005497888196259737, -0.013911422342061996, -0.005834560375660658, -0.03477855399250984, -0.033784881234169006, -0.017781516537070274, -0.0033029820770025253, -0.0057168882340192795, -0.03140529617667198, -0.0028584441170096397, -0.006230068393051624, 0.00246620480902493, -0.03530154004693031, -0.006324859336018562, -0.002361607737839222, -0.023285942152142525, -0.024776451289653778, 0.02082790806889534, 0.04149892181158066, 0.00416427431628108, -0.00570381386205554, 0.0037589604035019875, -0.00515141012147069, 0.0014766176464036107, -0.006955711171030998, -0.006507904268801212, -0.023717405274510384, -0.030202429741621017, -0.030908459797501564, -0.006328127812594175, 0.02038337104022503, 0.0005082768038846552, -0.02873806841671467, 0.012904674746096134, -0.019598891958594322, -0.022723732516169548, 0.0021180924959480762, -0.004958558827638626, 0.01342765986919403, 0.0073937117122113705, 0.005589410662651062, 0.003504004795104265, 0.004821275360882282, -0.011106911115348339, 0.0055567240342497826, -0.00606990372762084, -0.010825805366039276, -0.011610284447669983, 0.019625041633844376, 0.015061990357935429, 0.01921972818672657, -0.01819990575313568, 0.005458664149045944, -0.014643602073192596, -0.0019268757896497846, -0.0029107427690178156, -0.006524247583001852, -0.011767180636525154, 0.001936681685037911, -0.008603116497397423, 0.016225634142756462, -0.01019822247326374, 0.009701386094093323, 0.002907474059611559, 0.015872618183493614, -0.03477855399250984, 0.027692098170518875, -0.014787423424422741, -0.009740610606968403, 0.0032555866055190563, 0.015951067209243774, -0.015872618183493614, -0.04047910124063492, 0.0064654117450118065, 0.0007530178409069777, 0.00993673037737608, -0.01804300956428051, -0.009485654532909393, -0.033994074910879135, -0.027378305792808533, 0.009995565749704838, 0.009354908019304276, -0.016264857724308968, -0.016774769872426987, -0.035536885261535645, 0.0032899074722081423, -0.015676498413085938, -0.01797763630747795, 0.030751563608646393, -0.029156457632780075, 0.0061941128224134445, -0.001928510144352913, 0.008093205280601978, 0.027195261791348457, -0.008635803125798702, -0.00623660534620285, -0.01385912299156189, 0.002397563075646758, -0.00021368871966842562, -0.004880111198872328, 0.027927441522479057, -0.03587682545185089, 0.035092346370220184, 0.00025270835612900555, 0.0359552726149559, 0.005337723530828953, 0.01642175391316414, 0.024005047976970673, -0.020736386999487877, -0.012198643758893013, 0.0022406671196222305, -0.005027201026678085, -0.009511804208159447, -0.0028126828838139772, -0.01988653466105461, 0.016408678144216537, -0.014159840531647205, 0.0003052112297154963, 0.01583339460194111, 0.010943477973341942, -0.01855292171239853, 0.003311153734102845, -0.04560435935854912, -0.02208307571709156, -0.008812310174107552, -0.00513506680727005, -0.01944199576973915, 0.007903622463345528, -0.013545331545174122, -0.032242074608802795, 0.024384211748838425, 0.013911422342061996, 0.04670263081789017, -0.010747358202934265, 0.037811871618032455, 0.003201653715223074, -0.0023779510520398617, -0.0036216764710843563, 0.01723238080739975, -0.03072541579604149, 0.0029581384733319283, -0.020854057744145393, -0.020344147458672523, 0.02281525544822216, -0.007465621922165155, 0.019703488796949387, 0.0033095194958150387, 0.02516869083046913, 0.0028175858315080404, 0.033994074910879135, -0.026070840656757355, -0.0223837923258543, -0.011636434122920036, -0.03022857941687107, 0.006429456640034914, -0.028921114280819893, -0.0039648860692977905, 0.0029663098976016045, -0.019389698281884193, 0.01686629094183445, 0.0038635574746876955, 0.006592889782041311, -0.007884010672569275, -0.004491140600293875, 0.02729985862970352, 0.0028894965071231127, 0.030934609472751617, -0.0179645624011755, 0.03775957226753235, 0.00566785829141736, 0.0004420864279381931, -0.02860732190310955, -0.030934609472751617, -0.00321963126771152, -0.016827067360281944, 0.032686613500118256, 0.03205902874469757, 0.0007285028696060181, 0.007687890902161598, 0.001259251730516553, -0.007413323502987623, 0.010152461938560009, -0.024632630869746208, 0.002614928875118494, 0.014107541181147099, -0.0033438403625041246, -0.03015013039112091, -0.049683649092912674, 0.001941584749147296, 0.04761785641312599, -0.019481221213936806, 0.00898228120058775, -0.01060353685170412, -0.03412482142448425, -0.006890337914228439, 0.016094887629151344, -0.004889917094260454, 0.027247559279203415, 0.0025855109561234713, 0.0049520218744874, -0.0071256812661886215, 0.008400458842515945, -0.0006071538082323968, -0.015101214870810509, -0.021507790312170982, 0.010760432109236717, -0.027770545333623886, 0.020592564716935158, 0.006785740610212088, 0.007818637415766716, -0.008112817071378231, -0.0023158465046435595, -0.01493124384433031, 0.014486705884337425, -0.04097593575716019, 0.007818637415766716, 0.02259298600256443, 0.015741871669888496, 0.0025070630945265293, -0.018317576497793198, -0.027692098170518875, -0.025482483208179474, -0.004324438516050577, -0.0014112445060163736, 0.021233223378658295, -0.013388436287641525, -0.02544325776398182, -0.0009871356887742877, 0.021102476865053177, -0.012433987110853195, 0.004317901562899351, 0.01861829310655594, 0.006746516562998295, -0.015022766776382923, -0.014159840531647205, 0.02230534330010414, 0.0003119528410024941, 0.04314632713794708, -0.01797763630747795, -0.0058312914334237576, -0.01583339460194111, 0.011826016008853912, -0.019350474700331688, 0.038831695914268494, 0.02706451527774334, -0.00104924023617059, -0.027535201981663704, 0.02558708004653454, -0.011394552886486053, -0.0048082005232572556, 0.009198012761771679, -0.020344147458672523, -0.02407042123377323, 0.011512224562466145, 0.003935467917472124, -0.006929561495780945, 0.00029009368154220283, -0.0068511138670146465, 0.008439683355391026, 0.03221592307090759, -0.012074434198439121, -0.008635803125798702, -0.03022857941687107, 0.01702318713068962, 0.007727114949375391, 0.005229857750236988, 0.035379987210035324, -0.03028087690472603, 0.004961827769875526, 0.005690739024430513, -0.013479958288371563, 0.010747358202934265, -0.01870981603860855, -0.02265835925936699, -0.010498940013349056, 0.02685531973838806, -0.021167850121855736, 0.005216783378273249, -0.011656045913696289, -0.008746936917304993, -0.00680535240098834, 0.0048082005232572556, 0.010936940088868141, 0.02407042123377323, 0.004798394627869129, -0.0012085874332115054, 0.03284350782632828, 0.013257689774036407, -0.019389698281884193, -0.03603371977806091, -0.015166588127613068, -0.011159209534525871, -0.021455492824316025, -0.008426608517765999, 0.004523827228695154, 0.023220568895339966, 0.021730059757828712, -0.04121128097176552, -0.02876421809196472, -0.00821087695658207, -0.049108363687992096, -0.019912684336304665, -0.0033127882052212954, 0.028659621253609657, 0.03762882575392723, 0.012035210616886616, -0.0016539425123482943, 0.05454741790890694, 0.0015983752673491836, 0.011237656697630882, -0.03211132809519768, 0.024528034031391144, 0.007870935834944248, -0.027561351656913757, -0.0049912454560399055, -0.008152040652930737, -0.02038337104022503, -0.012244404293596745, 0.006445799954235554, -0.007929772138595581, 0.02654152922332287, 0.022579912096261978, 0.018735965713858604, -0.011100373230874538, 0.00550442561507225, -0.0013156360946595669, -9.305469575338066e-05, 0.011093836277723312, 0.014120616018772125, -0.03145759552717209, -0.0010051133576780558, 0.023743554949760437, 0.014421332627534866, -0.005216783378273249, -0.003781840903684497, 0.02112862654030323, -0.005403096787631512, -0.007092994637787342, -0.010936940088868141, -7.067203114274889e-06, 0.011871777474880219, -0.003713199170306325, 0.013767600990831852, 0.005144872702658176, 0.012492823414504528, 0.022762956097722054, 0.02252761274576187, -0.03841330483555794, 0.015728797763586044, 0.027456752955913544, -0.02661997638642788, -0.0005242115585133433, 0.011263806372880936, -0.021520864218473434, 0.022030776366591454, -0.012499360367655754, 0.009707923978567123, 0.007112606894224882, -0.0069426363334059715, -0.015075065195560455, 0.005723425652831793, -0.012165957130491734, -0.013689152896404266, -0.0029940935783088207, -0.03896244242787361, 0.018356801941990852, 0.006988397799432278, 0.0049847085028886795, 0.0013172704493626952, -0.0007906074170023203, -0.0020968462340533733, -0.036635152995586395, -0.04824543744325638, 0.02472415380179882, -0.011897926218807697, -0.02391352504491806, 0.00894959457218647, 0.012963510118424892, 0.01361070480197668, 0.004291751887649298, 0.21463336050510406, 0.024514958262443542, 0.0113749410957098, 0.03637365996837616, 0.008812310174107552, 0.014238287694752216, 0.014342885464429855, 0.0029548697639256716, 0.006308516021817923, 0.009707923978567123, -0.024632630869746208, 0.024881048128008842, 0.00023799939663149416, -0.0021229954436421394, 0.008380847051739693, 0.0011816209880635142, -0.04238799959421158, 0.009845207445323467, -0.031274549663066864, 0.035249240696430206, 0.017938412725925446, -0.012015598826110363, -0.0012584344949573278, -0.011760642752051353, 0.01342765986919403, -0.016853217035531998, 0.010328968986868858, 0.019350474700331688, 0.021547013893723488, 0.018317576497793198, -0.006030679680407047, 0.01121804490685463, -0.007053770590573549, -0.002132801339030266, -0.011414164677262306, -0.021442417055368423, 0.011388015933334827, -0.006184306927025318, -0.003399407723918557, 0.028110485523939133, 0.02412271872162819, 0.014905095100402832, 0.0006700755329802632, 0.001381826470606029, -0.0016980695072561502, 0.027482902631163597, -0.007655204273760319, 0.006177769508212805, 0.013401511125266552, 0.005638440605252981, -0.026933768764138222, 0.008439683355391026, 0.012185568921267986, 0.025430183857679367, -0.016748620197176933, 0.010832343250513077, 0.010956551879644394, 0.012375150807201862, -0.0017748830141499639, -0.005635171663016081, -0.007119143847376108, 0.008635803125798702, -0.012590882368385792, -0.0033127882052212954, -0.014369034208357334, -0.009367982856929302, -0.010126312263309956, 0.01825220324099064, -0.01107422448694706, -0.005635171663016081, 0.00607317266985774, 0.025064093992114067, -0.009819057770073414, 0.01678784377872944, -0.016670171171426773, -0.011629896238446236, 0.04225725308060646, 0.010551238432526588, 0.0223837923258543, 0.006994934752583504, 0.007903622463345528, 0.012780465185642242, -0.012335927225649357, -0.025103317573666573, -0.011394552886486053, -0.01466975174844265, 0.010211297310888767, -0.0007379002636298537, -0.001277229399420321, -0.004929141141474247, 0.013283839449286461, 0.00016731458890717477, 0.003546497318893671, -0.016591724008321762, -0.007583294063806534, 0.018579069525003433, -0.004268871620297432, -0.007648667320609093, -0.017650770023465157, -0.00209030881524086, -0.01330998819321394, 0.045865852385759354, 0.039197783917188644, -0.006612501572817564, 0.01085195504128933, -0.02084098383784294, -0.0036314825993031263, 0.006337934173643589, -0.005164484493434429, -0.03456936031579971, -0.0058312914334237576, 0.0021638537291437387, 0.01782074011862278, -0.003634751308709383, -0.006154888775199652, 0.002601854270324111, -0.01342765986919403, -0.016552500426769257, 0.010956551879644394, 0.00683803902938962, 0.007262965198606253, -0.031431443989276886, -0.006811889819800854, 0.01804300956428051, -0.02523406408727169, -0.0018958235159516335, 0.007145293522626162, -0.013179241679608822, -0.011479537934064865, -0.038099516183137894, 0.026005467399954796, -0.021377043798565865, -0.0006606781389564276, -0.02333824150264263, -0.00418061763048172, 0.01349303312599659, 0.019272025674581528, -0.02333824150264263, -0.027169112116098404, -0.0019268757896497846, -0.016748620197176933, 0.004262334201484919, 0.009152251295745373, 0.00876654963940382, 0.016343306750059128, -0.0036053331568837166, 0.021024027839303017, 0.009341833181679249, -0.004023721907287836, -0.024737227708101273, -0.028502725064754486, 0.005984918680042028, -0.01118535827845335, -0.007746726740151644, 0.016447903588414192, -0.022501463070511818, -0.02450188435614109, -0.009204549714922905, 0.009008429944515228, 0.02758749946951866, -0.06103244051337242, -0.018879786133766174, 0.02516869083046913, -0.014159840531647205, -0.011656045913696289, -0.03242512047290802, -0.16442672908306122, 0.01324461493641138, -0.014525930397212505, 0.0022275925148278475, 0.022187672555446625, -0.0014267705846577883, 0.0012617032043635845, 0.003209825372323394, -0.012113658711314201, -0.02076253667473793, 0.000931568443775177, 0.012800076976418495, -0.02243608981370926, 0.004062945954501629, 0.010472790338099003, 0.0007873387658037245, -0.032895807176828384, 0.029888637363910675, 0.030490070581436157, 0.015415006317198277, 0.03697509691119194, -0.013270764611661434, 0.004249259363859892, -0.035824526101350784, 0.014094467274844646, 0.012989659793674946, -0.027535201981663704, 0.017951486632227898, 0.0024204435758292675, -0.02561322972178459, -0.014434407465159893, -0.0013932668371126056, 0.019964981824159622, 0.011950225569307804, 0.010577387176454067, 0.007517920807003975, -0.012983121909201145, -0.008420071564614773, -0.013545331545174122, 0.035902973264455795, 0.030254727229475975, 0.0076029058545827866, 0.014957393519580364, 0.02714296244084835, 0.010662373155355453, 0.035693779587745667, 7.180839747888967e-05, -0.005157947540283203, 0.0005863161059096456, 0.012028672732412815, 0.04267564043402672, -0.04267564043402672, 0.01731082983314991, 0.0029107427690178156, -0.018461398780345917, 0.0067595914006233215, 0.006331396754831076, 0.010283208452165127, 0.007060308009386063, -0.041838862001895905, 0.012970047071576118, -0.023429762572050095, -0.005448858253657818, -0.015166588127613068, -0.00041328134830109775, -0.010512013919651508, 0.017114710062742233, 0.008223951794207096, -0.02588779665529728, 0.016251783818006516, 0.024175018072128296, -0.0212724469602108, -0.011649508029222488, 0.005867247004061937, -0.013911422342061996, 0.004912797827273607, -0.003280101576820016, 0.025417109951376915, 0.02941795065999031, 0.011747567914426327, 0.007936309091746807, 0.009446430951356888, -0.029365651309490204, 0.029078010469675064, -0.02412271872162819, 0.011616821400821209, 0.005654783919453621, 0.015545752830803394, 0.0042394534684717655, -0.006726904772222042, -0.010355118662118912, -0.026881469413638115, -0.005867247004061937, 0.0031542580109089613, -0.002067428082227707, 0.01151876151561737, 0.021154774352908134, 0.023312091827392578, -0.015140438452363014, 0.018905935809016228, 0.00515141012147069, 0.016552500426769257, -0.020867133513092995, 0.004726483952254057, 0.02289370261132717, 0.03279120847582817, 0.002830660669133067, 0.015663424506783485, 0.007838249206542969, -0.016225634142756462, -0.03352338820695877, 0.01680091768503189, 0.024266541004180908, 0.021808506920933723, -0.01104153785854578, 0.017637696117162704, -0.00453036418184638, -0.004857230465859175, -0.00704069621860981, 0.012630106881260872, 0.06066635251045227, -0.0016089985147118568, -0.018500622361898422, -0.020187251269817352, -0.01753309927880764, -0.009688311256468296, -0.11432469636201859, -0.020801760256290436, -0.007949383929371834, 0.008923444896936417, 0.01745465025305748, 0.006017605308443308, -0.02735215611755848, 0.035615332424640656, -0.01665709726512432, 0.03088231012225151, -0.0007329972577281296, -0.008021294139325619, -0.006661531515419483, -0.0062856352888047695, 0.01701011322438717, -0.0148527966812253, 0.004759170580655336, 0.0021703909151256084, -0.020736386999487877, 0.01914127916097641, 0.014251362532377243, -0.0024825481232255697, 0.010472790338099003, -0.03571992740035057, -0.027404455468058586, -0.015415006317198277, -0.029940936714410782, -9.811091149458662e-05, 0.0045140208676457405, 0.01783381588757038, 0.02076253667473793, -0.0023844882380217314, 0.028215082362294197, -0.010897716507315636, -0.005631903186440468, -0.002489085542038083, -0.01789918914437294, 0.014185989275574684, -0.006452337373048067, -0.020134951919317245, 0.005331186577677727, 0.006785740610212088, 0.008034368976950645, -0.017493873834609985, -0.002623100532218814, -0.009361445903778076, -0.004409424029290676, -0.0025691676419228315, -0.007164905313402414, -0.015336558222770691, -0.04348626732826233, -0.011819479055702686, -0.0017961292760446668, -0.011976374313235283, -0.0035236168187111616, -0.0008768183761276305, 0.0029761160258203745, 0.0036314825993031263, -0.026933768764138222, -0.02412271872162819, -0.012963510118424892, 0.004762439522892237, -0.04097593575716019, 0.04332937300205231, 0.026005467399954796, 0.02171698398888111, -0.0061058588325977325, -0.009008429944515228, -0.012682405300438404, -0.03132684901356697, -0.015022766776382923, 0.021586237475275993, -0.010178610682487488, 0.01463052723556757, -0.026672275736927986, 0.00949872937053442, -0.014892020262777805, -0.03028087690472603, 0.031719088554382324, 0.0016212558839470148, -0.012630106881260872, -0.030463922768831253, -0.006249680183827877, -0.0008061335538513958, 0.02580934949219227, 0.018735965713858604, -0.01408139243721962, -0.012767390348017216, 0.01570264808833599, -0.014499780721962452, 0.014892020262777805, 0.014957393519580364, 0.016094887629151344, -0.011303029954433441, -0.00209848047234118, -0.008086667396128178, -0.017650770023465157, -0.021756209433078766, 0.003389601595699787, 0.01788611337542534, 0.004138125106692314, 0.0023926598951220512, -0.045735105872154236, 0.00876001175493002, -0.001975905615836382, 0.013558406382799149, 0.01752002350986004, 0.005144872702658176, 0.0064621432684361935, -0.011204970069229603, -0.014787423424422741, 0.013081181794404984, -0.032006729394197464, 0.02119399979710579, -0.009413744322955608, -0.012891599908471107, -0.02325979247689247, -0.016683246940374374, 0.012440524064004421, 0.003468049457296729, -0.002557727275416255, 0.011139596812427044, 0.001565688755363226, -0.003484392771497369, 0.015362707898020744, 0.012734703719615936, -0.030254727229475975, 0.011688732542097569, -0.01229016575962305, 0.011616821400821209, -0.008282787166535854, -0.023285942152142525, 0.00024351525644306093, -0.007439472712576389, -0.002387756947427988, 0.048219289630651474, -0.013479958288371563, -0.02480260096490383, 0.01030282024294138, 0.03169293701648712, 0.022462239488959312, 0.008158578537404537, -0.016827067360281944, -0.04319862648844719, 0.029208756983280182, -0.0179645624011755, -0.009524879045784473, -0.017572322860360146, 0.0063706208020448685, -0.021089401096105576, 0.012858913280069828, 0.013819899410009384, 0.026070840656757355, 0.008374310098588467, -0.00027232032152824104, -0.02860732190310955, -0.0009299340890720487, -0.01929817534983158, 0.010832343250513077, -0.0042165727354586124, -0.003713199170306325, -0.006315053440630436, 0.0359552726149559, 0.013558406382799149, 0.014839721843600273, -0.000874366844072938, 0.01251243520528078, 0.010355118662118912, -0.01738927699625492, 0.004076020326465368, -0.007171442732214928, -0.008563891984522343, 0.023952748626470566, -0.007779413368552923, 0.013466884382069111, 0.004772245418280363, 0.01060353685170412, -0.016395604237914085, 0.008962668478488922, -0.004906260408461094, -0.007106069475412369, 0.02515561692416668, 0.017663845792412758, -0.010832343250513077, -0.0009266654378734529, 0.012486285530030727, 0.005020663607865572, 0.01008055079728365, 0.009694849140942097, -0.014277512207627296, -0.004497677553445101, -0.0033209598623216152, 0.013780675828456879, -0.009446430951356888, -0.009276460856199265, -0.005690739024430513, 0.017546173185110092, 0.003113399725407362, 0.0062823668122291565, 0.010400880128145218, -0.006422919221222401, 0.034961599856615067, 0.01591184176504612, -0.00042451737681403756, -0.02413579449057579, -0.030673116445541382, -0.01775536686182022, -0.005792067386209965, -0.019847311079502106, -0.01419906411319971, -0.011139596812427044, 0.018827488645911217, 0.010152461938560009, 0.02142934314906597, 0.013571481220424175, 0.009734072722494602, -0.007106069475412369, 0.013767600990831852, -0.009171863086521626, -0.009910580702126026, -0.015231961384415627, 0.03564148023724556, 0.004605543799698353, 0.009505266323685646, 0.012080972082912922, -0.033471088856458664, 0.02926105447113514, 0.03388947993516922, -0.010766969993710518, -0.00379491550847888, 0.0013311622897163033, 0.003092153463512659, -0.0037589604035019875, 0.004840887151658535, -0.002374682342633605, -0.012826226651668549, -0.016264857724308968, -0.019415847957134247, -0.017114710062742233, 0.027378305792808533, 0.02084098383784294, 0.06464104354381561, 0.0039452738128602505, -0.02493334747850895, 0.0322943739593029, 0.0010819268645718694, 0.024750301614403725, 0.004275409039109945, 0.01122458279132843, -0.005854172166436911, -0.013453809544444084, 0.0030905192252248526, 0.004801663104444742, 0.005857440643012524, 0.002069062553346157, -0.02265835925936699, 0.012754315510392189, 0.005399828311055899, -0.0005740586202591658, -0.0148527966812253, 0.007262965198606253, 0.006341202650219202, -0.007530995178967714, 0.0027669216506183147, -0.009400669485330582, -0.014499780721962452, -0.016186410561203957, 0.011054611764848232, 0.015964141115546227, -0.02120707370340824, -0.03286965563893318, 0.0038799007888883352, -0.01019822247326374, -0.030333176255226135, -0.015624199993908405, 0.0014145130990073085, -0.0009740610257722437, 0.00758983101695776, -0.011911001056432724, -0.0037295424845069647, -0.014225213788449764, -0.013872197829186916, 0.027012215927243233, -0.001701338100247085, -0.004752633161842823, 0.007857860997319221, -0.002977750264108181, 0.008969206362962723, -0.005014126189053059, -0.0010606806026771665]" +2,"It helps them align their spend with demand and mitigate risk around increasing energy costs and supply chain constraints. We're also seeing more customers turn to us to build and innovate with infrastructure they already have. With Azure Arc, organizations like Wells Fargo can run Azure services, including containerized applications across on-premises, edge, and multi-cloud environments. We now have more than 8,500 Arc customers, more than double the number a year ago.","[0.008895465172827244, -0.031935952603816986, 0.00646942900493741, 0.0021210680715739727, -0.023410562425851822, 0.010691005736589432, -0.02323237806558609, -0.020833754912018776, 0.0018863457953557372, -0.016721829771995544, 0.031634412705898285, 0.019929131492972374, -0.0015042793238535523, -0.0016619031084701419, -0.024013644084334373, 0.01562531664967537, 0.005835507530719042, -0.022999368607997894, -0.0023832034785300493, -0.01606392115354538, -0.03799419105052948, -0.016296930611133575, -0.004728714004158974, -0.006106209009885788, -0.03810384124517441, 0.013069069012999535, 0.0023660704027861357, -0.005273544229567051, 0.014994820579886436, -0.016269518062472343, 0.01722896657884121, -0.024740083143115044, -0.0002475721703376621, -0.00598627794533968, -0.015666436403989792, -0.0020422562956809998, 0.018078764900565147, -0.003041111398488283, 0.007051951717585325, -0.020381443202495575, 0.021258654072880745, 0.005064521450549364, 0.013370610773563385, -0.0014717265730723739, -0.029194669798016548, 0.010896601714193821, -0.009889180772006512, 0.006774397101253271, -0.01650252752006054, 0.007305520586669445, 0.028399698436260223, 0.0007230135379359126, -0.03596564009785652, 0.0019959970377385616, -0.004948016721755266, -0.010286666452884674, -0.028810890391469002, 0.02278006635606289, 0.02527463436126709, -0.02043626829981804, 7.624195131938905e-05, 0.01754421554505825, -0.01810617744922638, -0.0001444527879357338, -0.04720490425825119, -0.0072232820093631744, -0.004214723594486713, 0.01234262902289629, 0.004667035304009914, -0.006280966103076935, 0.038377970457077026, 0.021450543776154518, 0.015858326107263565, 0.015447133220732212, 0.012719555757939816, -0.009519106708467007, -0.01029352005571127, -0.017722398042678833, -0.012143885716795921, 0.023903992027044296, -0.00934092327952385, -0.018065057694911957, 0.003476290265098214, 0.012664729729294777, -0.005763548891991377, 0.007435731589794159, -0.0070862178690731525, 0.014597334899008274, -0.00635635107755661, 0.024342598393559456, 0.023849166929721832, 0.01942199468612671, 0.002146767685189843, 0.005677883513271809, 0.016571059823036194, 0.01489887572824955, 0.020079901441931725, 0.005797814577817917, 0.002489428035914898, -0.028399698436260223, -0.025219809263944626, 0.018448838964104652, -0.01986059918999672, -0.013432289473712444, -0.015419719740748405, -0.007922309450805187, -0.0013423722703009844, -0.0049891360104084015, 0.04353158175945282, 0.00044802852789871395, -0.015241536311805248, 0.0022564190439879894, 0.009594492614269257, -0.022094745188951492, -0.012966271489858627, -0.006805236451327801, 0.014062784612178802, -0.019764654338359833, 0.01540601346641779, 0.012363188900053501, 0.015282656066119671, 0.027138706296682358, 0.011650455184280872, 0.010896601714193821, 0.015447133220732212, 0.011225556023418903, -0.016872599720954895, -0.023163845762610435, 0.02176579087972641, -0.01278808806091547, 0.01154765672981739, -0.004283255431801081, 0.002909187227487564, -0.006291245575994253, -0.014967408031225204, 0.007332933600991964, -0.024164414033293724, 0.016612177714705467, -0.008443153463304043, -0.003961154725402594, -0.014405445195734501, -0.004153044428676367, -0.007339786738157272, -0.011705281212925911, -0.03475947678089142, 0.009464281611144543, 0.011664161458611488, 0.009854914620518684, 0.01205479446798563, -0.01321983989328146, 0.022108452394604683, -0.035115841776132584, 0.01725637912750244, 0.006825795862823725, -0.0016893160063773394, 0.0005002842517569661, -0.004276402294635773, 0.016105040907859802, -0.036294594407081604, 0.002715584123507142, -0.007038245443254709, 0.016461407765746117, -0.01183549128472805, -0.010711565613746643, -0.009066794998943806, 0.02075151726603508, -0.005975998006761074, 0.003981714136898518, 0.009066794998943806, 0.0005829510628245771, 0.022149570286273956, 0.018147297203540802, -0.02149166353046894, 0.009094208478927612, 0.010033098049461842, 0.022122157737612724, 0.00956707913428545, 0.0003803530998993665, -0.030921678990125656, -0.031332872807979584, 0.04122890532016754, -0.0009217566112056375, 0.0038926226552575827, 0.01001253817230463, 0.012274096719920635, -0.00098600541241467, 0.019517939537763596, 0.00434150779619813, 0.004526544362306595, -0.006664745509624481, -0.02236887440085411, 0.015844618901610374, -0.025918835774064064, -0.014994820579886436, -0.6399252414703369, -0.013843482360243797, -0.0015659582568332553, -0.025493936613202095, 0.009896033443510532, -0.0053420765325427055, 0.010231840424239635, 0.014227261766791344, -0.019367167726159096, 0.0008163885213434696, -0.018805205821990967, 0.021738378331065178, -0.02878347784280777, -0.015310068614780903, 0.005266691092401743, -0.006085649598389864, 0.013055362738668919, -0.004560810513794422, -5.040856194682419e-05, 0.0033392261248081923, -0.01367215160280466, 0.03097650408744812, -0.01827065460383892, -0.03081202693283558, 0.003803530940786004, 0.010985693894326687, 0.02061445266008377, -0.011150171048939228, -0.014706986024975777, -0.011506537906825542, -0.01811988465487957, 0.016420288011431694, -0.00868301559239626, -0.002177607035264373, 0.03708956763148308, -0.0007658461108803749, 0.0004835795552935451, 0.003745278576388955, -0.0017158722039312124, 0.03941965848207474, -0.02409588173031807, 0.004399760160595179, 0.02193026803433895, -0.0037761181592941284, 0.006370057817548513, 0.019750947132706642, 0.0041427649557590485, -0.012534518726170063, -0.010053656995296478, -0.014939995482563972, 0.012089060619473457, -0.009573932737112045, -0.021011939272284508, -0.020998232066631317, 0.02003878355026245, 0.009587639011442661, 0.0027053041849285364, -0.02748136781156063, 0.012767528183758259, 0.010643033310770988, -0.016118748113512993, 0.002109074965119362, -0.018366599455475807, -0.03125063329935074, -0.023314615711569786, 0.007723566610366106, -0.004999415948987007, -0.003061671042814851, 0.006003411021083593, -0.003930315375328064, 0.015255242586135864, 0.0010236981324851513, -0.006250126287341118, -0.00825811643153429, 0.024931974709033966, 0.014350619167089462, 0.019819479435682297, 0.004307241644710302, -0.022560764104127884, 0.008669309318065643, -0.011342060752213001, -0.029276907444000244, 0.01648882031440735, -0.01138317957520485, -0.018092472106218338, 0.01279494073241949, -0.01595427095890045, -0.035718925297260284, 0.012904591858386993, 0.005544246174395084, 0.033361420035362244, 0.0017938273958861828, -0.001836659968830645, -0.06677766889333725, 0.010910308919847012, 0.00030539612635038793, 0.0033820585813373327, 0.016105040907859802, 0.015666436403989792, -0.0217794980853796, 0.005941732320934534, -0.019394580274820328, 0.01648882031440735, -0.010505969636142254, 0.036897677928209305, 0.026809753850102425, 0.0019120452925562859, -0.005653897300362587, 0.027878854423761368, -0.0222318097949028, -0.007613915018737316, -0.007422025315463543, -0.030894266441464424, 0.005503126885741949, 0.01139688678085804, -0.018311774358153343, -0.005163893103599548, -0.012411161325871944, -0.02161502093076706, 0.004300388507544994, 0.017448270693421364, 0.010314079001545906, 0.0049822828732430935, -0.007737272884696722, -0.010567648336291313, -0.007175309583544731, 0.00456766365095973, -0.010279812850058079, 0.012890885584056377, -0.02643967978656292, -0.004519691225141287, -0.0025202676188200712, 0.02220439724624157, -0.002540827263146639, 0.026508212089538574, 0.01461104117333889, 2.4909808416850865e-05, -0.01489887572824955, 0.0232186708599329, -0.03621235489845276, -0.02993481606245041, 0.008950291201472282, 0.018352894112467766, -0.02001136913895607, -0.0055579524487257, -0.02250593714416027, -0.02353391982614994, 0.00471158092841506, -0.023739514872431755, -0.024438543245196342, -0.0005041391705162823, -0.016255810856819153, -0.029551036655902863, 0.016735536977648735, 0.0116847213357687, 0.02251964434981346, 0.0025682400446385145, -0.05403069779276848, -0.0009500260930508375, -0.03270351141691208, -0.01972353458404541, 0.011904023587703705, -0.01044429000467062, 0.005211865529417992, -0.0006887475028634071, -0.03404674306511879, -0.010231840424239635, 0.017640160396695137, -0.00310621690005064, -0.004242136143147945, 0.024013644084334373, -0.004780113231390715, 0.008566510863602161, 0.01754421554505825, -0.02456190064549446, 0.018448838964104652, -0.026206670328974724, 0.01562531664967537, 0.007661887444555759, -0.020216966047883034, 0.004468291997909546, 0.028591588139533997, 0.005756695289164782, -0.0014751532580703497, 0.02090228721499443, 0.01307592261582613, 0.022725241258740425, 0.025768065825104713, -0.01635175570845604, -0.003806957509368658, -0.01256878487765789, 0.03955672308802605, 0.0038583565037697554, 0.02206733264029026, -0.008237557485699654, -0.01578979380428791, -0.029249494895339012, 0.011664161458611488, 0.0033563589677214622, 0.0017629879293963313, 0.016146160662174225, -0.0011650455417111516, 0.011876611039042473, 0.020696690306067467, 0.021861735731363297, 0.00468074157834053, -0.0013937713811174035, -0.018750378862023354, 0.03226490691304207, 0.013247252441942692, 0.015556784346699715, -0.036870263516902924, -0.023890286684036255, -0.010327786207199097, -0.003373492043465376, 0.013206133618950844, 0.0026367721147835255, 0.01387774758040905, -0.027001643553376198, 0.0050336821004748344, 0.01226039044559002, -0.020408855751156807, 0.013685857877135277, 0.006219286937266588, 0.004204443655908108, -0.010999400168657303, 0.0015274089528247714, 0.027001643553376198, 0.006668172311037779, -0.007257548160851002, 0.01030037272721529, 0.02558988146483898, -0.012020528316497803, 0.02105305716395378, 0.01799652725458145, 0.004793819505721331, 0.024054763838648796, -0.017571628093719482, 0.014734399504959583, -0.00956707913428545, 0.02818039432168007, -0.008004548028111458, 0.032511621713638306, -0.004639622289687395, 0.03152476251125336, 0.0014888596488162875, 0.04133855551481247, 0.009046236053109169, -0.0010117049096152186, -0.0006544814677909017, -0.016310637816786766, 0.0015505384653806686, 0.0013440855545923114, 0.009601345285773277, -0.0015188424149528146, -0.01589944399893284, 0.010567648336291313, 0.0007761259330436587, 0.015159297734498978, 0.027412835508584976, 0.01228095032274723, 0.012507106177508831, 0.003047964535653591, -0.026535624638199806, 0.002177607035264373, -0.013336344622075558, 0.0033203796483576298, -0.016749242320656776, -0.010643033310770988, 0.013041656464338303, 0.007798951584845781, -0.0026299189776182175, 0.020655572414398193, -0.02016214095056057, 0.0017886875430122018, 0.03580116480588913, -0.012376895174384117, 0.018613316118717194, -0.016584765166044235, 0.017146728932857513, 0.010190721601247787, -0.02602848783135414, 0.013692711479961872, -0.006887475028634071, 0.006537961307913065, -0.022889718413352966, -0.013918867334723473, 0.01681777462363243, -0.014515096321702003, 0.0037932510022073984, 0.002095368690788746, 0.0067572640255093575, -0.02807074412703514, 0.0030188385862857103, 0.007675593718886375, -0.0013260958949103951, 0.03284057602286339, -0.018229534849524498, -0.00027391419280320406, -0.003363212337717414, 0.0021964535117149353, -0.019175278022885323, -0.0010322645539417863, 0.0127058494836092, 0.04342193156480789, 0.008854345418512821, -0.01395998615771532, -0.010643033310770988, -0.014295794069766998, -0.030071880668401718, 0.014844050630927086, -0.007833218201994896, 0.0016987391281872988, 0.01825694926083088, -0.006219286937266588, 0.006589360535144806, -0.0108897490426898, -0.02426035888493061, 0.017037076875567436, 0.03344365954399109, 0.014802930876612663, -0.02861900068819523, -0.03399191424250603, 0.010053656995296478, 0.07818140834569931, 0.010930867865681648, -0.013356904499232769, 0.007305520586669445, 0.01739344373345375, -0.018640728667378426, -0.010389464907348156, -0.019380874931812286, -0.004481998737901449, 0.00016169289301615208, 0.0015128458617255092, 0.013864041306078434, 0.021710965782403946, -0.016749242320656776, 0.017475683242082596, 0.039392244070768356, -0.009519106708467007, -0.015830911695957184, -0.00927239190787077, -0.007422025315463543, 0.018805205821990967, -0.014597334899008274, 0.015734966844320297, 0.03371778875589371, 0.033087290823459625, 0.017448270693421364, 0.02528834156692028, 0.01984689198434353, -0.017804637551307678, 0.007031392306089401, 0.010560794733464718, 0.001973724225535989, -0.0050542415119707584, 0.025946248322725296, -0.009087354876101017, 0.01751680113375187, -0.02894795499742031, 0.0020679556764662266, 0.010834923014044762, 0.013069069012999535, 0.022588176652789116, 0.0036082144360989332, 0.011300940997898579, -0.02892054058611393, -0.00431409478187561, -0.014844050630927086, -1.4121357708063442e-05, 0.019463112577795982, -0.012164445593953133, -0.002136487979441881, 0.017626453191041946, -0.02160131372511387, -0.061733704060316086, -0.013603619299829006, 0.008340355008840561, 0.013247252441942692, 0.0058594937436282635, 0.0030736641492694616, -0.018955975770950317, -0.034841712564229965, -0.033114705234766006, 0.016159866005182266, -0.008648749440908432, -0.009217565879225731, -0.003486569970846176, -0.006013690959662199, -0.0014434570912271738, -0.012157592922449112, -0.018147297203540802, -0.0009800088591873646, -0.0007161603425629437, -0.019243810325860977, -0.04161268472671509, 0.02194397523999214, 0.04320262745022774, 0.0028286620508879423, 0.003570521716028452, 0.003734998870640993, -0.006342644803225994, 0.008902318775653839, 0.009046236053109169, 0.008772107772529125, -0.010259253904223442, -0.030565312132239342, -0.018078764900565147, 0.0004981426172889769, -0.019051920622587204, -0.007620768155902624, -0.013548794202506542, 0.02146425098180771, -0.023917699232697487, -0.03393708914518356, 0.03399191424250603, 0.009690437465906143, 0.008696721866726875, 0.0046156360767781734, -0.0034625837579369545, 0.007709859870374203, -0.01824324205517769, -0.015337481163442135, -0.021423131227493286, 0.003423177869990468, -0.016269518062472343, -0.023862874135375023, 0.008354061283171177, -0.021409424021840096, 0.010691005736589432, -0.012027381919324398, -0.0044580125249922276, -0.010142749175429344, -0.008011401630938053, 0.0017304352950304747, 0.014706986024975777, -0.012767528183758259, -0.0075385295785963535, 0.008230703882873058, 0.016762949526309967, -0.016105040907859802, 0.00290576065890491, 0.017187848687171936, 0.008573364466428757, -0.019106745719909668, 0.02350650727748871, -0.005530539434403181, -0.012034234590828419, 0.013226693496108055, 0.04073547199368477, 0.0038446502294391394, -0.03530773147940636, 0.007250695023685694, -0.017626453191041946, 0.004231856670230627, 0.009244978427886963, 0.012479693628847599, -0.024726377800107002, -0.018311774358153343, 0.005677883513271809, -0.015858326107263565, -0.023054195567965508, -0.006781250238418579, -0.016694417223334312, 0.015159297734498978, 0.007607061881572008, -0.022588176652789116, 0.003174748970195651, -0.029852578416466713, -0.010533382184803486, -0.002869781106710434, 0.01241801492869854, 0.018654434010386467, -0.0070588053204119205, -0.01955905742943287, -0.006263833027333021, 0.009395749308168888, -0.009854914620518684, -0.013912013731896877, 0.0116847213357687, -0.012534518726170063, 0.036760613322257996, 0.015323774889111519, 0.03974861279129982, -0.003190168645232916, 0.014145023189485073, 0.006226140074431896, -0.019819479435682297, -0.01694113202393055, -0.01330207847058773, 0.016050215810537338, -0.006061663385480642, 0.008840639144182205, -0.006215860601514578, 0.010231840424239635, -0.005023402161896229, -0.011643601581454277, 0.0024842882994562387, 0.027796614915132523, -0.021286066621541977, -0.020367735996842384, -0.01853107661008835, -0.013466555625200272, -0.015803499147295952, 0.02365727722644806, -0.0025219807866960764, 0.002177607035264373, -0.0229171309620142, -0.004488851875066757, 0.01624210551381111, 0.007024539168924093, 0.023780634626746178, -0.00841574091464281, 0.025535056367516518, 0.012616757303476334, 0.0001698310807114467, -0.0023043914698064327, -0.00260935933329165, -0.008689869195222855, -0.0033563589677214622, -0.03231973201036453, -0.018202122300863266, 0.020408855751156807, 0.028015917167067528, -0.0038583565037697554, 0.0005508266622200608, -0.011485978029668331, 0.007936015725135803, 0.04100960120558739, -0.00833350233733654, -0.02193026803433895, 0.02308160811662674, -0.03229232132434845, 0.011355767026543617, -0.0391729436814785, -0.02441113069653511, -0.001903478754684329, -0.0048966179601848125, -0.0025014211423695087, 0.0012918298598378897, 0.0147481057792902, -0.008210144005715847, -0.010060510598123074, 0.01038261130452156, 0.008587070740759373, 0.037308868020772934, 0.004704727791249752, 0.03218266740441322, -0.0033974782563745975, 0.006370057817548513, -0.006424883380532265, -0.020573332905769348, -0.00943686906248331, -0.019367167726159096, 0.00635635107755661, 0.018969682976603508, -0.01014960277825594, -0.02120382897555828, -0.022464819252490997, -0.005629911087453365, 0.011862904764711857, -0.03377261385321617, 0.03750075772404671, 0.013850335031747818, -0.00348999653942883, -0.004389480222016573, -0.04089995101094246, -0.03026377037167549, 0.03999532759189606, -0.009450575336813927, 0.0012472840026021004, 0.006017117295414209, -0.01766757294535637, -0.008655603043735027, 0.005503126885741949, -0.0258640106767416, 0.03807642683386803, 0.00972470361739397, -0.001836659968830645, 0.009210712276399136, 0.015392307192087173, -0.011376326903700829, -0.016900012269616127, -0.0088474927470088, 0.028427110984921455, -0.008285529911518097, 0.04062582179903984, 0.01940828748047352, 0.012274096719920635, -0.005633337888866663, -0.005283824168145657, -0.003549962304532528, 0.027358010411262512, -0.017352323979139328, 0.0002576378174126148, -0.01103366632014513, 0.007922309450805187, 0.022725241258740425, -0.014405445195734501, -0.007099924609065056, 0.008374621160328388, -0.015611609444022179, 0.0007881190394982696, 0.027536192908883095, -0.026330027729272842, -0.001978863961994648, -0.03229232132434845, 0.01387774758040905, -0.014515096321702003, 0.007963428273797035, 0.0058286539278924465, 0.02309531345963478, -0.03245679661631584, -0.025754358619451523, 0.010608767159283161, -0.013089628890156746, -0.006671598646789789, 0.0021758938673883677, 0.005547672510147095, -0.016721829771995544, 0.013905161060392857, -0.022012507542967796, -0.006644186098128557, 0.013610472902655602, 0.018736673519015312, -0.03785712644457817, 0.0329776406288147, -0.012513959780335426, -0.012925151735544205, 0.0023883432149887085, 0.00788804329931736, -0.05008324980735779, -0.004834938794374466, 0.022163277491927147, -0.001681606168858707, -0.00356024201028049, 0.008155318908393383, 0.00297943246550858, 0.01869555376470089, -0.0029451665468513966, -0.0066407592967152596, -0.0008155318791978061, -0.008306088857352734, 0.0032090151216834784, -0.00833350233733654, 0.036130115389823914, -0.035718925297260284, 0.0023712103720754385, -0.004882911220192909, 0.021368306130170822, -0.010341492481529713, 0.0032227213960140944, -0.031332872807979584, 0.0029451665468513966, -0.002014843514189124, -0.0070793647319078445, -0.00228211865760386, 0.00936148315668106, 0.0009945719502866268, -0.010327786207199097, -0.0086213368922472, 0.017283793538808823, -0.0017509948229417205, 0.011129611171782017, -0.0015445419121533632, 0.020093608647584915, -0.009615052491426468, -0.014336912892758846, -0.015584196895360947, -0.04399760067462921, 0.0020782356150448322, -0.0307023748755455, 0.008573364466428757, -0.0027601299807429314, 0.006448869593441486, 0.007483704015612602, -0.04320262745022774, -0.016927426680922508, -0.008134759031236172, -0.0373636931180954, -0.007922309450805187, 0.007572795730084181, 0.032813165336847305, 0.036020465195178986, 0.03533514589071274, 0.01191772986203432, 0.02791997231543064, 0.015173004008829594, 0.033690374344587326, 0.0014520236290991306, 0.01781834289431572, 0.0012121612671762705, -0.03829573094844818, 0.002287258394062519, -0.012822354212403297, -0.03903587907552719, -0.004629342816770077, 0.007607061881572008, 0.0010399743914604187, 0.027083881199359894, 0.003906329162418842, 0.0058286539278924465, -0.004159897565841675, 0.0053626359440386295, -0.0032158682588487864, -0.013699564151465893, 0.002153620822355151, 0.02353391982614994, -0.03245679661631584, 0.0038549299351871014, 0.03366296365857124, -0.0036082144360989332, -0.0017244386253878474, 0.014542508870363235, 0.0049685765989124775, 0.0005208438960835338, 0.008922877721488476, -0.0192849300801754, 0.008525392040610313, -0.006599640008062124, -0.01781834289431572, 0.005280397366732359, -0.004146191291511059, 0.01870926097035408, 0.04051617160439491, 0.02398623153567314, 0.000702453893609345, 0.008580217137932777, -0.00017068773740902543, -0.01609133370220661, 0.0010022817878052592, 0.00825126376003027, -0.0086213368922472, 0.0166395902633667, -0.002205020049586892, 0.0006570513942278922, 0.00456766365095973, -0.0067435577511787415, -0.004697874654084444, 0.009752116166055202, -0.003442024113610387, 0.018613316118717194, -0.025768065825104713, -0.008292382583022118, 0.002336944220587611, -0.027947384864091873, -0.000462163268821314, 0.0007744125905446708, -0.01038261130452156, -0.008614483289420605, 0.009101061150431633, -0.015433426015079021, 0.01284976676106453, -0.009217565879225731, -0.027700670063495636, 0.015474545769393444, 0.012171299196779728, 0.02439742349088192, -0.004139338154345751, 0.21272359788417816, 0.024630432948470116, -0.0131581611931324, 0.014501390047371387, -0.003102790331467986, -0.005324943456798792, 0.007840070873498917, 0.01535118743777275, -0.013562500476837158, 0.017201554030179977, -0.018339186906814575, 0.033525899052619934, -0.0015042793238535523, -0.0030222651548683643, 0.004786966368556023, -0.025836598128080368, -0.04350417107343674, 0.012020528316497803, -0.014967408031225204, 0.0438605360686779, 0.03681543841958046, -0.0176949854940176, 0.00310621690005064, -0.015323774889111519, 0.02221810258924961, -0.005208438728004694, 0.021697258576750755, 0.004180457442998886, 0.03536255657672882, 0.0347868874669075, -0.017283793538808823, 0.0353899709880352, 0.002660758327692747, -0.0006266402779147029, 0.00675383722409606, -0.02513756975531578, 0.0034557306207716465, -0.0033135265111923218, 0.010855482891201973, 0.002554533537477255, -0.009327217005193233, 0.0014186142943799496, -0.006740130949765444, 0.010869189165532589, 0.0066784522496163845, 0.010752684436738491, -0.020244378596544266, -0.016735536977648735, 0.006095929071307182, 0.023903992027044296, -0.018229534849524498, 0.004139338154345751, 0.004290108568966389, 0.013747536577284336, 0.004101645667105913, 0.010183867998421192, 0.02251964434981346, -0.003669893369078636, 0.002018270082771778, 0.029139844700694084, 0.012459133751690388, 0.01899709552526474, -0.014268380589783192, 0.028002211824059486, -0.0400775671005249, 0.005760122090578079, -0.019038213416934013, 0.013336344622075558, 0.008443153463304043, 0.010773244313895702, -0.007250695023685694, 0.008751547895371914, -0.003282687161117792, 0.006359777878969908, 0.0017698411829769611, -0.01736603118479252, 0.051371652632951736, 0.007894896902143955, 0.009011969901621342, 0.03667837381362915, 0.027714377269148827, 0.009532813914120197, 0.019312342628836632, 0.001683319453150034, -0.016324343159794807, -0.035444796085357666, 0.011218703351914883, 0.0007791242096573114, -0.0005456867511384189, -0.007942869327962399, 0.0046019298024475574, 0.000494715990498662, -0.005119347013533115, -0.03566410019993782, -0.0062021538615226746, -0.008778960444033146, 0.008086786605417728, 0.006603066809475422, 2.575307371444069e-05, 0.004276402294635773, -0.03407415375113487, 0.0608016699552536, -0.013754390180110931, -0.015858326107263565, -0.035006191581487656, 0.008799520321190357, -0.0013415156863629818, 0.043175216764211655, 0.004296962171792984, -0.004362067673355341, 0.009779528714716434, -0.026645276695489883, -0.010704712010920048, -0.0001911402796395123, 0.006373484153300524, 0.015035940334200859, -0.010930867865681648, 0.0005019975360482931, 0.005205011926591396, 0.009512254036962986, -0.00011157880362588912, -0.046080976724624634, -0.008874905295670033, 0.009032528847455978, 0.0019994236063212156, -0.015748674049973488, -0.024013644084334373, -0.006010264158248901, -0.02364357002079487, -0.030318595468997955, 0.0053694890812039375, -0.005225571803748608, 0.004063952714204788, -0.01511817891150713, -0.022451112046837807, 0.02380804717540741, 0.002489428035914898, -0.012095913290977478, 0.0028200955130159855, -0.00023236661218106747, -0.02628890983760357, 0.003238141303882003, 0.024041056632995605, 0.020189553499221802, -0.005832080729305744, -0.00862818956375122, 0.019367167726159096, -0.002991425571963191, 0.004643049091100693, -0.02043626829981804, -0.0063323648646473885, 0.02760472521185875, -0.00958078633993864, 0.009169593453407288, 0.020066196098923683, -0.046245452016592026, -0.01709190383553505, -0.030291182920336723, 0.01637917011976242, 0.012308362871408463, -0.06787417829036713, 0.0034574437886476517, 0.031168393790721893, -0.025082744657993317, 0.0009971419349312782, -0.009334070608019829, -0.17522284388542175, 0.007141043432056904, -0.0066339061595499516, -0.01810617744922638, 0.05241334065794945, 0.014391738921403885, 0.0076344748958945274, -0.01955905742943287, -0.05438706651329994, 0.015967976301908493, 0.02424665354192257, -0.0053626359440386295, -0.007586502004414797, 0.0063186585903167725, -0.007435731589794159, 0.020271791145205498, -0.01576238125562668, 0.01987430639564991, -0.0006304951966740191, 0.02628890983760357, 0.03333400934934616, -0.012383748777210712, 0.00797028187662363, -0.018215829506516457, 0.018613316118717194, 0.013000537641346455, -0.040680646896362305, 0.01097198761999607, 0.018668141216039658, -0.022670414298772812, -0.013089628890156746, 0.0021878869738429785, 0.05274229496717453, 0.0006347784656099975, -0.013007390312850475, -0.01191772986203432, -0.0004989992594346404, -0.008587070740759373, -0.012075354345142841, 0.027111293748021126, 0.02119012176990509, -0.014885169453918934, 0.008216997608542442, 0.015268949791789055, -0.004718434531241655, 0.028399698436260223, 0.026398560032248497, -0.026220377534627914, -0.02323237806558609, -0.021409424021840096, 0.0031010769307613373, -0.017708690837025642, -0.021587608382105827, 0.013048510067164898, -0.013973692432045937, 0.02717982605099678, 0.00964931771159172, 0.007182162720710039, -0.0026264924090355635, -0.037171803414821625, 0.0019514511805027723, -0.00405709957703948, -0.010286666452884674, -0.022423699498176575, -0.018489956855773926, 0.002974292729049921, 0.009375189431011677, 0.007127337157726288, -0.02058704011142254, 0.021258654072880745, -0.009841208346188068, -0.015145591460168362, -0.02558988146483898, -0.010451143607497215, -0.006366631016135216, -0.009854914620518684, -0.005948585458099842, 0.04517635330557823, 0.0010374045232310891, 0.006791530176997185, -0.024644138291478157, 0.030154118314385414, -0.010773244313895702, -0.007353493012487888, -0.015255242586135864, 0.0006146471714600921, -0.011883464641869068, 0.011856051161885262, 0.003570521716028452, 0.005064521450549364, 0.025302046909928322, -0.022738946601748466, -0.020244378596544266, 0.014213555492460728, -0.012404307723045349, 0.020696690306067467, 0.03289540112018585, 0.0016062208451330662, 0.017324911430478096, -0.008744694292545319, 0.004810952581465244, 0.00416675116866827, -0.027385422959923744, 0.0027806893922388554, 0.02191656269133091, 0.017777223140001297, 0.004862351808696985, 0.01898338831961155, 0.006150755099952221, -0.025548763573169708, -0.02457560785114765, 0.019024508073925972, 0.036623548716306686, 0.0005606781342066824, 0.011355767026543617, 0.03097650408744812, 0.014350619167089462, 0.005198158789426088, -0.0104374373331666, 0.00496514979749918, 0.04320262745022774, 0.027810322120785713, -0.00934092327952385, -0.0008493695640936494, -0.0005092790815979242, -0.007415172178298235, -0.1092127338051796, -0.02834487147629261, -0.016447700560092926, 0.006161034572869539, -0.013541940599679947, -0.0058732000179588795, 0.0072301351465284824, 0.03437569737434387, -0.03273092582821846, 0.024959387257695198, -0.01052652858197689, -0.02394511178135872, -0.01840771920979023, -0.004872631281614304, 0.015419719740748405, -0.026343734934926033, -0.007339786738157272, 0.0030068454798310995, -0.013946279883384705, 0.025192396715283394, 0.026549331843852997, -0.01606392115354538, -0.010081070475280285, -0.018435131758451462, 0.00025699532125145197, 0.007024539168924093, -0.028262633830308914, 0.011390033178031445, 0.0035431089345365763, 0.025809183716773987, -0.00248257489874959, 0.002871494507417083, 0.025164982303977013, -0.015214123763144016, 0.009834354743361473, -0.015419719740748405, -0.010053656995296478, -0.016900012269616127, 0.005098787602037191, -0.02789255976676941, 0.002040542894974351, 0.017736105248332024, 0.010005684569478035, -0.0061953007243573666, -0.008463713340461254, -0.007134190294891596, -0.005030255299061537, 0.001269556931219995, -0.007483704015612602, -0.03305988013744354, -0.028152981773018837, -0.0029297468718141317, -0.014405445195734501, -0.0015068493084982038, 0.03651389852166176, 0.00919700600206852, 0.0005701013142243028, 0.026563037186861038, -0.009937153197824955, -0.009388895705342293, 0.012294656597077847, -0.004605356138199568, -0.009937153197824955, 0.020230673253536224, 0.017503095790743828, -0.00803196057677269, -0.017708690837025642, -0.018380306661128998, -0.014844050630927086, -0.0023866300471127033, -0.02353391982614994, 0.010177015326917171, 0.0007487130933441222, 0.01840771920979023, -0.02922208234667778, 0.0020799487829208374, -0.0018023939337581396, -0.011088492348790169, 0.0015299789374694228, -0.00934092327952385, -0.016118748113512993, -0.025343166664242744, 0.00649684201925993, -0.0376652367413044, 0.03179888799786568, 0.007613915018737316, -0.0072301351465284824, -0.0016670430777594447, 0.02807074412703514, -0.05416776239871979, 0.024753790348768234, 0.0003056102723348886, 0.006675025448203087, -0.026686394587159157, -0.0022564190439879894, 0.01766757294535637, -0.012541372328996658, -0.02719353325664997, 0.0021227814722806215, 0.029989641159772873, 0.002581946551799774, -0.0020645291078835726, -0.06622941046953201, 0.02627520263195038, 0.0025271207559853792, 0.014665867201983929, 0.014542508870363235, -0.018448838964104652, 0.011198143474757671, -0.015543078072369099, -0.004667035304009914, 0.005784108303487301, -0.020861167460680008, 0.009717850014567375, -0.003027405124157667, -0.01162304263561964, -0.01984689198434353, -0.02527463436126709, 0.025055332109332085, -0.008292382583022118, 0.015063352882862091, 0.0031987351831048727, 0.0035225492902100086, -0.007353493012487888, 0.0011967415921390057, 0.0015205556992441416, 0.005975998006761074, -0.0029040472581982613, -0.02002507634460926, 0.009532813914120197, -0.007586502004414797, -0.014145023189485073, 0.011362620629370213, -0.02894795499742031, -0.004101645667105913, 0.03782971203327179, -0.015090766362845898, -0.0038583565037697554, -0.0016773228999227285, 0.010204427875578403, 0.029989641159772873, -0.0031199234072118998, -0.025521349161863327, -0.02265670895576477, 0.04018721729516983, 0.007709859870374203, 0.0026864579413086176, -0.030044468119740486, 0.008237557485699654, 0.008525392040610313, 0.007175309583544731, 0.014309500344097614, 0.02250593714416027, 0.01927122287452221, -0.0129320053383708, -0.024507075548171997, -0.0011162164155393839, -0.029907403513789177, 0.006671598646789789, 0.007038245443254709, -0.010677299462258816, 0.008354061283171177, 0.03226490691304207, 0.011040519922971725, 0.002424322534352541, -0.014295794069766998, -0.004738993942737579, 0.00949854776263237, -0.006380337290465832, 0.012294656597077847, -0.0031764623709023, -0.02982516586780548, -0.012513959780335426, 0.00445458572357893, 0.013425435870885849, 0.003407758194953203, 0.011869757436215878, -0.004009127151221037, 0.007723566610366106, 0.014844050630927086, -0.0004111925372853875, 0.008888611570000648, 0.003810384077951312, -0.01683148182928562, -0.01284976676106453, 0.020984524860978127, 0.0015505384653806686, 0.008374621160328388, 0.0006544814677909017, -0.007319226861000061, -0.02807074412703514, -0.0005221288301981986, -0.015597903169691563, 0.0037178657948970795, -0.00825811643153429, -0.005544246174395084, -0.011924583464860916, 0.016009096056222916, 0.005085080862045288, 0.03215525671839714, 0.020203258842229843, 0.017037076875567436, 0.009594492614269257, 0.006801809649914503, -0.0030205517541617155, -0.020079901441931725, -0.0335807241499424, -0.007003979291766882, 0.006818942725658417, -0.02515127696096897, -0.018791498616337776, -0.005746415816247463, -0.0005581082077696919, 0.004410040099173784, 0.006236420013010502, -0.001956591149792075, -0.02484973520040512, 0.03051048517227173, -0.0062604062259197235, -0.02338314801454544, -0.026563037186861038, -0.0014434570912271738, 0.0329776406288147, 0.02395881898701191, 0.00620900746434927, 0.006774397101253271, 0.00239519658498466, 0.005914319306612015, -0.004701301455497742, 0.0023746369406580925, -0.003957727923989296, 0.009169593453407288, -0.001900052186101675, -0.011307794600725174, -0.02776920236647129, -0.01154080405831337, -0.029907403513789177, -0.015008527785539627, -0.008943437598645687, 0.029468799009919167, -0.010389464907348156, 0.08415740728378296, 0.025041624903678894, -0.022094745188951492, -0.012171299196779728, -0.009018822573125362, 0.04767091944813728, 0.013240399770438671, -0.011191289871931076, 0.018901150673627853, -0.031935952603816986, 0.017146728932857513, 0.004214723594486713, 0.008717281743884087, 9.401745774084702e-05, -0.007792098447680473, -0.006428309716284275, -0.003961154725402594, 0.008902318775653839, -0.01117758359760046, -0.009601345285773277, 0.01557049062103033, -0.00726440129801631, 0.01123926229774952, 0.003882342716678977, -0.030208945274353027, -0.02908501774072647, -0.0019120452925562859, 2.619478436827194e-05, -0.017612745985388756, -0.015693848952651024, -0.013857188634574413, -0.010231840424239635, -0.021286066621541977, -0.010279812850058079, 0.026055900380015373, 0.02264300175011158, -0.014186142012476921, -0.02935914695262909, 0.014652160927653313, 0.02205362543463707, -0.011595629155635834, 0.018955975770950317, -0.0009954285342246294, -0.024877147749066353, 0.028564173728227615, 0.013055362738668919, 0.008230703882873058, -0.02279377356171608, 0.005999984219670296]" +3,"We are the platform of choice for customers' SAP workloads in the cloud, companies like Thabani, Munich Re's, Sodexo, Volvo Cars, all run SAP on Azure. We are the only cloud provider with direct and secure access to Oracle databases running an Oracle Cloud infrastructure, making it possible for companies like FedEx, GE, and Marriott to use capabilities from both companies. And with Azure Confidential Computing, we're enabling companies in highly regulated industries, including RBC, to bring their most sensitive applications to the cloud. Just last week, UBS said it will move more than 50% of its applications to Azure.","[0.012019618414342403, -0.024120725691318512, 0.010878773406147957, -0.022667506709694862, -0.016324950382113457, 0.03063984028995037, -0.04017404839396477, -0.02443310059607029, 0.0065666502341628075, -0.03251408785581589, 0.02960764802992344, 0.005632922984659672, 0.02481338195502758, -0.004923290107399225, -0.01876961812376976, 0.0060471585020422935, 0.015944669023156166, -0.0050353375263512135, -6.52017624815926e-05, -0.02955332212150097, -0.026198694482445717, 0.004722963087260723, -0.012576459906995296, 0.018701711669564247, -0.029634810984134674, 0.027923543006181717, 0.019054830074310303, -0.011951711028814316, 0.00511003565043211, -0.021485917270183563, -0.0037077467422932386, -0.013459255918860435, -0.00938480906188488, 0.00644441694021225, 0.00096598343225196, 0.009289738722145557, -0.0014379402855411172, 0.0061863684095442295, -0.012440644204616547, 5.1699851610464975e-05, 0.0028113683219999075, 0.007680332288146019, -0.006227112840861082, 0.006138833239674568, 0.004695800133049488, -0.0029030435252934694, -0.0041525405831635, 0.005354502238333225, 0.001733337645418942, 0.00633916025981307, 0.024826962500810623, 0.013316650874912739, -0.03392656147480011, -0.01178194209933281, 0.0039046783931553364, -0.002789298538118601, -0.038218311965465546, 0.014953220263123512, 0.0036703976802527905, -0.0017282445915043354, 0.018579477444291115, 0.020589537918567657, -0.03786519169807434, 0.0036058854311704636, -0.027584005147218704, -0.022558854892849922, 0.0030999749433249235, -0.012664739042520523, 0.004923290107399225, -0.01496680174022913, 0.04009255766868591, 0.013921027071774006, 0.0005704225623048842, -0.0019913858268409967, 0.01828068494796753, -0.03042253665626049, -0.026728371158242226, -0.00776861235499382, -0.017723843455314636, 0.0014345449162647128, -0.006862047594040632, -0.027217306196689606, -0.023129276931285858, -0.011347334831953049, 0.013744467869400978, 0.00042208723607473075, -0.021974850445985794, 0.005785714834928513, 0.004997988231480122, 0.024256540462374687, 0.03563782945275307, 0.021214287728071213, -0.00245315651409328, 0.020046278834342957, 0.0016577906208112836, 0.020358653739094734, 0.01106212381273508, 0.012929578311741352, -0.0004571020253933966, -0.027814891189336777, -0.020304327830672264, 0.016813883557915688, -0.02971629984676838, -0.009534206241369247, -0.034062378108501434, 0.0011315079173073173, 0.02136368304491043, -0.022463783621788025, 0.03118310123682022, -0.01559155061841011, 0.0037688633892685175, 0.011564638465642929, -0.0012325202114880085, -0.007958753034472466, -0.004332495387643576, -0.007646378595381975, 0.009126760996878147, 0.010444165207445621, 0.0032086269930005074, -0.006967304274439812, 0.006033577024936676, 0.02594064548611641, 0.002707809442654252, 0.0021000378765165806, -0.004288355354219675, 0.002986229956150055, -0.00019756823894567788, -0.048513080924749374, 0.025655433535575867, -0.02421579696238041, 0.017248492687940598, -0.011123239994049072, -0.020562374964356422, 0.004753521643579006, -0.0056397137232124805, -0.012359155341982841, -0.018905432894825935, 0.006352741736918688, -0.012773390859365463, -0.017221329733729362, 0.005999623332172632, 0.010967052541673183, -0.024351611733436584, 0.002132294001057744, -0.010804074816405773, 0.009187878109514713, 0.011863430961966515, 0.00601320480927825, 0.017560865730047226, -0.014926057308912277, 0.0220563393086195, -0.01940794847905636, -0.011442405171692371, -0.003368209581822157, 0.012033199891448021, -0.014260563999414444, 0.0015313129406422377, 0.04020120948553085, -0.03791952133178711, -0.010695422999560833, -0.008692153729498386, 0.037838030606508255, -0.006960513535887003, -0.010525655001401901, 0.0031458125449717045, 0.008495221845805645, 0.003748491173610091, -0.012175805866718292, 0.010559608228504658, 0.004064260981976986, 0.011517103761434555, 0.015048290602862835, 0.005738179665058851, -0.0014039864763617516, 0.010552817955613136, 0.007211770862340927, 0.018307847902178764, 0.005310362670570612, -0.022939136251807213, -0.02329225465655327, 0.02352314069867134, 0.005160965956747532, 0.027312375605106354, 0.014355634339153767, -0.000983809120953083, 0.013146881945431232, 0.01507545355707407, 0.007272887974977493, 0.012542505748569965, -0.006345950998365879, -0.0017537098610773683, 0.014342052862048149, -0.004203470889478922, -0.024283703416585922, -0.6414809226989746, -0.004403797909617424, 0.015673039481043816, -0.03278571739792824, 0.009697183966636658, 0.019340042024850845, 0.027475353330373764, 0.0025855761487036943, -0.01590392366051674, 0.024473844096064568, -0.0019370600348338485, 0.033410463482141495, -0.001499905833043158, -0.020996984094381332, -0.00900452770292759, -0.006118461024016142, 0.01183626800775528, 0.0004842650087084621, 0.0220563393086195, -0.003385186428204179, -0.03360060602426529, 0.01855231449007988, -0.006396881770342588, -0.020250001922249794, 0.019448693841695786, 0.016637325286865234, 0.024623241275548935, -0.016908954828977585, -0.02659255638718605, 0.021445171907544136, -0.012345573864877224, 0.007795775309205055, 0.020562374964356422, -0.007313632406294346, 0.04321629926562309, 0.006233904045075178, -0.029797788709402084, 0.005476735532283783, 0.0037179328501224518, 0.01947585679590702, -0.005789109971374273, -0.005952087696641684, 0.014559357427060604, 0.025601107627153397, 0.007904427126049995, 0.004644869361072779, 0.004020120948553085, -0.011897385120391846, -0.011809105053544044, 0.002952276263386011, 0.012596831656992435, -0.02497635968029499, -0.006094693671911955, -0.014898894354701042, 0.009731137193739414, 0.0191499013453722, 0.025709759443998337, -0.03020523302257061, 0.002193410648033023, 0.01995120942592621, -0.00734758609905839, 0.013520373031497002, -0.020793261006474495, -0.05478772893548012, -0.027746982872486115, -0.002979439217597246, -0.007741449400782585, -0.00013623932318296283, 0.006505533587187529, 0.005673667415976524, 0.02211066521704197, 0.030829980969429016, 0.020236419513821602, -0.00026399019407108426, 0.021771127358078957, 0.008318662643432617, 0.021974850445985794, 0.0002351295406697318, -0.027638331055641174, 0.017778169363737106, -0.0017706867074593902, -0.02352314069867134, 0.009167505428195, -0.02297988161444664, -0.004902917891740799, 0.01545573491603136, -0.038272637873888016, -0.02007344178855419, 0.0007771158707328141, -0.011238683015108109, 0.04006539657711983, 0.02049446851015091, -0.019448693841695786, -0.04623139277100563, 0.01529275719076395, 0.005955483298748732, -0.026823442429304123, -0.01818561553955078, 0.0038130031898617744, -0.012936368584632874, 0.0019234784413129091, -0.006675302051007748, 0.006702465005218983, 0.02012776769697666, 0.028168009594082832, 0.02697283960878849, -0.005106640048325062, 0.012596831656992435, 0.029960766434669495, -0.023074951022863388, -0.0018436872633174062, -0.03623541444540024, -0.0015364059945568442, -0.004933475982397795, 0.0237811878323555, -0.02733953855931759, 0.013561117462813854, -0.007612424902617931, -0.019665997475385666, -0.002293574158102274, -0.0047704982571303844, 0.0031559986528009176, -0.0027570424135774374, -0.008868712931871414, -0.020195676013827324, 0.027529679238796234, 0.013391348533332348, -0.02174396440386772, 0.023441651836037636, -0.011877012439072132, -0.008929829113185406, -0.029037225991487503, 0.03398088738322258, 0.004828219767659903, 0.041233401745557785, -0.010376257821917534, 0.0095749506726861, -0.012325202114880085, 0.014084004797041416, -0.038001008331775665, -0.03490442782640457, 0.0006998711614869535, 0.003945422824472189, -0.010573189705610275, -0.009303320199251175, -0.01165291853249073, -0.023428069427609444, 0.020345071330666542, -0.014423541724681854, -0.01294315978884697, 0.01065467856824398, -0.008719316683709621, 0.004267983138561249, 0.02183903567492962, 0.007741449400782585, 0.005388455931097269, -0.0013488116674125195, -0.03857143223285675, -0.02363179251551628, -0.019326459616422653, 5.3450588893610984e-05, 0.022314388304948807, 0.0006531847757287323, -0.009547787718474865, 0.009357646107673645, -0.05084909871220589, -0.009350855834782124, 0.017397888004779816, -0.015414990484714508, -0.00279778684489429, 0.021852616220712662, -0.008814387023448944, 0.0058705988340079784, 0.041613683104515076, -0.005761947017163038, -0.013255533762276173, -0.014763079583644867, 0.012338783591985703, 0.04028270021080971, 0.0018674548482522368, 0.020535212010145187, 0.02606287971138954, -0.011965292505919933, -0.001181589555926621, 0.02200201340019703, -0.002312248572707176, 0.006247485522180796, 0.02092907577753067, 0.007055583875626326, -0.0023971330374479294, -0.02583199366927147, 0.015577969141304493, -0.0011705546639859676, 0.03979376330971718, -0.013404930010437965, -0.009079226292669773, -0.02200201340019703, 0.01973390392959118, -0.003198440885171294, -0.0041559357196092606, 0.015496480278670788, -0.0007049642154015601, 0.009411972016096115, 0.01146277692168951, 0.015061872079968452, -0.010287978686392307, -0.003412349382415414, -0.0034870475064963102, 0.03862575814127922, 0.022721832618117332, 0.012440644204616547, -0.04050000384449959, -0.02221931703388691, -0.027950705960392952, 0.0023971330374479294, 0.02379477024078369, 0.005928320344537497, -0.006471579894423485, -0.012101107276976109, 0.002147573046386242, 0.03436116874217987, -0.02011418715119362, 0.021078472957015038, -0.005344316363334656, 0.0064240447245538235, 0.008889084681868553, -1.71625470102299e-05, 0.028059357777237892, 0.0046516600996255875, -0.0054665496572852135, 0.00442417012527585, 0.014260563999414444, 0.004760312382131815, 0.005605760030448437, 0.003150905715301633, 0.005989436991512775, 0.01940794847905636, -0.02243662066757679, 0.020032698288559914, -0.01962525211274624, 0.014369215816259384, 0.0203314907848835, 0.02287122793495655, -0.01540140900760889, 0.020562374964356422, 0.0065700458362698555, 0.01957092620432377, 0.010525655001401901, -0.016202718019485474, 0.0159718319773674, -0.020345071330666542, 0.0036364439874887466, 0.013024648651480675, -0.0021832245402038097, 0.013649397529661655, -0.02174396440386772, 0.0017571052303537726, 0.02524798922240734, 0.010423793457448483, 0.00841373298317194, 0.005181338172405958, 0.00920145958662033, 0.005052314139902592, -0.019883301109075546, 0.003728118957951665, -0.005989436991512775, 0.011530685238540173, -0.0028045775834470987, -0.003711142111569643, 0.0009286343702115119, -0.005741574801504612, -0.005986041855067015, -0.005133803002536297, 0.01545573491603136, -0.0020643863826990128, 0.005028546787798405, -0.0208747498691082, 0.0046822186559438705, -0.011340543627738953, 0.008461267687380314, 7.528177229687572e-05, -0.03688732534646988, 0.007612424902617931, 0.017289236187934875, -0.004397007171064615, -0.012556087225675583, -0.010396630503237247, 0.004159331321716309, -0.029960766434669495, 0.010192908346652985, -0.01246101688593626, 0.020888330414891243, -0.026225857436656952, 0.001310613821260631, -0.0005933413631282747, 0.00644441694021225, 0.022572435438632965, 0.004831614904105663, 0.016963280737400055, -0.009554577991366386, 0.019503019750118256, -0.012012828141450882, -0.003531187307089567, -0.002862298861145973, 0.04435714706778526, -0.015496480278670788, -0.01925855316221714, -0.011612174101173878, -0.0046516600996255875, -0.037131793797016144, 0.01246101688593626, -0.008705735206604004, -0.012909205630421638, 0.011218310333788395, -0.016365695744752884, 0.011517103761434555, -0.022531691938638687, -0.00814889371395111, 0.020847586914896965, 0.013975352980196476, 0.002140782307833433, -0.03574648126959801, -0.017248492687940598, 0.015510061755776405, 0.07774044573307037, -0.00500138383358717, -0.022803321480751038, 0.0040778424590826035, 0.00043121230555698276, -0.019394367933273315, -0.00660739466547966, -0.02761116810142994, 0.022586017847061157, 0.004743335302919149, -0.018267104402184486, 0.0030388582963496447, 0.012542505748569965, -0.013921027071774006, 0.02508501149713993, 0.02228722535073757, -0.010213280096650124, 0.0043936120346188545, -0.012820926494896412, -0.001733337645418942, 0.004767103120684624, 0.025478875264525414, 0.021608149632811546, 0.01192454807460308, 0.045878272503614426, 0.010620725341141224, 0.014790242537856102, 0.034496985375881195, 0.007714285980910063, -0.017248492687940598, -0.0024412728380411863, 0.016379276290535927, -0.0196931604295969, 0.0188782699406147, 0.012427062727510929, 0.0007304294849745929, -0.04634004458785057, 0.017778169363737106, -0.014545775949954987, 0.014246982522308826, 0.006179577670991421, 0.01563229411840439, 0.01469517219811678, -0.014844568446278572, -0.010668260045349598, -0.01540140900760889, -0.009697183966636658, 0.02778772823512554, -0.013126510195434093, -0.02027716487646103, 0.02334658056497574, -0.018674548715353012, -0.024528170004487038, -0.012162224389612675, -0.00740191200748086, 0.01148994080722332, -0.008875503204762936, -0.005385060794651508, -0.015279175713658333, -0.0399295799434185, -0.03764788806438446, 0.0237811878323555, -0.01617555506527424, -0.017465796321630478, -0.021350102499127388, 0.0021832245402038097, -0.010559608228504658, -0.001146787079051137, -0.015306338667869568, 0.0005284048384055495, 0.01545573491603136, -0.024854125455021858, -0.05894366651773453, 0.02729879505932331, 0.048404429107904434, 0.008298289962112904, 0.0009320297394879162, 0.01563229411840439, -0.029417507350444794, 0.009887324646115303, 0.0008339883643202484, -0.010899145156145096, 0.0012673228047788143, -0.040581490844488144, -0.02054879441857338, -0.02939034439623356, -0.002953974064439535, -0.014016097411513329, -0.0030286721885204315, 0.009853370487689972, -0.004546403884887695, -0.025682596489787102, 0.03031388483941555, 0.002807972952723503, 0.016406439244747162, 0.012148642912507057, 0.014830986969172955, 0.00570422550663352, -0.009744718670845032, -0.016637325286865234, -0.002465040422976017, -0.006943536456674337, 0.005588782951235771, -0.03797384724020958, 0.026239437982439995, 0.005836645141243935, 0.007082746829837561, -0.02136368304491043, 0.02152666077017784, -0.037457749247550964, -0.004217052366584539, -0.011340543627738953, 0.008943410590291023, -0.01187022216618061, -0.013364185579121113, 0.014097586274147034, -0.0015686621190980077, 0.0150211276486516, 0.004733148962259293, 0.00852238480001688, 0.01963883452117443, -0.04481891542673111, 0.025152919813990593, -0.008013078942894936, -0.009731137193739414, 0.009459507651627064, 0.01507545355707407, -0.022694669663906097, -0.02944467030465603, 0.004658450838178396, -0.0029896253254264593, 0.017710262909531593, 0.005795900709927082, 0.0004150842723902315, -0.016922535374760628, -0.014165493659675121, 0.011130031198263168, 0.0020066651050001383, -0.016406439244747162, -0.01840291917324066, -0.01356790866702795, 0.009724346920847893, -0.009513833560049534, -0.007782193832099438, 0.0006362079293467104, -0.03096579760313034, -0.003928445745259523, 0.015944669023156166, 0.00793159008026123, 0.028086520731449127, -0.018104126676917076, -0.005480131134390831, -0.0015941273886710405, 0.004685613792389631, -0.006943536456674337, -0.0050862678326666355, 0.018919015303254128, -0.021078472957015038, 0.04218410700559616, 0.011449195444583893, 0.010104628279805183, -0.009255785495042801, 0.007972334511578083, 0.02287122793495655, -0.0033750003203749657, -0.0208747498691082, -0.0025312502402812243, -0.0010958564234897494, 0.004532822407782078, 0.0007779647130519152, -0.01699044369161129, 0.013601861894130707, -0.014980383217334747, 0.014084004797041416, -0.0011085891164839268, 0.026388835161924362, -0.015985414385795593, -0.02719014324247837, -0.028195172548294067, -0.029689136892557144, -0.026361672207713127, 0.008210010826587677, -0.004868964198976755, 0.008440895937383175, -0.020508049055933952, 0.007075956091284752, 0.04109758883714676, 0.010790493339300156, 0.02173038385808468, -0.02114637941122055, 0.026660464704036713, -0.00920145958662033, 0.016202718019485474, 0.009968813508749008, 0.005965669173747301, -0.029852114617824554, -0.006573440972715616, -0.025736922398209572, -0.0006977490265853703, 0.029363181442022324, 0.01613480970263481, -0.0196931604295969, -0.00020329792459961027, 0.004026911687105894, 0.007415493484586477, 0.03743058443069458, -0.022260062396526337, 7.660809205844998e-05, 0.005133803002536297, -0.03042253665626049, -0.011286217719316483, -0.01608048379421234, -0.021594569087028503, -0.02744819037616253, -0.02719014324247837, 0.00938480906188488, -0.013092556037008762, 0.012365946546196938, -0.013778421096503735, -0.010994216427206993, 0.020399397239089012, 0.010138582438230515, 0.03237827122211456, 0.012922787107527256, 0.029960766434669495, 0.010722585953772068, 0.010702214203774929, -0.015944669023156166, -0.026551812887191772, 0.009031690657138824, -0.0054631540551781654, 0.018864689394831657, 0.045280687510967255, 0.0037790494970977306, -0.02987927757203579, 0.013418511487543583, -0.014953220263123512, 0.01655583642423153, -0.010423793457448483, 0.01909557543694973, -0.0013123115058988333, -0.002607645932585001, -0.008067404851317406, -0.03813682496547699, -0.013812375254929066, 0.03935915604233742, -0.03210664168000221, 0.007429074961692095, -0.010668260045349598, -0.027760565280914307, 0.007245725020766258, -0.0037756541278213263, -0.0222328994423151, 0.029689136892557144, 0.0021509684156626463, -0.02011418715119362, -0.015374246053397655, 0.011686871759593487, -0.012861670926213264, -0.03544768691062927, -0.014287726953625679, 0.013615443371236324, 0.009676811285316944, 0.002960764802992344, 0.0027061118744313717, 0.02206992171704769, -0.00933048315346241, 0.004125377628952265, -0.028684105724096298, 0.01974748633801937, -0.005514084827154875, -0.006987676490098238, 0.0006786500453017652, 0.02390342205762863, 0.006315392907708883, 0.0005878238589502871, 0.00495045306161046, 0.010423793457448483, 0.006515719927847385, -0.023984910920262337, 0.02054879441857338, -0.01677314005792141, 0.0012528924271464348, -0.00992127787321806, 0.010783703066408634, -0.03080281801521778, 0.03224245831370354, 0.01022007130086422, -0.006203345488756895, -0.01947585679590702, -0.03533903509378433, 0.008780432865023613, -0.01480382401496172, 0.010838028974831104, -0.005018360447138548, 0.01823994144797325, -0.020793261006474495, 0.019068412482738495, -0.003269743639975786, 0.01189059391617775, 0.03172636032104492, 0.009697183966636658, -0.04039135202765465, 0.03327465057373047, -0.010254024527966976, 0.0005729690892621875, 0.008719316683709621, 0.002140782307833433, -0.01622988097369671, -0.012467808090150356, 0.023047788068652153, -0.015116197988390923, 0.016732394695281982, -0.008135312236845493, 0.017927566543221474, 0.0208747498691082, 0.005605760030448437, -0.010892354883253574, 0.008549547754228115, -0.0039046783931553364, -0.01650151051580906, -0.01512977946549654, 0.017506539821624756, -0.026348089799284935, 0.0038605383597314358, 0.003582117846235633, -0.007496982347220182, -0.01267153024673462, -0.02345523238182068, -0.02120070531964302, -0.004373239818960428, 0.009194668382406235, -0.0017214538529515266, -0.0011281125480309129, 0.009228622540831566, 0.006556464359164238, -0.0079859159886837, 0.00269083259627223, 0.009344064630568027, -0.011965292505919933, 0.009024900384247303, 0.0015932784881442785, 0.030504025518894196, 0.011917756870388985, -0.018375756219029427, -0.013486419804394245, -0.015577969141304493, -0.011102868244051933, -0.041233401745557785, 0.010362676344811916, -0.015985414385795593, 0.013180836103856564, 0.010641097091138363, -0.037240445613861084, -0.033084508031606674, -0.01111644972115755, -0.026660464704036713, -0.0034191401209682226, 0.0013802188914269209, 0.01591750606894493, 0.02448742650449276, 0.02044014260172844, 0.025845574215054512, 0.012719064950942993, 0.00024701334768906236, 0.029580485075712204, -0.013309859670698643, -0.003738305065780878, -0.011917756870388985, -0.03802817314863205, 0.014097586274147034, -0.00245315651409328, -0.049925558269023895, 0.00767354154959321, 0.022300805896520615, 0.004030307289212942, 0.01967957802116871, 0.00903848186135292, -0.007490191608667374, -0.010939889587461948, -0.002448063576593995, 0.00038664802559651434, -0.006227112840861082, 0.014885312877595425, 0.02971629984676838, -0.03840845450758934, 0.005578597076237202, 0.035148896276950836, 0.005082872696220875, 0.002672158181667328, -0.012386318296194077, 0.02054879441857338, 0.005415618885308504, 0.021771127358078957, -0.009663229808211327, 0.033682093024253845, 0.013337022624909878, -0.0061592054553329945, 0.007653169333934784, 0.00909280776977539, -0.0006752546760253608, 0.020358653739094734, -0.0015134873101487756, -0.012753019109368324, -0.0015279175713658333, 0.017669517546892166, 0.00071302818832919, 0.014274145476520061, 0.007211770862340927, -0.021431591361761093, 0.020100604742765427, -0.019272133708000183, 0.002427691360935569, 0.003437814535573125, -0.016352113336324692, -0.0013233463978394866, -0.006800930947065353, 0.00126392743550241, 0.006634557619690895, -0.008502013050019741, -0.01553722470998764, 0.001012669876217842, -0.013595071621239185, 0.0059928325936198235, 0.009642858058214188, 0.008366197347640991, 0.003052439773455262, -0.009045272134244442, -0.03167203441262245, 0.006132042501121759, -0.010532445274293423, -0.027325958013534546, -0.003332558088004589, -0.0036907698959112167, 0.01629778742790222, 0.007232143543660641, 0.21208854019641876, 0.02336016297340393, -0.009527415037155151, 0.0038299800362437963, -0.005982646252959967, 0.0038503522519022226, 0.0012622297508642077, 0.022586017847061157, -0.008189638145267963, 0.020535212010145187, -0.01570020243525505, 0.012712274678051472, 0.005823063664138317, -0.00469240453094244, 0.001787663553841412, -0.029037225991487503, -0.033220324665308, -0.010287978686392307, -0.012019618414342403, 0.01563229411840439, 0.009024900384247303, -0.008114940486848354, -0.002809670753777027, 0.004644869361072779, 0.011822686530649662, 0.015550806187093258, -0.004298541694879532, 0.005171152297407389, 0.0361267626285553, 0.021404428407549858, -0.0029217179398983717, 0.013350604102015495, -0.004831614904105663, -0.01688179187476635, 0.0036636069416999817, -0.027149397879838943, 0.012250503525137901, -0.012474598363041878, 0.010824447497725487, 0.00021878931147512048, -0.01807696372270584, 0.002381853759288788, 0.0018351988401263952, -0.0036160717718303204, -0.00478747533634305, 0.011883803643286228, -0.03178068622946739, -0.008569920435547829, -0.0006625220412388444, 0.0022969695273786783, -0.026945676654577255, 0.019177064299583435, 0.008692153729498386, 0.025872737169265747, 0.0195166002959013, 0.009045272134244442, 0.0017189072677865624, 0.007388330530375242, -0.013493210077285767, 0.004291750956326723, 0.003673793049529195, 0.016528673470020294, -0.01187022216618061, 0.014844568446278572, -0.027475353330373764, -0.004458123818039894, -0.033899396657943726, 0.03691449016332626, 0.021920524537563324, 0.014056841842830181, -0.010070675052702427, 0.003113556420430541, -0.006943536456674337, 0.01671881414949894, -0.01671881414949894, -0.009269366972148418, 0.026823442429304123, 0.0220563393086195, 0.005857017356902361, 0.026687627658247948, 0.015577969141304493, 0.01445070467889309, -0.020358653739094734, -0.0117072444409132, -0.008114940486848354, -0.03639839217066765, 0.021771127358078957, -0.005544643383473158, -0.012277666479349136, -0.00521868746727705, -0.0033172788098454475, -0.016678068786859512, -8.361104846699163e-05, -0.04367807134985924, 0.012107898481190205, 0.0035413734149187803, 0.011680081486701965, 0.009765091352164745, -0.0012562877964228392, 0.003945422824472189, -0.017886821180582047, 0.07285111397504807, 0.0006705860723741353, -0.005099849309772253, 0.0008717618766240776, 0.00591813400387764, 0.017710262909531593, 0.025152919813990593, -1.3362647223402746e-05, -0.01704476960003376, -0.024066399782896042, -0.010593562386929989, -0.00330369733273983, -0.0208747498691082, 0.010186117142438889, 0.017085514962673187, -0.012882042676210403, -0.025438129901885986, 0.03563782945275307, -0.003386883996427059, 0.005065895617008209, -0.02642957866191864, -0.0028860666789114475, 0.018362173810601234, -0.01840291917324066, -0.0017910589231178164, 0.00868536252528429, 0.009636066854000092, -0.03063984028995037, -0.0337635837495327, 0.010152163915336132, 0.009717555716633797, 0.003918259870260954, -0.016786720603704453, 0.00245315651409328, 0.01321478933095932, 0.013241952285170555, -0.014559357427060604, -0.014572938904166222, 0.017234910279512405, -0.012318410910665989, -0.0038469568826258183, -0.013975352980196476, 3.4218988730572164e-05, -0.014002515934407711, 0.0026755535509437323, 0.024446681141853333, -0.006848466116935015, -0.013500001281499863, -0.042374249547719955, -0.009215041063725948, -0.008583501912653446, -0.01087198220193386, -0.011741197668015957, 0.0324869230389595, -0.00784331001341343, -0.010050302371382713, -0.015564387664198875, 0.008264336735010147, 0.024568915367126465, -0.046204227954149246, -0.004346076864749193, 0.05166398733854294, -0.004587148316204548, -0.013262324966490269, -0.013167254626750946, -0.17340846359729767, 0.010579980909824371, -0.019543763250112534, -0.013662979006767273, 0.02702716551721096, 0.002465040422976017, 0.0037077467422932386, -0.0013428698293864727, -0.013384558260440826, -0.020372234284877777, 0.026198694482445717, 0.006379904691129923, -0.035040244460105896, -0.0006527603254653513, -0.008834758773446083, -0.002736670197919011, -0.032867204397916794, 0.009405181743204594, 0.04202112928032875, 0.014681590721011162, 0.02158098667860031, -0.006457998417317867, -0.0027689263224601746, -0.03580080717802048, 0.01507545355707407, -0.022151410579681396, -0.019815392792224884, 0.01534708309918642, 0.00559557368978858, -0.027950705960392952, 0.005884180311113596, 0.012474598363041878, 0.04799698665738106, 0.011089286766946316, -0.012331992387771606, -0.0030575329437851906, -0.02211066521704197, 0.0004324855690356344, -0.014179075136780739, 0.009941650554537773, 0.022477366030216217, -0.0019811997190117836, 0.005249246023595333, 0.015034709125757217, 0.024338029325008392, 0.028439639136195183, 0.02702716551721096, -0.012067154049873352, 0.003819793928414583, -0.015387827530503273, 0.03650704398751259, -0.01834859326481819, 0.01194491982460022, 0.013703723438084126, -0.005306967068463564, 0.014246982522308826, 0.00772786745801568, 0.003901283023878932, -0.007476610131561756, -0.023170022293925285, -0.003656816203147173, -0.022355131804943085, 0.009371227584779263, -0.009649648331105709, -0.0004732300294563174, -0.022463783621788025, 0.015944669023156166, 0.0036330486182123423, -0.022586017847061157, 0.014124749228358269, 0.010749748907983303, 0.012284457683563232, -0.006264462135732174, -0.003103370312601328, -0.01800905540585518, 0.012372736819088459, -0.03063984028995037, 0.027706239372491837, 0.008447686210274696, 0.0057823192328214645, -0.022137828171253204, 0.014532194472849369, -0.030286721885204315, 0.012060362845659256, -0.025207245722413063, 0.0011221705935895443, -0.008461267687380314, -0.007109909784048796, -0.034334007650613785, 0.0012486482737585902, 0.02723088674247265, -0.016515091061592102, -0.022314388304948807, 0.01054602675139904, 0.009052063338458538, 0.0023003648966550827, 0.01622988097369671, 0.013045021332800388, 0.00814210344105959, -0.0007754181860946119, 0.008603873662650585, 0.022735413163900375, -0.04055432975292206, 0.008671781048178673, 0.017031189054250717, 0.02546529285609722, 0.007802566047757864, 0.001696837367489934, 0.028629779815673828, 0.00171636079903692, -0.002490505576133728, 0.023170022293925285, 0.04025553539395332, 0.00884154997766018, -0.00597245991230011, 0.03753923624753952, 0.008454477414488792, -0.024935616180300713, 0.013907445594668388, 0.0010067279217764735, 0.05964990332722664, -0.0006141379708424211, 0.006512324325740337, 0.0008912852499634027, -0.0014498240780085325, -0.00795196183025837, -0.10876057296991348, -0.03446982055902481, 0.0016408137744292617, -0.0010058791376650333, -0.005789109971374273, -0.0022273643407970667, -0.001825012732297182, 0.03552917763590813, -0.01159859262406826, 0.016311369836330414, -0.007999497465789318, -0.04017404839396477, -0.012759809382259846, -0.0034174423199146986, 0.01731639914214611, -0.009248994290828705, -0.018959760665893555, 0.0009804137516766787, -0.017248492687940598, 0.012128270231187344, 0.0013598466757684946, -0.0010067279217764735, 0.01485814992338419, -0.024093562737107277, -0.013004276901483536, -0.023876259103417397, -0.030612677335739136, -0.009615695104002953, 0.01086519192904234, 0.020046278834342957, 0.0088483402505517, -0.020467305555939674, 0.018253521993756294, 0.010321931913495064, 0.011184357106685638, 0.016569416970014572, -0.020996984094381332, -0.0031186495907604694, 0.0055208755657076836, -0.010362676344811916, 0.014409960247576237, -1.4470122550847009e-05, 0.01564587652683258, -0.024894870817661285, -0.005137198604643345, -0.011293008923530579, -0.013364185579121113, 0.006960513535887003, 0.013527164235711098, -0.0008768549305386841, -0.004838405642658472, -0.015673039481043816, 0.007734658662229776, -0.0063323695212602615, 0.01768309995532036, 0.028439639136195183, 0.010776911862194538, 0.03278571739792824, -0.025288734585046768, -0.016895372420549393, 0.01060035265982151, -0.011374497786164284, -0.0052322689443826675, 0.02270825020968914, 0.0006400276906788349, 0.013445674441754818, -0.01833501085639, -0.024039236828684807, 0.00478747533634305, -0.0031627893913537264, -0.018783200532197952, -0.009934859350323677, -0.014600101858377457, 0.01474949810653925, -0.009724346920847893, 0.009364437311887741, -0.021866198629140854, -0.03944064676761627, 0.007245725020766258, 0.0014778358163312078, -0.015659457072615623, -0.024826962500810623, -0.009303320199251175, -0.02719014324247837, 0.006790745072066784, 0.026171531528234482, -0.0016552440356463194, -0.01773742586374283, 0.038001008331775665, -0.01709909550845623, 0.027095071971416473, 0.009187878109514713, 0.007157444953918457, -0.03452414646744728, -0.02016851305961609, 0.013506791554391384, -0.020834004506468773, -0.015442153438925743, 0.010125000961124897, 0.024501007050275803, 0.003086393466219306, -0.006508929189294577, -0.07165593653917313, 0.009391600266098976, 0.01608048379421234, 0.015985414385795593, 0.020684609189629555, -0.01758802868425846, -0.0037620726507157087, -0.008243964053690434, 0.0003304121783003211, 0.025003522634506226, -0.03819115087389946, 0.008861921727657318, 0.007911217398941517, 0.0053477114997804165, -0.033736418932676315, -0.012630785815417767, 0.03210664168000221, -0.011666500009596348, 0.026388835161924362, 0.00968360248953104, -0.011686871759593487, -0.021608149632811546, -0.005890971049666405, 0.016202718019485474, -0.003874120069667697, 0.01081765629351139, -0.019991952925920486, 0.027271632105112076, -0.01800905540585518, 0.0019031062256544828, 0.009805835783481598, -0.014477868564426899, -0.011055332608520985, 0.03259557485580444, -0.03840845450758934, -0.0112997991964221, -0.0024684357922524214, -0.007687123026698828, 0.033084508031606674, 0.013174044899642467, -0.028466802090406418, -0.03941348195075989, 0.030992960557341576, -0.042482901364564896, -0.013017858378589153, -0.001084821531549096, 0.008780432865023613, 0.008603873662650585, -0.003025276819244027, -0.010939889587461948, 0.0031627893913537264, 0.01978822983801365, -0.006427439860999584, -0.01984255574643612, 0.004312123171985149, -0.026198694482445717, -0.001298729912377894, 0.013669769279658794, -0.003050742205232382, -0.006627766881138086, 0.04710060730576515, 0.015550806187093258, 0.012427062727510929, 0.004515845328569412, 0.017167003825306892, 0.006142228841781616, -0.022789739072322845, 0.017343562096357346, -0.003925050608813763, -0.008617455139756203, -0.008257545530796051, -0.005371479317545891, 0.026837022975087166, 0.020956238731741905, -0.005385060794651508, -0.013690141960978508, 0.010967052541673183, 0.003422535490244627, -0.009153923951089382, 0.024093562737107277, -0.0007126037962734699, -0.022341551259160042, -0.025587527081370354, 0.04136921837925911, 0.005554829258471727, -0.006481765769422054, 0.0079859159886837, -0.006539487279951572, -0.003748491173610091, -0.010308350436389446, -0.014287726953625679, 0.0024888080079108477, -0.009710765443742275, -0.012393109500408173, -0.0017706867074593902, 0.01570020243525505, 0.024039236828684807, 0.00126392743550241, -0.01936720497906208, 0.031101612374186516, -0.001001634867861867, -0.0019370600348338485, 0.007048793137073517, -0.021187124773859978, -0.048295777291059494, 0.008671781048178673, -0.00370095600374043, -0.024419518187642097, -0.007795775309205055, 0.01367656048387289, 0.004257797263562679, 0.0214180089533329, 0.004722963087260723, 0.012705483473837376, -0.026932094246149063, 0.012854879721999168, -0.010213280096650124, -0.010593562386929989, -0.01278697233647108, 0.013337022624909878, -0.004821429029107094, 0.02000553533434868, 0.015577969141304493, -0.0029132296331226826, 0.011992455460131168, 0.0056125507690012455, -0.014016097411513329, -0.011720825918018818, 0.007829728536307812, -0.007592052686959505, -0.01119114737957716, -0.004380030557513237, 0.00809456780552864, -0.0196931604295969, -0.035148896276950836, 0.0021832245402038097, -0.00835940707474947, 0.01100779790431261, 0.02728521265089512, 0.07290543615818024, 0.01802263781428337, -0.027543261647224426, 0.003004904603585601, -0.010688632726669312, 0.00617618253454566, 0.0058977617882192135, 0.02325151115655899, 0.02421579696238041, -0.027325958013534546, 0.0008030055905692279, 0.016433602198958397, 0.005833250004798174, -0.0017554075457155704, -0.009649648331105709, 0.015496480278670788, -0.0012163921492174268, -0.0043902164325118065, -0.01229803916066885, -0.008114940486848354, 0.009982394985854626, 0.015102616511285305, 0.00675679137930274, -0.0017706867074593902, -0.007687123026698828, 0.003096579574048519, 0.023645373061299324, 0.005391851533204317, -0.026307346299290657, -0.02383551374077797, 0.0064206491224467754, -0.029471833258867264, -0.01644718460738659, -0.00922183133661747, 0.0033019997645169497, -0.008223592303693295, 0.0001058401248883456, -0.020358653739094734, 0.016039740294218063, 0.010695422999560833, 0.0007435865700244904, 0.02621227502822876, -0.013364185579121113, -0.028140846639871597, 0.020154930651187897, -0.024731893092393875, 0.0012698692735284567, -0.01790040358901024, 0.015319920144975185]" +4,"Now to data and AI. With our Microsoft Intelligent Data Platform, we provide a complete data fabric, helping customers cut integration tax associated with bringing together siloed solutions. Customers like Mercedes-Benz are standardizing on our data stack to process and govern massive amounts of data. Cosmos DB is the go-to database powering the world's most demanding workloads at limitless scale.","[-0.004754434805363417, 0.0038801338523626328, -0.013880373910069466, -0.03773726895451546, -0.027530312538146973, 0.028519831597805023, -0.031529054045677185, -0.007800932973623276, 0.011657346040010452, -0.02534794993698597, 0.01522232498973608, 0.024670196697115898, 0.00017123844008892775, -0.004374893382191658, -0.013453390449285507, 0.023640012368559837, 0.019288839772343636, 0.009746083058416843, 0.0005887976149097085, -0.010905040428042412, -0.002960084704682231, -0.02218962274491787, 0.008736231364309788, 0.01890929974615574, -0.02105099707841873, 0.006543701980262995, 0.02258271910250187, -0.02736765146255493, 0.020129254087805748, -0.02511751279234886, 0.023477351292967796, -0.019397281110286713, -0.0008980222628451884, 0.00045621226308867335, -0.0007150290766730905, 0.010437390767037868, 0.014056590385735035, 0.010247619822621346, 0.006201436743140221, -0.007692492567002773, 0.013975259847939014, 0.010776267386972904, -0.004012295510619879, -0.01518165972083807, -0.019058404490351677, 0.02105099707841873, -0.008329580537974834, -0.009807080961763859, 0.0017774063162505627, -0.027042331174016, 0.01938372664153576, 0.05156342312693596, -0.020712120458483696, -0.009352986700832844, 0.005106866359710693, -0.0030871634371578693, -0.011494684964418411, 0.019600607454776764, 0.015276544727385044, 0.008119476959109306, 0.01626606285572052, 0.01595429703593254, -0.004574830178171396, -0.0012030109064653516, -0.051617641001939774, -0.01228087767958641, -0.021023888140916824, 0.019925927743315697, 0.014869892969727516, 0.0211187731474638, 0.041207361966371536, 0.029739785939455032, -0.02029191516339779, 0.0077602677047252655, -0.0013631300535053015, -0.005767675116658211, 0.001556289498694241, 0.002317914040759206, -0.014503906480967999, -0.0012911187950521708, 0.0025449611712247133, -0.013114513829350471, -0.004798488691449165, -0.004283396992832422, 0.024778636172413826, 0.024629531428217888, -0.032667677849531174, 0.016835376620292664, 0.01977682299911976, -5.5696177696518134e-06, 0.016008516773581505, 0.007536609657108784, 0.008004258386790752, 0.004835765343159437, -0.011149031110107899, 0.020047923550009727, 0.013331394642591476, 0.030553089454770088, -0.020508795976638794, -0.036110661923885345, -0.0017248805379495025, -0.022908039391040802, -0.03461960703134537, -0.0118471160531044, -0.0062522683292627335, 0.001631689490750432, 0.010254397988319397, 0.005750731099396944, 0.03846924006938934, 0.007909373380243778, 0.007326506078243256, 0.021227212622761726, 0.01634739339351654, -0.022487832233309746, -0.012301210314035416, 0.0103628383949399, 0.01093892753124237, -0.014354800805449486, -0.021389873698353767, -0.01269430760294199, -0.0007929705898277462, 0.02763875387609005, 0.01651005446910858, 0.0051271989941596985, 0.001665577176027, -0.013290729373693466, 0.008207584731280804, -0.027354096993803978, 0.021498315036296844, -0.012545201927423477, 0.029387354850769043, 0.01725558191537857, -0.009407206438481808, 0.0011767480755224824, -0.006360708735883236, 0.006350542418658733, -0.028926482424139977, 0.011399799957871437, -0.012545201927423477, -0.026147697120904922, 0.002993972273543477, 0.011718343012034893, -0.012199548073112965, -0.013155179098248482, -0.016062738373875618, 0.010376392863690853, -0.006055720150470734, 0.014503906480967999, 0.008383800275623798, 0.001017476199194789, 0.01748601906001568, -0.018963519483804703, -0.013433057814836502, 0.0051407539285719395, 0.002931280294433236, -0.0036259766202419996, 0.004249508958309889, 0.010986370034515858, -0.0016681187553331256, 0.001326700788922608, 0.02321980521082878, 0.025022627785801888, -0.011393021792173386, -0.027055885642766953, 0.025768155232071877, 0.020996777340769768, -0.01686248555779457, -0.007787378039211035, -0.0029228082858026028, -0.005225473083555698, 0.010647494345903397, 0.041559793055057526, -0.03272189944982529, 0.021308543160557747, 0.001714714220725, 0.020034369081258774, 0.01748601906001568, 0.02198629640042782, -0.021742304787039757, -0.021471204236149788, 0.03285744786262512, 0.0034531496930867434, 0.01773000881075859, 0.02187785506248474, -0.0009234379976987839, -0.01725558191537857, 0.010105292312800884, 0.008736231364309788, 0.018367096781730652, -0.019709046930074692, 0.006269211880862713, 0.024385539814829826, -0.004957760684192181, -0.024182215332984924, -0.6376296877861023, -0.0023958557285368443, 0.022555608302354813, -0.040448278188705444, -0.006553868297487497, 0.011596348136663437, 0.004547720309346914, -0.0022755544632673264, 0.0302006583660841, 0.002265388146042824, -0.0011843728134408593, 0.0006074358243495226, -0.0213220976293087, -0.011955556459724903, -0.02452109009027481, -0.012660419568419456, 0.033264100551605225, -0.005984555929899216, -0.0025127679109573364, 0.003466704860329628, -0.02431776560842991, 0.004801877774298191, -0.014598792418837547, -0.013893929310142994, -0.009617310017347336, -0.0018434872617945075, 0.024588866159319878, 0.016089847311377525, -0.006072663702070713, 0.015317209996283054, -0.022474277764558792, 0.009183548390865326, 0.011067700572311878, -0.0004204184515401721, 0.04725291579961777, -0.0015486647607758641, -0.0029160308185964823, 0.015656085684895515, -0.0015673029702156782, 0.023355355486273766, -0.009380096569657326, -0.01725558191537857, 0.029522905126214027, 0.0179604459553957, -0.008471908047795296, 0.005804951302707195, 0.028845153748989105, -0.024019554257392883, -0.013256842270493507, 0.003602255368605256, 0.008282137103378773, -0.007916150614619255, 0.01466656755656004, 0.005262749269604683, -0.0013004379579797387, -4.977246135240421e-05, 0.03432139381766319, -0.004513832740485668, 0.01847553811967373, -0.008139809593558311, 0.00841091014444828, -0.008675234392285347, -0.0351346991956234, -0.03285744786262512, -0.036300431936979294, 0.005133976228535175, -0.003110884688794613, 0.005503351334482431, 0.015235879458487034, -0.0072926185093820095, 0.025334393605589867, 0.01800111122429371, 0.012823080644011497, -0.01097959280014038, 0.015940742567181587, 0.023897558450698853, 0.03893011063337326, 0.007035072427242994, -0.020834116265177727, 0.009535979479551315, 0.014341246336698532, -0.016442280262708664, -0.009088663384318352, -0.02716432698071003, -0.0019925928208976984, 0.01977682299911976, -0.012429983355104923, -0.04315928742289543, 0.0026686510536819696, -0.008322802372276783, 0.03207125514745712, 0.014300581067800522, -0.010471278801560402, -0.051265209913253784, 0.019004184752702713, 0.020617235451936722, -0.011582792736589909, -0.01561542134732008, -0.015506980940699577, 0.0010276425164192915, -0.006150605157017708, -0.012938298285007477, 0.010844042524695396, 0.01348050031810999, 0.026405243203043938, 0.006980852223932743, -0.004069904796779156, 0.023084254935383797, 0.017797784879803658, -0.02602570131421089, -0.012118217535316944, -0.00458160787820816, -0.025171734392642975, 0.014056590385735035, 0.0025331005454063416, -0.013819376938045025, 0.006377652287483215, -0.009346209466457367, -0.0238840039819479, -0.004900151863694191, -0.008234694600105286, -0.003448066534474492, 0.007367171347141266, -0.012660419568419456, -0.010417058132588863, 0.0014283637283369899, 0.016998035833239555, -0.0008535447414033115, -0.012213102541863918, 0.005066201090812683, -0.0012309682788327336, -0.03123084269464016, -0.008295692503452301, -0.009325876832008362, 0.036463093012571335, -0.0018214602023363113, 0.017201362177729607, -0.027706528082489967, -0.009502092376351357, -0.0033209880348294973, -0.025835931301116943, 0.004995036870241165, -0.005239028017967939, 0.009264878928661346, -0.02613414265215397, -0.03440272435545921, -0.03676130250096321, 0.005716843530535698, 0.002977028489112854, -0.024236435070633888, 0.002390772569924593, -0.01431413646787405, -0.009251323528587818, 0.015805192291736603, 0.0013029794208705425, -0.01097959280014038, -0.0048662638291716576, -0.027530312538146973, -0.004361338447779417, -0.034050293266773224, -0.0050695897080004215, 0.008011036552488804, -0.0073061734437942505, 0.00386996753513813, -0.00713673559948802, -0.05899159237742424, -0.015073219314217567, 0.022325173020362854, -0.021864300593733788, -0.011711565777659416, 0.0031227453146129847, -0.018611088395118713, 0.00033125162008218467, 0.019600607454776764, -0.006564034614712, -0.014395466074347496, -0.03190859407186508, 0.001537651289254427, 0.03600222244858742, -0.007360393647104502, 0.016157623380422592, 0.018136661499738693, -0.006869023200124502, -0.014558127149939537, 0.04058383032679558, 0.005100088659673929, 0.01773000881075859, 0.008831117302179337, -0.018150215968489647, -0.014070144854485989, 0.0086887888610363, 0.03806258738040924, -0.02565971575677395, 0.010783044621348381, -0.02167453058063984, -0.004178345203399658, -0.009996851906180382, -0.014259915798902512, 0.006835135631263256, -0.0008963278960436583, 0.019126180559396744, 0.010179844684898853, 0.017662234604358673, 0.01217921543866396, -0.001179289654828608, -0.010444168001413345, -0.013494055718183517, -0.01867886260151863, 0.011792896315455437, 0.0061539942398667336, 0.020237693563103676, -0.009488536976277828, -0.019871708005666733, -0.003981797024607658, 0.03383341059088707, 0.03494492545723915, -0.003300655400380492, -0.010457723401486874, -0.03293877840042114, 0.006994407158344984, 0.016686270013451576, 0.002375523094087839, 0.011555682867765427, -0.006282767280936241, -0.002106116386130452, 0.010735602118074894, 0.01275530457496643, 0.0371137335896492, 0.040610939264297485, -0.017201362177729607, 0.022420058026909828, 0.0035785341169685125, 0.0010242536664009094, -0.0020129254553467035, 0.01800111122429371, -0.002289109630510211, 0.0086887888610363, -0.008417688310146332, 0.026649234816432, -0.018977073952555656, 0.002216251101344824, 0.006804636679589748, 0.01505966391414404, -0.017323357984423637, 0.011027035303413868, -0.0017274221172556281, 0.02827583998441696, 0.02503618225455284, -0.02195918560028076, -0.00845157541334629, -0.051617641001939774, -0.01257231179624796, -0.013548275455832481, -0.02439909614622593, 0.015018998645246029, -0.027340542525053024, -0.00541863264515996, 0.01213855016976595, 0.022718269377946854, 0.01674048975110054, 0.005666011944413185, 0.011379467323422432, 0.011528572998940945, -0.0032210194040089846, 0.009027665480971336, -0.012775637209415436, 0.005411854945123196, -0.0020586736500263214, -0.02507684752345085, -0.003217630786821246, 0.023911112919449806, -0.03537868708372116, 0.02266404777765274, -0.04603296145796776, 0.005584681872278452, 0.000526529096532613, -0.0029617790132761, 0.011975889094173908, -0.009820636361837387, 0.011203251779079437, 0.019370170310139656, -0.04253575578331947, -0.007251953240483999, 0.010932150296866894, 0.007346838712692261, -0.006638587452471256, -0.016293173655867577, 0.01962771639227867, -0.0013233120553195477, 0.0005900684045627713, -0.007678937632590532, 0.038442131131887436, 0.00012114828859921545, 0.004713769536465406, 0.0026161251589655876, 0.005781230051070452, 0.04158690199255943, -0.00116997049190104, 0.015357875265181065, -0.012836635112762451, 0.017120031639933586, 0.002607653383165598, 0.002914336510002613, -0.01547987014055252, 0.04006873816251755, 0.0006197200855240226, -0.0233011357486248, 0.012436761520802975, 0.012741750106215477, -0.041559793055057526, 0.0031532442662864923, -0.004964538384228945, -0.03348097950220108, 0.013006073422729969, -0.000781957118306309, -0.0057981740683317184, -0.004520609974861145, -0.005049257073551416, 0.019803931936621666, 0.01791978068649769, -0.00752983195707202, -0.02206762693822384, 0.012036886997520924, -0.007787378039211035, 0.056280579417943954, -0.019641272723674774, -0.027977628633379936, 0.020319024100899696, 5.490855619427748e-05, 0.002690677996724844, -0.021538978442549706, -0.025849485769867897, 0.0021959186997264624, 0.008085588924586773, -0.023382466286420822, 0.015032554045319557, 0.019681936129927635, -0.0002744898374658078, -0.005011980887502432, 0.013643160462379456, -0.002609347691759467, -0.0355413481593132, -0.02115943841636181, -0.0012080940650776029, -0.024195769801735878, 0.00042338360799476504, 0.0209290012717247, 0.017987554892897606, 0.03808970004320145, 0.013385615311563015, 0.004578219261020422, 0.030824190005660057, 0.0038259136490523815, -0.037330616265535355, 0.0036124216858297586, 0.017201362177729607, 0.0015461231814697385, 0.018068885430693626, 0.0024297432973980904, 0.019099069759249687, -0.014991888776421547, 0.01843487285077572, -0.0035548126325011253, 0.014341246336698532, 0.0035717564169317484, 0.0033396261278539896, -0.0018231546273455024, -0.027096550911664963, -0.024629531428217888, -0.007258730940520763, -0.016415169462561607, 0.019681936129927635, -0.0059438906610012054, -0.01665916107594967, 0.004452834837138653, -0.013832931406795979, -0.03171882405877113, -0.01804177649319172, 0.007631494663655758, -0.002268776996061206, 0.0018451815703883767, -0.015317209996283054, -0.02266404777765274, -0.049177732318639755, -0.010627161711454391, 0.003998740576207638, 0.0034734823275357485, -0.008024591021239758, -0.010342505760490894, -0.017906224355101585, -0.014829227700829506, 0.008641346357762814, -0.018543312326073647, 0.0026161251589655876, -0.004676493350416422, -0.027733638882637024, -0.03478226438164711, 0.01587296649813652, 0.047632455825805664, 0.013507610186934471, 0.033616531640291214, -0.012314765714108944, -0.012585867196321487, 0.0013461861526593566, 0.006794470362365246, -0.011481129564344883, 0.004290174227207899, -0.028736712411046028, -0.014964778907597065, -0.016455834731459618, -0.0057134549133479595, 0.0022586106788367033, -0.004520609974861145, 0.03150194510817528, -0.01022728718817234, -0.01785200461745262, 0.028221620246767998, 0.025727489963173866, 0.013202621601521969, 0.014653012156486511, 0.004320673178881407, -0.007455279119312763, -0.0049374280497431755, -0.022840265184640884, -0.009102217853069305, -0.0044697788543999195, -0.013609273359179497, -0.01748601906001568, 0.027923408895730972, -0.010999925434589386, 0.00713673559948802, -0.008241471834480762, 0.03228813782334328, -0.015235879458487034, -0.009176771156489849, -0.012104662135243416, 0.004652772098779678, -0.033779192715883255, 0.015317209996283054, -0.009508869610726833, -9.462062735110521e-05, 0.00430372916162014, -0.014287025667726994, -0.014381911605596542, 0.013236509636044502, -0.039662085473537445, 0.028221620246767998, 0.024263545870780945, -0.0008531211642548442, 0.014219250530004501, 0.02206762693822384, -0.004249508958309889, -0.047442685812711716, 0.010064627043902874, 0.005506740417331457, 0.00247210287488997, -0.0007768739596940577, -0.010389948263764381, -0.01237576361745596, 0.01423280593007803, 0.018353542312979698, 0.02373489737510681, 0.007645050063729286, -0.018583977594971657, 0.0025940982159227133, 0.01591363176703453, 0.0029346689116209745, -0.019058404490351677, -0.03570400923490524, -0.02326047047972679, -0.01843487285077572, 0.005635513458400965, 0.008051701821386814, 0.02668990008533001, -0.016252508386969566, -0.019248174503445625, -0.0022484443616122007, -0.013399169780313969, -0.01504610851407051, 0.0037615271285176277, 0.010633938945829868, -0.01066104881465435, 0.06994407624006271, 0.0363275408744812, 0.024222880601882935, 0.01882796920835972, 0.014978333376348019, 0.01665916107594967, -0.013358504511415958, -0.017120031639933586, 0.01946505531668663, 0.002167114056646824, 0.006445427890866995, 0.0044121695682406425, -0.008573571220040321, 0.0030346375424414873, 0.0020908669102936983, 0.018570423126220703, 0.012531646527349949, 0.0036598644219338894, -0.013582163490355015, -0.022718269377946854, -0.017594458535313606, -0.03865901008248329, -0.016496500000357628, 0.02246072329580784, 0.009000555612146854, 0.017540238797664642, -0.02555127441883087, 0.002878754399716854, 0.018028220161795616, -0.007340061012655497, 0.02751675806939602, -0.011081255972385406, 0.03833369165658951, -0.012165660038590431, 0.0023501073010265827, 0.010234065353870392, 0.004727324936538935, -0.019709046930074692, -0.00045875381329096854, -0.020508795976638794, -0.003917410504072905, 0.022596273571252823, 0.0062522683292627335, 0.017445353791117668, 0.030851300805807114, -0.013216177001595497, 0.02475152723491192, 0.010532275773584843, -0.012124994769692421, -0.007380726281553507, 0.0007785683847032487, -0.025293728336691856, -0.006099774036556482, -0.02187785506248474, -0.025713935494422913, -0.01646938920021057, -0.022094735875725746, 0.0009293683106079698, -0.01690315082669258, 0.009373319335281849, -0.014381911605596542, -0.003954686690121889, 0.045978739857673645, -0.0017553793732076883, 0.03372497111558914, -0.018502647057175636, 0.03285744786262512, 0.021932076662778854, 0.008539683185517788, -0.017445353791117668, -0.006960519589483738, -0.00951564684510231, -0.012016554363071918, 0.02148475870490074, 0.06604021787643433, -0.008878559805452824, -0.02361290156841278, 0.015168104320764542, -0.021349208429455757, -0.001143707544542849, -0.023287581279873848, -0.008438020944595337, 0.018665308132767677, 0.00752983195707202, -0.018109550699591637, -0.019559942185878754, -0.005374578759074211, 0.012477426789700985, -0.018705973401665688, 0.0007726380135864019, -0.014327690936625004, -0.029197584837675095, 0.0013114514295011759, -0.018380651250481606, -0.036381762474775314, 0.030390428379178047, -0.0025771544314920902, -0.0013351726811379194, -0.010816932655870914, 0.0027313432656228542, -0.012551979161798954, -0.03114951215684414, -0.004666327033191919, 3.436417682678439e-05, -0.010220509953796864, 0.011420132592320442, 0.011460796929895878, 0.006170937791466713, 0.008573571220040321, 0.013236509636044502, 0.018787303939461708, 0.029658455401659012, -0.013541498221457005, -0.014761452563107014, 0.009583422914147377, -0.004584996495395899, 0.028655381873250008, -0.027584532275795937, -0.016523608937859535, -0.007082515396177769, -0.009095440618693829, -0.007163845468312502, -0.002494129817932844, -0.00578461866825819, 0.015005444176495075, -0.017120031639933586, 0.008194029331207275, -0.04253575578331947, 0.01748601906001568, 0.013527942821383476, 0.025537719950079918, -0.03133928403258324, -0.034294284880161285, 0.025063293054699898, -0.024765081703662872, -0.013344950042665005, -0.014842783100903034, 0.006059108767658472, -0.006818191614001989, 0.011765786446630955, -0.019600607454776764, -0.0012148716486990452, 0.02933313511312008, 0.010078181512653828, -0.03795414790511131, 0.01575097255408764, -0.0084922406822443, -0.003434511600062251, 0.011318469420075417, -0.019261730834841728, -0.013514388352632523, 0.004507055040448904, 0.023111365735530853, -0.010613606311380863, -0.002036646706983447, -0.011284581385552883, 0.023084254935383797, 0.004879819229245186, 0.006892744451761246, 0.004086848348379135, -0.0018570423126220703, 0.022040516138076782, -0.0055812932550907135, -0.013222954235970974, 0.00797714851796627, -0.011460796929895878, 0.0037954149302095175, -0.027652308344841003, -0.006092996336519718, -0.009468204341828823, -0.024968408048152924, -0.016957370564341545, -0.025253063067793846, 0.011440465226769447, -0.018922854214906693, 0.012246990576386452, -0.0029177251271903515, -0.002926197135820985, -0.017147142440080643, -0.002084089443087578, 0.022325173020362854, 0.006482704076915979, 0.020197028294205666, 0.01466656755656004, 0.048147547990083694, -0.0035412576980888844, -0.02416865900158882, -0.017933335155248642, -0.031529054045677185, -0.018177326768636703, -0.024846412241458893, 0.008160142228007317, -0.0018570423126220703, 0.032667677849531174, 0.011162586510181427, -0.02167453058063984, -0.01894996501505375, -0.02187785506248474, -0.012307988479733467, -0.02949579618871212, 0.00463921669870615, 0.000495606625918299, 0.030227769166231155, 0.0351346991956234, 0.025375058874487877, 0.027652308344841003, 0.01791978068649769, 0.008085588924586773, -0.025564830750226974, 0.007116402965039015, -0.019763266667723656, -0.026256138458848, 0.02443976141512394, -0.02452109009027481, -0.016333838924765587, 0.00020925613353028893, -0.005682955961674452, -0.026269692927598953, 0.004063127096742392, 0.02838428132236004, 0.023111365735530853, -0.003283711615949869, -0.007434946484863758, -0.004822209943085909, -0.0319899246096611, 0.004188511520624161, 0.015466315671801567, -0.029739785939455032, -0.001390240155160427, 0.009325876832008362, 0.0011919974349439144, -0.0012631615391001105, -0.002097644377499819, 0.019329505041241646, -0.0017138670664280653, 0.0092784333974123, 0.009861300699412823, 0.0022145567927509546, -0.011060923337936401, -0.01099314820021391, -0.0072790635749697685, -0.009962963871657848, 0.011603125371038914, 0.03375208377838135, 0.012504536658525467, -0.025930816307663918, -1.6387846699217334e-05, 0.02456175535917282, -0.016835376620292664, -0.012843412347137928, 0.01217921543866396, -0.024724416434764862, 0.003195603843778372, -0.005862560588866472, -0.0044121695682406425, -0.008241471834480762, -0.01180645078420639, -0.026066366583108902, 0.0004106757405679673, -0.035243138670921326, 0.00376491597853601, 0.002587320748716593, -0.013738046400249004, -0.011196473613381386, 0.007916150614619255, 0.010220509953796864, -0.007780600339174271, -0.0014080310938879848, 0.015601865947246552, 9.30850874283351e-05, -0.023518016561865807, 0.026405243203043938, -0.014327690936625004, -0.006716528907418251, 0.0175673495978117, 0.014761452563107014, 0.014287025667726994, -0.0013588940491899848, 0.20950689911842346, 0.020129254087805748, -0.0019976759795099497, 0.025564830750226974, -0.01522232498973608, -0.0018705973634496331, 0.00737394904717803, 0.0037954149302095175, -0.012978963553905487, 0.028953593224287033, -0.024493981152772903, 0.01413791999220848, 0.010986370034515858, -0.00783482100814581, 0.028655381873250008, -0.018800858408212662, -0.019885262474417686, -0.012002999894320965, -0.01070171408355236, -0.0017909613670781255, 0.01886863447725773, -0.01981748826801777, -0.006143827922642231, -0.007556942291557789, -5.760897693107836e-05, -0.0019553164020180702, 0.0037073069252073765, -0.026513684540987015, 0.029197584837675095, 0.02136276289820671, -0.0034243452828377485, -0.003327765502035618, 0.013934594579041004, 0.0031667992006987333, 0.009569867514073849, -0.018773747608065605, -0.006841912865638733, -0.010925373062491417, 0.006455594208091497, 0.005001814570277929, 0.00709607033059001, 3.8467758713522926e-05, -0.010179844684898853, -0.0022755544632673264, -0.0029888891149312258, 0.010491611436009407, -0.0052593606524169445, 0.00783482100814581, 0.0066487533040344715, 0.02029191516339779, -0.029034923762083054, 0.002204390475526452, 0.0032379631884396076, 0.01669982448220253, 0.004130902234464884, 0.013372059911489487, 0.016442280262708664, 0.01457168161869049, -0.012274100445210934, -0.003226102562621236, 0.00015778928354848176, 0.012077552266418934, -0.008349912241101265, 0.009061552584171295, -0.021904965862631798, -0.024060219526290894, -0.03207125514745712, 0.053678009659051895, 0.017824895679950714, 0.018583977594971657, -0.013155179098248482, -0.027923408895730972, -0.01630672812461853, 0.010694936849176884, -0.01950572058558464, -0.025022627785801888, 0.016564274206757545, 0.019058404490351677, -0.005239028017967939, 0.03410451486706734, 0.009617310017347336, 0.0016969231655821204, 0.004212232772260904, 0.0005311886197887361, -0.024737970903515816, -0.013067071326076984, 0.011562460102140903, -0.02475152723491192, -0.017364023253321648, -0.011792896315455437, -0.014653012156486511, -0.018421316519379616, -0.0009403817821294069, -0.02246072329580784, -0.003822525031864643, -0.002204390475526452, 0.006147216539829969, -0.002085783751681447, -0.0005930335610173643, -0.01107447873800993, -0.022867374122142792, 0.04508410766720772, 0.022555608302354813, -0.001328395213931799, -0.014842783100903034, 0.0011047368170693517, -0.006069275084882975, 0.0026822062209248543, -0.01553409080952406, -0.011223583482205868, -0.01638805866241455, -0.010816932655870914, 0.006303099449723959, 0.00487643014639616, 0.007597607094794512, 0.028330061584711075, -0.0016876041190698743, -0.0032904890831559896, 0.006923243403434753, -0.003988574258983135, 0.003131217323243618, -0.030769970268011093, -0.014178585261106491, 0.032044146209955215, -0.011481129564344883, -0.016022073104977608, -0.0004858639440499246, 0.0060218321159482, 0.003332848660647869, -0.023124920204281807, 0.007577274460345507, -0.01804177649319172, 0.011874226853251457, -0.01915328949689865, 0.0023246915079653263, 0.026486573740839958, 0.02992955781519413, -0.010057849809527397, -0.027625197544693947, 0.004110570065677166, 0.0030702194198966026, 0.008207584731280804, 0.0017740175826475024, 0.0031735769007354975, -0.00215186458081007, -0.009569867514073849, 0.002187446691095829, 0.016238953918218613, -0.005537239369004965, -0.029794007539749146, -0.031529054045677185, 0.019966593012213707, 0.00027872578357346356, 0.00969186332076788, 0.007455279119312763, 0.00038843697984702885, -0.012402873486280441, -0.001848570303991437, 0.006791081745177507, 0.014856338500976562, -0.04535520821809769, 0.0005650762468576431, 0.018936408683657646, 0.0010640716645866632, -0.01514099445194006, -0.024670196697115898, -0.17242027819156647, 0.010017184540629387, 0.0077467127703130245, -0.03071575053036213, 0.05248516425490379, 0.019722601398825645, 0.014856338500976562, -0.006001499947160482, -0.0067673600278794765, 4.4927586714038625e-05, 0.0067538050934672356, 0.00029651678050868213, -0.046249840408563614, -0.01638805866241455, 1.1370889296813402e-05, 0.018936408683657646, -0.007861930876970291, 0.0011420132359489799, 0.02431776560842991, 0.014287025667726994, 0.03364364057779312, -0.010539053939282894, 0.003930965438485146, -0.03139350190758705, 0.021945631131529808, 0.020007258281111717, -0.015086773782968521, 0.013636383228003979, 0.01257231179624796, -0.02712366171181202, -0.007584052160382271, -0.03011932782828808, 0.033697862178087234, -0.002272165846079588, 0.016726935282349586, -0.0007277369149960577, 0.011304914020001888, -0.011386244557797909, -0.038116808980703354, 0.006784304045140743, -0.004185122437775135, 0.037927038967609406, 0.01316873449832201, 0.01427347119897604, 0.016401614993810654, 0.02677123062312603, 0.02096966654062271, -0.01504610851407051, 0.004900151863694191, 0.006452205125242472, 0.0390927717089653, -0.02827583998441696, 0.0077196029014885426, -8.96963247214444e-05, -0.007387503981590271, 0.007665382698178291, 0.007123180199414492, 0.015981407836079597, -0.018461981788277626, -0.036707084625959396, 0.017431797459721565, -0.011020258069038391, 0.012185992673039436, -0.020278358832001686, 0.0027160937897861004, 0.007523054257035255, 0.004493500106036663, 0.014002369716763496, -0.039146993309259415, 0.03722217679023743, 0.008580348454415798, 0.010932150296866894, -0.009685085155069828, 0.003819136181846261, -0.015208769589662552, 0.005815117619931698, -0.02239294722676277, 0.032749008387327194, 0.02214895747601986, -0.019058404490351677, -0.0371137335896492, 0.003897077636793256, -0.022094735875725746, 0.00386996753513813, -0.018611088395118713, -0.0037750822957605124, 0.0003736111393664032, 0.014015925116837025, -0.030742859467864037, 0.004503666423261166, 0.02179652452468872, -0.025456389412283897, -0.007455279119312763, 0.020834116265177727, 0.012870523147284985, 0.016360949724912643, 0.010471278801560402, 0.022135401144623756, 0.013738046400249004, 0.012335098348557949, 0.00689952215179801, 0.024968408048152924, -0.010010406374931335, 0.013629605993628502, 0.01843487285077572, 0.03977052494883537, 0.0015308738220483065, -0.0072926185093820095, 0.020590126514434814, 0.010959260165691376, -0.02171519584953785, 0.019397281110286713, 0.026012146845459938, 0.02254205383360386, 0.012368985451757908, 0.03738483786582947, -0.016293173655867577, -0.0069096884690225124, -0.001177595229819417, 0.006465760525316, 0.05806984752416611, 0.012917965650558472, -0.015805192291736603, 0.016198288649320602, 0.005323747172951698, -0.009488536976277828, -0.11809162050485611, -0.0473884642124176, 0.008465130813419819, 0.0207256767898798, -0.0033074328675866127, 0.028004739433526993, -0.0031041072215884924, 0.021566089242696762, -0.03106818161904812, 0.03703240677714348, -0.01342627964913845, -0.043132178485393524, -0.02101033180952072, -0.0035209250636398792, 0.010417058132588863, -0.002827923046424985, -0.03011932782828808, -0.00275845336727798, -0.018150215968489647, 0.005632124375551939, 0.0021400039549916983, -0.006919854786247015, 0.020319024100899696, -0.005638902075588703, -0.002875365549698472, -0.016876041889190674, -0.025632604956626892, -0.0026144308503717184, 0.02361290156841278, 0.0017587681068107486, 0.0007391739636659622, -0.02187785506248474, 0.00460871821269393, -0.006445427890866995, -0.004235954023897648, 0.00951564684510231, -0.01942439191043377, -0.00430372916162014, 0.007258730940520763, -0.00494420574977994, 0.008675234392285347, 0.010437390767037868, -0.0060760523192584515, -0.014531017281115055, 0.0015613726573064923, -0.00912255048751831, 0.003176965517923236, 0.01470723282545805, 0.023518016561865807, -0.002821145346388221, -0.02006147801876068, -0.007448501884937286, -0.007855153642594814, 0.012477426789700985, -0.00018299321527592838, 0.017743565142154694, 0.019763266667723656, 0.02101033180952072, -0.008851449936628342, -0.007773823104798794, -0.01431413646787405, -0.013494055718183517, -0.010966038331389427, 0.03079708106815815, -0.01587296649813652, -0.01950572058558464, -0.04557208716869354, -0.018800858408212662, 0.011203251779079437, -0.016794711351394653, -0.012091107666492462, -0.003605644218623638, -0.011908113956451416, 0.007584052160382271, -0.018461981788277626, 0.02010214328765869, -0.031962815672159195, -0.020197028294205666, 0.02518528886139393, 0.0020298692397773266, -0.007387503981590271, -0.012938298285007477, -0.010647494345903397, -0.0017308108508586884, 0.007706047501415014, 0.016455834731459618, -0.006946964655071497, -0.001473264885134995, 0.014720787294209003, -0.031447723507881165, 0.002302664564922452, 0.016672715544700623, 0.0068588568829, -0.03808970004320145, 0.007170623168349266, 0.005045868456363678, -0.011765786446630955, -0.022867374122142792, 0.016130512580275536, 0.000934451469220221, -0.021742304787039757, 0.00400890689343214, -0.0651726946234703, 0.0203325804322958, 0.009820636361837387, 0.0008171155350282788, 0.007102848030626774, -0.014653012156486511, -0.004605329129844904, 0.0013148401631042361, 0.005222084000706673, 0.01800111122429371, -0.039580754935741425, -0.01505966391414404, -0.011203251779079437, -0.0058252839371562, -0.028058959171175957, -0.02518528886139393, 0.03771015629172325, -0.010064627043902874, 0.004913706798106432, 0.0026313746348023415, -0.024900631979107857, -0.008268582634627819, 0.010864375159144402, 0.01022728718817234, -0.018461981788277626, 0.006689418572932482, -0.018461981788277626, 0.02660856954753399, -0.007468834053725004, -0.005218695383518934, 0.021430538967251778, -0.018855078145861626, -0.012057219631969929, 0.02786918915808201, -0.003836079966276884, -0.006303099449723959, -0.0013631300535053015, 0.024534646421670914, 0.018339985981583595, 0.0177706740796566, -0.03518891707062721, -0.04681915417313576, 0.036381762474775314, -0.027692973613739014, -0.005266137886792421, -0.004113958682864904, 0.012958630919456482, 0.0009827413596212864, 0.0042935628443956375, 0.004754434805363417, 0.027015220373868942, 0.02231161668896675, -0.02084767073392868, -0.016889596357941628, 0.008024591021239758, -0.02076634205877781, 0.007434946484863758, 0.011155808344483376, -0.008560015819966793, 0.009237769059836864, 0.03052597865462303, 0.008397355675697327, 0.004341005813330412, -0.007380726281553507, 0.020861227065324783, 0.000694272865075618, -0.02266404777765274, -0.014869892969727516, 0.0033023497089743614, -0.015764527022838593, 0.0016062738141044974, 0.0040427944622933865, 0.013514388352632523, -0.014585237018764019, 0.018841523677110672, -0.026269692927598953, 0.018095996230840683, 0.0031549385748803616, 0.011908113956451416, 0.023626457899808884, 0.014734342694282532, -0.016835376620292664, 0.00023996680101845413, 0.017797784879803658, 0.02759808860719204, 0.009779971092939377, -0.013405947014689445, -0.0007548470166511834, 0.013643160462379456, -0.016415169462561607, -0.008851449936628342, -0.0120436642318964, -0.01022728718817234, -0.00925810169428587, 0.016198288649320602, 0.005642290692776442, -0.009420761838555336, 0.016279619187116623, 0.012599421665072441, 0.0501536950469017, 0.014476796612143517, -0.0010073098819702864, -0.001102195237763226, -0.012728194706141949, -0.011203251779079437, 0.008431242778897285, -0.026500128209590912, -0.011792896315455437, -0.021145882084965706, 0.009014110080897808, -0.009644419886171818, 4.466284008231014e-05, 0.001277563744224608, 0.009590200148522854, -0.01322973147034645, 0.025863042101264, 0.003041415009647608, -0.007645050063729286, -0.013060293160378933, 0.008044923655688763, 0.02115943841636181, 0.01773000881075859, 0.015425650402903557, -0.009468204341828823, 0.0034209564328193665, 0.019451500847935677, -0.014775007963180542, -0.011738675646483898, 0.008227917365729809, 0.004164790268987417, 0.0035548126325011253, -0.007861930876970291, 0.012640086933970451, 0.003200687002390623, -0.013771933503448963, -0.0031413836404681206, -0.015520535409450531, 0.021091662347316742, 0.01958705112338066, 0.07449857145547867, 0.030769970268011093, -0.013324617408216, 0.021376319229602814, -0.02002081274986267, 0.00518141919746995, 0.004957760684192181, 0.0003746701404452324, -0.00807203445583582, -0.01843487285077572, 0.017147142440080643, 0.019275285303592682, 0.007597607094794512, 0.0009064941550604999, -0.00014847019338048995, 0.030986851081252098, -0.03337254002690315, 0.006835135631263256, -0.00551690673455596, -0.023626457899808884, 0.019248174503445625, -0.006994407158344984, -0.0013707547914236784, -0.03288456052541733, -0.019397281110286713, -0.019261730834841728, 0.009671530686318874, 0.01198266725987196, 0.012145327404141426, -0.02759808860719204, 0.025795266032218933, -0.014991888776421547, -0.02452109009027481, -0.021566089242696762, 0.001132694073021412, -3.240504884161055e-05, -0.006597922183573246, -0.01876019313931465, 0.004757823422551155, 0.009549534879624844, -0.0205359049141407, 0.020834116265177727, -0.025009073317050934, -0.025198843330144882, -0.008471908047795296, -0.0008493087952956557, 0.008268582634627819, -0.044948555529117584, -0.010830487124621868]" +5,"Cosmos DB now supports postscript SQL, making Azure the first cloud provider to offer a database service that supports both relational and no SQL workloads. And in AI, we are turning the world's most advanced models into platforms for customers. Earlier this month, we brought the power of DALL-E to Azure OpenAI service, helping customers like Mattel apply the breakthrough image generation model to commercial use cases for the first time. In Azure machine learning, provides industry-leading ML apps, helping organizations like 3M deploy, manage and govern models.","[-0.00441406574100256, -0.005979578942060471, -0.006983548868447542, -0.029676679521799088, -0.01683947443962097, 0.026014741510152817, -0.02692682296037674, 0.007099261041730642, 0.013388538733124733, -0.02201247401535511, 0.011135561391711235, 0.03209982067346573, -0.00024312245659530163, -0.007813951931893826, -0.02107316628098488, 0.011707314290106297, 0.012966531328856945, 0.006095290649682283, 0.004669312387704849, -0.0038491198793053627, -0.011155981570482254, 0.00030991199309937656, -0.002001133980229497, 0.005475892219692469, -0.009107201360166073, 0.025279629975557327, 0.016240494325757027, -0.015791261568665504, 0.02103232592344284, -0.0019926256500184536, 0.025402149185538292, -0.0013468515826389194, -0.0035904699470847845, -0.013184341602027416, -0.01246965117752552, -0.0013434482971206307, 0.016553597524762154, 0.021141231060028076, -0.007534882053732872, -0.0016897330060601234, 0.022910941392183304, 0.011190013960003853, -0.0021661934442818165, -0.012401585467159748, -0.016744181513786316, 0.022148605436086655, 0.005925126373767853, -0.0045944401063025, 0.005132159683853388, -0.013204761780798435, 0.02225751057267189, 0.03724559396505356, -0.016934765502810478, -0.017710715532302856, -0.0013213269412517548, -0.000678105338010937, -0.002739647636190057, 0.012755527161061764, 0.02571525238454342, 0.002727736020460725, 0.025619959458708763, 0.02888711728155613, -0.006047644652426243, 0.003947815392166376, -0.033624496310949326, -0.004907542839646339, -0.026300616562366486, 0.014130456373095512, 0.0016880313633009791, 0.0025626765564084053, 0.03174588084220886, 0.02836981788277626, -0.00782756507396698, -0.010863298550248146, 0.024149738252162933, -0.02154962532222271, 0.004961995407938957, -0.009127621538937092, -0.027267150580883026, 0.02371411770582199, 4.482769872993231e-05, -0.013619962148368359, -0.013497443869709969, -0.019997725263237953, 0.03155529499053955, 0.012660235166549683, -0.03936924785375595, 0.013334086164832115, -0.015600676648318768, 0.009740212932229042, 0.03621099516749382, 0.015096990391612053, 0.004073736723512411, 0.00513556320220232, -0.017806008458137512, 0.026831530034542084, 0.004836073610931635, 0.015954619273543358, -0.009590468369424343, -0.03716391697525978, -0.010339192114770412, 0.001910946797579527, -0.033651720732450485, -0.007582528050988913, -0.014620529487729073, 0.011217240244150162, 0.013429378159344196, 0.0029948942828923464, 0.044161077588796616, 0.00611911341547966, 0.016036298125982285, 0.013796933926641941, 0.005880883429199457, -0.02398638054728508, -0.007303458172827959, -0.006353940349072218, 0.01210890244692564, -0.013871805742383003, -0.017220642417669296, 0.004744184669107199, 0.009985249489545822, 0.03152807056903839, 0.013851386494934559, -0.011414631269872189, -0.008263185620307922, 0.0071945530362427235, -0.012279066257178783, -0.025116272270679474, 0.025157112628221512, -0.014566076919436455, 0.013844579458236694, 0.022216670215129852, -0.00679296487942338, -0.0032637540716677904, -0.026096420362591743, 0.018650023266673088, -0.02691320888698101, 0.002792398678138852, -0.009297785349190235, 0.0018020415445789695, -0.0009307995205745101, 0.004509357735514641, -0.012680654413998127, -0.0071945530362427235, -0.005217242054641247, 0.039478152990341187, 0.020896194502711296, 0.01881338097155094, 0.03212704882025719, 0.024163352325558662, 0.009638114832341671, -0.032453764230012894, -0.026123646646738052, 0.012061255984008312, 0.011666474863886833, -0.013572316616773605, -0.008467382751405239, 0.03188201040029526, -0.01810549758374691, -0.008657967671751976, 0.005744752008467913, 0.03234485909342766, -0.026532040908932686, -0.012653428129851818, 0.025864996016025543, 0.01562790386378765, 0.0009061257005669177, -0.014402719214558601, -0.017220642417669296, -0.01613158918917179, 0.015328413806855679, 0.034659095108509064, -0.02617809921503067, 0.019276229664683342, 0.002145773731172085, 0.014416332356631756, 0.026518428698182106, -0.0022036295849829912, -0.023891089484095573, -0.02836981788277626, 0.026600107550621033, 0.01888144761323929, 0.004002267960458994, 0.01909925788640976, -0.005914916284382343, -0.007616560906171799, -0.0026256374549120665, -0.007643787190318108, 0.005574587266892195, -0.015954619273543358, -0.003934202250093222, 0.01618604175746441, -0.011999997310340405, -0.023632438853383064, -0.6386203765869141, -0.027743611484766006, 0.007432783022522926, -0.03207259625196457, 0.012102095410227776, 0.010951784439384937, 0.004022687673568726, -0.0009256945922970772, -0.00818831380456686, 0.013912645168602467, -0.011530343443155289, -0.0073783304542303085, -0.03261712193489075, 0.004264321178197861, 0.005101530347019434, -0.014661368913948536, 0.02962222695350647, 0.009740212932229042, 0.004560407251119614, 0.001766307046636939, -0.03351559117436409, 0.01683947443962097, -0.016553597524762154, -0.012571749277412891, -0.0024350532330572605, 0.02493930235505104, -0.0009171863785013556, 0.00635734386742115, -0.01737038791179657, 0.00543845584616065, -0.019956886768341064, 0.014130456373095512, 0.010325578972697258, -0.0020028355065733194, 0.04380713775753975, 0.005288711283355951, -0.017955752089619637, 0.027239924296736717, -0.0043425969779491425, 0.03468632325530052, -0.016703343018889427, -0.019630171358585358, 0.012946111150085926, 0.015791261568665504, -0.0013834369601681828, 0.0005568631459027529, 0.02227112278342247, -0.009835504926741123, 0.007187746465206146, -0.004696538671851158, 0.009032328613102436, -0.009100395254790783, 0.02157685160636902, -0.006541121285408735, 0.016499144956469536, 0.017969366163015366, 0.03174588084220886, -0.025837769731879234, 0.014906405471265316, -0.025388535112142563, -0.00477481447160244, -0.01554622408002615, -0.04484173655509949, -0.030684053897857666, -0.022870102897286415, 0.018527505919337273, -0.0032212131191045046, 0.0012941006571054459, 0.007269425317645073, -0.018051045015454292, 0.027961421757936478, 0.01527396123856306, 0.014402719214558601, -0.019970498979091644, 0.003508790861815214, 0.02297900803387165, 0.023115139454603195, 0.004900736268609762, -0.02984003722667694, 0.008256379514932632, 0.017275094985961914, -0.023850249126553535, -0.004917752463370562, -0.01663527637720108, 0.017724329605698586, 0.0042336913757026196, -0.003110606223344803, -0.007568914908915758, -0.004628472961485386, -0.00428133737295866, 0.03033011220395565, 0.028315365314483643, -0.03335223346948624, -0.04481450840830803, 0.0048837196081876755, 0.0031922850757837296, -0.01667611673474312, -0.011087915860116482, -0.004114576615393162, -0.010427677072584629, -0.00501304492354393, -0.010597841814160347, 0.017669877037405968, 0.0202972162514925, 0.016771407797932625, 0.005435052327811718, -0.011775380000472069, 0.014743047766387463, 0.02864208072423935, -0.029703905805945396, -0.013123081997036934, 0.004730571527034044, -0.028097553178668022, 0.015791261568665504, 0.005172999110072851, -0.024544520303606987, 0.02154962532222271, -0.00751446234062314, -0.024040833115577698, -0.0022648887243121862, -0.0014344863593578339, -0.012245033867657185, 0.0060442411340773106, -0.004829267039895058, 0.010359611362218857, 0.01565513014793396, 0.011693701148033142, -0.02864208072423935, -0.0007087349076755345, 0.006946112960577011, -0.005162789486348629, -0.0017867267597466707, 0.025538280606269836, -0.008181506767868996, 0.021917181089520454, -0.012633008882403374, 0.02719908580183983, -0.00880090519785881, -0.004682925529778004, -0.0009614291484467685, -0.040730562061071396, 0.014321040362119675, -0.00599659513682127, 0.017302321270108223, -0.04045829921960831, -0.02247532084584236, -0.02744412235915661, 0.006200792733579874, -0.03261712193489075, -0.019167324528098106, -0.007494042161852121, -0.013354506343603134, -0.0071332938969135284, 0.020855354145169258, -0.010597841814160347, 0.0003577707684598863, -0.008480995893478394, -0.03700055927038193, -0.013381732627749443, -0.028968796133995056, -0.010611454956233501, 0.020746449008584023, -0.0090731680393219, 0.009379464201629162, -0.0020249569788575172, -0.05507883056998253, -0.008365284651517868, 0.025728864595294, -0.012803173623979092, -0.008154280483722687, 0.010230286978185177, -0.02744412235915661, 0.011646054685115814, 0.026259778067469597, -0.005179805681109428, -0.012027223594486713, -0.03498581051826477, 0.014743047766387463, 0.029921716079115868, -0.0063403272069990635, 0.005370390135794878, 0.023795796558260918, 0.013994324021041393, -0.01078842580318451, 0.015845714136958122, 0.005812817718833685, 0.026804303750395775, 0.018758928403258324, -0.022393641993403435, -0.004938172176480293, -0.004220078233629465, 0.03425069898366928, -0.016294946894049644, 0.016036298125982285, -0.008399317041039467, 0.0023618824779987335, -0.016485532745718956, -0.012912078760564327, 0.011081108823418617, 0.013361312448978424, 0.0067555285058915615, 0.014361879788339138, 0.02054225280880928, 0.0093045923858881, -0.005458875559270382, -0.01911287195980549, -0.005942142568528652, -0.019739076495170593, 0.011911511421203613, 0.00495518883690238, 0.018037430942058563, -0.009025522507727146, -0.015165056101977825, -0.013095855712890625, 0.022066926583647728, 0.026096420362591743, 0.01395348459482193, -0.012183774262666702, -0.030956316739320755, 0.012040836736559868, -0.003532614093273878, -0.006673849653452635, 0.021685756742954254, 0.017574584111571312, 0.008086214773356915, 0.011965963989496231, 0.010938171297311783, 0.018976738676428795, 0.026559267193078995, -0.024326710030436516, 0.017315935343503952, 0.011727733537554741, -0.0068167876452207565, 0.0161588154733181, 0.011584796011447906, 0.013061823323369026, 0.024762330576777458, -0.002555869985371828, 0.01347021758556366, -0.02179466187953949, -0.006510491948574781, -0.004505954682826996, 0.02986726351082325, -0.012034029699862003, 0.01837776042521, -0.001400453387759626, 0.03808961063623428, 0.00477481447160244, -0.014743047766387463, -0.011564375832676888, -0.05317298695445061, 0.0032467376440763474, -0.014647755771875381, 0.0036279060877859592, 0.012006803415715694, -0.01554622408002615, -0.011101529002189636, 0.006602380890399218, 0.02568802610039711, 0.02913215383887291, 0.013613156042993069, 0.01809188351035118, 0.01588655263185501, 5.567568223341368e-05, 0.0006972488481551409, -0.01564151607453823, 0.009175267070531845, -0.013095855712890625, -0.0268859826028347, -0.008834938518702984, -0.009781052358448505, -0.0310924481600523, 0.02126375027000904, -0.047373782843351364, -0.0003422432637307793, 0.0012319906381890178, -0.004383436404168606, 0.01551899779587984, 0.011557569727301598, 0.016022684052586555, 0.00030076567782089114, -0.058863285928964615, 0.007044808007776737, -0.0021712984889745712, 0.00667044660076499, 0.0010507655097171664, -0.01641746610403061, 0.017275094985961914, -0.00807940773665905, 0.003110606223344803, -0.006159953307360411, 0.028478723019361496, -0.01492001861333847, -0.00019217947556171566, -0.00880090519785881, 0.008154280483722687, 0.02962222695350647, -0.006125919986516237, -0.003151445649564266, -0.010890524834394455, 6.71086017973721e-05, 0.01482472661882639, -0.00758933462202549, -0.009604081511497498, 0.040240488946437836, -0.01738400012254715, -0.015355640091001987, -0.002123652258887887, -0.01566874235868454, -0.04315370321273804, -0.007528075482696295, 0.0036415192298591137, -0.01590016670525074, 0.016104362905025482, 0.01539647951722145, 0.0045876335352659225, -0.01614520326256752, -0.008474189788103104, 0.007480429019778967, 0.02669539861381054, -0.024040833115577698, -0.03542143106460571, -0.018650023266673088, 0.0018922287272289395, 0.06289277970790863, -0.008065794594585896, -0.02424503117799759, 0.0015170160913839936, -0.0059217228554189205, 0.002601814456284046, -0.03327055275440216, -0.02178104966878891, -0.0017560970736667514, 0.028696533292531967, -0.018187176436185837, 0.01933068223297596, 0.0219852477312088, -0.004458308685570955, 0.03250821679830551, 0.0217538233846426, 0.005435052327811718, -0.019003964960575104, -0.013000563718378544, -0.00035755804856307805, -0.005727735348045826, 0.011720927432179451, 0.01813272386789322, 0.013402151875197887, 0.042718082666397095, 0.005064093973487616, 0.003906975965946913, 0.012326712720096111, -0.0014429945731535554, -0.026028353720903397, -0.010339192114770412, 0.016961991786956787, -0.0045944401063025, 0.033379457890987396, 0.0018922287272289395, 0.02793419547379017, -0.008283605799078941, 0.01564151607453823, -0.009923990815877914, 0.0038763461634516716, 0.0047339750453829765, 0.01562790386378765, -0.00545547204092145, -0.020923420786857605, -0.018527505919337273, -0.02127736248075962, -0.01568235643208027, 0.01664889045059681, -0.028723759576678276, -0.019167324528098106, -0.00012687886191997677, -0.005319340620189905, -0.0386069118976593, -0.0001032685540849343, 0.020923420786857605, 0.027280764654278755, 0.001648042700253427, -0.008167893625795841, -0.018541118130087852, -0.03648325800895691, -0.01979352906346321, 0.00879409909248352, -0.002135563874617219, 0.00747362244874239, -0.019521266222000122, -0.018214402720332146, -0.007602947764098644, 0.021917181089520454, -0.03229040652513504, 0.010311965830624104, 0.008099827915430069, -0.026736238971352577, -0.04522290453314781, 0.015505384653806686, 0.04669312387704849, 0.017084510996937752, 0.023850249126553535, -0.005435052327811718, -0.00807260163128376, 0.002023255219683051, -0.008242766372859478, -0.005744752008467913, 0.007943276315927505, -0.022420868277549744, -9.587703243596479e-05, -0.01712534949183464, -0.012878045439720154, 0.000986953848041594, -0.01663527637720108, 0.025538280606269836, -0.00045433908235281706, -0.020419733598828316, 0.01075439341366291, 0.015069764107465744, 0.013055016286671162, 0.007385137025266886, 0.01907203160226345, 0.01515144295990467, -0.006122516933828592, -0.018459439277648926, -0.013558703474700451, -0.008855357766151428, -0.023931927978992462, -0.019984113052487373, 0.010931364260613918, 0.0019177533686161041, 0.010577422566711903, -0.0038865560200065374, 0.014443558640778065, -0.017751555889844894, 0.002375495620071888, -0.012809979729354382, 0.018922286108136177, -0.030738506466150284, 0.013871805742383003, -0.009025522507727146, 0.0041077700443565845, 0.006003401707857847, -0.003845716593787074, -0.020719222724437714, 0.016961991786956787, -0.03310719504952431, 0.02885989099740982, 0.002802608534693718, -0.003811683738604188, 0.022107765078544617, 0.025524668395519257, -0.00015804023132659495, -0.04162903130054474, 0.0222847368568182, -0.0004628472961485386, 0.011850252747535706, 5.60479165869765e-05, -0.009801472537219524, -0.013722061179578304, -0.0042609176598489285, 0.007351104170084, 0.01904480531811714, -0.006085080560296774, -0.010019282810389996, -0.009474756196141243, -5.4186741181183606e-05, -0.023877475410699844, -0.009290979243814945, 0.0034951777197420597, -0.019888820126652718, -0.007051615044474602, 0.001883720513433218, 0.017084510996937752, 0.015233121812343597, -0.015192282386124134, -0.013626769185066223, -0.020937034860253334, -0.008957456797361374, -0.013361312448978424, -0.0015927392523735762, 0.019779914990067482, -0.02296539396047592, 0.04775495082139969, 0.015437318943440914, 0.040594432502985, 0.008814518339931965, 0.021222909912467003, 0.02007940597832203, -0.017765168100595474, -0.01568235643208027, 0.008807712234556675, 0.005557571072131395, 0.005986385513097048, -0.016267720609903336, -0.0031072029378265142, 0.002081111306324601, -0.0049449787475168705, 0.01912648417055607, 0.014538850635290146, 0.007487235590815544, -0.01505615096539259, -0.026722624897956848, -0.01542370580136776, -0.032943837344646454, -0.010625068098306656, 0.009318205527961254, 0.008549061603844166, 0.0181463360786438, -0.024898461997509003, -0.000902722415048629, 0.027988648042082787, 0.009508789516985416, 0.009774246253073215, -0.010345998220145702, 0.024272257462143898, -0.004989221692085266, 0.003794667311012745, 0.012878045439720154, 0.0013868402456864715, -0.028288139030337334, 0.01445717178285122, -0.009937603957951069, -0.010325578972697258, 0.020242763683199883, 0.014988084323704243, 0.023877475410699844, 0.016757795587182045, 0.003073170082643628, -0.017560971900820732, 0.02179466187953949, -0.02370050549507141, -0.004165625665336847, -0.006115710362792015, -0.03580259904265404, -0.004005671013146639, -0.029785584658384323, -0.001249857828952372, -0.019671009853482246, -0.02444922737777233, -0.005727735348045826, 0.008576287887990475, 0.023101525381207466, -0.012925691902637482, -0.019507652148604393, 0.031691428273916245, -0.001608904916793108, 0.0490073598921299, 0.002064094878733158, 0.0145524637773633, 0.025728864595294, 0.014974471181631088, -0.013681221753358841, -0.01162563543766737, -0.005244468338787556, -0.002829834818840027, 0.0145524637773633, 0.046393636614084244, -0.005788994487375021, -0.009127621538937092, 0.013415765017271042, -0.005543957930058241, -0.008515029214322567, -0.032943837344646454, -0.0007180940010584891, 0.01858195848762989, 0.004240497946739197, -0.019167324528098106, -0.02812477946281433, -0.010713553987443447, 0.004492341540753841, -0.02443561516702175, -0.0056562661193311214, 0.0011630740482360125, -0.011169594712555408, -0.0037640377413481474, -0.01904480531811714, -0.018718089908361435, 0.028723759576678276, 0.006564944516867399, 0.0007853089482523501, 0.0014115141239017248, -0.002118547447025776, 0.0018581957556307316, -0.024544520303606987, 0.004866703413426876, 0.014566076919436455, -0.021740209311246872, 0.014144069515168667, 0.0033488364424556494, 0.01982075534760952, 0.013041403144598007, -0.001401304267346859, -0.004693135619163513, 0.02962222695350647, -0.028070326894521713, 0.00311741279438138, 0.0038933625910431147, 0.008964262902736664, 0.0215223990380764, -0.016975605860352516, -0.008623934350907803, 0.0015544522320851684, -0.004591037053614855, 0.004669312387704849, 0.022325575351715088, -0.005094723775982857, -0.019031191244721413, -0.0066296071745455265, 0.01370844803750515, -0.03008507564663887, 0.026831530034542084, 0.02812477946281433, 0.009658534079790115, -0.032671574503183365, -0.023809410631656647, 0.020133858546614647, -0.009270559065043926, 0.0009826996829360723, 0.0012643218506127596, -0.004294950515031815, -0.006765738595277071, 0.021100392565131187, -0.0037742475979030132, -0.003682358656078577, 0.026355069130659103, -0.006908676587045193, -0.0313919372856617, 0.02372773177921772, -0.02126375027000904, -0.013905839063227177, 0.02401360683143139, -0.02593306265771389, -0.007446396164596081, -0.020719222724437714, 0.008528642356395721, -0.008154280483722687, 0.015478158369660378, -0.014443558640778065, 0.01542370580136776, 0.0044038561172783375, -0.005928529426455498, -0.002731139538809657, -0.003357344539836049, 0.018663637340068817, 0.006861030589789152, -0.011196820996701717, 0.021835502237081528, -0.005247871857136488, -0.0001263471058337018, -0.01343618519604206, 0.0033760627266019583, -0.012605782598257065, -0.029023248702287674, -0.008855357766151428, -0.007296651601791382, 0.004570617340505123, 0.0025711848866194487, 0.007044808007776737, -0.005700509063899517, 0.0166216641664505, -0.033433910459280014, 0.013796933926641941, 0.012905271723866463, 0.01554622408002615, 0.021617691963911057, 0.017969366163015366, 0.03776289522647858, -0.009114008396863937, -0.018255243077874184, -0.017751555889844894, -0.014280200935900211, -0.011040269397199154, -0.03359726816415787, 0.001054168795235455, 0.0018479858990758657, 0.01787407323718071, 0.020120244473218918, -0.032208725810050964, -0.021454334259033203, -0.00855586864054203, -0.0014319338370114565, -0.017969366163015366, -0.005632443353533745, 0.009488369338214397, 0.03261712193489075, 0.03580259904265404, 0.025619959458708763, 0.018064657226204872, 0.010584228672087193, 0.002292115241289139, -0.015069764107465744, -0.0015655129682272673, -0.01885422132909298, -0.020691996440291405, 0.028288139030337334, -0.006844014395028353, -0.02548382803797722, -0.013129889033734798, -0.0024401582777500153, -0.010570615530014038, 0.008685193955898285, 0.013157115317881107, 0.005540554411709309, -0.015750421211123466, -0.004277934320271015, -0.027253538370132446, -0.023605212569236755, 0.019412361085414886, 0.03174588084220886, -0.014498011209070683, -0.0007699941634200513, 0.012251839973032475, -0.004750991240143776, -0.010128187946975231, -0.004710151813924313, 0.024639813229441643, 0.0026715819258242846, 0.014375492930412292, -0.006864434108138084, 0.0028145199175924063, 0.0021372654009610415, -0.015845714136958122, 0.01787407323718071, 0.007364717312157154, 0.009821891784667969, 0.03444128483533859, 0.0010567212011665106, -0.01667611673474312, -0.004856493324041367, 0.01063187513500452, -0.016716955229640007, 0.0010303457966074347, 0.01594100520014763, -0.033433910459280014, 0.009236526675522327, -0.002475892659276724, 0.0023448660504072905, -0.009359044954180717, -0.021971633657813072, -0.0183096956461668, 0.01237435918301344, -0.03057514876127243, 0.011094721965491772, -0.002812818391248584, -0.02714463323354721, 0.006826997734606266, 0.0026937031652778387, 0.010604648850858212, -0.011026656255126, -0.0032824722584336996, 0.0007836073054932058, 0.007745885755866766, -0.018255243077874184, 0.019766302779316902, -0.009869538247585297, -0.035339754074811935, 0.03400566428899765, -0.0021100391168147326, 0.0219852477312088, -0.010699940845370293, 0.21312756836414337, 0.00531593756750226, -0.015736809000372887, 0.01467498205602169, 0.01002608984708786, 0.0090391356498003, 0.01517866924405098, 0.013286440633237362, 0.0011851954041048884, 0.02370050549507141, -0.02444922737777233, 0.027825290337204933, 0.0006198239861987531, -0.003374360967427492, 0.017315935343503952, -0.04239136725664139, -0.019725462421774864, -0.012211000546813011, -0.014239361509680748, 0.005700509063899517, 0.008494609035551548, -0.011373791843652725, 0.0023720923345535994, -0.01066590752452612, 0.018296081572771072, 0.010223479941487312, 0.0025967094115912914, -0.007119680754840374, 0.028315365314483643, 0.030466243624687195, -0.0053567769937217236, 0.015859326347708702, 0.02157685160636902, 0.004761201329529285, 0.011292112991213799, -0.03297106549143791, 0.012027223594486713, -0.022883715108036995, 0.01884060725569725, -0.0037402145098894835, 0.02325127087533474, -0.010686327703297138, 0.009018715471029282, 0.0062178089283406734, -0.010597841814160347, -0.004005671013146639, -0.0033318200148642063, -0.006435619667172432, 0.006857627537101507, 0.010822459124028683, -0.03495858609676361, -0.0016097556799650192, 0.013511057011783123, 0.024040833115577698, 0.01272149384021759, 0.0018803172279149294, 0.004162222612649202, 0.015478158369660378, -0.005908109713345766, 0.023183204233646393, -0.0027056147810071707, 0.015410092659294605, -0.006180373020470142, 0.013871805742383003, -0.02104593999683857, -0.028206460177898407, -0.026613719761371613, 0.03866136446595192, 0.021903568878769875, 0.008297218941152096, -0.014960858039557934, -0.024871235713362694, -0.016744181513786316, -0.0058638667687773705, -0.0161588154733181, -0.008406124077737331, 0.03495858609676361, 0.0235099196434021, -0.008637547492980957, 0.03871581703424454, 0.004805444274097681, 0.005275098141282797, -0.006602380890399218, -0.012326712720096111, -0.023795796558260918, -0.02740328386425972, 0.02130458876490593, -0.016471918672323227, -0.023115139454603195, -0.013041403144598007, -0.009706180542707443, -0.015804873779416084, -0.0035632436629384756, -0.023782184347510338, -0.005064093973487616, -0.024394774809479713, 0.023087913170456886, 0.01934429444372654, 0.02107316628098488, -0.008378897793591022, -0.023169592022895813, 0.04922517389059067, 0.014171295799314976, -0.00269029987975955, -0.013211567886173725, 0.009651727974414825, -0.0028434479609131813, 0.017084510996937752, -0.014620529487729073, 0.010529776103794575, -0.005778784863650799, -0.02665456011891365, -0.005492908414453268, 0.003995461389422417, -0.012217807583510876, 0.01956210471689701, -0.011469083838164806, -0.004274530801922083, 0.01053658314049244, -0.01174815371632576, 0.005241065286099911, -0.02055586501955986, -0.01908564381301403, 0.024626199156045914, -0.006074870936572552, -0.013490637764334679, -0.003394780680537224, 0.007249005604535341, 5.4399446526076645e-05, -0.037790119647979736, 0.016812248155474663, -0.0318547859787941, 0.018010204657912254, 0.001008224324323237, 0.0007589334272779524, 0.02033805474638939, 0.02176743559539318, -0.005244468338787556, -0.012054449878633022, 0.008419737219810486, -0.010203060694038868, 0.008494609035551548, -0.022693131119012833, -0.01050935685634613, 0.012578556314110756, -0.007820758037269115, 0.01551899779587984, 0.012183774262666702, 0.0026596703100949526, -0.017697103321552277, -0.017288709059357643, 0.02839704416692257, -0.010686327703297138, 0.008344864472746849, 0.02180827595293522, -0.02376857027411461, -0.011162787675857544, -0.0063369241543114185, -0.011496310122311115, 0.018690863624215126, -0.05328189209103584, -0.006765738595277071, 0.025388535112142563, -0.03204536810517311, -0.009202493354678154, -0.019480425864458084, -0.17392167448997498, -0.0011426543351262808, -0.0001594228233443573, -0.03253544121980667, 0.03479522839188576, 0.013545090332627296, 0.012775947339832783, -0.008515029214322567, -0.01739761419594288, -0.007970502600073814, 0.0016131589654833078, 0.014743047766387463, -0.022924555465579033, -0.003767441026866436, 0.01418490894138813, 0.01530118752270937, -0.017819620668888092, 0.005663072690367699, 0.020188311114907265, 0.01979352906346321, 0.02836981788277626, -0.00017707738152239472, -0.00082657381426543, -0.02915938012301922, 0.006211002357304096, 0.015219508670270443, -0.013613156042993069, 0.027702772989869118, 0.008249572478234768, -0.027062954381108284, -0.009556435979902744, -0.0323176309466362, 0.027294378727674484, 0.0019381730817258358, 0.01347021758556366, 0.006786158308386803, 0.0024129319936037064, -0.023605212569236755, -0.03403288871049881, 0.021726597100496292, 0.004931365605443716, 0.02790696918964386, -0.004274530801922083, 0.00557118421420455, 0.01832330785691738, 0.01956210471689701, 0.03128303214907646, -0.013170728459954262, 0.015804873779416084, 0.007391943596303463, 0.03182755783200264, -0.03493135794997215, 0.0003250140871386975, -0.0001571894099470228, -0.01636301353573799, 0.007705046329647303, 0.005700509063899517, 0.02372773177921772, -0.017710715532302856, -0.026831530034542084, -0.016444692388176918, -0.021467946469783783, 0.006663640029728413, 0.004580826964229345, -0.020011339336633682, -0.0020198519341647625, -0.0013936468167230487, 0.003362449584528804, -0.029186606407165527, 0.015165056101977825, 0.008099827915430069, 0.01050935685634613, -0.018432212993502617, 0.004046510439366102, -0.008276798762381077, 0.005172999110072851, -0.029023248702287674, 0.039260342717170715, 0.025320470333099365, -0.011523536406457424, 0.0028672709595412016, 0.007916050031781197, -0.02666817232966423, 0.012061255984008312, -0.001210720045492053, -0.002106635831296444, -0.01641746610403061, 0.011401018127799034, -0.03280770778656006, 0.0016046507516875863, 0.01982075534760952, -0.02984003722667694, -0.015192282386124134, 0.01980714127421379, -0.0011077706003561616, 0.029404416680336, 0.016757795587182045, 0.01138059888035059, 0.011155981570482254, 0.004635279532521963, 0.014130456373095512, 0.02523879148066044, -0.017030058428645134, 0.003010209184139967, 0.0239727683365345, 0.041465673595666885, -0.00321610807441175, 0.006891660392284393, 0.01979352906346321, -0.02568802610039711, -0.019643783569335938, 0.007677820045500994, 0.04454224556684494, 0.030711280182003975, 0.0042609176598489285, 0.03642880544066429, 0.0010286441538482904, -0.005690299440175295, 0.007841178216040134, 0.011775380000472069, 0.04699261486530304, 0.005326147191226482, 0.00855586864054203, -0.002639250596985221, 0.002555869985371828, 0.0012583661591634154, -0.11293474584817886, -0.04032216966152191, 0.004420872312039137, 0.02296539396047592, -0.02500736713409424, 0.0181463360786438, 0.0016165622510015965, 0.020487800240516663, -0.04778217896819115, 0.02153601311147213, -0.012551330029964447, -0.022597838193178177, 0.0014693699777126312, -0.006313100922852755, 0.012006803415715694, -0.010366418398916721, -0.013449798338115215, -0.010557002387940884, -0.023196818307042122, 0.012653428129851818, 0.01885422132909298, -0.006459442432969809, 0.015328413806855679, -0.022066926583647728, 0.001379182911477983, -0.01250368356704712, -0.01904480531811714, 0.00040158809861168265, 0.014225748367607594, 0.026001127436757088, 0.004410662688314915, -0.02891434356570244, -0.009781052358448505, -0.011666474863886833, -0.01715257577598095, -0.010366418398916721, -0.016226882115006447, -0.0009903571335598826, 0.020977873355150223, -0.011496310122311115, -0.009733406826853752, -0.0021951214876025915, 0.024762330576777458, -0.021236523985862732, -0.020487800240516663, -0.0111423684284091, -0.0016505952225998044, 0.005394212901592255, 0.0166216641664505, -0.03188201040029526, -0.02986726351082325, -0.010502549819648266, -0.0018871237989515066, 0.013374925591051579, 0.008889391086995602, 0.03490413352847099, 0.01984798163175583, 0.029540548101067543, -0.02131820283830166, -0.016036298125982285, -0.004910945892333984, -0.00625184178352356, -0.002663073595613241, 0.010434484109282494, -0.014606916345655918, -0.005877479910850525, -0.033406686037778854, -0.016458306461572647, -0.02056947909295559, -0.01592739298939705, -0.01954849250614643, 0.005659669637680054, -0.011945544742047787, 0.00082657381426543, -0.0059455460868775845, 0.0016020983457565308, -0.027117406949400902, -0.03498581051826477, 0.01709812320768833, -0.00894384365528822, -0.0021270555444061756, -0.024176964536309242, 0.006081677507609129, -0.02077367529273033, 0.025796931236982346, 0.006711286026984453, -0.02885989099740982, -0.019140098243951797, 0.01407600287348032, -0.03544865921139717, -0.00019100958888884634, -0.0036245028022676706, 0.01859557069838047, -0.028288139030337334, 0.009964830242097378, -0.020392507314682007, -0.021195683628320694, -0.0337061733007431, 0.018922286108136177, 0.008739646524190903, -0.023850249126553535, -0.01594100520014763, -0.07269424945116043, 0.01685308665037155, 0.0056290398351848125, 0.001540839090012014, 0.0008559271809644997, -0.03740895166993141, -0.006758932024240494, -0.014906405471265316, 0.016580823808908463, -0.0031497438903898, -0.03719114139676094, -0.011584796011447906, 0.009107201360166073, -0.00575155857950449, -0.02421780489385128, -0.022107765078544617, 0.03425069898366928, -0.0028791825752705336, 0.011836639605462551, -0.003985251300036907, -0.008596708066761494, -0.008855357766151428, -0.0183096956461668, 0.014252974651753902, -0.00489733275026083, 0.015859326347708702, -0.006013611797243357, 0.016104362905025482, -0.024149738252162933, -0.003323311684653163, 0.014606916345655918, -0.014770274050533772, -0.01111514214426279, 0.014933631755411625, -0.021685756742954254, -0.007575721479952335, -0.002375495620071888, 0.025769704952836037, 0.013381732627749443, 0.024530906230211258, -0.03958705812692642, -0.04571297764778137, 0.029404416680336, -0.007119680754840374, -0.01592739298939705, -0.011013043113052845, 0.018935900181531906, -0.0008495459915138781, 0.023087913170456886, -0.002113442402333021, 0.009747019968926907, 0.008004535920917988, -0.025783317163586617, -0.03199091553688049, 0.020610317587852478, -0.009896764531731606, 0.03033011220395565, -0.003549630520865321, -0.015600676648318768, 0.011775380000472069, 0.04228246212005615, 0.024844009429216385, 0.011557569727301598, -0.010645488277077675, -0.002315938239917159, 0.005914916284382343, -0.006922289729118347, -0.014715821482241154, -0.0032297212164849043, -0.013980710878968239, -0.013456604443490505, -0.0011622231686487794, 0.015260348096489906, 0.003037435468286276, 0.019153710454702377, -0.02959500066936016, 0.01739761419594288, -0.015137829817831516, -0.006204195786267519, 0.030466243624687195, 0.020705610513687134, -0.00441406574100256, -0.00895064976066351, 0.034631870687007904, 0.023414628580212593, 0.00807940773665905, -0.017914913594722748, 0.0012677251361310482, -0.004570617340505123, -0.010972203686833382, 0.0018445826135575771, -0.006051047705113888, -0.002736244350671768, 0.010345998220145702, 0.008276798762381077, 0.017560971900820732, -0.00266647688113153, -0.004043107386678457, 0.015165056101977825, 0.01467498205602169, 0.017070896923542023, -0.0023465678095817566, -0.014702208340168, -0.019425973296165466, -0.042963121086359024, 0.007916050031781197, -0.02301984652876854, -0.017806008458137512, -0.015845714136958122, 0.025320470333099365, 0.010795232839882374, -0.0018684056121855974, 0.02962222695350647, 0.02076006308197975, -0.04092114791274071, 0.03299828991293907, 0.0015008504269644618, -0.011734540574252605, -0.022870102897286415, 0.00906636193394661, 0.009100395254790783, 0.010427677072584629, 0.012319906614720821, -0.007065228186547756, 0.031963691115379333, 0.016104362905025482, -0.012530909851193428, -0.01590016670525074, 0.016580823808908463, 0.005404422990977764, 0.006146340165287256, 0.00507770711556077, -0.014035163447260857, -0.011040269397199154, -0.016036298125982285, -0.012564943172037601, -0.02201247401535511, 0.03770844265818596, 0.021195683628320694, 0.07901075482368469, 0.022665904834866524, -0.01211570855230093, -0.005840044002979994, -0.01250368356704712, 0.00904594175517559, 0.011496310122311115, 0.0026937031652778387, 0.014688595198094845, -0.014239361509680748, 0.0024367549922317266, 0.009420303627848625, -0.005744752008467913, -0.00715371361002326, 0.004077140241861343, 0.0010303457966074347, -0.011659667827188969, 0.007555301766842604, -0.00758933462202549, -0.026586493477225304, 0.03111967444419861, 0.012326712720096111, 0.004056720528751612, -0.012163355015218258, -0.028968796133995056, -0.006347133778035641, -0.005979578942060471, 0.003333521541208029, 0.003369256155565381, -0.02469426579773426, 0.025075433775782585, -0.013756094500422478, -0.011516730301082134, -0.015505384653806686, 0.011584796011447906, 0.02103232592344284, 0.00569370249286294, -0.020106632262468338, 0.0007963696261867881, 0.006051047705113888, -0.015505384653806686, 0.01346341148018837, -0.016934765502810478, -0.02643674984574318, 0.003549630520865321, -0.002394213806837797, 0.0029914909973740578, -0.03694610670208931, -0.004444695543497801]" +6,"All of, Azure ML revenue has increased more than 100% for four quarters in a row. Now on to developers. We have the most complete platform for developers to build cloud-native applications. Four years since our acquisition, GitHub is now at $1 billion in annual recurring revenue.","[-0.012622406706213951, -0.023502416908740997, 0.00590885616838932, -0.014311601407825947, 0.01063394546508789, -0.015162849798798561, -0.01461751852184534, -0.012230034917593002, -0.01577468402683735, -0.03841255232691765, 0.03128335252404213, 0.01957869715988636, 0.013420451432466507, -0.00970954354852438, -0.015894390642642975, -0.004888023715466261, 0.011844313703477383, -0.003040882758796215, -0.011698005720973015, 0.002952765440568328, -0.026588190346956253, 0.008911498822271824, -0.02958085760474205, -0.01856783963739872, -0.014883534051477909, 0.03109714202582836, 0.0021131557878106833, -0.014564315788447857, 0.020988576114177704, 0.007920593954622746, 0.007388563826680183, -0.007056045345962048, 0.004605383146554232, 0.023249702528119087, -0.023169897496700287, -0.00017176666005980223, -0.009636390022933483, 0.02279747650027275, -0.0015919329598546028, 0.012436197139322758, 0.03178878128528595, 0.01586778834462166, -0.011072870343923569, 0.016306713223457336, -0.021746717393398285, -0.00865213479846716, 0.0062646507285535336, -0.02493889629840851, -0.02194622904062271, 0.00041398569010198116, -0.001434817910194397, 0.023116694763302803, -0.029607458040118217, -0.00864548422396183, -0.012063776142895222, 0.010720400139689445, -0.01856783963739872, 0.025750242173671722, -0.0037075825966894627, 0.0032952595502138138, -0.005626215133816004, 0.008372819051146507, -0.0337572917342186, 0.00294445245526731, -0.021068381145596504, 0.006763428915292025, -0.014511113055050373, 0.01959199830889702, -0.0011205878108739853, -0.004788268357515335, 0.034049905836582184, -0.005430029239505529, 0.012077076360583305, -0.013460353948175907, 0.017836298793554306, -0.013500256463885307, -0.01787620224058628, -0.010946513153612614, 0.005892230197787285, 0.013619963079690933, 0.021321093663573265, 0.0073353610932827, -0.0048447963781654835, -0.019166374579072, -0.00025645497953519225, -0.0002776530454866588, -0.01634661667048931, 0.004944552201777697, -0.005875604227185249, 0.005313647445291281, 0.033863697201013565, -0.001384108792990446, 0.018887057900428772, 0.013107884675264359, -0.006041863467544317, 0.0037042575422674417, -0.008612232282757759, 0.023795032873749733, 0.021573808044195175, -0.014258398674428463, -0.002126456703990698, 0.0017124708974733949, -0.03109714202582836, -0.010906610637903214, -0.01670573651790619, 0.00565614178776741, 0.018208719789981842, 0.0019069943809881806, 0.018102314323186874, 0.011545047163963318, 0.0033966777846217155, 0.000942690297961235, 0.004415847361087799, -0.025151709094643593, 0.00321212993003428, -0.005406752694398165, 0.004688512533903122, 0.005815750919282436, 0.001880392897874117, -0.005134087521582842, 0.031655773520469666, 0.028011368587613106, 0.02297038771212101, 0.010660546831786633, 0.00468186242505908, 0.026761099696159363, -0.006364406552165747, -0.012768715620040894, 0.019006764516234398, -0.0019751605577766895, 0.029288241639733315, -0.01220343355089426, 0.012070425786077976, 0.013646564446389675, -0.002242838032543659, 0.025377821177244186, -0.018780652433633804, 0.023688627406954765, -0.0020416644401848316, 0.002237850334495306, -0.012835219502449036, 0.00915091298520565, -0.0012943287147209048, 0.005247144028544426, -0.002791493898257613, 0.03303905203938484, 0.008838345296680927, -0.0010008810786530375, 0.02822418138384819, -0.010274825617671013, 0.0005070908810012043, -0.0481220968067646, -0.0021480703726410866, 0.03008628636598587, 0.010414483025670052, -0.009230717085301876, 0.006570568308234215, 0.028703007847070694, -0.024140851572155952, 0.011498494073748589, -0.0217733196914196, 0.02992667630314827, -0.012369693256914616, 0.0004100370279047638, -0.003913744352757931, 0.017650088295340538, 0.022238845005631447, -0.025830047205090523, -0.00957653671503067, -0.010022111237049103, 0.007242255844175816, 0.011638152413070202, -0.027346331626176834, 0.015495368279516697, -0.008000398054718971, 0.028436992317438126, 0.009190814569592476, -0.0020832291338592768, -0.03144296258687973, -0.0049512023106217384, 0.00957653671503067, 0.004927926231175661, 0.004146507475525141, 0.021799921989440918, 0.02094867266714573, -0.011698005720973015, 0.013912579044699669, -0.00839276984333992, 0.0034847953356802464, -0.008552378974854946, 0.01855454035103321, 0.010527539998292923, 0.004555505234748125, -0.002046652138233185, -0.6431176066398621, 0.0018005883321166039, 0.003481470048427582, -0.004149832297116518, 0.025909852236509323, 0.00275657931342721, 0.025138407945632935, 0.0052770706824958324, -0.02170681580901146, 0.014604218304157257, 0.0029594157822430134, -0.0019618598744273186, -0.031496163457632065, -0.00294445245526731, 0.011924117803573608, -0.00621144799515605, 0.015375661663711071, -0.022331951186060905, -0.03269323334097862, 0.018102314323186874, -0.02423395775258541, 0.001221174607053399, 0.0004979466320946813, -0.012097028084099293, -0.003217117628082633, 0.010141817852854729, -0.005011055618524551, -0.010919911786913872, -0.03362428396940231, 0.018434831872582436, -0.024885693565011024, 0.00489467428997159, 0.021507304161787033, 0.020376741886138916, 0.043280623853206635, -0.0131344860419631, -0.010048712603747845, 0.012609106488525867, -0.004455749411135912, 0.03694947063922882, -0.019884614273905754, 0.017330870032310486, 0.0001826774241635576, 0.011338884942233562, -0.0025454300921410322, 0.01356010977178812, 0.025630535557866096, 0.00026705401251092553, -0.014178594574332237, 0.007568123750388622, -0.005952083505690098, 0.004545529838651419, -0.009024555794894695, -0.023369409143924713, -0.0026385353412479162, 0.0029178508557379246, 0.0077476841397583485, -0.014431308023631573, 0.0014522750861942768, -0.006055164150893688, -0.023449214175343513, -0.00889819860458374, -0.010647246614098549, -0.040726881474256516, -0.022491559386253357, 0.010062013752758503, -0.002074916148558259, 0.01705155521631241, 0.010653897188603878, -0.015255955047905445, 0.016812141984701157, 0.004651935771107674, 0.008040300570428371, -0.020749162882566452, 0.005117461550980806, 0.036071620881557465, 0.021760018542408943, 0.002186310011893511, -0.027532542124390602, -0.012609106488525867, 0.028011368587613106, -0.0217733196914196, 0.006720201577991247, -0.009456830099225044, 0.008758540265262127, 0.005479907151311636, 0.015322457998991013, -0.027239926159381866, 0.000994230736978352, -0.008565680123865604, 0.0013757958076894283, 0.014551015570759773, -0.019086569547653198, -0.02880941331386566, 0.0010150130838155746, 0.019964419305324554, -0.019711704924702644, 0.016891947016119957, 0.002828070893883705, -0.016320014372467995, -0.0225580632686615, -0.003621127922087908, 0.054639462381601334, 0.01399238407611847, 0.024287160485982895, 0.021826522424817085, -0.02227874845266342, 0.005326948594301939, 0.016306713223457336, -0.03287944197654724, -0.02448667213320732, 0.0017989258049055934, -0.00839942041784525, 0.01334729790687561, -0.0008695361902937293, -0.025883249938488007, -0.00275657931342721, -0.003956971690058708, 0.004731739871203899, -0.01266895979642868, -0.012602455914020538, 0.015242653898894787, 0.01060069352388382, -0.01755698397755623, -0.010234923101961613, 0.0051274374127388, 0.00029781198827549815, -0.006923038046807051, 0.0270537156611681, 0.012649009004235268, -0.00366768054664135, -0.021121583878993988, 0.013486955314874649, 0.0006666998378932476, 0.0359652154147625, 0.004794918466359377, 0.014364805072546005, -0.021307794377207756, 0.00011305633233860135, -0.027692152187228203, -0.02356892079114914, 0.007568123750388622, 0.010288126766681671, 0.015255955047905445, -0.012010572478175163, -0.034289319068193436, -0.014178594574332237, 0.0021297817584127188, 0.007481669075787067, -0.009011254645884037, 0.005669442471116781, 0.014271699823439121, 0.0034182914532721043, 0.0006076777935959399, -0.006174870766699314, 0.007707781624048948, -0.0031639146618545055, -0.023861536756157875, -0.024180755019187927, -0.025577332824468613, -0.013287444598972797, 0.010806855745613575, 0.0056960443034768105, 0.009995509870350361, -0.008233161643147469, -0.021799921989440918, -0.008213209919631481, 0.03093753382563591, -0.02237185277044773, 0.0006459174328483641, 0.020802365615963936, -0.00869203731417656, 0.0031090492848306894, -0.017517080530524254, 0.0035912012681365013, -0.004838146269321442, -0.017104757949709892, 0.0024207355454564095, 0.0065905191004276276, -0.00822651106864214, 0.015654977411031723, 0.03290604427456856, 0.02312999591231346, 0.013899278827011585, 0.030219292268157005, 0.021321093663573265, 0.008532428182661533, 0.030245894566178322, 0.01855454035103321, -0.00633447989821434, -0.01905996724963188, 0.04482351243495941, -0.016333315521478653, 0.017091456800699234, -0.013586711138486862, -0.018687546253204346, -0.022784177213907242, -0.00497780367732048, -0.012602455914020538, 0.010274825617671013, -0.014165293425321579, 0.03287944197654724, -0.008126755245029926, 0.03737509250640869, -0.015176150016486645, -0.01941908709704876, -0.011638152413070202, -0.014191894792020321, 0.007388563826680183, 0.029128631576895714, 0.023874837905168533, -0.004296140745282173, -0.007707781624048948, -0.01643972098827362, 0.011691355146467686, 0.006437560543417931, 0.008160007186233997, -0.0010141817620024085, -0.019991019740700722, -0.0071425000205636024, 0.0054233786650002, -0.009649690240621567, 0.015176150016486645, -0.017995908856391907, 0.005812425632029772, -0.00022278747928794473, -0.027239926159381866, 0.02423395775258541, 0.009396976791322231, -0.029181834310293198, -0.0029045501723885536, 0.03160256892442703, 0.01932598277926445, 0.00171745871193707, 0.014644120819866657, 0.006969590671360493, 0.008884897455573082, -0.019698403775691986, 0.017357472330331802, -0.0016384855844080448, 0.014364805072546005, -0.013586711138486862, 0.019179673865437508, -0.018288524821400642, 0.0225580632686615, 0.010986415669322014, 0.035912010818719864, -0.008984653279185295, -0.025923151522874832, 0.017756495624780655, -0.02102847769856453, 0.01085340790450573, 0.012755414471030235, -0.01377957221120596, 0.007767634931951761, -0.006484113167971373, 0.0036111522931605577, 0.0013267493341118097, 0.004355994053184986, 0.017490480095148087, 0.001606896286830306, 0.03162917122244835, -0.0034615190234035254, -0.012289888225495815, 0.020469846203923225, 0.017663389444351196, 0.0017041579121723771, 0.006051838863641024, 0.01195071917027235, 0.008964702486991882, -0.008625533431768417, -0.014311601407825947, -0.0007415165309794247, -0.0077011315152049065, -0.022252146154642105, 0.006457511801272631, -0.01199727226048708, 0.004419172648340464, -0.019365884363651276, 0.01610720157623291, -0.0051706647500395775, -0.036763258278369904, 0.017317570745944977, 0.022065935656428337, 0.013121184892952442, 0.014298301190137863, 0.0019069943809881806, -0.005373501218855381, 0.00010219751857221127, 0.012090377509593964, 0.00590885616838932, 0.005905530881136656, -0.024207355454564095, 0.014551015570759773, 0.005938782822340727, 0.005104160867631435, 0.03583220764994621, -0.01440470665693283, -0.03248041868209839, -0.031176947057247162, 0.012815267778933048, -0.006307878531515598, -0.015588473528623581, 0.0066171204671263695, 0.03338487073779106, -0.005057608243077993, -0.023848235607147217, -0.021986132487654686, 0.0069762407802045345, -0.04876053333282471, -0.006361081264913082, -0.0070360940881073475, -0.011844313703477383, 0.00869203731417656, 0.01237634290009737, -0.0014838643837720156, 0.02245165780186653, -0.020735861733555794, 0.010248224250972271, 0.025816746056079865, -0.025736941024661064, -0.013726368546485901, -0.023595521226525307, 0.020070824772119522, 0.08001728355884552, 0.013287444598972797, -0.026907406747341156, 0.0205097496509552, -0.01594759337604046, 0.017157960683107376, -0.029181834310293198, 0.0035113967023789883, 0.014763827435672283, -0.0028563349042087793, -0.02355561964213848, 0.019206276163458824, 0.0001982642279472202, -0.010487637482583523, 0.013420451432466507, 0.0010756977135315537, 0.008419371210038662, -0.020922072231769562, -0.026721196249127388, -0.0026219093706458807, -0.011425339616835117, 0.016652533784508705, 0.03176217898726463, 0.014471210539340973, 0.021294493228197098, 0.009769396856427193, 0.026388678699731827, 0.030990736559033394, -0.009762747213244438, -0.019192975014448166, 0.0046785371378064156, 0.006843233481049538, -0.02585664764046669, 0.020616155117750168, -0.00440919678658247, 0.029607458040118217, -0.006301227957010269, -0.008765190839767456, -0.0073952144011855125, -0.003320198506116867, -0.01738407462835312, -0.0013043043436482549, -0.013333996757864952, -0.008293014951050282, 0.0006704406696371734, -0.032347410917282104, -0.015136247500777245, 0.029873473569750786, -0.015149548649787903, -0.034209515899419785, -0.001596920657902956, -0.0034382427111268044, -0.032932646572589874, 0.0217733196914196, -0.006537316367030144, 0.035300176590681076, 0.000357665354385972, -0.012762065045535564, -0.017995908856391907, -0.06256670504808426, -0.04325402155518532, -0.03950321301817894, 0.014856932684779167, 0.001402397290803492, -0.0006479956791736186, -0.006091741379350424, -0.0080469511449337, -0.018780652433633804, -0.04562155529856682, -0.017862901091575623, 0.019365884363651276, -0.02857000008225441, -0.03373068943619728, 0.009516683407127857, 0.033597681671381, 0.01203717477619648, 0.009656340815126896, 0.007727732881903648, -0.008000398054718971, 0.016293412074446678, -0.0181422159075737, -0.012934974394738674, -0.003027582075446844, -0.010341329500079155, -0.022744273766875267, -0.0017956006340682507, -0.014338203705847263, -0.025125106796622276, -0.006843233481049538, 0.014551015570759773, -0.009350423701107502, -0.014351503923535347, 0.02755914442241192, -0.0027831809129565954, 0.004868072923272848, 0.011205878108739853, 0.011837663128972054, 0.009237367659807205, -0.009164213202893734, 0.00885829608887434, -0.001950221718288958, 0.0028895868454128504, -0.0067102257162332535, -0.035140570253133774, -0.005938782822340727, 0.013008128851652145, 0.01038788165897131, -0.0045854318886995316, -0.02245165780186653, 0.013493605889379978, -0.0006097560399211943, 0.014085489325225353, -0.008499176241457462, -0.00031921788468025625, 0.02779855765402317, -0.010181720368564129, 0.02806457132101059, -0.017171261832118034, 0.006533991079777479, -0.006623771041631699, 0.008233161643147469, -0.029102031141519547, 0.037853918969631195, 0.021041778847575188, -0.007707781624048948, 0.0005748415715061128, 0.024712784215807915, -0.0022627892903983593, -0.04570135846734047, 0.0007527390262112021, -0.004808219149708748, 0.01983141154050827, -0.012735463678836823, -0.004419172648340464, -0.02440686710178852, -0.036311034113168716, -0.010826806537806988, -0.0017972631612792611, -0.00865213479846716, -0.003923719748854637, -0.01440470665693283, 0.017929404973983765, -0.006005286239087582, -0.011485193856060505, 0.00656724302098155, -0.025032002478837967, 0.003690956858918071, 0.012196782976388931, 0.0021846473682671785, 0.014817030169069767, 0.0004351837560534477, 0.008838345296680927, -0.015362360514700413, -0.004465725272893906, -0.016931848600506783, 0.02295708656311035, 0.01360001228749752, -0.03093753382563591, 0.03841255232691765, 0.01576138287782669, 0.031575970351696014, 0.01170465536415577, 0.009682942181825638, 0.015229352749884129, -0.0032304185442626476, -0.019312681630253792, -0.0025038651656359434, 0.008698686957359314, 0.013181038200855255, 0.005536435171961784, -0.0016035711159929633, 0.012934974394738674, 0.0017623486928641796, -0.0014007347635924816, 0.009290570393204689, 0.005336923990398645, -0.009403626434504986, 7.746645133011043e-05, -0.029474450275301933, -0.042775195091962814, -0.0012087052455171943, -0.003714233171194792, -0.006131643429398537, 0.016040697693824768, -0.016559427604079247, -0.03322526067495346, 0.04399886354804039, -0.02456647716462612, 0.024606378749012947, 0.01173790730535984, 0.030618315562605858, 0.0053103226236999035, 0.023529017344117165, 0.0017324220389127731, 0.020469846203923225, -0.025790145620703697, 0.011511795222759247, -0.021055079996585846, -0.030245894566178322, 0.0168786458671093, 0.005686068441718817, 0.03059171326458454, 0.016213608905673027, 0.010301426984369755, -0.008665435016155243, 0.027771955356001854, -0.03418291360139847, -0.020616155117750168, 0.005147388204932213, -0.04011504724621773, 0.018780652433633804, -0.041232310235500336, 0.0021996106952428818, -0.009636390022933483, -0.030325699597597122, 0.030698120594024658, 0.015255955047905445, -0.006770079489797354, -0.02178662084043026, -0.008086852729320526, 0.03466174006462097, 0.01105956919491291, 0.04466390237212181, -0.0026534986682236195, 0.01177780982106924, 0.009702893905341625, 0.028756210580468178, -0.0361248254776001, -0.004651935771107674, -0.0003329342871438712, -0.006174870766699314, 0.02025703527033329, 0.028942421078681946, -0.013127835467457771, -0.0009086071513593197, 0.01306133158504963, -0.001880392897874117, -0.0018787302542477846, -0.014976639300584793, 0.01262905728071928, -0.009297220967710018, -0.015521969646215439, -0.02084226720035076, -0.04051407054066658, -0.011505144648253918, 0.03870517015457153, -0.012343091890215874, 0.018355028703808784, 0.005287046078592539, -0.02339601144194603, 0.0007764309993945062, 0.027931565418839455, 0.0030940857250243425, 0.008805093355476856, -0.00048506155144423246, -0.015162849798798561, -0.002204598393291235, 0.004415847361087799, 0.0018970187520608306, -0.014378105290234089, -0.013087932951748371, 0.01105956919491291, -0.033198658376932144, 0.025750242173671722, 0.014072188176214695, 0.007169101852923632, 0.00188538059592247, -0.012150230817496777, 0.0024207355454564095, 0.02120138704776764, -0.03303905203938484, -0.015442165546119213, -0.0005212229443714023, 0.024646280333399773, -0.002633547643199563, 0.001095648854970932, -0.028889218345284462, -0.03330506756901741, 0.001458094222471118, 0.0014098789542913437, 0.01983141154050827, 0.00400352431461215, -0.01905996724963188, 0.017330870032310486, 0.010301426984369755, -0.011152674444019794, -0.005280395969748497, 0.005792474374175072, 0.032081395387649536, -0.017264368012547493, -0.005050958134233952, 0.02246495895087719, -0.023462515324354172, 0.018594441935420036, -0.008199909701943398, -0.0048181950114667416, -0.020895469933748245, 0.019698403775691986, -0.022491559386253357, 0.011259080842137337, 0.022092537954449654, 0.006430910434573889, -0.016745638102293015, 0.03500756248831749, -0.014697323553264141, -0.0035113967023789883, 0.01669243536889553, -0.032852839678525925, -0.04000864177942276, -0.0006891448283568025, 0.013806173577904701, 0.0006475800182670355, 0.005885579623281956, -0.004465725272893906, -0.004419172648340464, 0.018581140786409378, -0.0014281674521043897, -0.017171261832118034, -0.02763894759118557, 0.025218212977051735, -0.00932382233440876, -0.006720201577991247, 0.03609822317957878, -0.0033817144576460123, -0.013806173577904701, -0.010906610637903214, -0.0022461633197963238, 0.0071624512784183025, -0.006301227957010269, -0.01898016408085823, 0.0017590235220268369, 0.010840107686817646, -0.03120354749262333, 0.010953163728117943, -0.00557301240041852, -0.0055563864298164845, -0.024114251136779785, 0.005100835580378771, 0.012748763896524906, -0.002025038469582796, 0.008838345296680927, 0.011691355146467686, 0.030990736559033394, -0.010081964544951916, 0.0008720300975255668, -0.031309954822063446, -0.02084226720035076, -0.002177997026592493, -0.025404423475265503, -0.012156881392002106, -0.021507304161787033, 0.029474450275301933, 0.02645518258213997, -0.041391920298337936, -0.018674246966838837, -0.021055079996585846, -0.026175865903496742, -0.008239811286330223, -0.013553459197282791, 0.013613312505185604, 0.019711704924702644, 0.0239014383405447, 0.002651836024597287, 0.029713865369558334, -0.004502302035689354, 0.020815666764974594, 0.0029693914111703634, 0.020749162882566452, 0.010660546831786633, -0.0017108083702623844, 0.0009875802788883448, -0.020549651235342026, -0.012768715620040894, -0.013832774944603443, -0.0044125220738351345, -0.010414483025670052, 0.02093537338078022, 0.01729096844792366, -0.02041664347052574, -0.0035014210734516382, 0.0076878308318555355, 0.009563235566020012, -0.003853890812024474, 0.026907406747341156, 0.03484795242547989, -0.01729096844792366, -0.020549651235342026, 0.011618200689554214, 0.0131344860419631, -0.0013533508172258735, -0.009250667877495289, 0.008253112435340881, 0.012296538800001144, 0.019884614273905754, -0.012715511955320835, -0.005599613767117262, -0.0028297335375100374, -0.002103180391713977, 0.039370205253362656, 0.0032021543011069298, -0.0034083158243447542, 0.028037970885634422, -0.0008275557192973793, -0.023289604112505913, 0.008379469625651836, 0.027692152187228203, -0.01984471082687378, 0.011970670893788338, -0.002872960874810815, -0.005589637905359268, -0.003310222877189517, -0.016466323286294937, 0.009869152680039406, 0.007900642231106758, -0.011691355146467686, -0.013726368546485901, -0.0022129113785922527, -0.03059171326458454, -0.0011879227822646499, -0.011684704571962357, -0.03545978665351868, 0.009636390022933483, 0.00017363707593176514, -0.002390808891505003, -0.0023159922566264868, -0.0035479736980050802, 0.00158860778901726, -0.019645201042294502, -0.03194839134812355, 0.008166657760739326, -0.0019718355033546686, -0.036444041877985, 0.03133655712008476, 0.006267976015806198, -0.011797760613262653, 0.0009651353466324508, 0.21227988600730896, 0.028836015611886978, -0.008519127033650875, 0.0321878045797348, 0.008359517902135849, -0.01746387779712677, 0.017344171181321144, 0.014551015570759773, -0.012343091890215874, 0.006118342746049166, -0.024100949987769127, 0.02661479078233242, -0.02533791959285736, -0.008213209919631481, 0.005144063383340836, -0.010647246614098549, -0.027612347155809402, -0.004086654167622328, -0.014285000041127205, 0.014803729020059109, 0.020922072231769562, -0.003514721989631653, -0.034528736025094986, -0.008711988106369972, -0.0017656738637015224, -0.005080884788185358, -0.0032104672864079475, 0.019166374579072, 0.006267976015806198, 0.01618700660765171, 0.004016824997961521, 0.02060285396873951, -0.019046666100621223, 0.006138294003903866, -0.0010889985132962465, -0.03434252366423607, 0.006484113167971373, -0.01941908709704876, 0.01779639720916748, 0.03000648133456707, 0.02408764883875847, 0.013280794024467468, 0.010554141364991665, -0.009250667877495289, -0.005858978256583214, -0.01160490047186613, -0.018793953582644463, -0.005197266116738319, 0.024100949987769127, 0.004452424589544535, -0.01880725286900997, 0.00293447682633996, 0.014511113055050373, 0.021480703726410866, 0.0023459189105778933, 0.001300147850997746, 0.012303189374506474, 0.02314329706132412, 0.0071890526451170444, 0.007275507785379887, -0.0036178026348352432, 0.0077942367643117905, -0.007741033565253019, 0.019365884363651276, -0.028942421078681946, -0.031230149790644646, -0.03694947063922882, 0.02380833402276039, -0.0017789746634662151, 0.00446905056014657, -0.0023342808708548546, -0.00497780367732048, -0.010979765094816685, 0.0018737424397841096, -0.017224464565515518, -0.01973830536007881, 0.03697607293725014, 0.030112886801362038, 0.020283635705709457, 0.019126471132040024, 0.0069097368977963924, 0.0123829934746027, -0.00992235541343689, -0.04280179738998413, -0.009835900738835335, -0.029314842075109482, 0.012103677727282047, 0.0042861648835241795, -0.018275223672389984, -0.010234923101961613, 0.013832774944603443, -0.01721116341650486, 0.001542055164463818, -0.014418007805943489, -0.013280794024467468, 0.013154436834156513, 0.01584118790924549, 0.014976639300584793, -0.005739271640777588, 0.0029926677234470844, -0.009822600521147251, 0.052777357399463654, 0.03748149797320366, 0.0066969250328838825, 0.00216303369961679, -0.01440470665693283, -0.02652168646454811, 0.02254476211965084, 0.014590917155146599, -0.0019668475724756718, 0.002896237187087536, -0.013792872428894043, -0.0010981428204104304, -0.005326948594301939, 0.008080203086137772, -0.009077758528292179, -0.01267561037093401, -0.020562952384352684, 0.014298301190137863, 0.012269937433302402, 0.005749247036874294, -0.02001762203872204, 0.013373899273574352, 0.012043824419379234, -0.031176947057247162, -0.004602057859301567, 0.013207639567553997, -0.03907758742570877, -0.01957869715988636, -0.02584334835410118, 0.007840788923203945, -0.032081395387649536, 0.005942108109593391, -0.02424725890159607, -0.00567609304562211, 0.009250667877495289, 0.004016824997961521, -0.0052637699991464615, -0.034794747829437256, -0.008519127033650875, -0.0216935146600008, 0.019565396010875702, 0.00171745871193707, -0.014391406439244747, 0.006713551003485918, -0.009862502105534077, 0.022943785414099693, 0.014298301190137863, -0.009297220967710018, -0.012402945198118687, -0.03588540852069855, 0.0018321776296943426, -0.013792872428894043, 0.01670573651790619, 0.019725004211068153, -0.03923719748854637, -0.029288241639733315, -0.012509350664913654, 0.00978934857994318, 0.018089013174176216, -0.055384304374456406, 0.0018837180687114596, 0.022092537954449654, -0.01788950152695179, -0.02891582064330578, -0.016226908192038536, -0.16854704916477203, 0.0018321776296943426, -0.013067982159554958, -0.01620030775666237, 0.036444041877985, 0.007847439497709274, -0.012861820869147778, -0.0034548684488981962, -0.02000432088971138, -0.005396777298301458, 0.02230534888803959, 0.0038472404703497887, -0.004126556217670441, 0.007574774324893951, -0.000896137731615454, 0.01855454035103321, 0.001401565968990326, 0.02355561964213848, 0.031309954822063446, -0.0038106634747236967, 0.04160473123192787, -0.01199727226048708, 0.0029959927778691053, -0.036231230944395065, 0.021547207608819008, -0.01612050272524357, -0.03067151829600334, 0.027931565418839455, 0.0028945745434612036, -0.026428580284118652, 0.0004925432149320841, 0.0041199056431651115, 0.034794747829437256, -0.005872278939932585, 0.015468766912817955, 0.005878929514437914, -0.0003073718980886042, 0.0019003439228981733, -0.015827886760234833, 0.006484113167971373, 0.018687546253204346, 0.0070493947714567184, 0.017264368012547493, 0.01713136024773121, 0.004512277897447348, 0.02221224457025528, 0.021760018542408943, -0.007155800703912973, 0.016040697693824768, -0.0015844512963667512, 0.04474370554089546, -0.038332749158144, 0.0014647445641458035, 0.00869203731417656, 0.009164213202893734, 0.018168818205595016, 0.018501335754990578, 0.013127835467457771, -0.0021430824417620897, -0.06400318443775177, 0.008831694722175598, -0.029128631576895714, 0.0182220209389925, -0.031309954822063446, -0.0030159440357238054, -0.021055079996585846, 0.002956090494990349, 0.010035412386059761, -0.02984687127172947, 0.009277270175516605, 0.010281476192176342, -0.01038788165897131, -0.008798442780971527, 0.010627294890582561, -0.0018920309375971556, -9.5209434221033e-06, -0.002279415261000395, 0.016812141984701157, 0.03261342644691467, 0.0048913490027189255, 0.0023459189105778933, 0.013713068328797817, -0.008160007186233997, 0.02601625770330429, -0.0248457919806242, 0.002038339152932167, -0.004728415049612522, 0.020150627940893173, -0.001490514725446701, -0.011252430267632008, -3.64731386071071e-05, -0.014950037933886051, 0.015362360514700413, 0.017769794911146164, -0.0071425000205636024, -0.009416927583515644, 0.01932598277926445, 0.005566361825913191, -0.0028895868454128504, 0.014378105290234089, 0.014378105290234089, 0.02720002457499504, -0.006274626590311527, 0.005732621066272259, 0.03947661072015762, 0.01719786413013935, -0.002610271330922842, 0.02297038771212101, 0.0131344860419631, -0.01288177166134119, -0.04950537160038948, 0.015149548649787903, 0.018780652433633804, 0.015122947283089161, -0.005097510758787394, 0.040567271411418915, -0.0005548904882743955, -0.014750526286661625, 0.004382595419883728, 0.013792872428894043, 0.061502646654844284, 0.013154436834156513, -0.0073154098354279995, -0.0008246462093666196, 0.0017723243217915297, -0.012349741533398628, -0.10385221987962723, -0.012941624969244003, -0.013393850065767765, -0.002789831254631281, -0.0008753552683629096, 0.024194056168198586, -0.012715511955320835, 0.027346331626176834, -0.003920394461601973, 0.02763894759118557, 0.0017972631612792611, 0.0018288524588569999, -0.014285000041127205, -0.004176434129476547, -0.0047516911290585995, -0.010540840215981007, 0.0033551128581166267, -0.005290371365845203, -0.02457977645099163, 0.018860457465052605, 0.010647246614098549, -0.005526459775865078, 0.014018985442817211, -0.02508520521223545, -0.008146706037223339, -0.024699483066797256, -0.04689842835068703, 0.015003240667283535, 0.005336923990398645, -0.005011055618524551, 0.053947821259498596, -0.014138692058622837, 0.015907691791653633, -0.018953561782836914, 0.0067102257162332535, -0.010647246614098549, -0.01191746722906828, -0.0055563864298164845, 0.00893810112029314, -0.026574889197945595, -0.0050443075597286224, 0.008086852729320526, 0.024859093129634857, -0.028037970885634422, -0.008459273725748062, 0.004834820982068777, 0.0037973627913743258, -0.00023712734400760382, -0.00015119207091629505, -0.010035412386059761, -0.04083328694105148, -0.016719035804271698, -0.013014779426157475, -0.009357074275612831, 0.015415563248097897, 0.005948758218437433, 0.0038206391036510468, 0.00801369920372963, -0.020283635705709457, -0.025550730526447296, -0.022411756217479706, -0.010394532233476639, -0.03168237581849098, 0.022478260099887848, 0.024925597012043, 0.009862502105534077, -0.0006675311597064137, -0.018341727554798126, -0.006105042062699795, -0.009855852462351322, -0.0072223045863211155, 0.02814437635242939, -0.02483249083161354, -0.0010623970301821828, -0.027904963120818138, 0.001792275463230908, -0.018288524821400642, -0.028091173619031906, 0.012828568927943707, -0.0079671461135149, -0.004721764475107193, -0.027958165854215622, -0.006038538180291653, 0.01177780982106924, 0.02442016825079918, -0.0069562895223498344, -0.024805890396237373, 0.0016318351263180375, 0.017410675063729286, -0.028676407411694527, 0.005652816500514746, 0.0028446968644857407, 0.01149184349924326, 0.004020150285214186, 0.0017590235220268369, 0.007494969759136438, -0.011638152413070202, -0.027067016810178757, 0.004545529838651419, 0.010713750496506691, -0.005160688888281584, 0.0033235237933695316, -0.05820406228303909, 0.026654692366719246, -0.0013500256463885307, 0.00995560735464096, 0.0271335206925869, -0.015322457998991013, 0.0027781932149082422, -0.021839823573827744, -0.014072188176214695, 0.0041664582677185535, -0.02322310023009777, 0.0030442080460488796, -0.010687149129807949, -0.02763894759118557, -0.021068381145596504, -0.019565396010875702, 0.009862502105534077, -0.0024223981890827417, 0.005306997336447239, -0.00043809329508803785, 0.005037656985223293, -0.007448417134582996, 0.01016841921955347, 0.010261524468660355, -0.020815666764974594, 0.01746387779712677, -0.02152060531079769, 0.023608822375535965, 0.003296922193840146, -0.03960961848497391, -0.0050443075597286224, -0.015814585611224174, -0.0034315921366214752, 0.016719035804271698, -0.006331154610961676, -0.03516716882586479, 0.006387682631611824, 0.0028446968644857407, 0.020376741886138916, -0.007874040864408016, -0.008126755245029926, -0.028516797348856926, 0.010241573676466942, -0.019166374579072, -0.03189518675208092, -0.03947661072015762, 0.015654977411031723, -0.017849599942564964, 0.005120786838233471, 0.0296606607735157, 0.022850679233670235, 0.00444909930229187, -0.028357189148664474, -0.050223615020513535, -0.014178594574332237, -0.039370205253362656, 0.016466323286294937, 0.001996774459257722, -0.010873358696699142, -0.006969590671360493, 0.033358268439769745, 0.01796930655837059, -0.0021663587540388107, -0.014138692058622837, 0.013513556681573391, -0.004312766715884209, -0.028170978650450706, 0.015202751383185387, 0.020323539152741432, -0.017410675063729286, -0.0047051385045051575, -0.013500256463885307, 0.005360200069844723, 0.0001696884137345478, 0.015920991078019142, -0.022770876064896584, 0.021799921989440918, 0.0011147686745971441, -0.031575970351696014, 0.02093537338078022, 0.0033002474810928106, -0.01839493028819561, -0.006583868991583586, 0.013407151214778423, 0.018075712025165558, 0.010101916268467903, -0.004322742111980915, -0.008279713802039623, 0.0017141335410997272, -0.006410959176719189, -0.010527539998292923, 0.0021663587540388107, 0.0015021528815850616, 0.015987494960427284, 0.018075712025165558, 0.006194822024554014, 0.016586029902100563, -0.00601858738809824, -2.9459071811288595e-05, 0.020203832536935806, 0.018581140786409378, -0.010660546831786633, -0.013806173577904701, -0.021547207608819008, -0.016240209341049194, 0.024366965517401695, -0.0052770706824958324, -0.014989939518272877, 0.014817030169069767, 0.02094867266714573, 0.0343957282602787, 0.041072700172662735, -0.008851645514369011, 0.010747002437710762, -0.01635991595685482, 0.0012294875923544168, 0.004020150285214186, -0.009835900738835335, -0.012915023602545261, 0.03447553142905235, 0.014883534051477909, 0.02456647716462612, 0.0018820554250851274, -0.048095494508743286, 0.024273859336972237, 0.017397373914718628, -0.03077792376279831, -0.004099954850971699, 0.03133655712008476, -0.008426021784543991, -0.03256022557616234, 0.01016841921955347, -0.007727732881903648, -0.012110328301787376, -0.018341727554798126, -0.0015112971886992455, -0.025231514126062393, 0.009463479742407799, 0.016838742420077324, 0.07028114050626755, 0.0071158986538648605, -0.00872528925538063, -0.0024090975057333708, 0.00040504924254491925, 0.004089978989213705, 0.0030541836749762297, 0.010095265693962574, -0.01085340790450573, -0.027319731190800667, -0.013107884675264359, -0.004432473331689835, -0.00116048997733742, 0.006936338730156422, -0.018089013174176216, -0.009456830099225044, 0.0021281191147863865, 0.014577616937458515, -0.008100153878331184, 0.0071624512784183025, 0.010354629717767239, 0.00432606739923358, 0.018514636904001236, -0.014471210539340973, -0.020882170647382736, 0.0036477292887866497, 0.018581140786409378, 0.011558347381651402, 0.013925880193710327, -0.017570285126566887, 0.02382163517177105, -0.0028430342208594084, -0.02348911575973034, 0.011684704571962357, 0.002794818952679634, 0.010361280292272568, 0.005376826040446758, 0.018527938053011894, -0.0035479736980050802, 0.004735065158456564, -0.0075149210169911385, 0.0065572671592235565, -0.0006280445377342403, -0.01612050272524357, 0.021081680431962013, -0.014285000041127205, 0.005519809201359749, -0.01973830536007881, 0.016825443133711815]" +7,And GitHub's developer-first ethos has never been stronger. More than 90 million people now use the service to build software for any cloud on any platform up three times. GitHub advanced security is helping organizations improve their security posture by bringing features directly into the developer's workflow. Toyota North America chose the offering this quarter to help its developers build and secure many of its most critical applications.,"[-0.0005771665018983185, -0.019794421270489693, -0.007520240731537342, -0.03417918458580971, 0.003507396439090371, 0.00931662879884243, -0.033687397837638855, -0.005836553871631622, -0.009589843451976776, -0.03008096292614937, 0.022540230304002762, -0.008148634806275368, 0.004781261086463928, -0.03144703805446625, -0.015163428150117397, -0.009972344152629375, 0.019521206617355347, -0.027867920696735382, -0.005238896235823631, -0.014835570007562637, -0.012554225511848927, 0.00999966636300087, -0.016406556591391563, -0.0005861313547939062, -0.02394728735089302, 0.026515508070588112, -0.005911687854677439, -0.014412086457014084, 0.004924698732793331, -0.023141304031014442, 0.02662479318678379, -0.013469495810568333, -0.004371438641101122, 0.007233364973217249, -0.018182452768087387, -0.008333055302500725, 0.0022318244446069, -0.008374037221074104, -0.004528537392616272, 0.005638472735881805, 0.021706925705075264, 0.02202112227678299, 8.676708239363506e-05, -0.008189616724848747, -0.027102919295430183, 0.007349481340497732, -0.01930263452231884, -0.008039348758757114, -0.005898027215152979, 0.02193915843963623, -0.011884848587214947, 0.014425748027861118, -0.020982906222343445, -0.011072034947574139, -0.011017391458153725, 0.009425914846360683, -0.02994435466825962, 0.01863325759768486, 0.022321658208966255, 0.0041631124913692474, -0.01236297469586134, 0.023045677691698074, -0.030845964327454567, -0.009473727084696293, -0.003848915221169591, -0.007328989915549755, -0.01498583797365427, 0.03672008588910103, 0.0020286208018660545, -0.011563821695744991, 0.020190581679344177, 0.009815245866775513, 0.01666611060500145, 0.015791822224855423, 0.01592843048274517, -0.005781910847872496, 0.001685394556261599, 0.0035278876312077045, 0.010539265349507332, -0.0060722013004124165, -0.007445106282830238, -0.0180595051497221, 0.002723611192777753, -0.005973161198198795, -0.015218070708215237, -0.004958850797265768, -0.014712623320519924, 0.012533734552562237, -0.008708725683391094, 0.01197364367544651, 0.03786758705973625, 0.008128143846988678, 0.0037464594934135675, 0.011755071580410004, -0.0018681070068851113, 0.004603671375662088, 0.0062532066367566586, 0.009077565744519234, -0.0011722627095878124, -0.018168792128562927, -0.0035381331108510494, 0.0035347179509699345, -0.007848098874092102, -0.007328989915549755, -0.022786123678088188, -0.004904207773506641, 0.025559255853295326, 0.007718321401625872, 0.016256287693977356, -0.0019910538103431463, 0.0016905172960832715, 0.014398425817489624, -0.01872888207435608, -0.03868723288178444, 0.003900142852216959, -0.01603771559894085, 0.009460066445171833, -0.003801102517172694, 0.00011846428242279217, -0.009740111418068409, 0.02323692850768566, 0.020491119474172592, 0.028387030586600304, 0.00900243129581213, 0.004917868413031101, 0.018360042944550514, -0.005590660031884909, -0.005727267824113369, 0.012158064171671867, -0.011741410940885544, 0.020409153774380684, -0.011160829104483128, 0.007854929193854332, 0.0016042838105931878, -0.015532268211245537, 0.023182285949587822, -0.019808081910014153, 0.015081463381648064, -0.009398593567311764, -0.013073333539068699, -0.0003389572666492313, 0.009542031213641167, -0.01602405495941639, 0.017130576074123383, -0.006939658895134926, 0.006925998255610466, 0.02053210139274597, 0.01494485605508089, 0.025545595213770866, -0.004965681117027998, -0.0034151864238083363, -0.014056907035410404, 0.0059287636540830135, 0.019849063828587532, -0.018797187134623528, 0.004115299787372351, 0.0034834900870919228, 0.020217902958393097, -0.02874220907688141, 0.015805482864379883, -0.013100654818117619, 0.022430945187807083, -0.01494485605508089, -0.018387364223599434, -0.003722553141415119, 0.021734246984124184, -0.006813297048211098, -0.007609035354107618, 0.0026621378492563963, 0.004057241603732109, 0.008073500357568264, 0.02266317792236805, -0.019562188535928726, 0.005314030218869448, -0.009132208302617073, 0.012882083654403687, 0.018209774047136307, 0.007725151721388102, -0.04062705859541893, 0.0008200716692954302, 0.01728084310889244, -0.003454460995271802, 0.014548694714903831, 0.03002631850540638, -0.003924049437046051, 0.00967863854020834, 0.02725318819284439, 0.01797754131257534, 0.01194632239639759, 0.002160105388611555, 0.016297269612550735, 0.014589676633477211, -0.0010894445003941655, -0.0066903503611683846, -0.6561529636383057, -0.006707426160573959, 0.02394728735089302, -0.02721220627427101, 0.022827105596661568, 0.00483248895034194, 0.009091226384043694, 0.025586577132344246, -0.02407023496925831, 0.01741745136678219, -0.004993002396076918, 0.007533901371061802, -0.009842567145824432, -0.02811381407082081, -0.0077593037858605385, -0.026884347200393677, 0.013551459647715092, -0.023701393976807594, 0.0047368635423481464, 0.009453236125409603, -0.018824508413672447, 0.0019364106701686978, -0.006458117626607418, -0.0239882692694664, 0.004603671375662088, 0.0038762367330491543, 0.013776862062513828, -0.002950721187517047, -0.015860125422477722, 0.0292886383831501, -0.010675872676074505, -4.6398508857237175e-05, 0.026925329118967056, 0.014671641401946545, 0.04579082131385803, -0.012472260743379593, -0.013285075314342976, 0.01464431919157505, 0.013742710463702679, 0.04931529238820076, -0.012096590362489223, -0.0032751637045294046, 0.019152365624904633, 0.021064870059490204, -0.002645061817020178, 0.008169125765562057, 0.037676338106393814, -0.020941922441124916, -0.014876551926136017, 0.00583313824608922, 0.011748241260647774, -0.009596673771739006, -0.001322530908510089, -0.00482565863057971, -0.00667327456176281, -0.00415628170594573, 0.023195946589112282, -0.02009495720267296, -0.009494218043982983, -0.022198712453246117, -0.019671473652124405, 0.01166627649217844, -0.018961114808917046, -0.04396028071641922, -0.03196614608168602, 0.009623995050787926, 0.013216771185398102, -0.003462999127805233, -0.005423316266387701, -0.015190749429166317, 0.02793622575700283, 0.01193266175687313, -0.004945190157741308, -0.03349614888429642, 0.012574716471135616, 0.054970841854810715, 0.04445206746459007, -0.004166527651250362, -0.010880784131586552, 0.010115782730281353, -0.004207509569823742, -0.014166193082928658, 0.016256287693977356, -0.028332386165857315, 0.00482565863057971, 0.024220502004027367, -0.020764334127306938, -0.029042745009064674, 0.02860560268163681, -0.01999933272600174, 0.012909404933452606, 0.0007428030367009342, -0.004415836185216904, -0.026160327717661858, 0.013483156450092793, 0.024780593812465668, 0.0037020621821284294, 0.0024179520551115274, 0.021119512617588043, -0.0126908328384161, -0.02129710279405117, -0.01657048426568508, 0.02920667454600334, 0.013244093395769596, 0.02054576203227043, 0.02937060408294201, -0.012813779525458813, 0.005385749042034149, 0.017622362822294235, -0.026460865512490273, -0.030791321769356728, -0.012417618185281754, -0.01993102766573429, 0.004709542263299227, 0.013845166191458702, -0.01930263452231884, -0.009118547663092613, -0.0024913784582167864, 0.007684169337153435, -0.028223101049661636, -0.018428346142172813, 0.004231416154652834, -0.01870156079530716, 0.0015726933488622308, 0.017007628455758095, 0.015668874606490135, 0.007800285704433918, -0.006885015871375799, 0.008503814227879047, -0.0011944614816457033, 0.0019073816947638988, -0.005423316266387701, 0.02062772586941719, -0.0024623493663966656, 0.022253355011343956, 0.026255954056978226, 0.011003730818629265, -0.019466562196612358, 0.005594075191766024, -0.011427213437855244, -0.011420383118093014, 0.012567886151373386, 0.004617332015186548, 0.018455667421221733, 0.0025989569257944822, -0.032977040857076645, -0.03275846689939499, -0.015040481463074684, 0.002476010238751769, -0.013729049824178219, 0.024206841364502907, 0.007089926861226559, -0.014097889885306358, 0.026488186791539192, 0.0032632106449455023, 0.0010766375344246626, -0.008182786405086517, -0.054260481148958206, -0.016515841707587242, -0.006266867276281118, -0.004658314399421215, 0.015873786062002182, -0.013640254735946655, -0.011468196287751198, -0.00650934549048543, -0.016912003979086876, -0.008818011730909348, 0.021884514018893242, -0.012929895892739296, -0.01592843048274517, -0.017649684101343155, -0.007410954684019089, -0.0009272231254726648, -0.0017639438156038523, 0.013244093395769596, 0.001723815337754786, -0.014726283960044384, 0.003770365845412016, -0.0009784508729353547, 0.004347532521933317, 0.02274514175951481, 0.0022659762762486935, -0.008865823969244957, 0.007875420153141022, 0.028851496055722237, -0.008872654289007187, 0.010614399798214436, 0.033660076558589935, 0.009774263948202133, 0.006847448647022247, -0.018892811611294746, 0.008059839718043804, 0.0012175139272585511, 0.027512742206454277, -0.006041464861482382, -0.013168958947062492, -0.004357778001576662, -0.004241661634296179, -0.0035415482707321644, 0.019452901557087898, 0.008469662629067898, 0.016269948333501816, -0.005051060579717159, -0.022991035133600235, 0.0029934109188616276, -0.018086828291416168, -0.009446405805647373, -0.023674072697758675, 0.00334005244076252, 0.010416318662464619, 0.00965814758092165, -0.02263585664331913, -0.010395827703177929, -0.0014087643940001726, 0.01665244996547699, 0.01725352182984352, -0.01935727708041668, 0.013647085055708885, -0.010908105410635471, -0.0003242292732466012, 0.015491285361349583, 0.001881767762824893, 0.03005364164710045, -0.031119178980588913, 0.009583013132214546, 0.02136540599167347, -0.003985522780567408, 0.019821742549538612, 0.00967180822044611, -0.03655615448951721, -0.008046179078519344, 0.015600571408867836, -0.0065264212898910046, 0.009268815629184246, 0.013674406334757805, 0.012779627926647663, -0.00234111025929451, -0.028250422328710556, 0.02199380099773407, -0.002691166941076517, 0.011481856927275658, -0.013899808749556541, 0.019193347543478012, -0.02136540599167347, 0.033632755279541016, 0.027116579934954643, 0.059014420956373215, -0.00831256341189146, -0.03401525691151619, 0.0004555004998110235, -0.013647085055708885, 0.007533901371061802, 0.016283608973026276, 0.008476492948830128, 0.01935727708041668, -0.00597657635807991, 0.0072675165720283985, -0.0025255302898585796, 0.023182285949587822, 0.031692929565906525, -0.004665144719183445, 0.012048778124153614, -0.010539265349507332, 0.007356311660259962, 0.0020764332730323076, -0.008093992248177528, -0.0017152774380519986, -0.00968546885997057, 0.009589843451976776, -0.010990070179104805, -0.004091393202543259, 0.018428346142172813, -0.0021840117406100035, -0.005276462994515896, -0.009774263948202133, 0.0017673589754849672, -0.023455500602722168, 0.01864691823720932, -0.01786825619637966, 0.018920132890343666, -0.024493716657161713, -0.035681869834661484, 0.017499415203928947, 0.01942558027803898, 0.007574883755296469, 0.0172945037484169, -0.02057308331131935, 0.006803051568567753, -0.009603504091501236, 0.014111550524830818, 0.01004747860133648, 0.015873786062002182, -0.011365740559995174, -0.0005950962658971548, 0.019780760630965233, 0.010279711335897446, 0.009781094267964363, -0.017840934917330742, -0.014384765177965164, -0.013592442497611046, 0.024302467703819275, -0.0319388248026371, -0.01793655939400196, 0.002096924465149641, 0.042867422103881836, 0.00433387141674757, -0.014494051225483418, -0.019767099991440773, -0.002052527153864503, -0.040244556963443756, 0.005488204769790173, -0.026187648996710777, -0.008210108615458012, -0.011017391458153725, 0.004006013739854097, 0.013052842579782009, 0.018824508413672447, -0.014056907035410404, 0.010798819363117218, 0.0063659073784947395, -0.02057308331131935, -0.02058674395084381, -0.014507711865007877, 0.023168625310063362, 0.09141770750284195, 0.0119941346347332, -0.011591142974793911, 0.010061139240860939, -0.029015423730015755, 0.02064138650894165, -0.002609202405437827, -0.014589676633477211, 0.017677005380392075, -0.012055608443915844, -0.006598140113055706, -0.008380867540836334, 0.004740278702229261, -0.01202145591378212, 0.020832637324929237, 0.014890212565660477, -0.003763535525649786, -0.0047573549672961235, -0.0398893766105175, -0.03141971677541733, -0.005341351497918367, -0.008134974166750908, 0.02588711306452751, -0.009412254206836224, 0.03412454202771187, -0.0054711285047233105, 0.023701393976807594, 0.02325058914721012, -0.0038147633895277977, -0.0041357907466590405, 0.009398593567311764, 0.010826140642166138, -0.02266317792236805, 0.009828906506299973, -0.028141137212514877, 0.03980741277337074, -0.023783357813954353, 0.012048778124153614, -0.0021618129685521126, -0.0002482413547113538, 0.0018988436786457896, -0.003109527286142111, -0.0002589138166513294, -0.011884848587214947, -0.005355012137442827, -0.0009716205531731248, -0.0009229541174136102, 0.03442507982254028, -0.01998567208647728, -0.028960781171917915, -0.004528537392616272, -0.010621230117976665, -0.051582977175712585, 0.008462832309305668, -0.009726450778543949, 0.010614399798214436, 0.000849100761115551, -0.006727917119860649, -0.020245226100087166, -0.04133741557598114, -0.04248492047190666, -0.03715723007917404, -0.010505113750696182, -0.02524505741894245, -0.0023462329991161823, -0.015873786062002182, -0.016502181068062782, -0.010498283430933952, -0.008196447044610977, -0.0123083321377635, 0.003302485216408968, -0.030900606885552406, -0.02652916871011257, 0.015860125422477722, 0.03535401076078415, 0.0032802866771817207, -0.004187018610537052, 0.010238729417324066, -0.013387531042098999, 0.005324275698512793, -0.0003037381393369287, -0.02118781767785549, 0.008080331608653069, -0.023537464439868927, -0.008319394662976265, 0.006902091670781374, -0.011809715069830418, -0.019070401787757874, 0.015108784660696983, 0.02342817932367325, -0.00667327456176281, -0.011010561138391495, 0.0034271397162228823, -0.003985522780567408, -0.007889080792665482, 0.02273148111999035, 0.015463964082300663, 0.012916235253214836, 0.0003916792047675699, -0.0001500547514297068, -0.006058540660887957, 0.0009485680493526161, -0.003010486951097846, -0.018879150971770287, -0.006656198296695948, 0.02135174535214901, 0.011065203696489334, -0.0029012009035795927, 0.005262802354991436, 0.0015539098531007767, 0.00971279013901949, -0.002812406048178673, -0.007588544394820929, -0.006635707337409258, -0.01229467149823904, -0.0034425079356878996, 0.03240329027175903, -0.005877535790205002, 0.024999164044857025, -0.006618631538003683, 0.0007065166719257832, -0.02811381407082081, 0.026898007839918137, 0.020204242318868637, 0.004033335018903017, 0.004234831314533949, 0.022253355011343956, -0.010901275090873241, -0.04264884814620018, 0.0019073816947638988, -0.01596941240131855, 0.008722386322915554, -0.0053276908583939075, 0.018537631258368492, -0.023154964670538902, -0.042293667793273926, -0.0011253039119765162, 0.00300536397844553, -0.009979174472391605, -0.02527238056063652, -0.011802884750068188, 0.0012217829935252666, 0.003232473973184824, -0.02457568235695362, 0.003893312532454729, -0.024316128343343735, -0.0029080312233418226, 0.0002717207826208323, -0.004634407814592123, 0.030463462695479393, -0.037047941237688065, -0.0004149451560806483, -0.01655682362616062, -0.0069908867590129375, -0.018291737884283066, -0.007609035354107618, 0.0010749299544841051, -0.026938991621136665, 0.04218438267707825, 0.03685669228434563, 0.027157561853528023, -0.018496649339795113, 0.013524138368666172, 0.017622362822294235, -0.0016999091021716595, -0.01723986119031906, -0.005232065450400114, 0.018182452768087387, 0.0034322624560445547, 0.02393362671136856, 0.009432745166122913, 0.02191183716058731, -0.004829073790460825, 0.0064000594429671764, 0.0048632253892719746, 0.029753103852272034, -0.008865823969244957, 0.0004271117504686117, -0.007410954684019089, -0.051692262291908264, -0.01495851669460535, -0.003951370716094971, -0.015805482864379883, 0.023018356412649155, -0.03450704365968704, -0.010115782730281353, 0.010901275090873241, -0.0002160105505026877, 0.018155131489038467, 0.012752306647598743, 0.017622362822294235, 0.016597805544734, -0.010867123492062092, 0.027649350464344025, 0.03051810711622238, -0.020313529297709465, -0.008797520771622658, -0.03131042793393135, -0.014453069306910038, 0.03483490273356438, 0.037703659385442734, 0.03248525410890579, 0.012444939464330673, -0.011837036348879337, -0.001246543019078672, 0.03404257819056511, -0.04792189598083496, -0.014302801340818405, 0.010573416948318481, -0.018250755965709686, 0.0225948728621006, -0.03538133203983307, -0.010764667764306068, 0.0014838984934613109, -0.030162926763296127, 0.01267717219889164, 0.009214173071086407, 0.01231516245752573, -0.028195779770612717, -0.007042114622890949, 0.012957217171788216, 0.012854761444032192, 0.04983440041542053, -0.0027253187727183104, 0.012936726212501526, 0.019534867256879807, 0.030244890600442886, -0.013892978429794312, -0.017185218632221222, -0.007472428027540445, 0.0023667241912335157, 0.020491119474172592, 0.008865823969244957, -0.005269632674753666, -0.013626594096422195, 0.0022984205279499292, -0.0034049409441649914, -0.00864725187420845, -0.011147168464958668, 0.024999164044857025, 0.001157748163677752, -0.007895911112427711, -0.021119512617588043, -0.015163428150117397, -0.01939825899899006, 0.0038215937092900276, 0.0116116339340806, 0.021816210821270943, 0.013974943198263645, -0.01670709252357483, 0.002356478711590171, 0.0200129933655262, -0.0179228987544775, 0.021802550181746483, 0.005242311395704746, -0.0041357907466590405, 0.006844033487141132, -0.02465764619410038, 0.001629043952561915, -0.0056555490009486675, -0.029152031987905502, 0.027676671743392944, 0.008339885622262955, -0.005409655161201954, 0.02665211446583271, 0.03442507982254028, 0.004446572624146938, -0.0004294597019907087, -0.006652783136814833, 0.03185686096549034, -0.012888913974165916, -0.034288473427295685, -0.006403474602848291, 0.029643818736076355, -0.0013105778489261866, -0.0009024630417115986, -0.01663878932595253, -0.016201645135879517, -0.013701727613806725, 0.002281344495713711, 0.007745642680674791, -0.0002796183980535716, 0.0021464447490870953, -0.007697830442339182, 0.006895261351019144, -0.025490952655673027, -0.009910871274769306, -0.022144069895148277, 0.04133741557598114, -0.01786825619637966, -0.008845333009958267, 0.010108951479196548, -0.007499749306589365, 0.014808248728513718, -0.007991536520421505, -0.006055125501006842, -0.014330122619867325, 0.03680204972624779, -0.014862891286611557, 0.010156764648854733, 0.004771015606820583, 0.024165859445929527, -0.03871455416083336, 0.03685669228434563, -0.01163212489336729, 0.0007581713725812733, 0.010662212036550045, -0.00652300613000989, -0.026761401444673538, -0.013059672899544239, 0.016543162986636162, 0.00894778873771429, 0.0004542197857517749, 0.0002954136289190501, 0.0009417376713827252, 0.007226534653455019, 0.008367206901311874, -0.01728084310889244, -0.02605104260146618, 0.015860125422477722, -0.012765967287123203, 0.003982107620686293, 0.03797687217593193, 0.0006693765171803534, -0.01302552130073309, -0.02132442407310009, -0.008005197159945965, -0.011133507825434208, -0.015436642803251743, -0.04456135258078575, 0.0013857119483873248, 0.003582530654966831, -0.00932345911860466, 0.007192382588982582, -0.020504780113697052, -0.0022403623443096876, -0.02327791042625904, 0.003027562750503421, 0.00895461905747652, 0.013551459647715092, -0.00896827969700098, 0.010149934329092503, 0.020996566861867905, -0.0007308499189093709, 0.00432021077722311, -0.019125044345855713, -0.021542996168136597, -0.022321658208966255, -0.02464398555457592, 0.013804183341562748, -0.027471760287880898, 0.03005364164710045, 0.01665244996547699, -0.03396061435341835, -0.007943723350763321, -0.02277246303856373, -0.019507545977830887, -0.024958182126283646, -0.011850696988403797, 0.021611299365758896, 0.029479889199137688, 0.009439575485885143, 0.0033502979204058647, 0.00902975257486105, -0.00447047920897603, 0.018810847774147987, -0.009521540254354477, 0.005255972035229206, 0.011570652015507221, -0.015218070708215237, 0.02939792536199093, -0.014220836572349072, -0.03248525410890579, 0.009159530512988567, -0.011516008526086807, -0.00967180822044611, 0.0006988325039856136, 0.019097723066806793, -0.01876986399292946, 0.0119941346347332, 0.004627577494829893, 0.015436642803251743, -0.010901275090873241, 0.030272211879491806, 0.015614232048392296, -0.03259453922510147, 0.01201462559401989, 0.038987766951322556, -0.001315700588747859, 0.0011654323898255825, -0.006441041827201843, -0.0030753754545003176, 0.011570652015507221, 0.009139038622379303, -0.0179912019520998, -0.011912170797586441, -0.012424448505043983, 0.0012422740692272782, 0.008818011730909348, 0.009425914846360683, -0.008729216642677784, 0.01606503687798977, 0.0026997048407793045, -0.0004512315208557993, -0.006645952817052603, 0.011816545389592648, -0.0019910538103431463, 0.014207175932824612, -0.006840618327260017, -0.020299868658185005, 0.003469829447567463, -0.009555691853165627, 0.021515674889087677, -0.0035449634306132793, -0.006225884892046452, -0.001967147458344698, -0.016406556591391563, -0.02208942547440529, -0.0047266180627048016, -0.008736046962440014, -0.021583978086709976, -0.0039650313556194305, 0.001056146458722651, 0.0010996900964528322, 0.02337353676557541, -0.020777994766831398, -0.003807932836934924, -0.002872171811759472, -0.018974775448441505, 0.0036098521668463945, 0.009193682111799717, -0.052976373583078384, 0.014179853722453117, 0.027020955458283424, -0.021816210821270943, -0.0059287636540830135, 0.21605835855007172, -0.00018719490617513657, -0.0022215787321329117, 0.024999164044857025, -0.007117248605936766, -0.002947306027635932, 0.011215472593903542, -0.008865823969244957, -0.030354177579283714, -0.006434211507439613, -0.014671641401946545, 0.010313862934708595, -0.010334353893995285, -0.010163594968616962, 3.714015110745095e-05, -0.02467130683362484, -0.012547395192086697, -0.004350947681814432, -0.025641219690442085, 0.014207175932824612, 0.011133507825434208, -0.008326224982738495, -0.019043080508708954, -0.0006582771893590689, -0.0008145219762809575, 0.01932995580136776, -0.012144402600824833, 0.034998830407857895, 0.029561854898929596, 0.015532268211245537, -0.009746941737830639, 0.012055608443915844, 0.00468905083835125, -0.0005203890614211559, 0.016174323856830597, -0.01923432946205139, 0.012410787865519524, -0.008114483207464218, 0.007171891629695892, -0.01999933272600174, -0.0027321490924805403, 0.0023581862915307283, 0.03385132923722267, -0.00027022662106901407, -0.005375503562390804, -0.0011526254238560796, -0.015696197748184204, -0.013927130028605461, -0.006116598844528198, 0.01872888207435608, -0.031119178980588913, -0.01334654912352562, 0.01923432946205139, 0.010928596369922161, 0.002918276935815811, 0.000313983706291765, -0.0015342725673690438, 0.006987471599131823, -0.0027560554444789886, 0.023687733337283134, -0.0057921563275158405, 0.016160663217306137, -0.008838502690196037, 0.026337917894124985, -0.04319527745246887, 0.0018681070068851113, -0.020368171855807304, 0.023537464439868927, 0.007397294044494629, -0.009507878683507442, -0.00582630792632699, 0.010669042356312275, -0.017513075843453407, 0.007001132238656282, -0.021146833896636963, -0.020463796332478523, 0.03521740436553955, 0.017021289095282555, 0.01002015732228756, 0.037047941237688065, 0.01528637483716011, -0.005300369579344988, 0.006953319534659386, -0.040271878242492676, 0.012943556532263756, -0.0345890074968338, 0.008257920853793621, -0.006191732827574015, -0.02723952755331993, -0.0011329881381243467, 0.010894444771111012, -0.015819143503904343, -0.0038147633895277977, -0.03002631850540638, -0.013858826830983162, 0.010669042356312275, 0.021542996168136597, 0.010225067846477032, 0.006864524912089109, 0.0007970191654749215, -0.008736046962440014, 0.05677406117320061, -0.0014659687876701355, 0.0015257345512509346, -0.01662512682378292, 0.003903558012098074, -0.01238346565514803, 0.017581379041075706, 0.010095290839672089, -0.003920634277164936, -0.010607569478452206, -0.012622528709471226, -0.007581714075058699, -0.015177088789641857, 0.005686285439878702, 0.010259220376610756, 0.004545613192021847, -0.013974943198263645, 0.018155131489038467, -0.0032495500054210424, 0.007745642680674791, -0.012438109144568443, 0.008346715942025185, 0.00936444103717804, -0.02055942267179489, -0.0009502756292931736, -0.01235614437609911, -0.009159530512988567, -0.0116116339340806, -0.016898343339562416, 0.0039684465155005455, -0.015655213966965675, 0.020477458834648132, -0.025777827948331833, -0.009261985309422016, -0.01789557747542858, -0.0027355642523616552, -0.0015240269713103771, -0.022471927106380463, 0.029698461294174194, 0.0010578540386632085, -0.007301668636500835, 0.005228650290518999, -0.024261483922600746, 0.006936243735253811, -0.01299820002168417, 0.02460300363600254, 0.006461532786488533, -0.012902574613690376, -0.008333055302500725, -0.016939325258135796, 0.02400192990899086, -0.009835736826062202, 0.00867457315325737, 0.03008096292614937, -0.017745308578014374, -0.01335337944328785, -3.1296982342610136e-05, 0.02794988639652729, -3.316466245451011e-05, -0.05002565309405327, -0.0020610650535672903, 0.04510778188705444, -0.01035484578460455, -0.008223769254982471, -0.020818976685404778, -0.1757318377494812, 0.007766134105622768, -0.01657048426568508, -0.027594706043601036, 0.040271878242492676, 0.00898877065628767, -0.005214989650994539, -0.0007359726587310433, -0.015245391987264156, 0.006413720082491636, 0.03267650306224823, -0.010204576887190342, -0.02659747190773487, -0.012123911641538143, 0.009152699261903763, 0.006454702466726303, -0.009487387724220753, 0.024480056017637253, 0.04177455976605415, 0.009569352492690086, 0.0322120375931263, -0.004747109021991491, 0.010108951479196548, -0.02061406522989273, 0.0066698589362204075, 0.011044712737202644, -0.018537631258368492, 0.02590077370405197, 0.008087161928415298, -0.03456168621778488, -0.0009622288052923977, 0.004808582365512848, 0.045080460608005524, -0.000597657635807991, 0.004764185287058353, 0.0012644728412851691, 0.003671325510367751, -0.00932345911860466, -0.02659747190773487, 0.008100822567939758, 0.013776862062513828, 0.012205876410007477, 0.0037293836940079927, 0.006246375851333141, 0.010409488342702389, -0.0028807097114622593, 0.020928261801600456, -0.03243061155080795, 0.006809881888329983, -0.005611151456832886, 0.024794254451990128, -0.02390630543231964, -0.011106186546385288, 0.007875420153141022, 0.0017673589754849672, 0.008134974166750908, 0.011065203696489334, 0.013298735953867435, -0.01127694547176361, -0.038222767412662506, 0.013148467987775803, -0.028250422328710556, 0.019534867256879807, -0.029589176177978516, -0.002195964800193906, -0.026843365281820297, 0.006485438905656338, 0.013134807348251343, -0.02529970183968544, 0.010914935730397701, 0.002638231497257948, 0.009501048363745213, -0.004501215647906065, -0.009883549995720387, 0.0029490136075764894, 0.0066903503611683846, -0.028960781171917915, 0.02196647971868515, 0.027799617499113083, 0.002185719320550561, 0.008790689520537853, -0.005744343623518944, 0.021092191338539124, 0.005105703603476286, -0.03122846409678459, 0.0014659687876701355, -0.022403623908758163, 0.007772964425384998, -0.020163260400295258, 0.010341184213757515, 0.015463964082300663, -0.01227418053895235, -0.005454052705317736, 0.009173191152513027, -0.010860293172299862, -0.00027044006856158376, 0.029780425131320953, 0.012929895892739296, 0.001980808097869158, 0.008777028881013393, 0.014712623320519924, 0.015750840306282043, -0.00965131726115942, 0.0011654323898255825, 0.01991736702620983, 0.015177088789641857, -0.002653599949553609, 0.014589676633477211, 0.033004362136125565, 0.000482395087601617, -0.048960112035274506, 0.00967180822044611, 0.01264985091984272, 0.001609406666830182, -0.0123083321377635, 0.04715689644217491, 0.021693265065550804, 0.005399409681558609, -0.025723183527588844, -0.008893145248293877, 0.04808582365512848, 0.009241494350135326, -0.011686768382787704, -0.00018548731168266386, -0.005225235130637884, -0.021816210821270943, -0.10852096229791641, -0.0006744993152096868, 0.0032341815531253815, -0.009781094267964363, 0.0003297789371572435, 0.03871455416083336, -0.010730516165494919, 0.027485420927405357, -0.01941191963851452, 0.036310262978076935, 0.010805649682879448, -0.028496315702795982, -0.02471228875219822, -0.02202112227678299, -0.005542847793549299, 0.00895461905747652, -0.017048610374331474, 0.0003261503006797284, -0.003317853668704629, 0.01871522143483162, -0.004975926596671343, -0.01939825899899006, 0.002535776002332568, -0.00894095841795206, -0.01674807444214821, 0.007048944942653179, -0.03947955369949341, 0.0023137887474149466, 0.005098873283714056, 0.0030975742265582085, 0.01730816438794136, -0.0003430127981118858, 0.0004952020244672894, -0.03322293236851692, 0.0035210573114454746, -0.004251907113939524, -0.011796054430305958, -0.005440392065793276, 0.02725318819284439, -0.019002096727490425, -0.0022318244446069, -0.012765967287123203, 0.01501315925270319, -0.03008096292614937, -0.011556991375982761, 0.00600389763712883, -0.0024435659870505333, 0.002496501198038459, 0.012813779525458813, -0.014589676633477211, -0.03912437707185745, -0.009815245866775513, -0.01740379072725773, -0.017048610374331474, 0.011174489744007587, 0.00999966636300087, 0.020409153774380684, 0.005898027215152979, -0.03814080357551575, 0.015136105939745903, 0.0051944986917078495, -0.021433711051940918, -0.019739776849746704, 0.007998366840183735, 0.00897511001676321, 0.011413552798330784, -0.013066503219306469, -0.02923399582505226, 0.012219537049531937, 0.0012098298175260425, -0.005098873283714056, 0.005563338752835989, -0.016993967816233635, 0.01786825619637966, -0.01663878932595253, -0.006731332279741764, -0.021133173257112503, -0.028878817334771156, -0.0026177403051406145, 0.0031966145616024733, 0.00564188789576292, -0.011516008526086807, 0.010081630200147629, -0.00028495461447164416, 0.010607569478452206, 0.0014019340742379427, 0.006540081929415464, 0.00316929304972291, 0.02525871992111206, -0.028796851634979248, 0.006505930330604315, 0.008708725683391094, -0.002189134480431676, 0.00831256341189146, 0.016242627054452896, 0.0225948728621006, -0.01228101085871458, -0.011577482335269451, -0.02277246303856373, 0.034233830869197845, -0.001562447752803564, 0.006208809092640877, -0.0638776496052742, 0.023004695773124695, 0.014548694714903831, -0.006844033487141132, 0.006287358235567808, -0.02794988639652729, 0.0239199660718441, -0.028906138613820076, -0.0011150584323331714, 0.014849230647087097, -0.019862724468111992, -0.0017314995639026165, -0.00464806891977787, -0.01927531324326992, -0.02728050947189331, -0.012082929722964764, 0.014767265878617764, 0.010791989043354988, 0.01941191963851452, 0.00867457315325737, 0.007028453517705202, -0.01867423951625824, -0.0014984130393713713, 0.022430945187807083, -0.0008115337113849819, 0.016802717000246048, -0.028387030586600304, 0.033086325973272324, -0.004508045967668295, -0.02800452895462513, 0.0020542347338050604, -0.0054950350895524025, 0.00469588115811348, 0.004043580964207649, 0.006700595840811729, -0.019849063828587532, 0.0001843133504735306, -0.0018561538308858871, 0.01793655939400196, 0.014193515293300152, -0.004835904110223055, -0.023523803800344467, 0.018332721665501595, -0.03057274967432022, -0.02942524664103985, -0.02939792536199093, -0.011406722478568554, -0.006864524912089109, -0.0024845481384545565, 0.020955584943294525, 0.01658414490520954, 0.011222302913665771, -0.04477992653846741, -0.032949719578027725, 0.011481856927275658, -0.04857761040329933, 0.014357443898916245, 0.0077593037858605385, 0.00111591222230345, -0.0042997198179364204, 0.0347256176173687, 0.017526736482977867, 0.019166026264429092, -0.01301186066120863, 0.01795022003352642, -0.01232882309705019, -0.025490952655673027, 0.007909571751952171, 0.027840599417686462, -0.018100488930940628, -0.011543329805135727, -0.01723986119031906, 0.021433711051940918, 0.013974943198263645, -0.0023394026793539524, -0.01428913976997137, -0.008333055302500725, 0.015696197748184204, -0.03415186330676079, 0.02469862811267376, -0.007035284303128719, -0.0010510236024856567, -0.007998366840183735, 0.030381498858332634, 0.019698794931173325, 0.0011048128362745047, 0.0036166824866086245, -0.018879150971770287, -0.0035347179509699345, 0.011372570879757404, -0.010566586628556252, 0.008503814227879047, -0.00601072795689106, 0.009412254206836224, 0.004528537392616272, 0.020914601162075996, 0.00015805910516064614, 0.020941922441124916, 0.005525771528482437, 0.007848098874092102, 0.02142004854977131, -0.005846799351274967, 0.008708725683391094, -0.025163093581795692, -0.02263585664331913, 0.012089760042726994, 0.012205876410007477, -0.022827105596661568, -0.010955918580293655, 0.012923065572977066, 0.03352347016334534, 0.010614399798214436, -0.00999966636300087, -0.0011714089196175337, -0.03281311318278313, 0.004108469467610121, -0.002189134480431676, -0.02200746163725853, -0.01670709252357483, 0.03204810991883278, 0.009125377982854843, 0.015819143503904343, 0.018455667421221733, -0.033742040395736694, 0.025736846029758453, 0.003958201035857201, -0.00232744961977005, -0.008435510098934174, 0.011536499485373497, 0.000437997659901157, 0.0027816693764179945, 0.011871187947690487, -0.0023172039072960615, -0.003763535525649786, -0.013230432756245136, -0.004094808362424374, -0.0062327152118086815, 0.012731814756989479, 0.020969245582818985, 0.058358706533908844, 0.019603170454502106, -0.01599673368036747, 0.004224585834890604, 0.010341184213757515, 0.01609235815703869, 0.010436809621751308, -0.0001519757934147492, 0.01266351155936718, -0.026406221091747284, 0.016912003979086876, 0.009453236125409603, -0.019125044345855713, -0.0005165469483472407, -0.0048734708689153194, 0.006772314663976431, -0.015450303442776203, 0.0023223268799483776, -0.016461199149489403, 0.0071309092454612255, 0.019207008183002472, -0.005979991517961025, 0.025149432942271233, -0.02405657432973385, -0.02274514175951481, 0.004784676246345043, 0.00999283604323864, 0.008886314928531647, -0.0029643818270415068, -0.0003137702587991953, 0.012595207430422306, 0.0006476047565229237, -0.018387364223599434, -0.00011889117740793154, -0.007117248605936766, 0.03887848183512688, -0.00935761071741581, 0.002166935708373785, 0.01036167610436678, 0.0029797502793371677, 0.005986821837723255, 0.017472093924880028, -0.007117248605936766, -0.01530003547668457, 0.015163428150117397, 0.0008644690969958901, 0.0028977857436984777, -0.01793655939400196, 0.007554392330348492]" +8,"Now on to Power Platform. We are helping customers save time and money with our end-to-end suite spanning Low-Code/No-Code tools, robotic process automation, virtual agents, and business intelligence. Power BI is the market leader in business intelligence in the cloud and is growing faster than competition, as companies like Walmart standardize on the tool for reporting and analytics. Power Apps is the market leader in Low-Code/No-Code tools and has nearly 15 million monthly active users, up more than 50% compared to a year ago.","[-0.02147563174366951, -0.013491101562976837, 0.0026441619265824556, -0.0061075943522155285, -0.016358548775315285, 0.007165259215980768, -0.015660153701901436, -0.034919723868370056, 0.01134219579398632, -0.04437491297721863, 0.015740737318992615, 0.01380672212690115, -0.004959272686392069, -0.003268687753006816, -0.008891099132597446, 0.01637197844684124, 0.003589344909414649, -0.004123213700950146, -0.006631390191614628, 0.008105405606329441, -0.010522925294935703, 0.011933145113289356, -0.0023067165166139603, 0.010160297155380249, -0.019434170797467232, 0.004982776008546352, 0.014182780869305134, -0.024188624694943428, 0.023678259924054146, -0.013262780383229256, 0.014693145640194416, -0.019071541726589203, -3.3812746551120654e-05, -0.002561899134889245, -0.01799708977341652, 0.007373434491455555, 0.004160148091614246, 0.019111834466457367, 0.013329933397471905, 0.0005716425948776305, 0.0339258573949337, 0.024685559794306755, -0.0092537272721529, 0.03604790195822716, -0.03381841257214546, 0.013074751012027264, -0.007856938056647778, 0.006110951770097017, 0.0025518261827528477, -0.0004717520496342331, -0.01634511724114418, 0.014558839611709118, -0.037578996270895004, -0.013578400947153568, 0.007326426915824413, -0.02735826186835766, -0.0026978845708072186, 0.014451393857598305, 0.009931975975632668, 0.0008822267409414053, -0.0053420462645590305, 0.003790804883465171, -0.017110666260123253, -0.013981320895254612, -0.022778404876589775, -0.013954459689557552, -0.017191249877214432, 0.030487606301903725, 0.014572270214557648, 0.0007399456226266921, 0.017741907387971878, 0.04534192010760307, -0.012665116228163242, -0.01269869226962328, 0.01817168854176998, -0.01509606558829546, -0.013376940973103046, 0.0025333589874207973, 0.004868615418672562, 0.005251389462500811, -0.009764092043042183, -0.011127305217087269, -0.004949199501425028, -0.012933729216456413, 0.022805266082286835, 0.008515040390193462, -0.018628330901265144, 0.01660029962658882, -0.033603519201278687, -0.009495479054749012, 0.02941315434873104, 0.005251389462500811, -0.002434307709336281, 0.014814021997153759, 0.0030924102757126093, 0.03129344806075096, -0.011375771835446358, 0.028634175658226013, -0.00400233780965209, -0.03607476130127907, 0.020025119185447693, -0.011147450655698776, -0.045207612216472626, -0.001798030105419457, 0.007910660468041897, 0.012188327498733997, -0.007682339753955603, 0.006691828370094299, 0.0487801693379879, 0.018829790875315666, -0.021287601441144943, 0.021462200209498405, 0.01995796710252762, -0.012282341718673706, -0.00015581668412778527, -0.011456356383860111, 0.003315695095807314, -0.0409366637468338, 0.001955840503796935, -0.014451393857598305, 0.02052205428481102, 0.020763805136084557, 0.02203971892595291, -0.006963799241930246, -0.004364965483546257, -0.0008847449789755046, -0.011872706934809685, -0.007440587505698204, 0.020656360313296318, -0.0025904392823576927, 0.03486600145697594, 0.008239712566137314, -0.008870953693985939, -0.007077959831804037, -0.006916791666299105, 0.010630370117723942, -0.004133286885917187, 0.0047913892194628716, -0.027855196967720985, -0.0339258573949337, 0.021985996514558792, 0.010630370117723942, -0.003901607822626829, -0.008333726786077023, -0.008615770377218723, 0.004824965726584196, 0.018131395801901817, 0.028607314452528954, 0.015767598524689674, -0.004647009540349245, 0.007299565710127354, 0.0020347456447780132, -0.010872121900320053, 0.00943504087626934, 0.00576175469905138, -0.003340877592563629, 0.011886137537658215, 0.009985698387026787, -0.011174311861395836, -0.008293434977531433, -0.01688234508037567, 0.034221332520246506, -0.009824530221521854, 0.0026189794298261404, 0.0091798584908247, 0.009569347836077213, 0.009784238412976265, -0.02304701879620552, -0.019031250849366188, 0.0020901469979435205, 0.01763446070253849, 0.036289654672145844, -0.029090818017721176, 0.0227112527936697, 0.013128473423421383, -0.004747739527374506, -0.0070510986261069775, -0.0034751843195408583, -0.009643216617405415, -0.009287304244935513, 0.03330804407596588, -0.013068036176264286, 0.0023520449176430702, -0.0012356210500001907, 0.008736646734178066, -0.021032419055700302, 0.017392709851264954, 0.00034919724566861987, 0.020951835438609123, -0.006903361063450575, 0.019998257979750633, 0.018440300598740578, -0.0005200185114517808, -0.014921467751264572, -0.6347869038581848, -0.017929935827851295, -0.004623505752533674, -0.03341549262404442, 0.00997898355126381, -0.012188327498733997, 0.028714759275317192, -0.016868913546204567, -0.0024460596032440662, 0.02671358920633793, 0.011301903054118156, 0.01157723180949688, -0.01951475441455841, -0.032931987196207047, -0.013356794603168964, -0.01897752843797207, 0.022899281233549118, -0.02758658304810524, 0.008454603143036366, 0.007856938056647778, -0.03285140171647072, 0.017956797033548355, -0.008112120442092419, -0.019944535568356514, -0.0019474462606012821, -0.007400295697152615, 0.02722395583987236, 0.02405431866645813, -0.019971396774053574, 0.012282341718673706, 0.0017543804133310914, 0.02730453945696354, 0.01758073829114437, -0.013390371575951576, 0.04689987748861313, -0.01155037060379982, -0.0016158766811713576, 0.032958850264549255, 0.020065411925315857, 0.016721175983548164, -0.032421622425317764, 0.003471826668828726, -0.00014007762365508825, 0.006779127288609743, 0.0003987228265032172, 0.0038109507877379656, 0.008521756157279015, -0.021207017824053764, -0.01567358523607254, 0.011906282976269722, 0.010254311375319958, -0.008817230351269245, -0.01869548298418522, 0.0017694899579510093, -0.004442192148417234, 0.0022244537249207497, 0.0009980661561712623, -0.01732555590569973, -0.009871537797152996, -0.004955914802849293, 0.008877668529748917, 0.001229745103046298, -0.018185118213295937, -0.047732580453157425, -0.024578114971518517, 0.014881175011396408, -0.011261611245572567, -0.006715331692248583, -0.0039687613025307655, -0.029869796708226204, 0.019084973260760307, 0.007360003888607025, -0.0010845260694622993, 0.0008738325559534132, 0.008763507939875126, 0.01954161562025547, 0.03545695170760155, 0.011597378179430962, -0.016533147543668747, -0.007910660468041897, 0.019434170797467232, -0.005882630590349436, -0.013994751498103142, -0.03905636817216873, 3.617360562202521e-05, 0.011476501822471619, -0.030326439067721367, -0.003831096924841404, 0.007736062165349722, 0.016358548775315285, 0.025142202153801918, 0.007433872204273939, -0.018547747284173965, -0.02124731056392193, -0.010959421284496784, 0.009488764218986034, -0.0012624823721125722, -0.009105989709496498, -0.010334895923733711, -0.006785842590034008, -0.026458406820893288, -0.0017627746565267444, 0.008098689839243889, 0.015848184004426003, 0.016022780910134315, 0.02276497520506382, 0.007333142217248678, 0.01897752843797207, 0.03078308142721653, -0.024215485900640488, 0.013732853345572948, -0.04351535066962242, -0.0007143434486351907, 0.010005844756960869, 0.01634511724114418, -0.02302015759050846, 0.007668909151107073, -0.03722979873418808, -0.009878253564238548, -0.021636798977851868, -0.01265840046107769, -0.0045093451626598835, -0.0006983944913372397, -0.027989502996206284, -0.0009426646865904331, 0.01979679800570011, 0.011644385755062103, 0.007098105736076832, -0.004566425457596779, 0.006554163992404938, 0.004334746859967709, -0.027317969128489494, 0.002189198276028037, 0.002788541605696082, 0.024524392560124397, 0.013544823974370956, 0.0046973745338618755, -0.008118836209177971, 0.009206719696521759, -0.024913880974054337, -0.020951835438609123, 0.0022697821259498596, 0.003861315781250596, -0.0018870081985369325, -0.019326724112033844, -0.05063360184431076, -0.009327596053481102, 0.01732555590569973, 0.0019205849384889007, 0.001144964131526649, -0.010811684653162956, -0.021314462646842003, 0.00997898355126381, 0.028365561738610268, 0.012013728730380535, -0.002070001093670726, -0.020642930641770363, -0.022388916462659836, -0.02057577669620514, -0.03064877539873123, -0.012228619307279587, 0.0011818984057754278, -0.004495914559811354, -0.02469899132847786, 0.015485554933547974, -0.021354755386710167, 0.0023470085579901934, 0.03663885220885277, 0.005036498885601759, -0.016573438420891762, 0.017110666260123253, -0.009502194821834564, 0.008226281963288784, 0.017486725002527237, -0.025800304487347603, 0.005284965969622135, -0.02694191224873066, 0.010684092529118061, 0.028687898069620132, -0.009817815385758877, -0.005160732660442591, 0.01637197844684124, -0.015445263125002384, 9.569348185323179e-05, 0.02250979281961918, 0.006718689575791359, 0.019071541726589203, 0.010858691297471523, -0.04217228293418884, -0.0039586881175637245, -0.004381753969937563, 0.04300498589873314, 0.0062855505384504795, 0.005681170616298914, -0.005949784070253372, 0.0023184684105217457, -0.03164264187216759, 0.0037001478485763073, -0.008501609787344933, 0.009938690811395645, 0.002756643807515502, 0.037552136927843094, 0.00618146313354373, 0.0037505128420889378, 0.009609639644622803, -0.0319649800658226, 0.0016460957704111934, -0.03274395689368248, 0.03473169729113579, 0.026928480714559555, 0.01946103200316429, 0.001346423989161849, 0.0029933592304587364, -0.031078556552529335, 0.02178453654050827, -0.0008813873282633722, -0.001595730776898563, 0.01897752843797207, -0.02041460946202278, -0.002988322637975216, 0.025746582075953484, -0.026431545615196228, 0.011698108166456223, -0.022335194051265717, 0.0052648200653493404, 0.018131395801901817, 0.009388034231960773, 0.04552995041012764, 0.02183825895190239, -0.010851976461708546, 0.01729869470000267, 0.006664966698735952, 0.01375299971550703, -0.00630905432626605, -0.003127665724605322, 0.0002444800629746169, 0.019729644060134888, -0.014693145640194416, 0.04230659082531929, -0.004160148091614246, -0.0012943801702931523, 0.008515040390193462, 0.009790954180061817, -0.0009754019556567073, 0.027317969128489494, 0.0010803290642797947, 0.03669257462024689, -0.009616355411708355, -0.02629723958671093, 0.00819941982626915, -0.030460745096206665, 0.014908036217093468, -0.020683221518993378, -0.006409784313291311, -0.0081322668120265, -0.028687898069620132, 0.01727183349430561, 0.015324387699365616, 0.02287242002785206, 0.022388916462659836, -0.011671246960759163, 0.006812704261392355, 0.009213435463607311, -0.0001760676095727831, 0.008078544400632381, -0.030407022684812546, -0.012940444052219391, -0.006936937570571899, -0.01508263498544693, -0.02531680092215538, -0.008602339774370193, -0.020199717953801155, 0.042037978768348694, -0.013746283948421478, 0.008266573771834373, 0.0008112960495054722, 0.002454453846439719, -0.010496064089238644, -0.003295549191534519, 0.017755337059497833, -0.001967592164874077, -0.047813162207603455, 0.01470657717436552, 0.008830660954117775, -0.0013909131521359086, -0.0027986145578324795, -0.051761776208877563, 0.00800467561930418, -0.008407595567405224, 0.019407309591770172, -0.010549786500632763, 0.02436322346329689, 0.01470657717436552, 0.019702782854437828, 0.024497531354427338, 0.03271709755063057, 0.04026512801647186, 0.0013841977342963219, 0.02273811399936676, 0.005036498885601759, 0.02044147066771984, 0.002583723980933428, -0.0012801100965589285, -0.016251103952527046, 0.024094611406326294, -0.0051640900783240795, -0.008011390455067158, -0.008085259236395359, -0.025222785770893097, -0.025491399690508842, -0.01660029962658882, -0.017124095931649208, -0.00012360406981315464, 0.01987738162279129, -0.0063795652240514755, -0.006638105493038893, 0.017782198265194893, 0.0019088330445811152, 0.003884819569066167, 0.03320059925317764, -0.00800467561930418, -0.01797022856771946, -0.0027600014582276344, 0.03838483616709709, 0.08149726688861847, -0.0011357305338606238, -0.016170518472790718, 0.02769402787089348, -0.0378476120531559, 0.017822491005063057, -0.04217228293418884, -0.015190080739557743, 0.012329349294304848, 0.0019894170109182596, -0.01982365921139717, 0.005943068768829107, -0.008179274387657642, 0.0023789063561707735, 0.0070242369547486305, -0.0042373742908239365, 0.011046720668673515, -0.03075622022151947, -0.020924974232912064, -0.014249933883547783, -0.016210811212658882, 0.015391540713608265, 0.003565841121599078, 0.006436645518988371, 0.038062501698732376, 0.00831358041614294, 0.013538109138607979, 0.027828335762023926, -0.007722631562501192, -0.025276508182287216, 0.0056408788077533245, 0.01698978990316391, -0.011080297641456127, 0.014545409008860588, -0.008931390941143036, 0.01375299971550703, 0.0008104566368274391, 0.018708914518356323, -0.012705408036708832, 0.01743300072848797, 0.0186417605727911, 0.03379154950380325, 0.0015629935078322887, -0.01737927831709385, 0.011953290551900864, -0.006033725570887327, -0.004012410994619131, 0.027828335762023926, 0.0033660600893199444, -0.025383954867720604, 0.009341026656329632, -0.009220150299370289, -0.036961186677217484, 0.022348623722791672, -0.003285476006567478, 0.025249646976590157, -0.0072189816273748875, -0.018601469695568085, 0.01024759653955698, -0.03916381672024727, -0.026458406820893288, 0.018400009721517563, 0.018453732132911682, -0.013618692755699158, -0.0018903659656643867, -0.040668047964572906, -0.007648762781172991, -0.019407309591770172, -0.005425988230854273, -0.0012196721509099007, 0.008065113797783852, -0.02812380902469158, -0.006251974031329155, 0.021717382594943047, 0.040050238370895386, 0.01126832701265812, 0.01055650133639574, 0.002538395347073674, -0.005311827640980482, 0.01253080926835537, 0.00047469002311117947, -0.017513586208224297, 0.01951475441455841, -0.04230659082531929, -0.01159066241234541, -0.006429930217564106, -0.017741907387971878, -0.004270951263606548, 0.0022597091738134623, 0.012248765677213669, -0.006382923107594252, -0.012336064130067825, 0.022670960053801537, 0.006423214916139841, 0.0025484685320407152, 0.01502891257405281, -0.008239712566137314, 0.004133286885917187, -0.00029946182621642947, -0.006745550781488419, 0.005231243558228016, -0.029789211228489876, -0.011684677563607693, -0.029762350022792816, 0.0010954384924843907, 0.0022697821259498596, 0.0024091252125799656, 0.008414310403168201, -0.006047156173735857, -0.034328777343034744, -0.02310074120759964, -0.018520886078476906, 0.01265840046107769, 0.001913869520649314, 0.024497531354427338, 0.0062855505384504795, 0.0018164973007515073, 0.0013422269839793444, 0.01665402203798294, -0.019420739263296127, -0.006822776980698109, -0.03457053005695343, 0.01732555590569973, -0.009032120928168297, -0.01155037060379982, 0.01134219579398632, 0.010892268270254135, -0.019071541726589203, -0.03185753524303436, 0.007910660468041897, -0.006426572799682617, -0.00030785598210059106, 0.004623505752533674, -0.003502045525237918, -0.040641188621520996, -0.010791538283228874, -0.0028926292434334755, 0.022603806108236313, -0.027882058173418045, -0.005708032287657261, -0.01788964308798313, 0.021354755386710167, -0.0040527028031647205, -0.01567358523607254, 0.0010467523243278265, -0.01578103005886078, 0.007480879779905081, 0.009891684167087078, -0.007111536338925362, 0.01044234074652195, 0.0060975211672484875, 0.005758397281169891, -0.0327976793050766, -0.00340970978140831, 0.0017694899579510093, -0.008239712566137314, -0.012080881744623184, -0.015606431290507317, 0.04950542747974396, 0.03508089482784271, 0.019420739263296127, 0.027129940688610077, -0.0036061331629753113, -0.000934270559810102, -0.0024880303535610437, -0.008884384296834469, -0.007924092002213001, -0.02315446361899376, -0.010751246474683285, -0.004720878321677446, -0.007346572820097208, 0.026082348078489304, -0.010052851401269436, -0.005691243801265955, 0.0045362068340182304, 0.014424532651901245, -0.02825811691582203, -0.019917674362659454, -0.03132030740380287, -0.010267741978168488, -0.013188911601901054, -7.759356230963022e-05, -0.016264533624053, 0.015767598524689674, -0.020038550719618797, 0.0005745805683545768, -0.005845696199685335, 0.019084973260760307, 0.027747750282287598, 0.005882630590349436, 0.010919129475951195, 0.022160595282912254, 0.012127889320254326, 0.007292850408703089, 0.006235185544937849, -0.02812380902469158, -0.003935184329748154, -0.04085607826709747, -0.01502891257405281, 0.0037505128420889378, 0.011724969372153282, 0.017164388671517372, 0.01805081218481064, -0.019058112055063248, 0.005157374776899815, 0.0314008928835392, -0.020723514258861542, -0.021542783826589584, 0.002857373794540763, -0.009690224193036556, 0.0025417529977858067, -0.030487606301903725, 0.0019424097845330834, -0.008226281963288784, -0.01629139482975006, -0.012933729216456413, 0.0023083952255547047, 0.012456940487027168, -0.021690521389245987, -0.018722346052527428, 0.025827165693044662, -0.009952121414244175, 0.024188624694943428, 0.014357379637658596, 0.04472411051392555, -0.004479126539081335, 0.0204683318734169, -0.019326724112033844, -0.021690521389245987, -0.01377986092120409, -0.00144715397618711, 0.030487606301903725, 0.041473887860774994, -0.003277081996202469, -0.02750599943101406, -0.0015201832866296172, -0.008085259236395359, 0.0008301829220727086, -0.01982365921139717, 0.012974021025002003, 0.003931826911866665, 7.030113192740828e-05, -0.019890813156962395, -0.013450809754431248, -0.02570629119873047, 0.027317969128489494, -0.008917960338294506, -0.008790369145572186, 0.014182780869305134, -0.022214317694306374, 0.006345988716930151, 0.0011029932647943497, -0.021368185058236122, 0.01802395097911358, 0.015176650136709213, -0.012322633527219296, 0.0032200017012655735, 0.002733140019699931, 0.02441694587469101, -0.029386291280388832, -0.011778691783547401, -0.004129929002374411, 0.002575329737737775, 0.04364965856075287, -0.0023705121129751205, 0.021945703774690628, -0.0028321912977844477, 0.0037337245885282755, 0.00736671919003129, 0.02526307851076126, 0.0020381032954901457, -0.013168766163289547, -0.003461753483861685, 0.0078502232208848, 0.02526307851076126, -0.02898337133228779, -0.02318132482469082, -0.04225286841392517, -0.011281757615506649, -0.008642632514238358, 0.017056941986083984, -0.0058356234803795815, -0.025773443281650543, -0.019192418083548546, 0.012181611731648445, -0.02559884451329708, 0.0027381766121834517, 0.0018567892257124186, -0.015257233753800392, -0.03320059925317764, -0.011879421770572662, -0.0045362068340182304, -0.02281869761645794, 0.005288323853164911, -0.01042891014367342, -0.008353873156011105, -0.0035927025601267815, 0.008179274387657642, -0.025719720870256424, -0.005194309167563915, -0.007447302807122469, 0.008320296183228493, -0.017150957137346268, 0.026256946846842766, -0.005043214187026024, -0.01853431575000286, 0.028338700532913208, -0.015888474881649017, -0.010851976461708546, 0.009690224193036556, 0.0007185405120253563, -0.0018198549514636397, -0.006460149306803942, -0.01470657717436552, 0.006876499857753515, 0.01688234508037567, 0.002499782247468829, -0.016479425132274628, -0.010019275359809399, 0.005862484686076641, 0.005885988473892212, 0.007655478082597256, 0.01884322054684162, -0.010449056513607502, 0.0005506572197191417, -0.010939275845885277, 0.02526307851076126, -0.003854600479826331, -0.028473006561398506, -0.038062501698732376, -0.0150692043825984, 0.0008268252131529152, 0.0015655116876587272, -0.01007971353828907, 0.004939126782119274, 0.015995919704437256, -0.013423948548734188, -0.012967306189239025, 0.01253080926835537, 0.0016175555065274239, 0.024094611406326294, 0.0065575214102864265, 0.014934898354113102, 0.006134455557912588, -0.008562047965824604, -0.029386291280388832, -0.02621665596961975, -0.00691007636487484, -0.03191125765442848, -0.0038814616855233908, -0.009569347836077213, 0.016519716009497643, 0.0327976793050766, -0.02616293355822563, -0.03526892140507698, -0.024497531354427338, -0.0518692247569561, -0.026780743151903152, -0.003831096924841404, 0.014491685666143894, 0.013316502794623375, -0.0014077014056965709, 0.01959533803164959, 0.021609937772154808, 5.0299408940190915e-06, 0.0058524115011096, -0.05012323707342148, 0.004294454585760832, -0.020307162776589394, -0.02492731250822544, 0.02428263984620571, -0.003146132919937372, -0.00464029423892498, 0.003908323124051094, 0.017110666260123253, -0.038760896772146225, 0.007628616876900196, 0.018453732132911682, -0.009884968400001526, -0.01024759653955698, -0.012510662898421288, 0.021489061415195465, 0.005681170616298914, 0.020589208230376244, 0.025585414841771126, -0.026418115943670273, -0.006735478062182665, 0.02369169145822525, 0.0018651834689080715, -0.009992414154112339, -0.009461903013288975, 0.01917898841202259, 0.00884409248828888, 0.0013841977342963219, 0.011731685139238834, 0.005143944174051285, -0.018400009721517563, 0.013188911601901054, 0.014652853831648827, 0.005459564737975597, 0.02332906238734722, 0.03137402981519699, 0.021301032975316048, -0.024430377408862114, -0.01629139482975006, 0.037471551448106766, -0.021462200209498405, -0.014572270214557648, 0.021650230512022972, -0.036961186677217484, 0.006117667071521282, -0.024228917434811592, -0.006154601462185383, 0.005006279796361923, -0.02287242002785206, -0.007709200959652662, 0.016721175983548164, -0.012114458717405796, -0.007487595081329346, -0.008515040390193462, 0.01861489936709404, -0.0009535771096125245, 0.01724497228860855, 0.0027600014582276344, 0.009374603629112244, -0.02024001069366932, 0.01367913093417883, 0.01046920195221901, -0.004925695713609457, 0.01406190451234579, 0.002949709538370371, -0.019058112055063248, 0.03075622022151947, 0.0128262834623456, 0.006070659961551428, 0.022576944902539253, 0.21241937577724457, 0.006970514543354511, 0.0015478839632123709, 0.019071541726589203, 0.0231276024132967, 0.02467212826013565, 0.03067563660442829, 0.01238978747278452, 0.0029513882473111153, 0.00821285042911768, -0.017083805054426193, 0.0008188507636077702, -0.011100443080067635, -0.00393854221329093, 0.0005896900547668338, -0.016479425132274628, -0.030621912330389023, -0.01915212720632553, 0.0015151466941460967, 0.036235932260751724, 0.0052916812710464, -0.02155621536076069, -0.027411984279751778, 0.002983286278322339, 0.012013728730380535, 0.0017325555672869086, -0.018520886078476906, 0.015404971316456795, 0.024040887132287025, 0.009361173026263714, -0.004992849193513393, 0.010892268270254135, 0.0009997449815273285, 0.016492854803800583, 0.010925845243036747, -0.016667453572154045, 0.011288472451269627, -0.020253440365195274, -0.0026122641284018755, 0.026592714712023735, 0.015498985536396503, 0.008474748581647873, 0.011181027628481388, -0.008011390455067158, -0.0014605846954509616, 0.004989491775631905, -0.017486725002527237, -0.003354308195412159, 0.03199183940887451, 0.017110666260123253, -0.027009064331650734, 0.0008583033340983093, 0.019098402932286263, 0.020763805136084557, -0.007642047479748726, 0.0007835952565073967, 0.004979418590664864, 0.023879719898104668, -0.014975190162658691, 0.000848650059197098, -0.009495479054749012, 0.02430950105190277, -0.003649782855063677, -0.015310956165194511, -0.028661036863923073, -0.02108614146709442, -0.023194756358861923, 0.0252362173050642, -0.01134219579398632, -0.005859126802533865, -0.013746283948421478, -0.003216644050553441, -0.01993110403418541, -0.010509494692087173, -0.013168766163289547, -0.034409359097480774, 0.040130823850631714, 0.049183089286088943, 0.012980736792087555, 0.011933145113289356, 0.010240880772471428, 0.007803215645253658, -0.029896657913923264, -0.0208846814930439, -0.0037471551913768053, -0.01755387708544731, 0.011174311861395836, -0.00576175469905138, -0.002311752876266837, -0.013450809754431248, 0.009441756643354893, -0.004982776008546352, -0.01283971406519413, -0.0064735799096524715, -0.011348910629749298, -0.007514456287026405, -0.006456791423261166, 0.009582778438925743, -0.004354892764240503, -0.016573438420891762, -0.02691504918038845, 0.05571039393544197, 0.0364508219063282, 0.016573438420891762, -0.025128772482275963, -0.014988620765507221, 0.011113874614238739, 0.026928480714559555, 0.003255257150158286, -0.009837960824370384, 0.00562073290348053, -0.024040887132287025, 0.002303358865901828, -0.01819854974746704, -0.005755039397627115, 0.024631837382912636, -0.011174311861395836, 0.004848469514399767, 0.00625868933275342, -0.008347157388925552, -0.0027230670675635338, -0.011557086370885372, 0.0036867172457277775, -0.010072997771203518, -0.011516794562339783, 0.015579570084810257, -0.020092273131012917, 0.007809930946677923, -0.010368471965193748, -0.020105702802538872, 0.02217402495443821, -0.011335480026900768, 0.011295188218355179, -0.0045294915325939655, -0.03650454431772232, 0.026082348078489304, 0.01721811108291149, -0.007655478082597256, 0.014666284434497356, 0.008642632514238358, -0.01041547954082489, 0.018467161804437637, -0.003575914306566119, -0.0010610223980620503, 0.009643216617405415, 0.0054360609501600266, 0.03534950688481331, 0.009441756643354893, 0.021207017824053764, -0.009065697900950909, -0.020253440365195274, 0.013900737278163433, -0.012329349294304848, 0.0073129963129758835, 0.026821035891771317, 0.0032569358590990305, -0.027291107922792435, -0.008783654309809208, 0.02430950105190277, 0.013188911601901054, -0.026001764461398125, -0.0009821172570809722, 0.04501958563923836, -0.01268526166677475, -0.0013086502440273762, -0.03078308142721653, -0.16997848451137543, 0.01278599165380001, 0.007010806351900101, -0.029950380325317383, 0.02570629119873047, 0.01044234074652195, -0.003696790197864175, 0.009770807810127735, -0.00323846866376698, -0.0005577922565862536, -0.001697300118394196, -0.007971098646521568, -0.022308332845568657, 0.002872483106330037, 0.022778404876589775, 0.0060236528515815735, -0.011980151757597923, 0.03384527191519737, 0.023543953895568848, 0.014317087829113007, 0.010737815871834755, -0.001213796203956008, -0.006722046993672848, -0.010039420798420906, 0.014169350266456604, -0.002273139776661992, -0.01143621001392603, 0.01727183349430561, 0.018937235698103905, -0.009730516001582146, 0.001798030105419457, -0.02952059917151928, 0.00738014979287982, 0.014625992625951767, -0.005526718217879534, -0.0075346021912992, -0.017459861934185028, -0.008347157388925552, -0.02080409787595272, 0.031803812831640244, 0.031669504940509796, 0.01642570085823536, -0.004307885188609362, 0.002654234878718853, 0.043273597955703735, 0.029654905200004578, 0.024793004617094994, -0.005718105006963015, -0.017459861934185028, -0.006936937570571899, 0.018117966130375862, -0.014478255063295364, 0.018494023010134697, -0.015163219533860683, 0.01614365726709366, 0.018467161804437637, -0.005026425700634718, 0.02665986679494381, -0.014666284434497356, -0.020710082724690437, 0.030407022684812546, -0.007628616876900196, 0.003555768169462681, -0.0163988396525383, -0.02206658013164997, -0.006560879293829203, 0.006329200230538845, 0.0045362068340182304, -0.008656063117086887, 0.0092537272721529, 0.02122044935822487, -5.697539381799288e-05, -0.005419272929430008, -0.016613731160759926, 0.0027045998722314835, 0.00040669727604836226, -0.0009787596063688397, 0.04800119251012802, 0.03838483616709709, 0.0384116992354393, -0.002048176247626543, 0.00789051502943039, -0.0059128496795892715, 0.0052681779488921165, -0.008441172540187836, 0.01055650133639574, 0.002514891792088747, 0.012067451141774654, -0.02253665402531624, -0.012356210500001907, 0.013746283948421478, -0.026753881946206093, -0.01026102714240551, -0.0051640900783240795, -0.005795331206172705, 0.027344830334186554, 0.003831096924841404, -0.00039431589539162815, 0.00044405131484381855, -0.010046136565506458, 0.01791650615632534, 0.045825425535440445, 0.003995622508227825, 0.011006428860127926, 0.04238717630505562, 0.01755387708544731, -0.0019508039113134146, -0.01167796179652214, 0.014505117200314999, -0.013464240357279778, -0.025800304487347603, -0.001821533776819706, 0.01987738162279129, 0.006208324339240789, 0.004633578937500715, 0.0389757864177227, -0.0026894903276115656, 0.01028788834810257, -0.02593461237847805, 0.002142190933227539, 0.047222211956977844, -0.0035054031759500504, -0.011711538769304752, 0.002707957522943616, -0.008750077337026596, -0.022214317694306374, -0.12495889514684677, -0.04695359990000725, 0.020642930641770363, 0.009105989709496498, -0.017392709851264954, 0.004274308681488037, -0.0052748932503163815, 0.025585414841771126, -0.0059094917960464954, 0.03650454431772232, 0.01892380602657795, -0.011348910629749298, -0.02439008466899395, 0.0005880112294107676, 0.03838483616709709, -0.0036397099029272795, 9.889375360216945e-05, -0.01157723180949688, -0.01934015564620495, 0.016613731160759926, -0.018292563036084175, -0.015324387699365616, -0.004076206590980291, -0.011375771835446358, -0.019917674362659454, -0.0229932963848114, -0.018211979418992996, 0.003720293752849102, 0.002407446503639221, 0.016842052340507507, 0.014169350266456604, -0.020401177927851677, 0.033710964024066925, 0.0035456952173262835, 0.00926715787500143, -0.0012616430176422, -0.030004102736711502, -0.017191249877214432, 0.0047074477188289165, -0.02472585253417492, 0.003542337566614151, -0.011993582360446453, -0.006530660204589367, -0.04888761416077614, 0.025558553636074066, -0.027855196967720985, 0.018144827336072922, 0.0005720623303204775, 0.01020730473101139, -0.022187456488609314, -0.00913956668227911, -0.00512379826977849, -0.012436794117093086, -0.02946687676012516, -0.005892703775316477, -0.0056308056227862835, 0.0006312411860562861, 0.025249646976590157, -0.008931390941143036, -0.008649347350001335, -0.009952121414244175, -0.00647693732753396, -0.03577928617596626, 0.028607314452528954, 0.0030319723300635815, 0.0023705121129751205, -0.025155633687973022, -0.02186512015759945, -0.0013993072789162397, -0.037417829036712646, -0.009824530221521854, 0.017903074622154236, -0.005667740013450384, 0.014263364486396313, -0.022469500079751015, -0.005365550052374601, -0.015445263125002384, -0.039405565708875656, 0.021851690486073494, 0.004888761788606644, -0.026646437123417854, -0.021368185058236122, 0.009018690325319767, -0.0018013877561315894, 0.008635916747152805, -0.00815912801772356, 0.004969345405697823, -0.007131682243198156, 0.031239723786711693, -0.027801474556326866, 0.025048187002539635, 0.004643652122467756, 0.024873588234186172, -0.03540322929620743, 0.02139504812657833, 0.019528184086084366, -0.013551539741456509, -0.029896657913923264, -0.0005569528439082205, 0.01024759653955698, -0.002162336837500334, -0.007104821037501097, -0.07026923447847366, 0.0211667250841856, -0.015660153701901436, 0.020347455516457558, -0.002442701952531934, -0.018547747284173965, 0.012020443566143513, -0.030326439067721367, 0.0058188349939882755, 0.009038836695253849, -0.027989502996206284, 0.03266337513923645, -0.013175480999052525, -0.02562570571899414, -0.024712421000003815, -0.010872121900320053, 0.02173081412911415, -0.004744382109493017, 0.009676793590188026, 0.01476029958575964, -0.000956934760324657, -0.0001603285491000861, 0.00901197548955679, -0.0013397086877375841, -0.0007151828613132238, -0.003060512477532029, -0.027210524305701256, 0.03642395883798599, -0.020401177927851677, -0.02490045130252838, 0.012873291037976742, -0.013712707906961441, -0.013444093987345695, 0.02052205428481102, -0.01797022856771946, -0.006842923350632191, -0.009636500850319862, 0.018144827336072922, 0.02722395583987236, 0.0037807319313287735, -0.007574894465506077, -0.043971993029117584, 0.018682053312659264, -0.029171401634812355, -0.025249646976590157, -0.01476029958575964, 0.004542922135442495, -0.018574608489871025, -0.0017098913667723536, -0.0031864249613136053, 0.01476029958575964, 0.00803153682500124, -0.010549786500632763, -0.02392001263797283, 0.005677813198417425, -0.004811535123735666, -0.013705992139875889, 0.0016729570925235748, 0.016573438420891762, 0.01771504618227482, 0.024376654997467995, 0.024578114971518517, 0.0010140150552615523, 0.0030571548268198967, 0.002639125334098935, -0.005607302300632, -0.006134455557912588, 0.012846429832279682, -0.02820439450442791, -0.02026687189936638, 0.006638105493038893, -0.02766716666519642, 0.01363883912563324, 0.005466280039399862, 0.033012572675943375, -0.01022073533385992, -0.0008864238043315709, 0.005402484443038702, 0.003549052868038416, 0.03639709949493408, -0.00639971112832427, 0.012080881744623184, -0.019071541726589203, 0.03537636995315552, 0.01900438964366913, 0.017728475853800774, -0.007077959831804037, 0.004344819579273462, -0.029171401634812355, -0.01152350939810276, -0.02015942707657814, -0.00681941956281662, -0.014545409008860588, -0.00041760969907045364, 0.0065642367117106915, 0.015713876113295555, -0.016828620806336403, 0.021690521389245987, -0.018494023010134697, 0.02472585253417492, 0.002407446503639221, 0.0027516072150319815, 0.0013657306553795934, -0.03454366698861122, -0.02539738453924656, 0.013672415167093277, -0.014384240843355656, -0.01915212720632553, -0.015378110110759735, -0.0023369353730231524, 0.00908584427088499, -0.011040005832910538, -0.0014102197019383311, 0.006382923107594252, -0.018426870927214622, 0.01056993193924427, 0.007749492768198252, -0.0060975211672484875, -0.020360887050628662, 0.026512129232287407, 0.019393878057599068, 0.021327894181013107, 0.01592876762151718, -0.003972118720412254, -0.0024578114971518517, 0.019783368334174156, -0.019769936800003052, -0.009824530221521854, -0.01473343838006258, -0.0206026379019022, 0.00375387049280107, 0.017056941986083984, -0.0039251116104424, -0.014921467751264572, -0.015512416139245033, 0.01054307073354721, -0.01954161562025547, 0.020723514258861542, 0.01572730764746666, 0.06607886403799057, 0.016304826363921165, -0.008253143168985844, 0.012927013449370861, -0.0071182516403496265, 0.026471838355064392, -0.00681941956281662, 0.003488614922389388, -0.00562073290348053, -0.01920584961771965, 0.0007382667972706258, 0.013873875141143799, -0.007071244530379772, -0.01510949619114399, -0.0056408788077533245, 0.0019625558052212, -0.005231243558228016, 0.008931390941143036, -0.014814021997153759, -0.012678546831011772, 0.033146876841783524, -0.007433872204273939, 0.022603806108236313, -0.0040426296181976795, -0.03774016350507736, 0.005066717974841595, 0.019031250849366188, 0.01727183349430561, 0.006654893979430199, -0.019971396774053574, 0.018158257007598877, -0.002756643807515502, -0.012127889320254326, 0.005117082968354225, 0.03975476324558258, -0.01912526600062847, 0.010328180156648159, -0.004868615418672562, -0.005284965969622135, 0.027882058173418045, 0.005375623237341642, 0.0159824900329113, -0.020253440365195274, -0.007910660468041897, 0.010361757129430771, -0.004925695713609457, 0.01007971353828907, -0.01912526600062847, -0.012107742950320244]" +9,"Power Automate has more than seven million monthly active users and is being used by companies like Brown-Forman, Komatsu, Mass, T-Mobile to digitize manual business processes and save thousands of hours of employee time. And we're going further with new AI-powered capabilities and power automate that turn natural language into advanced workflows. Now on to Dynamics 365. From customer experience and service to finance and supply chain, we continue to take share across all categories we serve.","[-0.025379547849297523, -0.03403877094388008, -0.010677897371351719, 0.0026694743428379297, -0.02086642012000084, 0.01878657378256321, -0.023503609001636505, -0.002829201053828001, -0.00022748304763808846, -0.03009658120572567, 0.011677038855850697, 0.00909422431141138, 0.004061135463416576, -0.01544251013547182, 0.0028224040288478136, 0.01184696052223444, 0.01723688654601574, -0.01195571105927229, 0.001147822942584753, -0.023449232801795006, -0.006208949256688356, 0.005478284787386656, -0.003850432112812996, 0.007157113868743181, -0.029226580634713173, 0.012499460950493813, 0.017644697800278664, -0.03632252290844917, 0.02234813943505287, -0.02533876523375511, 0.002499552443623543, -0.012213991954922676, -0.009026255458593369, 0.0031146700493991375, -0.005128245335072279, 0.015727978199720383, 0.008387348614633083, 0.016829073429107666, 0.016394073143601418, -0.005733167752623558, 0.027282673865556717, 0.01192852295935154, -0.004424768500030041, 0.003680510213598609, -0.04812190681695938, 0.01867782510817051, -0.007687270641326904, -0.002256563864648342, -0.005090862512588501, 0.010120552964508533, -0.008061098866164684, 0.025760171934962273, -0.012227585539221764, -0.021641263738274574, -0.002258263062685728, -0.015061884187161922, -0.0031877364963293076, 0.015129853039979935, 0.004417971707880497, 0.008584458380937576, 0.00011820197687484324, -0.003237013705074787, -0.016897041350603104, -0.018106887117028236, -0.03210845962166786, -0.013648133724927902, -0.010270084254443645, 0.02101595140993595, 0.012784929946064949, 0.007320239208638668, 0.031727831810712814, 0.02384345233440399, 0.00344092003069818, -0.0003704299160744995, 0.017277667298913002, -0.011194460093975067, 0.0011223347391933203, 0.010684694163501263, 0.00957680307328701, 0.006807074416428804, -0.0017179112182930112, -0.023884233087301254, 0.012968446128070354, 0.003592150751501322, 0.018582668155431747, 0.020023606717586517, -0.0219403263181448, 0.006820668466389179, -0.008611646480858326, 0.002295645885169506, 0.010297272354364395, 0.004322815220803022, 0.009651568718254566, 0.02028188854455948, 0.0006316849612630904, 0.007388207595795393, -0.011269225738942623, 0.01349860243499279, -0.0009880963480100036, -0.04901909455657005, 0.0015445908065885305, -0.0024723648093640804, -0.02716032974421978, -0.0032845919486135244, -0.022021889686584473, 0.010188521817326546, 0.004849573597311974, 0.015646416693925858, 0.02593689225614071, 0.00882914662361145, -0.02037704363465309, 0.023068608716130257, 0.00805430207401514, -0.018378762528300285, -0.007694067433476448, -0.012044070288538933, -0.0007149467128328979, -0.0286556426435709, -0.011833366937935352, -0.02748657949268818, 0.006164769642055035, 0.017753448337316513, 0.029308144003152847, 0.010283678770065308, 0.009311724454164505, 0.005852113012224436, 0.009930240921676159, -0.0033593575935810804, 0.01595907285809517, -0.00581812858581543, 0.017372824251651764, -0.0034749044571071863, 0.010453600436449051, 0.015510478988289833, -0.013722899369895458, 0.01606782339513302, -0.022905483841896057, 0.013328680768609047, -0.026548611000180244, -0.0022616616915911436, 0.0035411741118878126, 0.006344886962324381, -0.003053497988730669, -0.007938754744827747, -0.0032675997354090214, 0.01676110364496708, 0.03485439717769623, 0.010684694163501263, 0.012146023102104664, -0.008462115190923214, 0.024577515199780464, -0.02289189025759697, 0.00028907976229675114, 0.009502037428319454, 0.008095082826912403, -0.011840163730084896, 0.021151889115571976, 0.0066541447304189205, -0.014055946841835976, 0.0002476612862665206, -0.029009081423282623, 0.029552830383181572, 0.0001238306431332603, 0.0007383110350929201, 0.021709231659770012, 0.004523323383182287, -0.0016142588574439287, -0.0012812117347493768, -0.02081204392015934, -0.01552407257258892, -0.006039027124643326, 0.0216140765696764, -0.025732984766364098, 0.017223292961716652, 0.0032608029432594776, -0.011452741920948029, 0.010283678770065308, -0.01669313572347164, -0.024414390325546265, -0.008312582969665527, 0.04727909341454506, 0.0008980376878753304, 0.015048290602862835, 0.013804461807012558, 0.008224223740398884, -0.005593831650912762, 0.01878657378256321, -0.00377566646784544, 0.022293763235211372, -0.02400657720863819, 0.01544251013547182, 0.026018453761935234, -0.008468911983072758, -0.014300634153187275, -0.6520653963088989, -0.0034766036551445723, 0.005427307914942503, -0.01691063493490219, 0.0031775410752743483, -0.006745902821421623, 0.0019014269346371293, -0.007265863940119743, -0.007068754639476538, 0.007775629870593548, 0.001276963739655912, 0.0026694743428379297, -0.01101774163544178, -0.016611572355031967, -0.0070007857866585255, -0.02199470065534115, 0.020621731877326965, -0.02245688997209072, 0.007354223169386387, 0.017100948840379715, -0.011513913981616497, 0.003055197186768055, -0.03569721058011055, -0.01152071077376604, 0.003090880811214447, -0.03741002455353737, 0.004621877800673246, 0.019017668440937996, -0.020213918760418892, 0.016027040779590607, -0.0016524912789463997, 0.015238603577017784, 0.008020317181944847, -0.020254699513316154, 0.04379909113049507, 0.014694852754473686, -0.021287826821208, 0.024822203442454338, -0.004387385677546263, 0.014382196590304375, -0.04118908941745758, -0.004224260337650776, 0.014545321464538574, 0.014219071716070175, 0.022647202014923096, 0.01676110364496708, 0.008108677342534065, -0.026820486411452293, -0.005722972564399242, -0.017590323463082314, 0.0069158244878053665, -0.008577661588788033, 0.0028393962420523167, -0.013247117400169373, 0.010066178627312183, 0.00984867848455906, 0.0033593575935810804, -0.0036907054018229246, 0.0029532441403716803, -0.014178290031850338, 0.0177670419216156, 0.0013092488516122103, -0.009705943986773491, -0.026643766090273857, -0.03368533402681351, 0.02528439089655876, -0.002163106808438897, -0.0065793790854513645, -0.0006423050654120743, -0.02320454642176628, 0.008489302359521389, 0.010202115401625633, -0.0025607242714613676, -0.005158831365406513, 0.006076409947127104, 0.0024859586264938116, 0.02294626459479332, -0.003048400394618511, -0.008985474705696106, 0.01599985361099243, 0.007095941808074713, -0.011201256886124611, 0.0035853537265211344, -0.051737844944000244, 0.022769546136260033, 0.014395790174603462, -0.03817127272486687, -0.03031408227980137, 0.02028188854455948, 0.014151102863252163, 0.03314158320426941, 0.008706802502274513, -0.0015598838217556477, -0.040155962109565735, 0.015809541568160057, 0.005495276767760515, -0.01942548155784607, -0.009196178056299686, -0.004764612298458815, -0.01761751063168049, -0.018079698085784912, -0.010841022245585918, 0.027201110497117043, 0.0178214181214571, 0.03164627030491829, 0.024373609572649002, -0.006572582293301821, 0.01627172902226448, 0.02267438918352127, -0.008468911983072758, 0.010942975990474224, -0.031564708799123764, -0.01685626059770584, -0.00017417002527508885, 0.007911567576229572, -0.025692204013466835, 0.000979600241407752, -0.02455032803118229, -0.011969304643571377, -0.03341345861554146, 0.005879300646483898, 0.0145181342959404, -0.017209697514772415, -0.01984688825905323, -0.0022616616915911436, 0.028057517483830452, 0.007775629870593548, -0.012791726738214493, 0.006677933968603611, -0.012587820179760456, 0.014885165728628635, -0.01632610335946083, -0.011194460093975067, 0.007293051574379206, 0.01674751006066799, 0.024427983909845352, 0.016584385186433792, -0.00808828603476286, 0.018378762528300285, -0.008754380978643894, -0.013892821036279202, 0.007021176163107157, 0.00043754911166615784, -0.0023840053472667933, -0.0030993770342320204, -0.041760027408599854, -0.020458607003092766, 0.016190165653824806, -0.01192852295935154, -0.010507975704967976, 0.0006435795221477747, -0.006463832221925259, -0.0016567392740398645, 0.024509547278285027, -0.00563121447339654, -0.0038946117274463177, -0.040373463183641434, -0.022959858179092407, -0.005661800503730774, -0.03031408227980137, -0.013634540140628815, 0.015034697018563747, -0.015986260026693344, -0.012907274067401886, -0.005570042412728071, -0.0347728356719017, -0.0288187675178051, 0.01374328974634409, 0.009705943986773491, -0.024618295952677727, 0.001998282503336668, -0.020676106214523315, 0.005512269213795662, 0.027948766946792603, -0.0070755514316260815, 0.012682977132499218, -0.03621377423405647, 0.00986906886100769, 0.025012515485286713, -0.010440006852149963, -0.001794376177713275, 0.008142661303281784, -0.016788292676210403, -0.011581881903111935, 0.04369033873081207, -0.0035581663250923157, 0.025651423260569572, 0.005281175021082163, -0.04551190510392189, 0.021274231374263763, -0.0072998483665287495, 0.02124704420566559, 0.005828323774039745, 0.018854543566703796, -0.012200398370623589, 0.013029617257416248, -0.011384773068130016, 0.009291334077715874, -0.007585317362099886, -0.007979536429047585, 0.038551900535821915, 0.02418329566717148, -0.008115474134683609, -0.00965836551040411, 0.006657543126493692, -0.005699183326214552, -0.005835121031850576, -0.026861267164349556, 0.051683470606803894, 0.01345102395862341, -0.008788364939391613, -0.012180007994174957, -0.0005412015016190708, -0.030123768374323845, -0.00022599623480346054, -0.0021597084123641253, -0.006140980403870344, 0.020567357540130615, -0.018025323748588562, -0.00561422249302268, 0.032516270875930786, -0.013104382902383804, 0.024360015988349915, -0.03363095968961716, 0.0036567209754139185, 0.03110251948237419, 0.016774697229266167, 0.03961221128702164, -0.003058595582842827, -0.015510478988289833, 0.02528439089655876, 0.02471345290541649, 0.0032777951564639807, 0.003928596153855324, 0.011432350613176823, -0.004771409090608358, 0.011745007708668709, -0.009882662445306778, 0.0366215854883194, 0.006157972849905491, 0.007021176163107157, 0.0005947269382886589, 0.03303283452987671, -0.013070398941636086, 0.02119266986846924, -0.002144415397197008, 0.033848460763692856, -0.01176539808511734, -0.026480641216039658, -0.0010237799724563956, -0.01846032403409481, -0.010766256600618362, -0.010310865938663483, -0.003952385392040014, 0.010188521817326546, -0.015646416693925858, 0.0145181342959404, 0.013974383473396301, 0.0353165864944458, 0.02747298590838909, -0.011629460379481316, 0.02199470065534115, 0.007877582684159279, -0.013396648690104485, 0.017522355541586876, -0.0004881008935626596, -0.0026015054900199175, 0.00813586451113224, -0.01654360443353653, -0.01820204220712185, -0.0047408235259354115, 0.003918400965631008, 0.028900330886244774, -0.016149384900927544, 0.020662512630224228, 0.003870822722092271, -0.004271838814020157, 0.0006988041568547487, -0.02044501341879368, 0.006416254211217165, 0.0003457912243902683, -0.03868783637881279, -0.0026762711349874735, 0.012404304929077625, 0.012988836504518986, -0.000346853252267465, -0.02657579816877842, 0.0009090825915336609, -0.02624954842031002, 0.013090789318084717, 0.012322742491960526, 0.028302205726504326, -0.012941258028149605, 0.024264859035611153, -0.00010131598537554964, 0.027921579778194427, 0.02630392275750637, 0.009168989956378937, 0.008564068004488945, -0.00882914662361145, 0.025923296809196472, 8.655401325086132e-05, 0.0009184282971546054, -0.019140012562274933, 0.03420189768075943, 0.0068138716742396355, -0.03806252405047417, -0.0005713626742362976, -0.012547039426863194, -0.02059454470872879, -0.004156291484832764, -0.0013083992525935173, -0.0017603917513042688, 0.015469697304069996, -0.012438288889825344, 0.003058595582842827, 0.01424625888466835, -0.004720432683825493, 0.03512627258896828, 0.008190239779651165, -0.02176360785961151, 0.0004515676700975746, -0.00172046001534909, 0.03841596096754074, 0.07530942559242249, 0.015782354399561882, -0.010623522102832794, 0.013491805642843246, -0.0214509516954422, -0.006470629014074802, -0.03227158263325691, -0.018446730449795723, 0.012968446128070354, 0.027568142861127853, -0.012377116829156876, -0.0018912316299974918, 0.01134399138391018, -0.002759533002972603, 0.017046572640538216, -0.003568361746147275, 0.018419543281197548, -0.008394146338105202, -0.022755952551960945, -0.021913139149546623, 0.01027688104659319, 0.01270336750894785, 0.005542855244129896, 0.0038572289049625397, 0.0498347207903862, 0.009610787034034729, 0.009719537571072578, 0.041270650923252106, -0.011704226024448872, -0.009971021674573421, -0.0023041421081870794, 0.017631104215979576, 0.004710237495601177, 0.016992198303341866, -0.020295482128858566, 0.015931885689496994, 0.0025998062919825315, 0.0355340838432312, -0.008040708489716053, 0.009855475276708603, 0.030640332028269768, 0.021423762664198875, -0.012377116829156876, -0.03371252119541168, 0.01552407257258892, -0.028737206012010574, -0.010338053107261658, 0.02759533002972603, 0.010440006852149963, -0.02278313972055912, 0.0015938682481646538, -0.015456103719770908, -0.045865342020988464, -0.0004715335089713335, -0.0037824632599949837, 0.03194533288478851, -0.004632073454558849, -0.021382981911301613, -0.018596261739730835, -0.03265220671892166, -0.027201110497117043, -0.007408598437905312, 0.005186018999665976, -0.023190952837467194, -0.012608211487531662, 0.0023992983624339104, -0.00946805253624916, -0.011092507280409336, -0.009060240350663662, 0.023150170221924782, -0.0033372677862644196, -0.047251906245946884, -0.029634393751621246, 0.01165664754807949, 0.03917721286416054, 0.015823135152459145, 0.001055215485394001, -0.009726334363222122, -0.00039719263440929353, 0.012186804786324501, 0.0038198460824787617, -0.014314227737486362, 0.008822348900139332, -0.030721893534064293, -0.014395790174603462, -0.007442582864314318, -0.008625240065157413, -0.0006971049588173628, 0.0027119547594338655, 0.023190952837467194, -0.0035853537265211344, -0.006283714901655912, 0.008122270926833153, 0.001959200482815504, -0.004550510551780462, 0.0034324240405112505, -0.002917560515925288, 0.004812190774828196, 0.005274378228932619, 0.0071775047108531, 0.006389066576957703, -0.024781422689557076, -0.019819699227809906, -0.023150170221924782, 0.011575085110962391, -0.02604564093053341, 0.023625953122973442, 0.007129926234483719, -0.001535245100967586, -0.048094719648361206, -0.011371179483830929, -0.002518243854865432, 0.004608284216374159, -0.021913139149546623, 0.01483079046010971, -0.0025267398450523615, 0.013383055105805397, -0.0038198460824787617, 0.0014001571107655764, -0.00669492594897747, -0.005427307914942503, -0.03363095968961716, 0.007102739065885544, -0.008176646195352077, -0.004502932541072369, 0.002958341734483838, 0.019860481843352318, -0.0068512544967234135, -0.024944547563791275, 0.020309075713157654, 0.010861413553357124, -0.004713635891675949, 0.0015216514002531767, -0.016081416979432106, -0.04823065549135208, -0.030123768374323845, -0.008101880550384521, 0.026181578636169434, -0.017970949411392212, -0.01152071077376604, -0.0174407921731472, 0.025678610429167747, -0.00325400591827929, -0.008271802216768265, 0.008652427233755589, -0.023612359538674355, -0.006657543126493692, 0.005427307914942503, 0.00042756617767736316, 0.02048579417169094, 0.0036159397568553686, -0.01192852295935154, -0.009053443558514118, 0.0013100984506309032, -0.029226580634713173, -0.012084851041436195, 0.00813586451113224, -0.0023942007683217525, 0.035724397748708725, 0.031673457473516464, 0.04654502868652344, 0.009012661874294281, 0.0010212310589849949, 0.009406881406903267, -0.009671959094703197, -0.006834262050688267, 0.003554767929017544, -0.0018283604877069592, 0.0008491851040162146, -0.00072216842090711, 0.004299025982618332, 0.021532513201236725, 0.0030636934097856283, -0.00011342292418703437, 0.0018997277365997434, 0.018976887688040733, -0.019710950553417206, -0.03425627201795578, -0.02234813943505287, -0.027459392324090004, 0.004346604458987713, -0.001904825447127223, -0.011276022531092167, -0.0033015841618180275, -0.03547970950603485, -0.006596371531486511, 0.015510478988289833, 0.044152528047561646, 0.027554549276828766, 0.021845169365406036, 0.02822064235806465, 0.008101880550384521, -0.01136438176035881, 0.006338090170174837, 0.009474849328398705, -0.029389705508947372, -0.004683049861341715, -0.05355940759181976, -0.0032625021412968636, 0.03901408612728119, 0.003714494640007615, 0.008917505852878094, 0.021491732448339462, -0.004550510551780462, 0.010174928233027458, -0.0012225887039676309, -0.026874860748648643, -0.04545752704143524, -0.020241105929017067, -0.021845169365406036, -0.00207474734634161, -0.01659797877073288, 0.010392428375780582, -0.015048290602862835, -0.01152071077376604, -0.01579594798386097, 0.005658402107656002, 0.008767974562942982, -0.009053443558514118, -0.016475634649395943, 0.026439860463142395, -0.024047359824180603, 0.039666589349508286, 0.014042352326214314, 0.018800167366862297, 0.01197610143572092, 0.026399079710245132, 0.005875902250409126, -0.029253767803311348, -0.02006438747048378, -0.006290511693805456, 0.027948766946792603, 0.016475634649395943, 0.0024655680172145367, -0.022755952551960945, -0.004696643445640802, -0.003068791003897786, -0.009671959094703197, -0.0288731437176466, 0.002642286941409111, 0.01197610143572092, 0.012288757599890232, -0.015483290888369083, -0.011269225738942623, -0.0017858800711110234, 0.03741002455353737, 0.002516544656828046, 0.0023942007683217525, 0.008278599008917809, -0.010426413267850876, -0.01878657378256321, 0.008808755315840244, -0.0018470518989488482, -0.0024145913776010275, 0.003050099592655897, -0.005118050146847963, 0.00850969273597002, 0.005233597010374069, -0.009406881406903267, -0.028057517483830452, -0.02529798448085785, -0.00022323500888887793, 0.021287826821208, 0.031238457188010216, 9.329778549727052e-05, 0.0032472091261297464, -0.011948914267122746, 0.007238676305860281, -0.014694852754473686, 0.023517202585935593, -0.008924302645027637, -0.004876760765910149, 0.02396579645574093, 0.02102954499423504, 0.015238603577017784, -0.039829712361097336, -0.025651423260569572, -0.0021155287977308035, -0.018066104501485825, 0.012825711630284786, 0.007293051574379206, -0.013892821036279202, -0.018664229661226273, 0.003036505775526166, 0.018120480701327324, -0.03915002569556236, 0.03036845661699772, 0.0019184191478416324, 0.013987977989017963, -0.04627315327525139, -0.015333759598433971, 0.0067391060292720795, 0.006596371531486511, -0.0035207835026085377, -0.0032862911466509104, -0.010868210345506668, 0.0027476383838802576, 0.0288187675178051, -0.0022089858539402485, -0.002142716199159622, 0.007027973420917988, 0.0013627742882817984, -0.018582668155431747, 0.012587820179760456, -0.001515704090707004, -0.022823920473456383, 0.022062670439481735, 0.002795216627418995, -0.01836516708135605, 0.013253914192318916, 0.004302424378693104, 0.0016261533601209521, -0.015333759598433971, -0.005848714616149664, 0.001536944299004972, 0.005678792484104633, 0.006892035715281963, 0.00946805253624916, 0.010290475562214851, 0.02422407828271389, 0.020159544423222542, 0.004968518856912851, 0.030830644071102142, -0.01043321006000042, -0.00044349636300466955, 0.006375472992658615, 0.00014453988114837557, -0.029145019128918648, -0.0031010762322694063, -0.02347642183303833, -0.010739069432020187, 0.01718251034617424, -0.006450238637626171, -0.0015420420095324516, -0.02032266929745674, 0.027228297665715218, -0.022823920473456383, 0.014463759027421474, 0.012152819894254208, -0.014123914763331413, 0.003496994497254491, 0.0015513877151533961, 0.017413605004549026, 0.008971881121397018, -0.007476567290723324, -0.020091574639081955, -0.03205408155918121, -0.026494234800338745, -0.01299563329666853, 0.01301602367311716, -0.004350002855062485, 0.01601344719529152, -0.013532586395740509, -0.01686985418200493, -0.02320454642176628, -0.011010944843292236, -0.05529940873384476, -0.0426844023168087, 0.0018368565943092108, 0.007408598437905312, 0.014028758741915226, 0.005230198614299297, 0.01518422830849886, 0.0018980285385623574, -0.01168383564800024, -0.0024281851947307587, -0.03368533402681351, -0.005005901679396629, -0.0088019585236907, -0.010385631583631039, 0.008645630441606045, -0.030286893248558044, -0.017046572640538216, 0.003384845796972513, 0.008835943415760994, -0.037056587636470795, 0.0019863878842443228, 0.013260711915791035, -0.015279384329915047, -0.010127349756658077, 0.005780745763331652, 0.0016686338931322098, -0.011819773353636265, 0.01563282310962677, 0.015564853325486183, -0.014504540711641312, -0.01813407428562641, 0.012050867080688477, -0.00746977049857378, -0.012016882188618183, 0.015360946767032146, 0.012451882474124432, 0.018174855038523674, 0.009542818181216717, 0.007109535858035088, 0.006157972849905491, -0.021355794742703438, -0.006436644587665796, 0.01590469665825367, -0.0026728727389127016, -0.005138440523296595, 0.01835157349705696, 0.03765471279621124, -0.01165664754807949, -0.015931885689496994, 0.028057517483830452, 0.002016973914578557, -0.022280169650912285, 0.0013908114051446319, -0.024631891399621964, 0.03735565021634102, -0.022021889686584473, 0.00925734918564558, 0.0016575889894738793, -0.013002430088818073, -0.011051725596189499, 0.013267508707940578, -0.01416469644755125, -0.0035479709040373564, -0.007870785892009735, -0.011078913696110249, 0.005420511122792959, 0.007034770213067532, 0.002460470190271735, 0.0022973453160375357, -0.020621731877326965, 0.007775629870593548, -0.001984688686206937, -0.018433136865496635, 0.03365814685821533, 0.0026167985051870346, -0.03216283395886421, 0.0359690859913826, 0.01213922630995512, -0.007823208346962929, 0.030749082565307617, 0.1993388831615448, -0.005804535001516342, -0.01685626059770584, 0.01195571105927229, -0.008101880550384521, 0.032896894961595535, 0.013858837075531483, -0.0031486542429775, -0.018759386613965034, 0.002937951125204563, 0.014450165443122387, 0.000978750642389059, -0.026874860748648643, -0.006076409947127104, 7.5602006290864665e-06, -0.02117907628417015, -0.05358659476041794, -0.012846102006733418, -0.006844457238912582, 0.032625019550323486, 0.02465907856822014, -0.018079698085784912, -0.012132429517805576, 0.009304927662014961, 0.03137439489364624, -0.0006580228800885379, 0.007313441950827837, 0.00713672349229455, 0.01995563693344593, 0.010603131726384163, -0.02619517222046852, 0.013858837075531483, 0.021709231659770012, 0.02438720315694809, 0.010106959380209446, -0.024985328316688538, 0.004088323097676039, -0.01518422830849886, 0.0216140765696764, 0.010202115401625633, 0.0017068663146346807, -0.00414949469268322, -0.007361020427197218, -0.012479070574045181, -0.0034120334312319756, 0.011880945414304733, -0.011486725881695747, -0.02646704763174057, 0.009712740778923035, 0.02610001713037491, -0.022320952266454697, -0.003772268071770668, 0.008251411840319633, 0.03808971121907234, 0.006103597581386566, 0.014667665585875511, -0.01712813600897789, 0.021206263452768326, -0.00458789337426424, 0.019615793600678444, -0.006674535572528839, 0.023557983338832855, -0.009107817895710468, 0.012581023387610912, -0.031184082850813866, -0.027065172791481018, -0.01707376167178154, 0.012676180340349674, 0.007931957952678204, -0.020744075998663902, -0.023068608716130257, -0.008496099151670933, -0.008761177770793438, -0.003663518000394106, -0.013899617828428745, -0.029960643500089645, 0.042820338159799576, 0.03874221071600914, 0.008978677913546562, 0.013172351755201817, 0.011208053678274155, 0.012472273781895638, -0.0027459391858428717, -0.04029190167784691, 0.024237671867012978, -0.002273556077852845, 0.015592041425406933, -0.02092079445719719, -0.004299025982618332, -0.013525789603590965, 0.00039952906081452966, -0.012465476989746094, -0.007517348509281874, -0.01574157178401947, -0.019602200016379356, -0.00406793225556612, 0.015510478988289833, -0.004265041556209326, 0.005971058271825314, -0.0004609133757185191, -0.018650636076927185, 0.058398786932229996, 0.022103451192378998, 0.02971595712006092, -0.027500173076987267, 0.005128245335072279, 0.0052268002182245255, 0.01590469665825367, 2.2912918211659417e-05, -0.019928449764847755, 0.00800672359764576, -0.02289189025759697, 0.003085783217102289, -0.008312582969665527, -0.013172351755201817, 0.007911567576229572, -0.022008294239640236, 0.0018470518989488482, 0.0026015054900199175, 0.01616297848522663, 0.011439147405326366, -0.024196891114115715, -0.015292978845536709, 0.007537739351391792, -0.01184696052223444, -0.0034562130458652973, -0.026371892541646957, 0.0008835943299345672, -0.01969735696911812, 0.0020985365845263004, 0.01612219773232937, 0.015401728451251984, 0.011174069717526436, -0.027037985622882843, -0.025597047060728073, -0.005253987852483988, -0.005328753497451544, -0.014382196590304375, -0.010773053392767906, -0.002236173255369067, -0.013131571002304554, 0.0005692386184819043, -0.0035445725079625845, 0.0068410588428378105, 0.017522355541586876, -0.015061884187161922, 0.01835157349705696, 0.02380267158150673, -0.016625165939331055, -0.021967513486742973, -0.0072998483665287495, 0.0143550094217062, -0.003077286994084716, 0.021967513486742973, 0.038715023547410965, 0.007055160589516163, -0.04108033701777458, 0.012655789032578468, 0.010834225453436375, 0.005366136319935322, -0.06416253745555878, -0.012003288604319096, 0.028139080852270126, -0.001421397435478866, -0.005169026553630829, 0.010025396943092346, -0.1742176115512848, 0.01669313572347164, 0.0012327840086072683, -0.03817127272486687, 0.04045502468943596, 0.009671959094703197, 0.0023279311135411263, -0.003259103512391448, -0.008176646195352077, -0.005685589741915464, 0.022538451477885246, 0.0009728033328428864, -0.020961575210094452, -0.01574157178401947, 0.024455171078443527, 0.010739069432020187, -0.02011876180768013, 0.035833146423101425, 0.02987908199429512, 0.01171781960874796, 0.016951417550444603, -0.0023806069511920214, -0.020254699513316154, -0.01118086650967598, 0.013695712201297283, 0.0012106940848752856, -0.005389925092458725, 0.003717893036082387, 0.0043567996472120285, -0.023231733590364456, -0.008951489813625813, -0.017264073714613914, 0.014572509564459324, 0.004696643445640802, -0.007965942844748497, -0.008897114545106888, -0.014871572144329548, -0.011330397799611092, -0.01824282482266426, 0.02342204563319683, 0.020363450050354004, 0.007061957381665707, 0.006324496120214462, 0.0031911348924040794, 0.020037200301885605, 0.006066214758902788, 0.03580595925450325, -0.007816411554813385, 0.005498675163835287, -0.003741682041436434, 0.030069394037127495, -0.02667095512151718, -0.012180007994174957, 0.004305823240429163, 0.0008767974213697016, 0.03232595697045326, 0.0002440504467813298, 0.009570006281137466, -0.014015165157616138, -0.013199539855122566, 0.03229876980185509, 0.0015700791263952851, 0.011031335219740868, 0.016190165653824806, -0.02593689225614071, -0.003792658681049943, 0.002076446544378996, 0.022212201729416847, -0.017332041636109352, 0.022932671010494232, -0.0013033016584813595, 0.0014095028163865209, -0.0062803165055811405, -0.00440097926184535, 0.009440865367650986, -0.00047578156227245927, -0.009067037142813206, 0.033168770372867584, 0.03403877094388008, 0.02268798276782036, -0.026874860748648643, 0.02998783066868782, -0.020145950838923454, 0.01612219773232937, -0.018691418692469597, 0.01674751006066799, 0.011581881903111935, 0.004061135463416576, -0.025923296809196472, -0.017223292961716652, 0.0176582932472229, -0.027010798454284668, -0.006667738780379295, -0.009243755601346493, -0.005427307914942503, 0.0145181342959404, 0.011711022816598415, 0.006674535572528839, 0.005610823631286621, -0.011167272925376892, 0.001221739104948938, 0.015768760815262794, 0.0031690450850874186, 0.01718251034617424, 0.027785642072558403, 0.02672532945871353, 0.0032285177148878574, -0.005546253640204668, 0.022320952266454697, -0.018161261454224586, -0.019778918474912643, -0.00598805071786046, 0.01968376152217388, 0.010310865938663483, 0.018419543281197548, 0.019765324890613556, 0.006266722921282053, 0.00021622572967316955, -0.02262001484632492, 0.00507047213613987, 0.04374471679329872, 0.024196891114115715, -0.00952922459691763, 0.0025097476318478584, -0.02427845261991024, -0.01338985189795494, -0.10749944299459457, -0.015333759598433971, -0.0025454312562942505, 0.024672672152519226, -0.005515667609870434, 0.0013593758922070265, -0.0024570717941969633, 0.0348815843462944, -0.02321814000606537, 0.026548611000180244, 0.020798450335860252, -0.008530083112418652, -0.009835083968937397, -0.021967513486742973, 0.0347728356719017, -0.013688914477825165, -0.019914856180548668, -0.015755165368318558, -0.009889459237456322, 0.016230948269367218, -0.01632610335946083, -0.02641267329454422, 0.0039727757684886456, -0.012934461236000061, -0.012798523530364037, -0.00746977049857378, -0.025868922472000122, 0.013138367794454098, 0.00780281750485301, 0.007197895087301731, 0.004251447971910238, -0.02353079617023468, 0.020526574924588203, -0.005790940951555967, 0.003931994549930096, 0.010236100293695927, -0.032461896538734436, -0.013539383187890053, -0.0031877364963293076, -0.02459110878407955, -0.004472346510738134, -0.007089145015925169, 0.006334691308438778, -0.038551900535821915, 0.011187663301825523, -0.02465907856822014, 0.0107254758477211, -0.001589620136655867, 0.004071330651640892, -0.03387564793229103, -0.01926235668361187, -0.0005569193162955344, -0.024930953979492188, -0.021206263452768326, -0.004434963688254356, -0.0020441615488380194, 0.02119266986846924, 0.011738210916519165, -0.01962938718497753, 0.007442582864314318, 0.005247190594673157, -0.017264073714613914, -0.010181725025177002, 0.030232518911361694, 0.019411887973546982, 0.006609965115785599, -0.011731414124369621, -0.018161261454224586, -0.006596371531486511, -0.019439075142145157, -0.005743362940847874, 0.00859125517308712, -0.005811331793665886, 0.015931885689496994, -0.019874075427651405, 0.003480002284049988, -0.026072828099131584, -0.024346422404050827, -0.005804535001516342, 0.010773053392767906, -0.025950485840439796, -0.030667519196867943, 0.01585032232105732, 0.005580238066613674, 0.015279384329915047, -0.004761213902384043, -0.005366136319935322, 0.0032998849637806416, 0.01696501113474369, -0.028356580063700676, 0.01979251205921173, 0.0025641226675361395, 0.008754380978643894, -0.020947981625795364, 0.0004324514593463391, 0.027772048488259315, -0.012479070574045181, -0.007143520284444094, -0.0017552940407767892, 0.02416970208287239, -0.011479929089546204, -0.011065319180488586, -0.06584816426038742, 0.01681547984480858, 0.009916647337377071, 0.018691418692469597, -0.0020101771224290133, -0.021002357825636864, 0.024509547278285027, -0.02993345633149147, 0.016625165939331055, 0.011942116543650627, -0.013308289460837841, 0.02418329566717148, 0.011405163444578648, -0.017794229090213776, -0.024727046489715576, -0.006895434111356735, 0.03808971121907234, 0.012411101721227169, 0.031455956399440765, -0.002185196615755558, -0.013559774495661259, -0.003999963402748108, 0.010956569574773312, 0.008482505567371845, 0.007381410803645849, 0.0062157460488379, -0.03632252290844917, 0.00114697334356606, -0.00946805253624916, 0.0014196981210261583, 0.0021716030314564705, -0.020145950838923454, -0.009699147194623947, 0.025787360966205597, -0.022334545850753784, -0.005355940666049719, -0.008251411840319633, 0.008632036857306957, 0.007945551536977291, 0.012213991954922676, -0.015986260026693344, -0.041379399597644806, 0.003697502426803112, -0.02604564093053341, -0.017196103930473328, -0.021301420405507088, 0.008808755315840244, -0.001962598878890276, -0.005420511122792959, 0.005889495834708214, 0.018772980198264122, 0.015061884187161922, -0.015972666442394257, -0.030015019699931145, 0.004146096296608448, -0.005121448542922735, 0.010392428375780582, -0.004186877515166998, 0.013151961378753185, 0.008434927091002464, 0.019874075427651405, 0.009685552679002285, 0.022185014560818672, -0.008353364653885365, 0.001999981701374054, 0.005634612869471312, -0.019724544137716293, -0.003554767929017544, -0.007089145015925169, -0.0212334506213665, 0.010480787605047226, -0.01610860414803028, 0.013403446413576603, 0.003592150751501322, 0.02604564093053341, -0.005053479690104723, -0.0044417604804039, 0.019942043349146843, -0.010541959665715694, 0.03346783295273781, 0.006222542840987444, -0.008387348614633083, -0.016720322892069817, 0.03814408555626869, 0.001570928725413978, 0.016951417550444603, -0.028247829526662827, -0.012587820179760456, -0.015320166014134884, -0.006327894516289234, -0.013247117400169373, -0.006487621460109949, -0.027554549276828766, -0.0001424158544978127, 0.022647202014923096, 0.010215709917247295, 0.0042446511797606945, 0.0024944546166807413, -0.005886097438633442, 0.04067252576351166, 0.011269225738942623, 0.007102739065885544, 0.0025029508396983147, -0.02395220287144184, -0.014817196875810623, -0.0010314264800399542, -0.009141802787780762, -0.022402513772249222, -0.016149384900927544, 0.012791726738214493, 0.015564853325486183, -0.001959200482815504, 0.0061307852156460285, 0.003184337867423892, -0.01818844862282276, 0.020186731591820717, -0.011208053678274155, -0.029416892677545547, -0.02523001655936241, 0.038932524621486664, 0.021151889115571976, 0.008400943130254745, 0.0281662680208683, -0.013192743062973022, 0.031184082850813866, 0.01734563522040844, -0.00611039437353611, -0.015388134866952896, 0.002200489630922675, 0.007714457809925079, -0.006660941522568464, 0.004577698186039925, -0.025107672438025475, 0.0018249620916321874, -0.02546110935509205, -0.010841022245585918, -0.01599985361099243, 0.025257203727960587, 0.015374541282653809, 0.07617942243814468, 0.008441723883152008, -0.012982039712369442, 0.016190165653824806, -0.012689773924648762, 0.01131000742316246, 0.013532586395740509, 0.005046682897955179, -0.006790082436054945, -0.0039353929460048676, 0.008292192593216896, 0.005790940951555967, 0.003038204973563552, -0.0077484422363340855, -0.01686985418200493, 0.022130638360977173, -0.010446803644299507, 0.019520636647939682, 0.0005658402224071324, -0.008815552107989788, 0.015252197161316872, -0.009563209488987923, 0.005913285072892904, -0.006596371531486511, -0.03632252290844917, -0.025651423260569572, 0.023462828248739243, 0.008197036571800709, 0.0001570716267451644, -0.018052510917186737, 0.015877509489655495, -0.021382981911301613, -0.0214509516954422, 0.0051520345732569695, 0.009005865082144737, 0.004747620318084955, -0.006501215044409037, -0.013532586395740509, 0.014110321179032326, 0.020580951124429703, -0.019819699227809906, 0.03469127044081688, -0.010059380903840065, -0.0019914857111871243, -0.008767974562942982, 0.025814548134803772, -0.00803391169756651, -0.010589538142085075, -0.00995063129812479]" +10,"For example, Lufthansa Cargo chose us to centralize customer information and related shipments. CBRE is optimizing its field service operations, gaining cost efficiencies. Darden is using our solutions to increase both guest frequency and spend at its restaurants. And Tillamook is scaling its growth and improving supply chain visibility.","[0.006830708123743534, -0.010010579600930214, -0.00037234576302580535, -0.017477260902523994, -0.0056068869307637215, 0.010161838494241238, -0.019484877586364746, 0.0030509578064084053, 0.008360483683645725, -0.03033425658941269, -0.000996073242276907, 0.01892109587788582, 0.008236726745963097, 0.0007683257572352886, 0.006311615463346243, 0.012540725991129875, 0.02345885895192623, -0.021519996225833893, 0.00793420895934105, -0.019938653334975243, -0.021272482350468636, -0.04138989746570587, 0.00043938090675510466, 0.015785913914442062, -0.011578170582652092, 1.5201075257209595e-05, 0.03234187141060829, -0.02260630950331688, 0.02229003980755806, 0.002801724709570408, 0.011750055477023125, 0.010986885987222195, -0.010498732328414917, 0.012403218075633049, -0.012980751693248749, -0.018426066264510155, 0.013620163314044476, -0.015400891192257404, 0.020804954692721367, -0.015552150085568428, 0.006040037143975496, -0.002268881304189563, 0.014520840719342232, 0.013152636587619781, -0.01739475689828396, 0.0037333411164581776, 0.010945633985102177, -0.007088535465300083, -0.01886609196662903, -0.013070131652057171, 0.014699600636959076, 0.03707214444875717, -0.061548564583063126, 0.006631321273744106, -0.0073841772973537445, 0.020942462608218193, 0.0007992649916559458, 0.022166283801198006, -0.004668395034968853, -0.013572035357356071, -0.0011988974874839187, 0.017326002940535545, -0.024641426280140877, -0.012066323310136795, -0.016102181747555733, -0.031159304082393646, -0.006600382272154093, -0.0019990219734609127, 0.017752278596162796, 0.0006299583474174142, 0.024215152487158775, 0.03984980657696724, -0.012850118800997734, 0.017174744978547096, -0.0012272585881873965, -0.008422362618148327, -0.026209017261862755, 0.021905018016695976, -0.011186272837221622, 0.019911153241991997, 0.0011378783965483308, -0.01971864141523838, -0.02640152908861637, 0.016844725236296654, 0.02070869877934456, -0.0075766886584460735, -0.009701186791062355, 0.011035013943910599, -0.02303258329629898, 0.01839856430888176, 0.01306325662881136, 0.00028146160184405744, -0.018206054344773293, 0.019704891368746758, -0.031241808086633682, -0.0016131402226164937, 0.004389941692352295, 0.01597842574119568, -0.008106093853712082, -0.027721604332327843, -0.001067405566573143, 0.005593136418610811, -0.026456531137228012, -0.013455154374241829, -0.013826425187289715, 0.005352497566491365, 0.005056855268776417, -0.022853823378682137, 0.026154013350605965, -0.03286440297961235, -0.01551089808344841, 0.024256404489278793, -0.009934949688613415, -0.001280542928725481, -0.004878094885498285, -0.009549927897751331, -0.0131938885897398, -0.023885132744908333, -0.007769199553877115, -0.014397083781659603, 0.021836264058947563, 0.02277131751179695, 0.016418449580669403, -0.008250477723777294, 0.009728687815368176, 0.02986672893166542, 0.0003377539396751672, -0.002461392432451248, 0.002311852527782321, -0.016047179698944092, 0.006060663145035505, 0.014410833828151226, -0.004310874734073877, 0.008009838871657848, -0.02340385504066944, 0.0017635396216064692, 0.0004997554933652282, 0.03407447412610054, -0.01735350489616394, -0.0048712193965911865, -0.006284113973379135, 0.03423948213458061, -0.018481070175766945, 0.0077898260205984116, -0.03597208112478256, 0.010038081556558609, 0.009501799941062927, 0.008745506405830383, -0.0007657474488951266, -0.013303895480930805, 0.03322192281484604, -0.01746351085603237, -0.0028498524334281683, 0.008649250492453575, 0.027927866205573082, 0.010381851345300674, 0.024366410449147224, 0.02123122848570347, -0.0077141965739429, -0.01908610574901104, -0.013200764544308186, -0.007542311679571867, -0.0016690028132870793, 0.016597211360931396, 0.018164802342653275, 0.018604826182127, 0.01793103851377964, -0.003229718189686537, -0.01104188896715641, 0.010498732328414917, 0.02039243094623089, 0.034624505788087845, -0.01787603460252285, 0.02118997648358345, -0.004857468884438276, 0.004414005670696497, -0.0003283002588432282, 0.0007339487201534212, -0.017174744978547096, -0.02671779692173004, 0.005857839249074459, -0.006438810378313065, 0.018591076135635376, 0.004692459013313055, 0.011083141900599003, -0.019594883546233177, 0.0366046205163002, 0.014892112463712692, 0.016679715365171432, -0.020749950781464577, -0.005390312056988478, 0.0019251113990321755, -0.006022848654538393, -0.021272482350468636, -0.6459574103355408, -0.007418554276227951, 0.00624286150559783, -0.021740008145570755, 0.010574362240731716, 0.021850014105439186, 0.01856357418000698, 0.0010639678221195936, -0.016363447532057762, 0.006926963571459055, 0.005809711292386055, 0.010216841474175453, -0.016335945576429367, -0.00820234976708889, 0.00030896320822648704, -0.026676544919610023, 0.019938653334975243, -0.004616829566657543, 0.026800300925970078, 0.019374871626496315, -0.019058603793382645, -0.009618681855499744, 0.017491012811660767, -0.007968585938215256, 0.02865665964782238, 0.010993761010468006, 0.007074784487485886, -0.010086208581924438, -0.007370426785200834, 0.015249633230268955, -0.018522322177886963, 0.025961503386497498, -0.010794375091791153, -0.009274912066757679, 0.04609266668558121, 0.02396763674914837, -0.030114242807030678, 0.013551409356296062, 0.00098919786978513, 0.022578807547688484, -0.007157289423048496, -0.0314343199133873, 0.03179183974862099, 0.03418447822332382, 0.0008869263692758977, 0.01651470549404621, 0.023678870871663094, 0.007514810189604759, -0.011475039646029472, -0.009653058834373951, -0.00046967563685029745, -0.018467318266630173, -0.023541362956166267, -0.007116036955267191, 0.006720701698213816, -0.00018961058231070638, 0.023170091211795807, -0.018261056393384933, 0.008346733637154102, -0.00448275962844491, -0.011715678498148918, 0.02871166169643402, -0.02271631546318531, -0.026580289006233215, -0.029096685349941254, 0.013847051188349724, -0.0065797558054327965, -0.018838590011000633, 0.027405336499214172, 0.01062249019742012, 0.01798604056239128, 0.025507725775241852, 0.01170192752033472, 0.0015082904137670994, 0.012038822285830975, 0.03663212060928345, 0.017270999029278755, -0.016129683703184128, -0.0013656258815899491, 0.01435583084821701, -0.009041148237884045, -0.025053950026631355, -0.001410315977409482, -0.004345251712948084, -0.0073841772973537445, 0.024311406537890434, -0.03049926646053791, -0.010670618154108524, 0.016995983198285103, -0.005789085291326046, 0.031214306131005287, 0.015813415870070457, -0.007446056231856346, -0.02439391240477562, -0.008532368578016758, 0.017532264813780785, -0.015414642170071602, -0.008642375469207764, -0.004290248267352581, -0.02528771385550499, -0.02502644807100296, -0.011220649816095829, 0.007666068617254496, 0.012135077267885208, 0.011866937391459942, 0.019223613664507866, 0.01188756339251995, 0.032094359397888184, 0.01992490328848362, -0.017601018771529198, -0.015634655952453613, -0.025576479732990265, -0.04070235788822174, -0.006091602612286806, 0.018426066264510155, -0.02350011095404625, 0.01230696216225624, -0.016019677743315697, -0.007672944106161594, -0.012946374714374542, -0.0026848430279642344, -0.004943411331623793, 0.03327692672610283, -0.018123548477888107, 0.010196215473115444, 0.025576479732990265, -0.005410938058048487, -0.002856727922335267, -0.004857468884438276, -0.010952509008347988, 0.0034772325307130814, -0.03126931190490723, 0.006992280017584562, -0.01651470549404621, 0.010017454624176025, 0.009316164068877697, 0.008924266323447227, -0.028037874028086662, 0.023995138704776764, -0.03500952571630478, -0.02392638474702835, -0.01219695620238781, -0.0021812201011925936, -0.011640048585832119, -0.01662471331655979, -0.0067722671665251255, -0.006449123378843069, 0.030994294211268425, -0.023678870871663094, -0.03833721950650215, -0.0061775450594723225, -0.017697274684906006, -0.019003599882125854, 0.008291729725897312, 0.012808866798877716, 0.01751851476728916, -0.022633809596300125, -0.032314371317625046, -0.008628624491393566, -0.025782743468880653, 0.016184687614440918, -0.012148828245699406, -0.03663212060928345, -0.007707321085035801, -0.013262642547488213, -0.02098371461033821, 0.010766873136162758, 0.015579652041196823, -0.01597842574119568, -0.013517032377421856, 0.00783107802271843, -0.019223613664507866, 0.003258938668295741, 0.004049609415233135, 0.011371908709406853, 0.005170299205929041, -0.03184684365987778, 0.0070060305297374725, 0.0348995216190815, -0.014603345654904842, 0.019732391461730003, 0.01819230243563652, -0.012478847056627274, -0.0005006149294786155, 0.03679712861776352, -0.009247410111129284, 0.0037024018820375204, 0.028629157692193985, -0.009811192750930786, 0.016047179698944092, -0.011220649816095829, 0.010966259986162186, -0.0004430334665812552, 0.018962347880005836, 0.013572035357356071, 0.0015418080147355795, -0.0044483826495707035, 0.024572672322392464, -0.01623968966305256, -0.025535227730870247, 0.0016217344673350453, -0.0034892645198851824, -0.008188598789274693, -0.021052468568086624, 0.00954305287450552, -0.008580496534705162, 0.0002477291855029762, -0.008525493554770947, 0.04284748062491417, 0.029096685349941254, 0.006706950720399618, -0.020846206694841385, -0.009020522236824036, -0.011873812414705753, 0.0017008015420287848, 0.013365773484110832, -0.00565157737582922, 0.010003704577684402, 0.009831818751990795, -0.008051090873777866, 0.012898246757686138, -0.021107472479343414, 0.03759467601776123, -0.00365427415817976, -0.003176433965563774, 0.008133595809340477, 0.00869737844914198, 0.016115933656692505, 0.004307436756789684, 0.008752381429076195, 0.011310029774904251, 0.043617524206638336, -0.004561826586723328, 0.0016182968392968178, 0.020887458696961403, -0.002875635167583823, 0.04243495687842369, 0.0002548194315750152, 0.03113180212676525, -0.01661096140742302, 0.0154283931478858, 0.0360545888543129, 0.03564206510782242, -0.008855512365698814, 0.004627143032848835, 0.0012728080619126558, 0.02660779096186161, 0.0006299583474174142, -0.014438335783779621, -0.00434868922457099, -0.011213773861527443, 0.01161942258477211, -0.001275386312045157, -0.0159921757876873, -0.0024906129110604525, 0.002631558571010828, 0.01776602864265442, 0.017202245071530342, 0.033139418810606, 0.020199919119477272, -0.0006836723769083619, 0.011956317350268364, 0.010471231304109097, -0.032314371317625046, -0.003059552051126957, 0.02202877588570118, -0.008876139298081398, -0.0008396579651162028, 0.0008650110103189945, 0.008381110616028309, 0.01064999122172594, -0.01227946113795042, 0.007116036955267191, -0.002617807826027274, -0.0009445078321732581, 0.012678233906626701, -0.00849111657589674, 0.0015435268869623542, -0.016707217320799828, 0.023637618869543076, 0.011179396882653236, -0.0105193592607975, 0.031241808086633682, 0.017999792471528053, -0.0032915968913584948, -0.004812778439372778, -0.02092871069908142, 0.034404490143060684, -0.03118680603802204, 0.01180505845695734, 0.01960863545536995, 0.018632328137755394, -0.009350541047751904, 0.02454517036676407, 0.01940237358212471, 0.0291241854429245, 0.018646080046892166, -0.01559340301901102, 0.005713455844670534, -0.006297864485532045, 0.01209382526576519, 0.002160593867301941, 0.0198836512863636, -0.015607153065502644, 0.02934419922530651, -0.0055862609297037125, -0.02787286415696144, -0.007102285977452993, 0.007968585938215256, -0.007700445596128702, 0.009508675895631313, -0.022303791716694832, -0.02686905488371849, -0.002404670463874936, 0.0148508595302701, 0.0055862609297037125, -0.005166861694306135, -0.007693570572882891, 0.015455895103514194, 0.017683524638414383, -0.011715678498148918, -0.022840071469545364, -0.016734719276428223, 0.040344834327697754, 0.10467106103897095, 0.019223613664507866, -0.0077210720628499985, 0.007535436190664768, -0.00395679147914052, -0.025535227730870247, -0.0038845997769385576, -0.015840917825698853, 0.007494183722883463, -0.004242120776325464, -0.011021262966096401, -0.002322165761142969, 0.026525285094976425, 0.0025593668688088655, 0.003360350849106908, 0.015057121403515339, -0.017999792471528053, -0.020021159201860428, 0.00280688120983541, -0.008869263343513012, 0.0052734301425516605, -0.024050142616033554, -0.007638567127287388, 0.033991966396570206, 0.03863973543047905, 0.0183023102581501, 0.04265496879816055, 0.03792469576001167, 0.011585045605897903, -0.004527449607849121, -0.003963666968047619, 0.02787286415696144, -0.0014369582058861852, 0.04331500828266144, -0.020626194775104523, -0.007356675807386637, -0.020956212654709816, -0.016789721325039864, 0.009027397260069847, -0.00010898579785134643, 0.01835731230676174, 0.00013611139729619026, 0.006397557910531759, -0.008938017301261425, -0.00857362151145935, -0.009109902195632458, -0.005404063034802675, 0.011605671606957912, -0.024957694113254547, -0.00869737844914198, 0.026195267215371132, -0.021066218614578247, -0.031214306131005287, -0.015689658001065254, 0.027419086545705795, 0.007177915424108505, -0.007727947551757097, -0.014672099612653255, 0.013303895480930805, -0.0395197868347168, -0.019938653334975243, -0.012403218075633049, 0.00309564801864326, -0.028876671567559242, -0.010512483306229115, -0.005118733737617731, -0.03731966018676758, -0.020062411203980446, -0.03366195037961006, 0.006720701698213816, -0.005129046738147736, -0.030086740851402283, -0.02928919531404972, 0.016225939616560936, 0.051290467381477356, 0.02187751606106758, 0.01120002381503582, 0.008635499514639378, 0.003953353967517614, 0.018384814262390137, -0.003020018571987748, -0.008353608660399914, -0.006239423528313637, -0.047880273312330246, -0.023857630789279938, -0.005005289800465107, 0.006174107547849417, -0.027845362201333046, -0.01856357418000698, 0.007748573552817106, -0.008381110616028309, -0.01180505845695734, 0.012162579223513603, 0.024366410449147224, -0.009639307856559753, -0.0010777186835184693, 0.018123548477888107, -0.0037608426064252853, 0.01997990719974041, -0.042132437229156494, 0.013620163314044476, 0.02035117894411087, -0.0046340180560946465, 0.00035558699164539576, 0.029399201273918152, 0.0012031946098431945, -0.004400254692882299, -0.019058603793382645, 0.0281203780323267, 0.006569442804902792, 0.011151895858347416, -0.016569709405303, -0.00730854831635952, 0.010010579600930214, -0.008367359638214111, 0.008126720786094666, 0.008312356658279896, 0.0030303315725177526, 0.020859956741333008, 0.013269518502056599, 0.0031197117641568184, -0.021107472479343414, 0.0015796227380633354, 0.0024149834644049406, -0.018219804391264915, -0.004369315225630999, 0.005166861694306135, -0.026374027132987976, -0.017999792471528053, -0.001815105089917779, -0.011942566372454166, 0.013159511610865593, -0.027061566710472107, -0.02318384125828743, -0.0426824726164341, -0.009653058834373951, -0.01348265539854765, 0.026511535048484802, -0.033826958388090134, -0.01464459765702486, -0.0409223698079586, 0.011241275817155838, 0.02092871069908142, -0.018219804391264915, 0.0001377228181809187, -0.03102179616689682, -0.0015504022594541311, 0.00437962869182229, 0.013228265568614006, 0.042352452874183655, 0.010471231304109097, 0.0025026449002325535, -0.004317749757319689, -0.021836264058947563, -0.004417443182319403, -0.032314371317625046, 0.01300825271755457, -0.003348318859934807, 0.024531420320272446, 0.023733874782919884, 0.02702031470835209, -0.003973979968577623, 0.020364928990602493, -0.005483129993081093, -0.00653162831440568, -0.002084964420646429, -0.0010313097154721618, 0.014369581826031208, -0.015290885232388973, 0.0026264020707458258, 0.00619129603728652, -0.007762324530631304, 0.0022345043253153563, 0.014878361485898495, -0.0131938885897398, 0.015112125314772129, -0.020914960652589798, -0.021464992314577103, -0.019649887457489967, -0.04474509134888649, -0.013138885609805584, -0.005912842229008675, -0.011605671606957912, -0.004685583524405956, -0.0302792526781559, 0.00906865019351244, 0.029399201273918152, 0.00959117989987135, 0.02575524151325226, -0.011220649816095829, 0.00938491802662611, -0.0008834886248223484, 0.00553125748410821, 0.0025404596235603094, -0.004400254692882299, -0.009054899215698242, -0.029564211145043373, -0.0392172709107399, -0.018013542518019676, 0.014589594677090645, 0.007604190148413181, -0.018577326089143753, 0.009137404151260853, -0.011846310459077358, 0.01296012569218874, 0.0019835522398352623, 0.017683524638414383, 7.170825119828805e-05, -0.01014808751642704, -0.007679819595068693, -0.01424582488834858, -0.02664904296398163, -0.015290885232388973, -0.008628624491393566, -0.003674900159239769, 0.008374234661459923, -0.016473453491926193, 0.02212502993643284, -0.018316060304641724, -0.02092871069908142, 0.016170935705304146, -0.017270999029278755, 0.03203935548663139, 0.0004907315596938133, 0.03448699787259102, -0.00021829389152117074, 0.021671254187822342, -0.008057966828346252, -0.022386295720934868, -0.005276868119835854, -0.005087794736027718, 0.011571294628083706, 0.032726895064115524, -0.002210440579801798, -0.028684159740805626, 0.0037986573297530413, -0.0018941721646115184, -0.014314578846096992, -0.015552150085568428, 0.007067908998578787, 0.010216841474175453, 0.0006561707705259323, -0.010533109307289124, -0.0007885221857577562, -0.012808866798877716, 0.0012246802216395736, -0.01951237954199314, 0.013187013566493988, -0.005232177674770355, -0.028299137949943542, -0.005156548693776131, 0.01914110779762268, -0.02629152126610279, 0.01955363154411316, -0.0011120956623926759, -0.020832456648349762, -0.0003435550315771252, 0.01201132033020258, -0.0093024130910635, -0.0019526130054146051, -0.010759998112916946, -0.0004316460690461099, 0.00037707260344177485, 0.007459806744009256, 0.010498732328414917, 0.03811720758676529, -0.009866195730865002, 0.00859424751251936, -0.013207639567553997, 0.02139623835682869, -0.006421621888875961, -0.029949232935905457, 0.009577429853379726, -0.007391052786260843, 0.01923736371099949, -0.0001101137968362309, -0.003729903372004628, 0.006349429953843355, -0.018522322177886963, -0.038557231426239014, 0.01625344157218933, -0.003949915990233421, -0.020378679037094116, -0.011681301519274712, 0.01285699475556612, -0.00888301432132721, -0.01766977272927761, -0.011571294628083706, 0.011090016923844814, -0.024160148575901985, -0.02424265258014202, 0.016954731196165085, 0.01923736371099949, 0.00954305287450552, -0.009412419982254505, 0.00532499561086297, -0.004606516566127539, 0.027254078537225723, -0.03467950597405434, 0.025989005342125893, -0.008958643302321434, -0.017807280644774437, -0.05206051468849182, 0.009240535087883472, -0.008078592829406261, -0.003554580733180046, 0.02418765053153038, -0.016652213409543037, -0.0038261590525507927, 0.010801250115036964, 0.02618151530623436, 0.0021451241336762905, -0.008394860662519932, -0.0029839228373020887, 0.010821876116096973, 0.01014808751642704, 0.015964673832058907, -0.003045801306143403, -0.018467318266630173, -0.00370583962649107, -0.010787499137222767, -0.008532368578016758, 0.022358793765306473, -0.03448699787259102, 0.0033465998712927103, 0.004441507160663605, 0.006566005293279886, -0.00761106563732028, -0.01629469357430935, -0.02271631546318531, 0.004073673393577337, 0.011626297608017921, 0.010209966450929642, 0.0004812778497580439, 0.0002988649648614228, -0.009907448664307594, -0.0006952746189199388, 0.014892112463712692, 0.013915805146098137, -0.007645442616194487, 0.03718215227127075, 2.819987514612876e-07, 0.021588750183582306, 0.031571827828884125, -0.009261161088943481, -0.01619843766093254, -0.010258093476295471, -0.015579652041196823, -0.023623866960406303, 0.01798604056239128, -0.003661149414256215, 0.0022207535803318024, 0.0078104520216584206, -0.04716522991657257, -0.01865983009338379, -0.0204611849039793, -0.028147879987955093, -0.019677389413118362, 0.021011216565966606, -0.0037608426064252853, 0.017312252894043922, 0.02739158645272255, -0.0014206290943548083, 0.03649461269378662, -0.012444470077753067, 0.007336049806326628, 0.003901788266375661, 0.01766977272927761, -0.0038227213080972433, -0.032836899161338806, 0.02135498635470867, 0.009508675895631313, -0.04378253594040871, -0.013104508630931377, 0.020282424986362457, 0.01133065577596426, 0.0013957058545202017, 0.019319867715239525, -0.005472816992551088, -0.0058234622702002525, 0.006621008273214102, 0.003874286776408553, -0.00022345043544191867, 0.015840917825698853, 0.013675166293978691, -0.009797441773116589, 0.00906865019351244, 0.0291241854429245, 0.004132114350795746, 0.00977681577205658, 0.0006591787678189576, -0.003448012052103877, 0.015648405998945236, 0.02759784832596779, 0.007023219019174576, 0.010175589472055435, 0.011915064416825771, -0.002939232625067234, 0.0006982826162129641, 0.014300827868282795, 0.009818068705499172, -0.0019044852815568447, 0.03049926646053791, -0.008381110616028309, -0.006717263720929623, 0.019856149330735207, -0.007157289423048496, -0.023197593167424202, -0.006053788121789694, -0.02497144602239132, -0.00565157737582922, -0.013138885609805584, 0.005094669759273529, -0.008009838871657848, 0.00576845882460475, -0.023912634700536728, -0.004080548882484436, -0.003970542456954718, -0.0027604722417891026, -0.02655278705060482, -0.019484877586364746, 0.0011920221149921417, -0.007693570572882891, -0.005036229267716408, -0.004933097865432501, -0.004276497755199671, 0.01588216982781887, -0.018604826182127, -0.012994502671062946, 0.014479587785899639, -0.012114451266825199, -0.02997673489153385, -0.009666809812188148, 0.002535303123295307, -0.013819550164043903, 0.0022001273464411497, 0.20219171047210693, 0.003643960924819112, -0.021698756143450737, 0.028519151732325554, -0.006081289611756802, -0.004028983414173126, 0.00029027072014287114, 0.010423103347420692, -0.007947959937155247, 0.016267191618680954, -0.00018649517733138055, -0.00553125748410821, -0.008793634362518787, -0.006290988996624947, 0.016583459451794624, -0.01908610574901104, -0.036989640444517136, -0.00619129603728652, 0.0014429742004722357, 0.03484451770782471, 0.02818913199007511, 0.01256822794675827, -0.014589594677090645, -0.01945737563073635, 0.007954835891723633, 0.0037092771381139755, 0.0013639071257784963, 3.134214784950018e-05, 0.031241808086633682, 0.011846310459077358, -0.015579652041196823, 4.232666833559051e-05, 0.005242491140961647, -0.01808229647576809, 0.026195267215371132, -0.0009238815982826054, 0.015964673832058907, -0.024036390706896782, 0.009116778150200844, -0.018371064215898514, 0.0014094565995037556, -0.026772798970341682, -0.003229718189686537, 0.004386503715068102, 0.012967000715434551, 0.01919611170887947, -0.00576845882460475, -0.005978158675134182, 0.039932310581207275, 0.007473557721823454, -0.0369071364402771, 0.03055426850914955, 0.010876880027353764, 0.05230802670121193, 0.015620904043316841, 0.013427652418613434, -0.005383436568081379, -0.012231333181262016, 0.017023485153913498, 0.004616829566657543, -0.009639307856559753, 0.007432305254042149, 0.004623705055564642, -0.00026942967087961733, -0.004857468884438276, -0.008154221810400486, -0.025700237601995468, 0.006737890187650919, 0.01592342182993889, -0.012781364843249321, 0.013214514590799809, -0.008525493554770947, -0.02197377197444439, 0.01882483996450901, -0.027377834543585777, -0.02076370269060135, 0.01782103255391121, -0.010216841474175453, 0.011921940371394157, 0.032314371317625046, 0.00877988338470459, 0.008195474743843079, -0.028106627985835075, -0.014177070930600166, -0.01592342182993889, -0.02039243094623089, 0.015813415870070457, 0.00798921287059784, 0.020323676988482475, -0.017628520727157593, -0.0005822602543048561, -0.01567590795457363, -0.017601018771529198, -0.008828011341392994, 0.017078489065170288, 0.010821876116096973, 0.0008559870766475797, 0.017064737156033516, -0.008381110616028309, 0.003229718189686537, -0.02282632142305374, 0.05951344594359398, 0.008463614620268345, -0.021038718521595, -0.025535227730870247, -0.005861276760697365, -0.012623230926692486, 0.014025812037289143, 0.00023698637960478663, -0.018439818173646927, 0.013441403396427631, -0.027900364249944687, 0.010478106327354908, -0.024311406537890434, -0.004761212971061468, 0.02461392432451248, 0.015015869401395321, -0.02107997052371502, 0.032891903072595596, -0.0043039992451667786, 0.0019577695056796074, -0.01112439390271902, 0.007232918869704008, 0.02018616907298565, -0.01623968966305256, 0.006211922038346529, -0.019388621672987938, -0.00870425347238779, -0.0019491753773763776, -0.008271103724837303, 0.01385392714291811, 0.00020808821136597544, -0.01813730038702488, -0.022042525932192802, -0.005197800695896149, -0.0026659355498850346, 0.00385709828697145, -0.025878997519612312, -0.01713349111378193, 0.025507725775241852, -0.016954731196165085, 0.0042111813090741634, -0.0013424215139821172, -0.02865665964782238, 0.009371167048811913, -0.017793530598282814, -0.0017360380152240396, 0.009061774238944054, -0.029399201273918152, -0.022592557594180107, -0.010196215473115444, 0.0016982232918962836, -0.016899729147553444, 0.0020437119528651237, 0.008518618531525135, 0.002311852527782321, -0.02150624431669712, -0.0021829388570040464, 0.035559557378292084, 0.00531124509871006, -0.03580707311630249, -0.01614343374967575, 0.01804104447364807, -0.0030234563164412975, 0.00248545641079545, 0.004307436756789684, -0.1764502078294754, 0.03822721168398857, 0.001557277631945908, -0.004647769033908844, -0.0019388622604310513, -0.006590068805962801, 0.012004445306956768, 0.010402477346360683, -0.0073841772973537445, -0.008257352747023106, 0.023486359044909477, 0.006002222653478384, -0.054810672998428345, -0.03539454936981201, -0.016803473234176636, 0.002323884516954422, -0.016693467274308205, 0.0109593840315938, 0.02182251401245594, 0.007769199553877115, 0.03311191871762276, -0.014493338763713837, -0.003819283563643694, -0.004376190714538097, 0.008147346787154675, 0.0028550089336931705, -0.016322195529937744, 0.0015718878712505102, -0.012430720031261444, -0.031241808086633682, -0.016597211360931396, 0.011688176542520523, 0.03869473934173584, -0.010450605303049088, -0.011172521859407425, -0.011660674586892128, 0.0029684531036764383, 0.0027467214968055487, 0.0006982826162129641, 0.009735563769936562, 0.030306754633784294, 0.03203935548663139, -2.513817344151903e-05, 0.036357104778289795, 0.0034273858182132244, -3.0026152671780437e-05, 0.0314343199133873, -0.010209966450929642, -0.00811984483152628, -0.012829492799937725, -0.0007223464781418443, -0.01771102473139763, 0.010698119178414345, 0.021492494270205498, -0.0014644598122686148, 0.02871166169643402, 0.016390949487686157, 0.012623230926692486, -0.01793103851377964, -0.022702563554048538, -0.012843243777751923, -0.010010579600930214, -0.010368100367486477, -0.009900572709739208, -0.017284750938415527, -0.025851497426629066, -0.014988367445766926, 0.002461392432451248, -0.01597842574119568, 0.02744658850133419, 0.00414242735132575, 0.014300827868282795, -0.0016372042009606957, 0.013283268548548222, -0.004565264098346233, 0.01718849502503872, 0.0029804850928485394, 0.014672099612653255, -0.00011194007674930617, -0.012726361863315105, -0.0377596877515316, 0.02455892227590084, -0.012740112841129303, 0.011763806454837322, -0.021574998274445534, 0.012650731950998306, 0.007782950531691313, -0.002103871898725629, -0.0006742186960764229, -0.009769940748810768, 0.03784219175577164, -0.033936966210603714, -0.028519151732325554, 0.005493442993611097, 0.008092343807220459, 0.038089703768491745, 0.003915539011359215, 0.01406706403940916, 0.013640789315104485, 0.011316904798150063, -0.0016294693341478705, 0.02612651325762272, -0.018907343968749046, 0.025645233690738678, 0.024476416409015656, 0.016335945576429367, -0.00742542976513505, 0.00742542976513505, 0.015029620379209518, -0.00741167925298214, -0.024572672322392464, 0.007016343530267477, 0.030994294211268425, -0.000951383204665035, 0.004623705055564642, 0.019677389413118362, -0.00329847214743495, -0.004063360393047333, 0.02675904892385006, 0.010890630073845387, 0.04276497662067413, -0.02129998244345188, -0.005025915801525116, -0.020969964563846588, -0.0035511429887264967, -0.008559870533645153, -0.11385659128427505, -0.01559340301901102, -0.01064311619848013, 0.013908930122852325, -0.014493338763713837, 0.011798183433711529, -0.005290618631988764, 0.019952405244112015, -0.010381851345300674, 0.04348001629114151, -0.019938653334975243, -0.04474509134888649, -0.017270999029278755, 0.00925428606569767, 0.04664269834756851, -0.004180241841822863, 0.00793420895934105, 0.00018671002180781215, -0.005875027738511562, 0.012437595054507256, -0.005142797715961933, -0.008525493554770947, 0.017628520727157593, -0.021850014105439186, 0.0013381243916228414, 0.005435002036392689, -0.033524442464113235, -0.00556219695135951, 0.012031946331262589, -0.013723294250667095, 0.0142733259126544, -0.024146398529410362, 0.03368945047259331, -0.017752278596162796, 0.010306221432983875, 0.007329174317419529, -0.02728157863020897, -0.004640893545001745, 0.0009316164068877697, -0.021313734352588654, 0.017697274684906006, 0.006538503337651491, -0.021368736401200294, -0.04394754394888878, -0.006136292591691017, -0.0046821460127830505, -0.004414005670696497, 0.018962347880005836, -0.008601122535765171, 0.019952405244112015, -0.024256404489278793, 0.002002459717914462, -0.016129683703184128, -0.007727947551757097, 0.029564211145043373, -0.0052046761848032475, 0.00013954909809399396, 0.004118363372981548, -0.01053998526185751, -0.020158667117357254, -0.021960021927952766, 0.005923155229538679, -0.041032373905181885, 0.020337427034974098, -0.006847896613180637, -0.005696267355233431, -0.038612235337495804, -0.02160250023007393, 0.005159986205399036, -0.0005728065734729171, -0.008209224790334702, -0.007088535465300083, -0.01432832982391119, 0.02098371461033821, -0.030251750722527504, -0.01285699475556612, -0.0308567862957716, -0.03102179616689682, 0.0219187680631876, -0.019801145419478416, 0.004864343907684088, -0.03203935548663139, 0.00877988338470459, -0.027900364249944687, 0.009563678875565529, 0.03234187141060829, -0.02396763674914837, 0.004829966928809881, 0.018838590011000633, -0.018646080046892166, 0.01080812606960535, 0.014892112463712692, 0.00532499561086297, -0.0030750217847526073, -0.007294797338545322, 0.012561351992189884, -0.024902692064642906, -0.008126720786094666, -0.0019440187606960535, 0.017064737156033516, -0.03811720758676529, 0.010718745179474354, -0.05558071658015251, 0.02539771981537342, 0.019264865666627884, 0.012705735862255096, 0.011750055477023125, -0.03269939124584198, -0.006125979591161013, -0.010711870156228542, 0.03718215227127075, 0.017944788560271263, -0.016734719276428223, 0.0466977022588253, 0.010505608282983303, -0.011358157731592655, -0.022647561505436897, -0.02044743299484253, 0.02849164977669716, 0.005995347164571285, 0.01014808751642704, 0.03869473934173584, 0.0067275771871209145, -0.0177247766405344, 0.02288132533431053, 0.010711870156228542, 0.0028532901778817177, 0.010196215473115444, -0.03179183974862099, 0.03080178238451481, -0.006504126358777285, -0.0018769836751744151, 0.015098374336957932, -0.009446796961128712, -0.009474298916757107, 0.02813412807881832, -0.012375716120004654, -0.0004239112604409456, -0.03371695056557655, 0.02145124226808548, 0.015112125314772129, 0.0016251722117885947, -0.010870004072785378, -0.02502644807100296, 0.019484877586364746, -0.028959175571799278, -0.02644278109073639, -0.005476254504173994, -0.013269518502056599, 0.01482335850596428, 0.016308443620800972, 0.0050156028009951115, 0.003229718189686537, 0.013998310081660748, -0.004671833012253046, -0.013420777395367622, 0.035779573023319244, -0.01934736967086792, 0.004988101311028004, -0.007274171337485313, 0.015524649061262608, -0.0015968112275004387, 0.04281998053193092, 0.0060572256334125996, 0.023623866960406303, -0.009206158109009266, 0.015730910003185272, -0.01271948590874672, -0.00016221642727032304, 0.010870004072785378, -0.012554476968944073, -0.013977684080600739, -0.003973979968577623, 0.0034067598171532154, 0.0075079347006976604, -0.017023485153913498, -0.006676011253148317, -0.00779670150950551, 0.025150205940008163, -0.008353608660399914, 0.004455258138477802, 0.03467950597405434, -0.0015022744191810489, 0.00565157737582922, -0.0219187680631876, 0.028959175571799278, -0.005276868119835854, 0.0028361016884446144, -0.006524752825498581, 0.005809711292386055, -0.008415487594902515, 0.005352497566491365, -0.0012994501739740372, 0.002946108113974333, -0.0032898779027163982, -0.0126163549721241, -0.0013759389985352755, 0.03201185166835785, 0.004867781884968281, 0.0072191678918898106, 0.02843664586544037, 0.024160148575901985, -0.0010227154707536101, 0.009350541047751904, -0.009158030152320862, -0.020942462608218193, -0.02372012287378311, 0.011289403773844242, -0.014589594677090645, -0.0249301940202713, 0.0005642123287543654, 0.02986672893166542, 0.013448278419673443, -0.019017351791262627, -0.00565157737582922, 0.011351281777024269, -0.008209224790334702, 0.0028240696992725134, -0.013606412336230278, -0.026910308748483658, -0.019801145419478416, 0.020571190863847733, 0.021093720570206642, 0.002619526581838727, -0.0007348081562668085, 0.0009548208909109235, -0.0017532265046611428, -0.0012014758540317416, 0.005490005481988192, -0.017779778689146042, -0.01201132033020258, 0.003932727500796318, -0.00827797967940569, -0.012630105949938297, 0.00532499561086297, -0.0019010475371032953, -0.01945737563073635, -0.007879205979406834, 0.006638196762651205, 0.0013097632909193635, -0.009721812792122364, 0.06649885326623917, 0.017903536558151245, -0.015249633230268955, 0.019223613664507866, -0.0216162521392107, 0.035944581031799316, 0.03275439515709877, 0.024407662451267242, -0.0004954583710059524, -0.030004236847162247, 0.013393275439739227, 0.006187858060002327, 0.006999155040830374, -0.020488686859607697, -0.003047520061954856, 0.00560001190751791, -0.0018322935793548822, 0.0050602927803993225, -0.0038674112875014544, -0.006022848654538393, -0.005012165289372206, -0.022633809596300125, 0.010031205601990223, 0.0010648273164406419, -0.021464992314577103, -0.018604826182127, 0.0014876642962917686, -0.00026405826793052256, -0.018013542518019676, -0.006899462081491947, 0.016047179698944092, -0.007061033975332975, 0.0009539614547975361, -0.010086208581924438, 0.003953353967517614, -0.005139360204339027, -0.005294056609272957, -0.003977417945861816, 0.0024201401975005865, 0.014768354594707489, -0.019842399284243584, 0.0043039992451667786, -0.030719278380274773, -0.03852973133325577, -0.021960021927952766, -0.011997569352388382, 0.006724139209836721, -0.03217686340212822, -0.009563678875565529]" +11,"All up more than 400,000 organizations now use our business applications. Now on to Industry Solutions. We are seeing increased adoption of our industry and cross-industry clouds. Bank of Queensland chose our cloud for financial services to deliver new digital experiences for its customers.","[-0.0010528546990826726, -0.020452534779906273, 0.006680888123810291, 0.0037400678265839815, -0.0237861480563879, 0.016968635842204094, -0.0066672260873019695, -0.0234855767339468, -0.0016437512822449207, -0.030549010261893272, -0.007179563865065575, -0.0008854909683577716, 0.026914825662970543, -0.005946537014096975, -0.020274924114346504, 0.03057633526623249, 0.014140530489385128, -0.012685490772128105, -0.010909385047852993, -0.02583550103008747, -0.020220275968313217, 0.012193646281957626, -0.015192531049251556, 0.0005328315892256796, -0.015698038041591644, 0.00985055323690176, 0.007521122694015503, -0.018539806827902794, 0.01071128062903881, 0.0023806642275303602, 0.008409175090491772, 0.020725782960653305, -0.01292458176612854, 0.016982298344373703, -0.0068653300404548645, -0.0330628827214241, 0.00043762210407294333, 0.008942007087171078, -9.430222416995093e-05, -0.01875840499997139, 0.00835452601313591, -0.00203056656755507, -0.0033831389155238867, 0.0027529632207006216, -0.027024125680327415, 0.0038698602002114058, -0.002471177140250802, -0.007712395396083593, -0.015288167633116245, 0.002893002238124609, -0.007992473430931568, 0.023266978561878204, -0.013901439495384693, -0.011394398286938667, -0.008456993848085403, 0.005908965598791838, -0.008873695507645607, 0.01142855454236269, 0.015971284359693527, -0.005710861645638943, -0.009939358569681644, 0.013047542423009872, -0.01889502815902233, -0.04221665486693382, -0.024400953203439713, -0.02395009621977806, -0.008730240166187286, 0.003231145441532135, 0.0034873143304139376, -0.01811627298593521, 0.04527702182531357, 0.03625987097620964, 0.005102887284010649, 0.005885056685656309, -0.008176915347576141, -0.008313538506627083, -0.01435912773013115, -0.010048656724393368, -0.0055264197289943695, 0.0024216512683779, -0.004067964386194944, -0.02788485214114189, -0.009201591834425926, 0.0011134813539683819, 0.013723828829824924, 0.014154192991554737, -0.024332642555236816, 0.03060366027057171, -0.023103030398488045, 0.009269903413951397, 0.017706403508782387, 0.013197828084230423, -0.006086576264351606, 0.010854735970497131, 0.0005264273495413363, 0.021381575614213943, 0.00393817201256752, 0.015807336196303368, 0.0012868224876001477, -0.022269627079367638, -0.009153773076832294, -0.014728011563420296, -0.011483203619718552, -0.02220131643116474, -0.006797018460929394, -0.007883175276219845, 0.010267254896461964, 0.004621289204806089, 0.0267782025039196, 0.001168130780570209, -0.0020356900058686733, 0.03257104009389877, -0.007780707441270351, -0.0010818871669471264, 0.014618712477385998, -0.035877328366041183, 0.005372718442231417, -0.0033267817925661802, 0.008689253591001034, -0.014072218909859657, -0.0002271365374326706, 0.0178020391613245, 0.013928764499723911, -0.020917056128382683, 0.009105955250561237, 0.007767044939100742, -0.017460480332374573, -0.0156297255307436, 0.022802459076046944, -0.00843650009483099, 0.016176220029592514, 0.008313538506627083, -0.009857384487986565, -0.003811795264482498, -0.018006974831223488, 0.01071128062903881, 0.011934061534702778, 0.018690092489123344, -0.010697619058191776, -0.0066535635851323605, -0.005529835354536772, 0.035221535712480545, 0.010601982474327087, 0.004631536081433296, 0.011018684133887291, 0.021654821932315826, -0.0016522902296856046, 0.005704030394554138, 0.027229059487581253, -0.022173991426825523, 0.01925024949014187, -0.010861567221581936, 0.005519588943570852, 0.005010666325688362, 0.009488500654697418, -0.004180678632110357, 0.011408060789108276, 0.03437446802854538, -0.020999029278755188, -0.00032490771263837814, -0.008211071603000164, 0.028499659150838852, -0.02082141861319542, 0.013020218349993229, 0.015889311209321022, 0.00899665616452694, 0.011449048295617104, -0.011305592954158783, 0.003062073839828372, -0.013382270000874996, 0.0028246904257684946, 0.026668904349207878, -0.022283289581537247, 0.014768998138606548, 0.02634100802242756, 0.011216787621378899, 0.020438872277736664, 0.008197409100830555, 0.010123800486326218, -0.021367913112044334, 0.0264776311814785, 0.011011852882802486, 0.012876763008534908, 0.015260842628777027, -0.005420536734163761, 0.006352991797029972, 0.008641434833407402, -0.004850133787840605, 0.03765343129634857, -0.013334452174603939, 0.005208770278841257, 0.0231850054115057, 0.0028332294896245003, 0.0033831389155238867, -0.6579787135124207, 0.011729125864803791, 0.0028861709870398045, -0.0249064601957798, -0.003115015337243676, 0.013525724411010742, 0.03360937535762787, 0.008709747344255447, -0.00702244695276022, 0.0175014678388834, 0.00985055323690176, -0.007596265524625778, -0.006496446672827005, -0.017310194671154022, -0.003186742775142193, -0.018799390643835068, 0.01625819504261017, -0.008593617007136345, -0.0028895866125822067, -0.013115854002535343, -0.01427715364843607, 0.009980345144867897, 0.004604211542755365, -0.017392169684171677, 0.016654402017593384, -0.002747839782387018, 0.009502163156867027, -0.047845542430877686, -0.01315684150904417, 0.005878225434571505, -0.005406874231994152, 0.021190302446484566, 0.025097733363509178, 0.009809565730392933, 0.05514123663306236, 0.0019110209541395307, -0.031778622418642044, 0.012514711357653141, 0.03415587171912193, 0.017460480332374573, -0.027789216488599777, -0.015178868547081947, 0.031450726091861725, 0.01198871061205864, -0.008033460937440395, 0.037106938660144806, 0.036478471010923386, -0.0077397204004228115, 0.0016702220309525728, -0.009030812419950962, 0.0027734567411243916, -0.029292074963450432, -0.008784890174865723, -0.023362616077065468, 0.010916216298937798, 0.010157955810427666, 0.0012372963828966022, -0.025808176025748253, 0.009816396981477737, 0.006028511095792055, -0.006571589503437281, 0.010253592394292355, -0.01593029871582985, -0.031915247440338135, -0.01654510386288166, 0.004525653086602688, -0.016039596870541573, 0.0016215499490499496, 0.024974772706627846, -0.020452534779906273, 0.0261770598590374, 0.007596265524625778, -0.001253520487807691, -0.006841421127319336, 0.016039596870541573, 0.020192950963974, 0.0384458489716053, 0.000941848149523139, -0.023991083726286888, 0.009980345144867897, 0.006373485550284386, -0.01844416931271553, -0.0006357261445373297, -0.013812634162604809, -0.002168897772207856, 0.02522069588303566, -0.008559460751712322, -0.02457856386899948, 0.008334032259881496, -0.00868242233991623, 0.03448376804590225, 0.004245574586093426, -0.005786004476249218, -0.01348473783582449, 0.011817931197583675, 0.023909108713269234, -0.014878297224640846, 1.2528266779554542e-05, 0.020698457956314087, -0.004423185251653194, -0.00021208661200944334, -0.00842283759266138, -0.0043104710057377815, 0.025794513523578644, 0.022146666422486305, 0.02287077158689499, -0.005027743987739086, 0.012685490772128105, 0.051315780729055405, -0.018635442480444908, -0.004826224409043789, -0.02567155286669731, -0.027010463178157806, -0.013512062840163708, 0.016107909381389618, -0.033172182738780975, 0.021176639944314957, -0.024359967559576035, -0.0050482377409935, -0.013416426256299019, 0.0024882552679628134, -0.0068653300404548645, -0.004764744080603123, -0.025767188519239426, -0.007138576824218035, 0.01843050867319107, -0.010403878055512905, -0.024045733734965324, 0.017419494688510895, -0.006602329667657614, -0.012726477347314358, -0.027857528999447823, 0.02489279769361019, 0.000406241393648088, 0.018020637333393097, 0.0003035603149328381, 0.02194173075258732, -0.023048382252454758, 0.0010332150850445032, -0.012323438189923763, -0.019263911992311478, 0.0027751645538955927, 0.010690787807106972, -0.005628887563943863, 0.01782936416566372, -0.02602677419781685, -0.00301767117343843, 0.02382713556289673, -0.008730240166187286, -0.00011847817950183526, -0.0009298935765400529, 0.00031081843189895153, -0.0015600693877786398, -0.0007057456532493234, 0.01687300018966198, 0.008197409100830555, -0.017091598361730576, -0.032762311398983, -0.003968912176787853, -0.02899150364100933, 0.006448628380894661, 0.0066843037493526936, -0.011312424205243587, -0.021203964948654175, 0.001021260512061417, -0.020069990307092667, -0.01159250270575285, 0.027789216488599777, 0.010233098641037941, -0.010151124559342861, 0.011770113371312618, -0.030849581584334373, 0.023840798065066338, 0.019578145816922188, -0.017856689170002937, 0.007439148612320423, -0.02177778258919716, 0.008989824913442135, 0.027707241475582123, -0.007732889149338007, 0.004286561626940966, 0.015861986204981804, -0.008368188515305519, -0.004283146001398563, 0.013054373674094677, -0.011373904533684254, 0.012822113931179047, 0.0012347347801551223, -0.023553889244794846, -0.007849019020795822, -0.012726477347314358, 0.03645114600658417, 0.016968635842204094, 0.02064380794763565, -0.016012271866202354, -0.016312843188643456, -0.030849581584334373, -0.006397394463419914, 0.00406113313511014, -0.01717357151210308, 0.026832852512598038, 0.01307486742734909, 0.0025104566011577845, 0.016968635842204094, 0.014058556407690048, -0.01575268805027008, 0.007097589783370495, -0.01269232202321291, 0.0261770598590374, 0.0362052246928215, 0.02237892709672451, -0.0021603587083518505, -0.012494217604398727, -0.025166045874357224, 0.008252058178186417, 0.009133280254900455, -0.004682769998908043, 0.005154120735824108, 0.006318836007267237, 0.006933641619980335, 0.008129097521305084, -0.02680552750825882, 0.03863712027668953, -0.002840060740709305, -0.008129097521305084, 0.002532657701522112, 0.004132860340178013, 0.04746299982070923, 0.0013406178914010525, 0.003080859547480941, 0.004003067966550589, 0.026395656168460846, -0.0020903393160551786, 0.015028582885861397, -0.013614529743790627, 0.006663810461759567, 0.031177477911114693, -0.019359547644853592, 0.0350029356777668, -0.007152239326387644, 0.014823648147284985, 0.009488500654697418, 0.038828395307064056, -0.009905202314257622, 0.0384458489716053, 0.02411404438316822, 0.006646732334047556, 0.0015122512122616172, -0.020302249118685722, 0.0029100801330059767, -0.028117112815380096, 0.006974628660827875, -0.005697199143469334, -0.010608813725411892, 0.021490873768925667, -0.014468426816165447, 0.009433851577341557, 0.013764816336333752, 0.017064273357391357, 0.017460480332374573, -0.0007796077406965196, 0.006554511375725269, -0.0049047828651964664, -0.01890869066119194, 0.013833127915859222, -0.005417121108621359, 0.0024763005785644054, -0.017269209027290344, -0.0053112381137907505, -0.0060455892235040665, -0.012849438935518265, -0.0059192124754190445, 0.036177899688482285, -0.015698038041591644, -0.0022577031049877405, 0.00985055323690176, -0.004129444714635611, -0.0009802734712138772, -0.016299180686473846, 0.024633213877677917, -0.013457412831485271, -0.01878572814166546, 0.003596613183617592, -0.004006483592092991, 0.015616063959896564, -0.008258889429271221, -0.008299876935780048, 0.009611462242901325, -0.019045313820242882, 0.022788796573877335, 0.004699847660958767, 0.008477486670017242, -0.020124638453125954, 0.009249409660696983, 0.006479368545114994, 0.014495751820504665, 0.009433851577341557, -0.0249064601957798, -0.005208770278841257, -0.004809146746993065, 0.0070634339936077595, -0.0035214703530073166, 0.012241464108228683, -0.015370141714811325, 0.044675879180431366, -0.011490034870803356, -0.02129960060119629, -0.009256240911781788, -0.01363502349704504, -0.014304478652775288, 0.007910499349236488, -0.04213468357920647, -0.017856689170002937, 0.02476983703672886, -0.020753107964992523, 0.02065747044980526, 0.0013833127450197935, -0.0018478325800970197, 0.030849581584334373, 0.00851847417652607, -0.006943888496607542, -0.03298090770840645, -0.02709243632853031, 0.01285627018660307, 0.0831763744354248, 0.002464346121996641, -0.038828395307064056, 0.0014627251075580716, -0.0126786595210433, -0.017064273357391357, -0.024701526388525963, -0.0347023643553257, 0.0004525652911979705, 0.0002864823618438095, -0.005017497576773167, -0.00032768287928774953, 0.015479440800845623, -0.0029100801330059767, -0.020069990307092667, 0.023676849901676178, -0.007903668098151684, 0.010977696627378464, -0.009980345144867897, 0.006042173597961664, 0.009556812234222889, 0.027775553986430168, 0.0040987045504152775, 0.041998058557510376, 0.04429333284497261, -0.0004179824609309435, 0.03456573933362961, 0.02997519262135029, 0.00022905781224835664, -0.017556117847561836, 0.012979230843484402, 0.010219436138868332, -0.011879411526024342, 0.03481166437268257, 0.00704977149143815, 0.030794933438301086, -0.027242721989750862, -0.007937824353575706, -0.011524191126227379, 0.004030392970889807, 0.012562529183924198, 0.005902134347707033, -0.0053829653188586235, -0.016968635842204094, -0.00023076559591572732, -0.016326505690813065, -0.006411056965589523, 0.018662767484784126, -0.03325415402650833, -0.02461955137550831, 0.013641854748129845, 0.001747072790749371, -0.0362052246928215, -0.0065271868370473385, 0.003186742775142193, 0.02411404438316822, -0.005219017155468464, -0.012719646096229553, 0.0021910991054028273, -0.054922640323638916, -0.036806367337703705, -0.012446398846805096, -0.019796742126345634, -0.030794933438301086, -0.0067936028353869915, -0.017733728513121605, -0.020302249118685722, -0.010055487975478172, -0.021258613094687462, 0.010567826218903065, 0.004218250047415495, -0.03847317397594452, -0.021504536271095276, 0.015137881971895695, 0.03330880403518677, 0.01189307402819395, 0.003237976459786296, 0.011517359875142574, -0.01688666269183159, 0.018512481823563576, -0.01070445030927658, -0.01573902554810047, 0.007719226647168398, -0.035057585686445236, -0.017214559018611908, -0.0009094000561162829, -0.020097313448786736, -0.01889502815902233, -0.008538967929780483, 0.00544444564729929, -0.019332222640514374, -0.015684375539422035, -0.0007168463198468089, 0.015506764873862267, 0.025616902858018875, 0.014249829575419426, 0.005263419821858406, -0.003576119663193822, -0.0031799115240573883, -0.01968744397163391, 0.016763702034950256, -0.0065271868370473385, -0.016968635842204094, -0.002998885465785861, 0.020425209775567055, 0.01873107999563217, 0.014495751820504665, -0.010205774568021297, 0.008347694762051105, -0.015793675556778908, 0.0011630073422566056, -0.021545523777604103, 0.006896070204675198, 0.008047123439610004, -0.011073333211243153, 0.01593029871582985, 0.018075287342071533, 0.0029254502151161432, 0.026122409850358963, 0.012125333771109581, 0.014741674065589905, -0.00953631941229105, 0.009215254336595535, -0.0005114841624163091, -0.010062319226562977, -0.0029835153836756945, 0.028608957305550575, -0.016189882531762123, -0.01182476244866848, -0.006534018088132143, 0.014331803657114506, -0.0006084014312364161, -0.008757565170526505, -0.004426600877195597, -0.05522321164608002, -0.009884708561003208, -0.011961385607719421, 0.005717692896723747, -0.026983138173818588, -0.024674201384186745, -0.024660538882017136, 0.007821694016456604, -0.002158651128411293, -0.015274505130946636, 0.003345567500218749, -0.022829784080386162, 0.004173847381025553, 0.004300224129110575, -0.005191692151129246, 0.023280641064047813, -0.013027048669755459, 0.00010326813935535029, 0.005632303189486265, -0.008170084096491337, -0.027174411341547966, -0.02050718478858471, -0.00828621443361044, -0.030630985274910927, 0.03598662465810776, 0.024018408730626106, 0.03150537610054016, -0.015575077384710312, 0.019004326313734055, -0.004406107123941183, -0.010779593139886856, -0.021613834425807, -0.007452811114490032, -0.004505159333348274, -0.015397466719150543, -0.006496446672827005, -0.010540502145886421, 0.01071128062903881, -0.006482784170657396, -0.007282031700015068, -0.0025309501215815544, 0.022939082235097885, -0.011612996459007263, -0.007391330320388079, -0.03639649599790573, -0.025289006531238556, -0.020151963457465172, -0.026381993666291237, -0.006602329667657614, 0.011175801046192646, -0.030029840767383575, 0.005574238020926714, 0.03295358270406723, 0.020903393626213074, 0.03262568637728691, -0.003364353207871318, 0.03625987097620964, -0.0076850708574056625, -0.0011168969795107841, 0.013477906584739685, 0.010349228978157043, -0.02330796606838703, -0.02442827820777893, -0.040768448263406754, -0.0028041969053447247, 0.03352740406990051, 0.02285710908472538, 0.0027922424487769604, 0.0053112381137907505, -0.01347107533365488, -0.008545799180865288, 0.018990663811564445, -0.016681727021932602, -0.017706403508782387, -0.007521122694015503, -0.015233518555760384, 0.00634957617148757, -0.02002900280058384, -0.0009819812839850783, -0.003207236295565963, 0.017392169684171677, 0.012405412271618843, 0.011735957115888596, 0.014646037481725216, -0.020397886633872986, -0.00044189157779328525, 0.027051448822021484, -0.0016317967092618346, 0.03656044229865074, -0.013313958421349525, 0.03421052172780037, 0.005659627728164196, 0.0013653809437528253, -0.016654402017593384, -0.028253735974431038, -0.0066125765442848206, -0.004235328175127506, 0.028964178636670113, 0.03008449077606201, -0.02267949841916561, -0.010219436138868332, 0.018375858664512634, 0.003945003263652325, -0.02222864143550396, -0.031450726091861725, 0.010540502145886421, 0.00149858882650733, -0.005126796197146177, -0.010417540557682514, -0.03322683274745941, -0.01594396121799946, 0.012999724596738815, -0.031587351113557816, 0.0038425354287028313, -0.0075279539451003075, -0.013573543168604374, -0.005885056685656309, -0.01079325471073389, -0.022665835916996002, 0.031751297414302826, 0.013942426070570946, -0.007767044939100742, 0.01149686612188816, 0.023540226742625237, -0.0057381861843168736, -0.02362219989299774, -0.012248295359313488, 0.008757565170526505, -0.015957623720169067, 0.002197930356487632, 0.007398161571472883, 0.026750877499580383, -0.009959852322936058, 0.015219856053590775, -0.015616063959896564, 0.0253573190420866, -0.01134658046066761, -0.026409318670630455, -0.006680888123810291, -0.0045803021639585495, 0.01605325937271118, 0.0025172876194119453, -0.010362891480326653, -0.013860451988875866, 0.0022030535619705915, -0.004443679004907608, 0.010376553982496262, 0.002037397585809231, 0.00015839784464333206, -0.018813053146004677, 0.01078642439097166, -0.00931088998913765, 0.00591238122433424, 0.0026778201572597027, 0.004409522749483585, -0.032270465046167374, -0.031915247440338135, 0.003617106704041362, 0.005133627448230982, 0.007459642365574837, -0.0009307474829256535, -0.001100672991015017, 0.011387567035853863, 0.014263492077589035, -0.006107069551944733, 0.00883270800113678, 0.022652173414826393, 3.3728923881426454e-05, -0.031778622418642044, 0.023745160549879074, -0.002799073699861765, 0.005341978278011084, 0.015479440800845623, -0.02299373224377632, -0.011387567035853863, -0.0025377811398357153, -0.004757912829518318, -0.021846095100045204, -0.010841073468327522, -0.002273073187097907, 0.003166249254718423, 0.028253735974431038, 0.004757912829518318, 0.0009751500911079347, -0.025575915351510048, 0.02080775611102581, 0.003345567500218749, -0.00020354763546492904, 0.019892379641532898, -0.014372790232300758, -0.00599435530602932, 0.0042968085035681725, 0.0024370213504880667, -0.010499514639377594, -0.02426433004438877, -0.04276315122842789, -0.0029852231964468956, 0.02128593809902668, 0.0030057167168706656, 0.0008423691615462303, -0.030958881601691246, -0.003757145721465349, 0.0005652796826325357, 0.00240115774795413, 0.002609508577734232, -0.002674404764547944, -0.008812214247882366, 0.018061624839901924, 0.029073476791381836, 0.0039074313826859, 0.01088889129459858, -0.02839035913348198, -0.020903393626213074, -0.02602677419781685, -0.019919704645872116, 0.01894967630505562, -0.011305592954158783, 0.015069570392370224, 0.0038903537206351757, -0.03959348425269127, -0.015848323702812195, -0.009030812419950962, -0.053529080003499985, -0.010007670149207115, 0.011175801046192646, 0.027215396985411644, 0.03631452098488808, 0.021203964948654175, 0.012965568341314793, 0.02315768040716648, 0.011319255456328392, 0.03243441507220268, -0.02710609883069992, -0.009058136492967606, 0.019304897636175156, -0.03401924669742584, 0.011981879360973835, -0.010834242217242718, -0.03811795264482498, 0.02221497893333435, -0.0050584846176207066, -0.024810824543237686, 0.021955393254756927, 0.012589854188263416, -0.00993252731859684, -0.02915545180439949, 0.016176220029592514, -0.0002762356016319245, 0.008320369757711887, 0.029073476791381836, 0.0037434834521263838, -0.029128126800060272, -0.007999304682016373, 0.014468426816165447, -0.006291511468589306, 0.006534018088132143, 0.020561834797263145, -0.0010186987929046154, -0.0018888196209445596, 0.012835776433348656, -0.015848323702812195, 0.01070445030927658, -0.010506345890462399, 0.00038382658385671675, 0.0022645341232419014, -0.016299180686473846, 0.021654821932315826, 0.01228928193449974, 0.0014840725343674421, -0.011367074213922024, 0.021613834425807, 0.029838569462299347, -0.015670713037252426, -0.014796323142945766, 0.0078148627653718, -0.036150574684143066, 0.02586282603442669, -0.016025934368371964, -0.002778580179437995, -0.0009982052724808455, 0.002197930356487632, -0.011708632111549377, -0.02541196718811989, -0.0024131122045218945, -0.009338214993476868, 0.0096866050735116, -0.020384224131703377, -0.00914694182574749, 0.005154120735824108, 0.006708213128149509, 0.004812562372535467, -0.016818350180983543, 0.007712395396083593, -0.0053693028166890144, -0.015534089878201485, 0.02429165504872799, 0.0033506909385323524, -0.006281264591962099, 0.008245226927101612, 0.012248295359313488, 0.01017844956368208, 0.01315684150904417, 0.21007226407527924, 0.02631368301808834, -0.0156297255307436, 0.031778622418642044, -0.000211232720175758, 0.016176220029592514, 0.005389796569943428, 0.004214834421873093, -0.025152383372187614, 0.012350763194262981, 0.0014430854935199022, -0.009201591834425926, -0.009543150663375854, -0.006701381877064705, -0.0004410376714076847, -0.027543293312191963, -0.04634268581867218, 0.0005930312909185886, -0.014878297224640846, 0.05645282194018364, 0.016941312700510025, -0.008081278763711452, -0.0010750560322776437, 0.012733308598399162, 0.01594396121799946, 0.000962341669946909, -0.014058556407690048, 0.021682146936655045, 0.028171762824058533, 0.03218849375844002, -0.00947483815252781, 0.006875576917082071, 0.005867978557944298, 0.0027922424487769604, 0.0032482233364135027, -0.035549432039260864, 0.024250667542219162, -0.03289893642067909, 0.004686185624450445, 0.002138157607987523, -0.009679773822426796, -0.0005371010629460216, 0.015329155139625072, 0.006851667538285255, 0.010649800300598145, 0.02287077158689499, 0.0020015339832752943, -0.01119629479944706, -0.0034787754993885756, 0.011619826778769493, -0.018485156819224358, 0.007568940985947847, 0.004518821835517883, 0.016162557527422905, 0.01370333507657051, 0.00039812937029637396, -0.010513177141547203, 0.005003835074603558, -0.01049268338829279, 0.002891294425353408, 0.014140530489385128, 0.02207835577428341, 0.00945434533059597, -0.0007954048342071474, -0.04604211449623108, -0.011025515384972095, -0.013190996833145618, 0.024223344400525093, 0.010854735970497131, 0.01419517956674099, -0.007370837032794952, 0.015547752380371094, -0.011052839457988739, 0.0003082567418459803, -0.008156421594321728, -0.020233938470482826, 0.030057165771722794, 0.023444589227437973, 0.0018854041118174791, 0.011804268695414066, 0.004399276338517666, 0.017146246507763863, -0.010472189635038376, -0.016900325194001198, -0.011005021631717682, -0.019304897636175156, 0.028472334146499634, -0.003965496551245451, -0.009905202314257622, -0.004149938467890024, -0.0017641506856307387, 0.01008281297981739, 0.001388436183333397, -0.02303471975028515, 0.0032243141904473305, 0.014878297224640846, 0.012009204365313053, 0.00931088998913765, -0.014646037481725216, 0.0020100730471313, -0.01575268805027008, 0.062191009521484375, -0.010526839643716812, 0.004392445087432861, -0.013204659335315228, -0.013423257507383823, -0.004146522842347622, 0.015643388032913208, 0.008566292002797127, -0.009625124745070934, -0.002937404904514551, -0.02302105724811554, -0.0075826034881174564, -0.024701526388525963, 0.010683956556022167, 0.016039596870541573, -0.00174536497797817, 0.02224230393767357, 0.014960271306335926, -0.004815977998077869, 0.0018239235505461693, -0.009276734665036201, -0.00019970510038547218, 0.03008449077606201, -0.012002373114228249, -0.008593617007136345, -0.006281264591962099, 0.0072615379467606544, -0.020151963457465172, -0.016353830695152283, 0.0140995429828763, -0.009140110574662685, -0.0035043922252953053, -0.025111395865678787, -0.015301830135285854, 0.02205103076994419, 0.0020493522752076387, -0.008279383182525635, -0.020917056128382683, 0.026381993666291237, -0.014536738395690918, 0.005686952266842127, 0.007753382436931133, -0.012938244268298149, -0.005372718442231417, 0.0038766912184655666, 0.03860979527235031, 0.010745436884462833, -0.019660118967294693, -0.004979926161468029, -0.00599435530602932, 0.004337795544415712, -0.027816541492938995, -0.0108069172129035, 0.036041274666786194, 0.0010673709912225604, -0.019810404628515244, -0.025493942201137543, 0.04869261011481285, 0.001955423504114151, -0.06585251539945602, -0.011838424950838089, 0.026887500658631325, -0.01394925732165575, 0.00881904549896717, 0.0009094000561162829, -0.1760803461074829, 0.019742093980312347, -0.0024540992453694344, -0.007083927746862173, 0.02948334813117981, -0.005704030394554138, 0.005372718442231417, 0.008921513333916664, -0.02553492970764637, -0.009748085401952267, 0.01810261234641075, 0.0015976408030837774, -0.02129960060119629, -0.0068106804974377155, 0.010369722731411457, -0.008839539252221584, -0.022419912740588188, 0.03513956069946289, 0.03546745702624321, 0.00045683476491831243, 0.0219144057482481, 0.021805107593536377, -0.028007814660668373, -0.028636282309889793, 0.02050718478858471, 0.013122685253620148, -0.031915247440338135, 0.006752615794539452, 0.00544444564729929, -0.022966407239437103, 0.013143179006874561, 0.004276315215975046, 0.02725638449192047, 0.01220730785280466, 0.005939705763012171, 0.003726405557245016, -0.01246689260005951, -0.014714349061250687, -0.010772761888802052, 0.023089367896318436, 0.02744765765964985, 0.02381347306072712, -9.318148659076542e-05, 0.016968635842204094, 0.018348533660173416, 0.01669538952410221, 0.03702496364712715, -0.019414197653532028, -0.007773876190185547, 0.01300655584782362, 0.027024125680327415, -0.024865474551916122, 0.013423257507383823, -0.003473652061074972, -0.016121571883559227, 0.02679186500608921, 0.0043275486677885056, 0.005673290230333805, 0.0020578911062330008, -0.02757061831653118, 0.014304478652775288, -0.02001534029841423, -0.004324133042246103, -0.023936433717608452, -0.027857528999447823, -0.0076714083552360535, 0.026286358013749123, 0.0019605469424277544, -0.02412770688533783, 0.020999029278755188, 0.0012390041956678033, -0.023540226742625237, 0.003641015850007534, 0.0030552425887435675, -0.010205774568021297, 0.009638786315917969, -0.02459222637116909, 0.03672439232468605, 0.01922292448580265, -0.0051711988635361195, -0.011449048295617104, 0.02173679694533348, -0.015001258812844753, 0.02885488048195839, -0.025493942201137543, 0.011394398286938667, -0.01703694835305214, 0.020097313448786736, -0.012132165022194386, -0.0029083723202347755, 0.024660538882017136, -0.042325954884290695, -0.005341978278011084, 0.004771575331687927, 0.002933989278972149, 0.016627077013254166, 0.0011425138218328357, 0.019769417122006416, -0.00030142554896883667, 0.008620942011475563, 0.017843026667833328, 0.017310194671154022, 0.0008590201614424586, 0.010998190380632877, 0.024318980053067207, 0.009235747158527374, 0.010834242217242718, 0.0023311381228268147, 0.03076760843396187, -0.0038357041776180267, -0.02146354876458645, 0.0045632245019078255, 0.011968216858804226, -0.0017539039254188538, -0.014222504571080208, 0.043746840208768845, 0.008614110760390759, -0.014072218909859657, -0.0010127215646207333, -0.006609160918742418, 0.05016814172267914, -0.0003729394229594618, -0.025111395865678787, -0.003325073979794979, -0.001810261164791882, 0.014891959726810455, -0.1006641834974289, -0.015670713037252426, 0.011319255456328392, 0.000846211682073772, -9.451570076635107e-05, 0.0077397204004228115, -0.009693436324596405, 0.03642382100224495, -0.04205270856618881, 0.03325415402650833, 0.0124532300978899, -0.03423784300684929, -0.029428698122501373, -0.016476791352033615, 0.014495751820504665, -0.005895303096622229, -0.0275979433208704, -0.003904015989974141, 0.0022030535619705915, 0.002358462894335389, -0.0163811556994915, -0.02599944919347763, -0.00031402052263729274, -0.008217902854084969, -0.014728011563420296, -0.0016121570952236652, -0.0172008965164423, 0.00945434533059597, 0.015588738955557346, 0.016927650198340416, 0.018348533660173416, -0.019810404628515244, 0.024182356894016266, 0.004371951334178448, -0.008450162597000599, 0.014850972220301628, -0.025821838527917862, -0.0030979374423623085, 0.021081004291772842, -0.00866875983774662, 0.015397466719150543, -0.0034668208099901676, 0.008846370503306389, -0.044867150485515594, -0.01269232202321291, 0.010882060043513775, -0.004269483964890242, 0.009816396981477737, 0.010854735970497131, -0.017118921503424644, -0.033800650388002396, -0.016995960846543312, 0.0027188071981072426, -0.013990244828164577, 0.0042421589605510235, -0.0046349517069756985, 0.0065101091749966145, 0.025972124189138412, -0.031942568719387054, -0.003156002378091216, 0.012200476601719856, 0.005536666605621576, -0.026204384863376617, 0.028171762824058533, 0.005372718442231417, 0.007418655324727297, -0.02300739474594593, -0.009556812234222889, -0.007193226367235184, -0.018813053146004677, -0.019045313820242882, 0.009174266830086708, -0.007767044939100742, 0.017856689170002937, -0.027078773826360703, 0.004549561999738216, -0.02725638449192047, -0.02507040835916996, 0.0008795136818662286, -0.0002335407625650987, -0.024797162041068077, -0.02177778258919716, 0.00248313182964921, 0.010116969235241413, 0.0022542874794453382, 0.02899150364100933, -0.004201171919703484, -0.016750039532780647, 0.0061173164285719395, -0.023745160549879074, 0.013956088572740555, 0.004221665672957897, 0.00041264560422860086, -0.030221113935112953, 0.027966827154159546, 0.019031651318073273, -0.016121571883559227, -0.009987176395952702, -0.006404225714504719, 0.014386452734470367, -0.009440682828426361, -0.016107909381389618, -0.06344794481992722, 0.024687863886356354, 0.01088889129459858, 0.0030074245296418667, 0.0011390983127057552, -0.01017844956368208, -0.009263072162866592, -0.019509833306074142, 0.008477486670017242, 0.007206888869404793, -0.02067113295197487, 0.021654821932315826, -0.006602329667657614, -0.0027188071981072426, -0.02397742122411728, 0.005943121388554573, 0.03298090770840645, 0.011257775127887726, 0.025876488536596298, 0.019605468958616257, 0.0005383819225244224, -0.033199507743120193, 0.008962500840425491, 0.0016531441360712051, -0.0008598740678280592, 0.012487386353313923, -0.022337939590215683, 0.02364952489733696, -0.013361776247620583, -0.00993252731859684, 0.006312004756182432, -0.010123800486326218, -0.005102887284010649, 0.034128546714782715, -0.017856689170002937, -0.032871611416339874, 0.009836890734732151, 0.017856689170002937, 0.03150537610054016, 0.0008043707348406315, -0.018006974831223488, -0.030357737094163895, 0.0223652645945549, -0.018485156819224358, -0.026586929336190224, -0.015329155139625072, -0.004009899217635393, 0.01064296904951334, 0.018006974831223488, -0.008661928586661816, 0.013744322583079338, 0.016736377030611038, -0.017542455345392227, -0.025794513523578644, -0.009413357824087143, -0.016586091369390488, -0.001420884276740253, 0.00045000360114499927, 0.006411056965589523, 0.008170084096491337, 0.045167721807956696, 0.015684375539422035, 0.016517778858542442, 0.00012402850552462041, 0.014550400897860527, 0.016954973340034485, -0.018567131832242012, -0.0001237082906300202, 0.009331383742392063, -0.04175213724374771, 0.004682769998908043, -0.015602401457726955, -0.003849366679787636, 0.00673553766682744, 0.002039105398580432, -0.007411824073642492, -0.01797964982688427, 0.003620522329583764, -0.010998190380632877, 0.029510673135519028, -0.001630942802876234, 9.670380677562207e-05, -0.017774716019630432, 0.024824487045407295, -0.006930225994437933, 0.007657746318727732, -0.006486199796199799, -0.007780707441270351, -0.011585671454668045, 0.0031935740262269974, -0.004108951427042484, 0.011469541117548943, -0.015820998698472977, -0.014687024056911469, -0.0006562196649610996, 0.004348042421042919, 0.004781821742653847, 0.012945074588060379, -0.024824487045407295, 0.02065747044980526, 0.009003487415611744, 0.012357594445347786, -0.010554163716733456, -0.023676849901676178, -0.024865474551916122, 0.004969679284840822, 0.005178030114620924, -0.04571421816945076, -0.022802459076046944, 0.01841684617102146, 0.007254707161337137, 0.0014977349201217294, 0.009119617752730846, 0.011633489280939102, -0.011387567035853863, 0.01119629479944706, -0.005956783890724182, -0.019181936979293823, -0.03262568637728691, 0.016927650198340416, -0.002705144928768277, 0.02128593809902668, 0.005495679564774036, -0.009515825659036636, 0.01654510386288166, 0.010820579715073109, -0.023266978561878204, -0.016422143206000328, -0.01763809099793434, -0.008525305427610874, -0.015643388032913208, 0.0014482089318335056, -0.005229264032095671, -0.010520008392632008, 0.0016232577618211508, -0.0344017930328846, -0.00850481167435646, 0.01828022114932537, -0.0006485346239060163, 0.06399443745613098, 0.011490034870803356, -0.005389796569943428, 0.011954554356634617, 0.0032704246696084738, 0.007698733359575272, 0.010547332465648651, 0.0019588391296565533, 0.00012168029206804931, -0.019810404628515244, 0.023089367896318436, 0.011927230283617973, -0.002696606097742915, -0.0002852015313692391, -0.014891959726810455, 0.001204848289489746, -0.015984946861863136, 0.006807264871895313, -0.022296952083706856, 0.00013854475400876254, 0.013313958421349525, -0.0032857947517186403, 0.002093754941597581, 0.00041179172694683075, -0.012945074588060379, -0.010383384302258492, 0.004559808876365423, 0.00797198060899973, -0.014318141154944897, -0.021723134443163872, 0.01985139213502407, -0.02539830468595028, -0.01797964982688427, -0.01088889129459858, 0.012159490026533604, 0.010656631551682949, -0.006947304122149944, -0.011817931197583675, 0.0023516316432505846, -0.006318836007267237, -0.02487913705408573, 0.015520427376031876, -0.016517778858542442, -0.005806498229503632, 0.004669107496738434, 0.0010280917631462216, -0.018867703154683113, -0.021791445091366768, -0.004361704923212528]" +12,"Our cloud for sustainability is off to a fast start as organizations like Telstra use the solution to track their environmental footprint. New updates provide insights on hard-to-measure Scope 3 carbon emissions, and we are seeing record growth in healthcare, driven, in part, by our Nuance DAX ambient intelligence solutions, which automatically documents patient encounters at the point of care. Physicians tell us DAX dramatically improves their productivity, and it's quickly becoming an on-ramp to our broader healthcare offerings. Now on to new systems of work, Microsoft 365, Teams, and Viva uniquely enable employees to thrive in today's digitally connected distributed world of work.","[0.008848659694194794, -0.016215553507208824, 0.0044627720490098, -0.017291931435465813, -0.008946511894464493, 0.033521462231874466, -0.03354942053556442, -0.03027835115790367, -0.01376924104988575, -0.024924423545598984, 0.021541524678468704, 0.0138181671500206, 9.190051059704274e-05, 0.0020549020264297724, -0.005720875225961208, 0.0007509303977712989, 0.02379213087260723, -0.02762235701084137, 0.003430078737437725, -0.026713727042078972, -0.043474458158016205, -0.005448285955935717, -0.009512658230960369, 0.029719194397330284, -0.011993917636573315, -0.002399133052676916, 0.01096646673977375, -0.003106816206127405, 0.009890089742839336, -0.015782207250595093, 0.013482673093676567, -0.01582414284348488, -0.006671442184597254, -0.004735360853374004, -0.008079818449914455, 0.01884359121322632, -0.0022209016606211662, -0.005675443448126316, 0.01783710904419422, -0.008086808025836945, 0.004137761890888214, 0.009114258922636509, 0.003781299339607358, 0.0053644124418497086, -0.01582414284348488, 0.028908416628837585, 0.008876617066562176, -0.0019675337243825197, -0.00023261805472429842, -0.00548672815784812, 0.015572522766888142, 0.03701619431376457, -0.031200960278511047, -0.003987488336861134, -0.0007194778299890459, -0.009226090274751186, -0.003545404877513647, 0.01828443445265293, 0.008338429033756256, -0.0021597440354526043, -0.014160651713609695, 0.006992957554757595, -0.02194691263139248, 0.0032605843152850866, -0.0316203273832798, -0.02379213087260723, -0.01989201083779335, 0.0158101636916399, 0.014342376962304115, 0.0049031078815460205, 0.023945899680256844, 0.02372223697602749, 0.013349873945116997, -0.0022855543065816164, 0.0028412165120244026, -0.003977004438638687, 0.005294518079608679, -0.0044278246350586414, 0.0037987730465829372, 0.014621955342590809, -0.004892623983323574, -0.024001814424991608, -0.016187595203518867, -0.005598559509962797, 0.02559541165828705, 0.01358052622526884, -0.010833666659891605, 0.020045779645442963, -0.00779325095936656, 0.00523860240355134, 0.01697041466832161, -0.0016241763951256871, 0.020996345207095146, 0.02601478062570095, -0.002498732879757881, 0.004700413439422846, 0.013622462749481201, 0.0082126185297966, -0.009177164174616337, -0.033717166632413864, -0.021247966215014458, 0.006755315698683262, -0.025022275745868683, -0.014370335265994072, -0.02548358030617237, 0.0012511138338595629, -0.0013061558129265904, 0.00942179560661316, 0.026769641786813736, -0.003812751965597272, -0.014006882905960083, 0.03670865669846535, 0.009477711282670498, -0.006066853646188974, 0.015852101147174835, -0.02176518738269806, 0.029886942356824875, 0.0005263938801363111, -0.015866080299019814, -0.0015638922341167927, 0.011036361567676067, 0.02574918046593666, 0.011141203343868256, -0.00185395497828722, 0.004043404012918472, 0.0170403104275465, 0.004850686993449926, -0.019500600174069405, 0.012266506440937519, -0.010435267351567745, 0.005874643102288246, -0.0041202884167432785, 0.005434307269752026, 0.020311377942562103, -0.017879044637084007, 0.00977126881480217, -0.0059585170820355415, 0.022002829238772392, 0.003592583816498518, -0.007066346704959869, -0.019668348133563995, 0.022156596183776855, -0.01398591510951519, 0.0030281846411526203, -0.003435320919379592, 0.014153662137687206, 0.008317460305988789, 0.002837721724063158, 0.024043751880526543, 0.0014197345590218902, 0.019864052534103394, -0.03936465457081795, 0.006933547090739012, 0.011392824351787567, 0.002189449267461896, -0.003236121265217662, -0.0003075363638345152, 0.02583305351436138, -0.01982211507856846, -0.0020723757334053516, -0.015949953347444534, 0.016103722155094147, -0.01128099299967289, -0.004871655255556107, 0.031145045533776283, 0.014251514337956905, 0.005175697151571512, -0.019556516781449318, -0.019388768821954727, -0.017166120931506157, 0.0013542083324864507, 0.03972810506820679, -0.003550647059455514, 0.009952994994819164, -0.0021597440354526043, 0.025553476065397263, 0.004162224940955639, 0.025078192353248596, -0.01358052622526884, -0.03656886890530586, 0.01582414284348488, 0.0028132586739957333, 0.01660696230828762, 0.007786261383444071, -0.01579618640244007, -0.006220621522516012, 0.015866080299019814, 0.01889950782060623, 0.020493105053901672, 0.004745845217257738, 0.010421289131045341, 0.0179489403963089, -0.016033826395869255, -0.02762235701084137, -0.6499640941619873, -0.0037568360567092896, 0.028223449364304543, -0.010980445891618729, 0.0117283184081316, -0.007891103625297546, 0.02334480546414852, 0.010393330827355385, -0.007303988561034203, 0.03036222606897354, 0.003561131190508604, 0.007373882923275232, -0.012154675088822842, -0.013084273785352707, 0.005951527506113052, -0.015209070406854153, 0.014314419589936733, -0.011658423580229282, 0.014677871949970722, -0.010365373454988003, -0.015125197358429432, 0.026629852131009102, -0.020409230142831802, -0.025329813361167908, 0.004340456333011389, 0.01980813778936863, 0.007632493041455746, 0.004431319423019886, -0.0044662668369710445, -0.014160651713609695, -0.017249993979930878, 0.016844604164361954, 0.022170575335621834, -0.001895891735330224, 0.044285234063863754, -0.01766936108469963, -0.018857570365071297, 0.012469201348721981, -0.004343951120972633, 0.012406296096742153, -0.04680144041776657, -0.0028307323809713125, 0.008296492509543896, 0.011742297559976578, -0.013971935957670212, 0.02496636100113392, 0.024812592193484306, -0.01212671771645546, 0.00484020309522748, -0.0071502202190458775, 0.0017945445142686367, -0.018368307501077652, 0.003470268100500107, -0.0073808724991977215, 0.017962919548153877, 0.015432733111083508, 0.026573937386274338, -0.01909521222114563, 0.008792744018137455, -0.011092277243733406, -0.0219329334795475, -0.0013131452724337578, -0.00486117135733366, -0.04227226972579956, -0.03670865669846535, 0.03287843242287636, 0.0001537681819172576, 0.012818674556910992, -0.007674430031329393, -0.020800640806555748, 0.012140696868300438, 0.028041724115610123, 0.012748779729008675, -0.009925036691129208, 0.027580419555306435, 0.015949953347444534, 0.014580018818378448, -0.021904975175857544, 0.0036519942805171013, 0.034947313368320465, 0.0020723757334053516, -0.030837509781122208, -0.020674830302596092, -0.017655381932854652, 0.021695291623473167, -0.005123276263475418, -0.04087437689304352, -0.013657409697771072, -0.01092453021556139, -0.0027625851798802614, 0.020129652693867683, 0.01141379214823246, -0.008827690966427326, -0.036820489913225174, 0.009687394835054874, 0.028572922572493553, -0.02050708420574665, -0.006982473190873861, -0.007303988561034203, -0.0036519942805171013, -0.018689822405576706, -0.0158101636916399, 0.014412271790206432, 0.002661237958818674, 0.03243110701441765, 0.021779164671897888, -0.02035331539809704, 0.013377831317484379, 0.03852591663599014, -0.02621048502624035, -0.006447779480367899, -0.014153662137687206, -0.028489049524068832, -0.017096225172281265, 0.009449753910303116, -0.01882961206138134, 0.029243910685181618, -0.0007994197658263147, -0.01962641067802906, -0.011595518328249454, -0.00022191544121596962, 0.006902094464749098, 0.01456603966653347, -0.01979415863752365, -0.0005028044688515365, 0.03838612884283066, 0.009589542634785175, -0.0057418434880673885, -0.006779778748750687, -0.01217564381659031, -0.00661902129650116, -0.017473656684160233, 0.023582447320222855, -0.0007933040033094585, 0.04585087299346924, 0.0045116981491446495, 0.009897079318761826, -0.022450154647231102, -0.009631479158997536, -0.014552061446011066, -0.04350241646170616, -0.005182686727494001, -0.0049031078815460205, -0.011511645279824734, -0.02450505644083023, -0.019584475085139275, -0.028880460187792778, 0.015055302530527115, -0.015306923538446426, -0.012294464744627476, -0.008729838766157627, -0.0008872249163687229, -0.009652447886765003, 0.03125687688589096, 0.008331439457833767, 0.004476750735193491, -0.003264079103246331, -0.04736059904098511, -0.024756677448749542, -0.023498572409152985, -0.012154675088822842, 0.0170403104275465, -0.005014939233660698, -0.0173338670283556, -0.003700920380651951, -0.028363239020109177, -0.020115673542022705, 0.01926295831799507, 0.00659106345847249, -0.02025546319782734, -0.0003453231474850327, -0.030390184372663498, 0.01998986303806305, 0.026951367035508156, -0.011448740027844906, 0.0038057623896747828, -0.029970815405249596, -0.009540616534650326, 0.02594488486647606, -0.02141571417450905, 0.010274509899318218, 0.008408323861658573, -0.022617900744080544, -0.009149206802248955, 0.01934683322906494, -0.0083104707300663, 0.021555501967668533, 0.011246045120060444, -0.006699400022625923, 0.010630972683429718, -0.018619928508996964, 0.008366386406123638, -0.013307936489582062, 0.027049221098423004, -0.0015271975426003337, -0.01402785163372755, -0.019864052534103394, -0.002745111472904682, -0.004309003707021475, -0.02556745335459709, 0.019612431526184082, 0.0042810458689928055, 0.018717780709266663, 0.02159743942320347, 0.024742698296904564, 0.009344911202788353, 0.002266333205625415, -0.01261597964912653, -0.0020391757134348154, 0.02717502973973751, 0.0027975323610007763, -0.018605949357151985, -0.02619650587439537, -0.011539602652192116, -0.012329411692917347, 0.01917908526957035, 0.011840149760246277, 0.003304268466308713, -0.007164199370890856, 0.006807736586779356, 0.01687256246805191, -0.014747765846550465, 0.029383700340986252, 0.0017001867527142167, -0.026573937386274338, 0.01881563290953636, -0.010267520323395729, 0.03659682720899582, 0.025693263858556747, -0.013999893330037594, 0.014055809006094933, 0.014817660674452782, 0.016131680458784103, -0.0007199146784842014, 0.0019046285888180137, -0.00042111510992981493, 0.0056125386618077755, -0.009526637382805347, 0.019332854077219963, -0.0047877817414700985, 0.011162172071635723, 0.0034475524444133043, 0.02609865367412567, -0.005549633409827948, 0.015292944386601448, 0.0006535147549584508, 0.02397385612130165, -0.0072201150469481945, -0.012042843736708164, -0.007618514355272055, -0.024267414584755898, 0.003931572660803795, 0.022240469232201576, -0.0023065225686877966, 0.017110204324126244, -0.012692864052951336, -0.00946373213082552, 0.021429691463708878, 0.031033214181661606, 0.017012352123856544, 0.008638976141810417, 0.014370335265994072, 0.008604028262197971, -0.0015210817800834775, 0.0010484193917363882, -0.011106256395578384, -0.011301960796117783, -0.001314018969424069, -0.021275924518704414, -0.018494118005037308, 0.001890649669803679, -0.00033811526373028755, 0.0172360148280859, -0.017655381932854652, 0.017431719228625298, 0.011868107132613659, 0.004242603667080402, 0.0016556289047002792, -0.0023379751946777105, 0.0227437112480402, 0.00525957066565752, -0.023945899680256844, 0.02159743942320347, 0.01964038982987404, 6.148542888695374e-05, -0.010316446423530579, -0.0033077632542699575, 0.00817068200558424, -0.013342884369194508, 0.04252389073371887, -0.015209070406854153, 0.0071187675930559635, -0.014929492026567459, 0.0010492930887266994, 0.006814726162701845, 0.020562998950481415, 0.018983380869030952, -0.013755262829363346, 0.009638468734920025, 0.0007220988627523184, 0.006811231374740601, -0.01367138884961605, -0.003064879449084401, -0.02068880945444107, 0.025958864018321037, -0.017962919548153877, -0.028908416628837585, -0.011972949840128422, -0.0016897026216611266, -0.040818460285663605, -0.013028358109295368, -0.01757150888442993, -0.015223049558699131, -0.001602334319613874, -0.009848153218626976, 0.01821453869342804, -0.0005888622254133224, -0.02300931140780449, 0.025008296594023705, 0.0018294918118044734, 0.005518180783838034, -0.02735675685107708, 0.014705829322338104, 0.0213178601115942, 0.07173984497785568, 0.006737841758877039, -0.020479125902056694, 0.02468678168952465, -0.004993970971554518, -0.017375804483890533, -0.013070295564830303, -0.019472643733024597, 0.023694278672337532, -0.0007107409765012562, -0.0075276512652635574, 0.008205628953874111, 0.023582447320222855, -0.006231105886399746, 0.02087053470313549, 0.027957851067185402, 0.008883606642484665, 0.0034265839494764805, -0.013461705297231674, 0.004469761159271002, 0.004766813479363918, -0.0006495831767097116, 0.014593997970223427, 0.011043351143598557, 0.04582291841506958, 0.011882086284458637, 0.027216967195272446, 0.021108176559209824, 0.009869121015071869, -0.018983380869030952, -0.007800240069627762, 0.02334480546414852, 0.005623022560030222, 0.02770623005926609, -0.013475683517754078, 0.022631879895925522, -0.007737335283309221, -0.005776790902018547, 0.014146672561764717, 0.014188609085977077, 0.005595064722001553, 0.010197626426815987, 0.013566547073423862, -0.013587514869868755, -0.0004997465875931084, -0.002481259172782302, -0.013692357577383518, 0.02470076084136963, -0.016565026715397835, -0.03002673201262951, 0.012224569916725159, -0.00683918921276927, -0.019290916621685028, -0.023149101063609123, 0.00936587993055582, 0.03100525587797165, 0.011071308515965939, -0.012608991004526615, 0.0066434843465685844, -0.022967373952269554, -0.030222436413168907, 0.012329411692917347, -0.016103722155094147, -0.01801883429288864, -0.011225077323615551, -0.013978925533592701, -0.005532159470021725, 0.01722203567624092, -0.028614860028028488, 0.010036868043243885, -0.0005875516799278557, -0.038945287466049194, -0.03942056745290756, 0.020311377942562103, 0.047752007842063904, 0.010868614539504051, 0.008429291658103466, 0.002711911452934146, -0.01096646673977375, 0.004256582818925381, 0.017166120931506157, 0.015698332339525223, 0.0036799521185457706, -0.020716767758131027, -0.008841670118272305, -0.008352408185601234, -0.017879044637084007, -0.027202988043427467, 0.00015191160491667688, 0.006203148048371077, -0.00936587993055582, -0.020576978102326393, 0.0002198404399678111, 0.02488248609006405, 0.01283964328467846, 0.01892746426165104, 0.016746751964092255, 0.008058850653469563, 0.004459277261048555, -0.02558143250644207, 0.004966013133525848, -0.026755662634968758, -0.024826571345329285, -0.013112232089042664, 0.040455009788274765, -0.00942179560661316, 0.008478217758238316, -0.009596532210707664, 0.02211466059088707, -0.037072110921144485, 0.026965346187353134, -0.006031906232237816, -0.006814726162701845, -0.02647608518600464, 0.008009924553334713, -0.025204002857208252, 0.011651434004306793, -0.008058850653469563, -0.016732772812247276, 0.008827690966427326, 0.014223556034266949, -0.03268272802233696, 0.02425343543291092, -0.0017796918982639909, 0.0015001134015619755, 0.0048192343674600124, 0.02033933624625206, 0.011057330295443535, -0.033884916454553604, 0.01212671771645546, 0.019235001876950264, 0.010239562951028347, -0.0013201347319409251, -0.02628037892282009, -0.020912472158670425, -0.019402747973799706, -0.011441750451922417, -0.0011375350877642632, -0.017263973131775856, -0.02103828266263008, -0.020898493006825447, 0.02361040562391281, -0.002722395583987236, -6.170385313453153e-05, -0.0022960384376347065, -0.02201680652797222, -0.012441243045032024, 0.001801533973775804, -0.003388141980394721, 0.021443670615553856, -0.04165719822049141, -0.01821453869342804, -0.010833666659891605, -0.005070854909718037, -0.03027835115790367, -0.0113718556240201, 0.02559541165828705, -0.011294971220195293, 0.04299917444586754, 0.007048873230814934, 0.017823129892349243, -0.016187595203518867, 0.019961904734373093, 0.009247059002518654, -0.023736214265227318, -0.019780179485678673, -0.008086808025836945, 0.007695398293435574, 0.004728371277451515, -0.011986928060650826, -0.016285447403788567, 0.0008880986133590341, -0.007429798599332571, -0.00896748062223196, 0.010735814459621906, 0.004424329847097397, -0.013895051553845406, -0.015698332339525223, -0.015055302530527115, -0.0575372576713562, -0.018494118005037308, -0.011944991536438465, 0.007139735855162144, 0.01945866458117962, -0.026070695370435715, 0.015558543615043163, 0.015670375898480415, 0.017263973131775856, 0.017026331275701523, -0.0070733362808823586, 0.02860088087618351, 0.015949953347444534, 0.013203094713389874, -0.0007491830037906766, 0.00588512746617198, -0.027063198387622833, -0.004490729887038469, -0.02576315961778164, -0.003147005569189787, 0.034332241863012314, -0.017781192436814308, 0.011889075860381126, 0.01972426287829876, 0.012392316944897175, 0.0029390689451247454, 0.031760118901729584, -0.016928479075431824, -0.034499987959861755, 0.00010227549500996247, -0.023652341216802597, -0.008373375982046127, -0.007520661689341068, -0.009526637382805347, -0.008191649802029133, -3.653086241683923e-05, -0.005965506192296743, -0.00014907213335391134, 0.023736214265227318, -0.011099266819655895, -0.0014599240384995937, 0.018773697316646576, 0.020898493006825447, 0.036457035690546036, -0.008932533673942089, 0.014733787626028061, 0.016551047563552856, -0.010050847195088863, -0.03321392461657524, -0.03581400588154793, -0.015027344226837158, -0.017879044637084007, 0.019752221181988716, 0.041070081293582916, -0.027929892763495445, 0.0028097638860344887, 0.014496145769953728, 0.0024777643848210573, -0.010323435999453068, -0.030418140813708305, -0.00019395758863538504, 0.005752327851951122, -0.00014011688472237438, -0.02941165864467621, -0.05149836093187332, -0.018102707341313362, 0.028936374932527542, -0.0053958650678396225, 0.014677871949970722, 0.005021928809583187, -0.023163078352808952, 0.008911564946174622, 0.0015839869156479836, -0.03757534921169281, 0.044369108974933624, 0.00648272642865777, -0.00661902129650116, 0.0028254901990294456, 0.007401840761303902, -0.013713325373828411, -0.02762235701084137, -0.01811668649315834, 0.01980813778936863, 0.01106431894004345, 0.007926050573587418, 0.010022889822721481, 0.0218350812792778, 0.00523860240355134, 0.01688654161989689, -0.015041323378682137, 0.02470076084136963, -0.013356863521039486, -0.02123398706316948, 0.023736214265227318, 0.0032134053763002157, 0.025120127946138382, -0.017277952283620834, -0.015684355050325394, -0.004431319423019886, -0.0282514076679945, 0.0035017207264900208, 0.01766936108469963, -0.006356916390359402, -0.014775724150240421, -0.015516607090830803, 0.010547098703682423, -0.028936374932527542, 0.00985514186322689, 0.009897079318761826, 0.00663998955860734, -0.03178807720541954, -0.011490676552057266, 0.020059756934642792, 0.0013087769038975239, 0.015334880910813808, 0.0020024811383336782, 0.008149713277816772, -0.021443670615553856, 0.02148560807108879, -0.011602507904171944, 0.019864052534103394, 0.018256476148962975, 0.009946005418896675, -0.032710686326026917, 0.026504041627049446, 0.009519647806882858, -0.013335894793272018, 0.013608483597636223, -0.0003898809663951397, -0.02432332932949066, -0.005053381435573101, 0.02639221027493477, -0.002142270328477025, 0.005374896805733442, 0.014580018818378448, 0.011385834775865078, 0.015362839214503765, 0.0052665602415800095, -0.0028883954510092735, -0.008408323861658573, 0.02289748005568981, 0.00941480603069067, -0.008638976141810417, 0.006723863072693348, -0.03215152770280838, 0.010889582335948944, -0.005270055029541254, -0.01048419438302517, -0.022715752944350243, -0.01811668649315834, -0.014398292638361454, -0.011861118488013744, 0.01731988787651062, 0.0020444178953766823, -0.0011646192288026214, -0.004850686993449926, -0.008848659694194794, -0.01829841360449791, 0.005783780477941036, 0.007429798599332571, 0.018312392756342888, 0.02060493640601635, -0.005479738581925631, 0.0077583035454154015, 0.0043264771811664104, -0.027119114995002747, -0.02221251279115677, -0.0371280238032341, -0.015866080299019814, -0.03729577362537384, 0.009925036691129208, 0.005766306538134813, 0.005546138621866703, 0.010840656235814095, -0.03793880343437195, -0.013084273785352707, -0.011938001960515976, -0.02363836206495762, -0.02974715270102024, -0.006877631414681673, 0.018675843253731728, 0.02797183021903038, 0.037267815321683884, 0.007387862075120211, 0.025539496913552284, -0.0007408830570057034, 0.008464239537715912, -0.020996345207095146, -0.009288995526731014, 0.01007880549877882, -0.02966327965259552, 0.017907002940773964, -0.005539149045944214, -0.05105103552341461, 0.01181918103247881, 0.011511645279824734, -0.0165230892598629, -0.0033025210723280907, 0.0018784180283546448, -0.010840656235814095, -0.03231927379965782, -0.009379859082400799, -0.009184153750538826, -0.005853674840182066, 0.015013366006314754, 0.017124183475971222, -0.02070278860628605, 0.008995437994599342, 0.021261945366859436, -0.006140242796391249, -0.02637823112308979, 0.00510929711163044, 0.01688654161989689, 0.00118296651635319, 0.022002829238772392, 0.0012388821924105287, 0.001408376730978489, 0.00748571427538991, -0.020716767758131027, 0.003351447405293584, 0.004246098455041647, 0.00663998955860734, 0.018046792596578598, 0.027915913611650467, -0.027664292603731155, 0.000995124690234661, 0.014761744998395443, -0.009736321866512299, -0.013867094181478024, 0.016746751964092255, -0.023246953263878822, 0.017291931435465813, -0.013797199353575706, -0.016187595203518867, -0.02211466059088707, -0.004214645829051733, -0.02078666165471077, 0.0012537348084151745, -0.026937389746308327, -0.008345418609678745, -0.004319488070905209, -0.019109191372990608, 0.0012476190458983183, -0.0022278912365436554, 0.007569587789475918, 0.012406296096742153, -0.006608536932617426, 0.01989201083779335, -0.016271468251943588, -0.015530586242675781, 0.025287875905632973, -0.005374896805733442, -0.02060493640601635, 0.013936988078057766, -0.0063953581266105175, -0.0036834469065070152, 0.01650911010801792, 0.21124951541423798, 0.0212200079113245, -0.01327997911721468, 0.02495238184928894, 0.020367294549942017, -0.004864666145294905, 0.01982211507856846, -0.0013210084289312363, -0.006800747010856867, 0.006629505194723606, 0.013154168613255024, 0.024574950337409973, -0.0008636354468762875, -0.006080832332372665, 0.006356916390359402, -0.013587514869868755, -0.04271959513425827, 0.023065226152539253, -0.0041796984151005745, 0.022240469232201576, 0.00940781645476818, -0.009554595686495304, 0.011357876472175121, -0.014663892798125744, 0.03368920832872391, -0.0007002567872405052, 0.007898093201220036, 0.0036415099166333675, 0.03128483518958092, 0.0273427776992321, -0.014265493489801884, 0.010931519791483879, 0.020283419638872147, 0.007639482617378235, 0.0013585768174380064, -0.026615872979164124, 0.005846685264259577, 0.007884114049375057, 0.011253034695982933, 0.020395252853631973, -0.002131786197423935, -0.018060771748423576, -0.005315486341714859, 0.004917087033390999, 0.01980813778936863, 0.016103722155094147, -0.009093291126191616, -0.0083104707300663, 0.00786314532160759, 0.02239423803985119, -0.02319103665649891, 0.0014695344725623727, 0.00073826196603477, 0.03125687688589096, -0.017096225172281265, 0.01608974300324917, 0.0020828598644584417, 0.01722203567624092, -0.011253034695982933, 0.012636948376893997, -0.0030858477111905813, 0.01839626580476761, -0.006007443182170391, 0.011078298091888428, -0.038861412554979324, -0.021723249927163124, -0.023680299520492554, 0.024463118985295296, 0.02292543649673462, -0.003658983623608947, -0.0015053554670885205, -0.006702894810587168, -0.006961504928767681, 0.010686888359487057, -0.026182526722550392, -0.020996345207095146, 0.025204002857208252, -0.011336908675730228, 0.015446712262928486, 0.03394082933664322, 0.019109191372990608, 0.0015219554770737886, -0.002496985485777259, -0.03888937085866928, -0.022310364991426468, -0.04006360098719597, 0.012888569384813309, -0.0015140923205763102, -0.018536055460572243, -0.007006936240941286, -0.009051353670656681, -0.009247059002518654, -0.007136241532862186, -0.01518111303448677, -0.010015900246798992, 0.0057732961140573025, 0.005200160201638937, 0.000958430056925863, -0.016453195363283157, -0.007024409715086222, -0.025371748954057693, 0.059550222009420395, 0.0037568360567092896, 0.0019395758863538504, -0.00825455505400896, 0.004955528769642115, -0.014621955342590809, 0.008408323861658573, -0.014845618978142738, 0.00017877735081128776, -0.011777244508266449, -0.02531583420932293, 0.008296492509543896, -0.004738855641335249, -0.0004195861693006009, 0.027426650747656822, 0.005710390862077475, -0.015083259902894497, 0.006999946665018797, -0.011693370528519154, 0.035394638776779175, -0.01491551287472248, -0.0016888289246708155, 0.030390184372663498, 0.0028709217440336943, -0.004459277261048555, -0.003977004438638687, 0.0027521008159965277, -0.010442256927490234, -0.014195598661899567, 0.011777244508266449, 0.0033444578293710947, 0.016383299604058266, -0.02113613486289978, -0.01750161498785019, 0.0023869015276432037, 0.02565132826566696, -0.016662878915667534, -0.013349873945116997, 0.020297398790717125, -0.007870134897530079, -0.01323804259300232, 0.0026944377459585667, -0.0043334667570889, 0.009498680010437965, -0.021387755870819092, 0.03715598210692406, 0.0018871548818424344, -0.022170575335621834, -0.02816753461956978, -0.02211466059088707, 0.01491551287472248, -0.0015778711531311274, 0.010113752447068691, 0.03640112280845642, -0.0005779411876574159, -0.021108176559209824, -0.00906533282250166, 0.01801883429288864, 0.02584703266620636, -0.04615841060876846, -0.010637962259352207, 0.02556745335459709, -0.014580018818378448, -0.0018889022758230567, 0.0026175538077950478, -0.18105503916740417, 0.000599783263169229, -0.013468694873154163, -0.028293345123529434, 0.020059756934642792, 0.000673172646202147, 0.005221128463745117, -0.008652954362332821, -0.017096225172281265, 0.0004388072120491415, 0.012504148297011852, 0.025707243010401726, -0.032626811414957047, -0.017194077372550964, -0.00430550891906023, 0.015852101147174835, -0.019053274765610695, 0.028824543580412865, 0.02655995823442936, 0.02140173502266407, -0.004403361584991217, -0.011693370528519154, -0.0030980792362242937, -0.03259885311126709, -0.007751313969492912, -0.0120847811922431, -0.021918954327702522, -0.0032710684463381767, 0.00015890106442384422, -0.012322423048317432, -0.008932533673942089, -0.023107163608074188, 0.02432332932949066, -0.0057593174278736115, 0.013349873945116997, 0.009428785182535648, 0.004183193203061819, -0.025777138769626617, -0.01634136401116848, 0.0163273848593235, 0.0157123114913702, 0.01617361605167389, 0.015069281682372093, -0.004375403746962547, -0.0013847872614860535, 0.017180098220705986, 0.009708363562822342, -0.015209070406854153, -0.0070383888669312, -0.020297398790717125, 0.017893023788928986, -0.04856278747320175, -0.012098759412765503, -0.008205628953874111, -0.010064826346933842, 0.00812874548137188, 0.008778764866292477, 0.022366279736161232, -0.011036361567676067, -0.035925839096307755, 0.015698332339525223, -0.021275924518704414, -0.0010344404727220535, 0.004399866797029972, -0.021821102127432823, -0.009093291126191616, -0.0029810057021677494, 0.013916020281612873, -0.013377831317484379, 0.015880059450864792, 0.009023396298289299, -0.005546138621866703, -0.024043751880526543, -0.00786314532160759, -0.0017456182977184653, -0.0045256768353283405, -0.015698332339525223, 0.016313405707478523, 0.019850073382258415, 0.010316446423530579, 0.0016416499856859446, 0.011385834775865078, -0.017627425491809845, 0.003510457696393132, -0.027580419555306435, 0.005147739313542843, -0.007296998985111713, 0.022715752944350243, 0.004490729887038469, 0.0019867548253387213, 0.014013872481882572, -0.05010046809911728, 0.007227104157209396, 0.006468747742474079, -0.01128099299967289, 0.011944991536438465, 0.018102707341313362, 0.01997588388621807, 0.019039295613765717, -0.01874573901295662, 0.008030892349779606, 0.0015542818000540137, -0.023652341216802597, 0.015600480139255524, 0.012671895325183868, 0.036988236010074615, 0.006472242530435324, -0.005175697151571512, 0.030138563364744186, -0.015572522766888142, -0.0358978807926178, 0.012553075328469276, 0.028195492923259735, 0.0015577764715999365, 0.0034370683133602142, 0.04271959513425827, -0.009987941943109035, -0.018102707341313362, -0.003603067947551608, 0.007055862341076136, 0.040455009788274765, -0.0050044553354382515, -0.016537068411707878, -0.020912472158670425, 0.004001467488706112, 0.012748779729008675, -0.1138443648815155, -0.02035331539809704, 0.013210084289312363, -0.0031120581552386284, 0.006559610832482576, 0.005242097191512585, -0.010847645811736584, 0.015740269795060158, -0.015292944386601448, 0.031033214181661606, -0.015432733111083508, -0.02832130342721939, 0.0005744464579038322, 0.004906602669507265, 0.0373237319290638, -0.030250394716858864, -0.02068880945444107, -0.028195492923259735, -0.005944537930190563, 0.030977297574281693, 0.00408534100279212, -0.008345418609678745, 0.025469601154327393, -0.022673817351460457, -0.004340456333011389, -0.0007238461985252798, -0.030697720125317574, -0.0032710684463381767, 0.010589036159217358, 0.00865994393825531, 0.0044662668369710445, -0.020828599110245705, 0.020451167598366737, -0.009876110590994358, -0.007618514355272055, 0.002178964903578162, -0.01518111303448677, -0.009498680010437965, 0.002273322781547904, -0.022520048543810844, 0.005409844219684601, 0.00042832299368456006, 0.014412271790206432, -0.002905869157984853, 0.002226143842563033, -0.0054972125217318535, -0.009659437462687492, 0.009526637382805347, 0.0062800319865345955, -0.014258503913879395, -0.040287263691425323, -0.019235001876950264, -0.014181619510054588, -0.01889950782060623, 0.0013472188729792833, -0.011057330295443535, 0.010358383879065514, 0.0344720296561718, -0.019556516781449318, -0.010938509367406368, -0.006210137624293566, 0.006493210792541504, -0.013811178505420685, 0.04361424595117569, -0.00906533282250166, -0.01402785163372755, -0.021863039582967758, 0.0021614914294332266, 0.00897447019815445, -0.01082667801529169, -0.021178072318434715, -0.010092783719301224, -0.007828198373317719, 0.02087053470313549, -0.015558543615043163, 0.002021702006459236, -0.013650420121848583, -0.02007373608648777, 0.011085287667810917, 0.0059340535663068295, -0.017361825332045555, -0.01731988787651062, -0.0031592370942234993, -0.02219853363931179, 0.01952855847775936, 0.013566547073423862, -0.017249993979930878, -0.018074750900268555, 0.01997588388621807, -0.023316847160458565, 0.012497158721089363, -0.009491690434515476, 0.009708363562822342, -0.019304895773530006, -0.00013389189552981406, -0.004060877952724695, -0.005546138621866703, -0.010931519791483879, -0.011483686976134777, 0.008911564946174622, -0.007933040149509907, -0.009736321866512299, -0.06290516257286072, 0.005671949125826359, 0.013503641821444035, 0.014761744998395443, 0.003524436615407467, -0.02505023404955864, -0.0002465969882905483, -0.015446712262928486, 0.0022873017005622387, 0.013902041129767895, -0.03763126581907272, 0.02559541165828705, 0.0012694611214101315, 0.014251514337956905, -0.013482673093676567, -0.026448126882314682, 0.03212356939911842, 0.0003634520689956844, 0.02486850880086422, -0.005339949391782284, 0.0035786048974841833, -0.01142078172415495, -0.0032011738512665033, 0.018074750900268555, -0.011616487056016922, 0.023163078352808952, -0.017166120931506157, -0.011595518328249454, 0.0016302921576425433, -0.016453195363283157, 0.00670988392084837, 0.0020863546524196863, 0.020101694390177727, 0.03203969821333885, -0.0073808724991977215, -0.03108912892639637, 0.0010021141497418284, 0.01882961206138134, 0.00897447019815445, 0.02408568747341633, -0.010952487587928772, -0.03914099186658859, 0.020017821341753006, -0.028712712228298187, -0.00933093298226595, -0.009778258390724659, -0.006528158206492662, 0.011938001960515976, 0.012406296096742153, 0.019165106117725372, 0.018088730052113533, 0.0022296386305242777, -0.021457649767398834, -0.010267520323395729, -0.0030299320351332426, -0.014328398741781712, 0.009233079850673676, 0.005172202363610268, 0.004854181781411171, -0.022310364991426468, 0.04059479758143425, 0.03243110701441765, 0.011910044588148594, 0.025427665561437607, 0.014258503913879395, -0.004448792897164822, -0.028223449364304543, -0.011253034695982933, 0.004941550083458424, -0.02246413193643093, -0.00648272642865777, -0.02149958722293377, 0.027915913611650467, 0.0037533415015786886, 0.00812874548137188, -0.017739256843924522, 0.005713885650038719, 0.0004259203851688653, -0.006353421602398157, 0.04420136287808418, 0.005441296845674515, 0.0016206816071644425, -0.006573589518666267, 0.045347634702920914, 0.01332191564142704, 0.013734294101595879, -0.0070034414529800415, -0.0012650927528738976, 0.0025913433637470007, 0.005979485344141722, -0.0024637854658067226, 0.00127732427790761, 0.006608536932617426, -0.001502734492532909, -0.006531652994453907, 0.010407309979200363, 0.01221059076488018, 0.010540110059082508, 0.022436175495386124, 0.034332241863012314, 0.004448792897164822, 0.005881632678210735, 0.0024795117788016796, -0.0358978807926178, -0.022240469232201576, 0.007842177525162697, -0.010784740559756756, -0.0493735633790493, -0.01483163982629776, 0.008673923090100288, -0.0034283313434571028, 0.0022907964885234833, 0.01884359121322632, 0.016299426555633545, -0.026168547570705414, 0.019039295613765717, -0.024295372888445854, -0.011931012384593487, -0.029355743899941444, 0.015041323378682137, 0.027692250907421112, 0.01527896523475647, 0.019514579325914383, -0.005650980398058891, 0.02344265766441822, 0.003952540922909975, 0.004847192205488682, -0.0008339302730746567, -0.003222142346203327, -0.003543657483533025, -0.00641982164233923, 0.0034370683133602142, 0.0076814196072518826, -0.0076814196072518826, -0.020493105053901672, -0.010784740559756756, -0.011148192919790745, 0.020940430462360382, -0.011294971220195293, 0.08745215833187103, 0.026797600090503693, -0.01783710904419422, 0.024267414584755898, -0.011931012384593487, 0.018172603100538254, 0.013105242513120174, 0.01564241759479046, -0.004267066717147827, 0.010805709287524223, 0.032291315495967865, 0.011092277243733406, 0.003571615321561694, 0.0002828548022080213, -0.009268027730286121, 0.025287875905632973, -0.007506683003157377, 0.011993917636573315, -0.007359904237091541, 0.006087821908295155, 0.04297121614217758, 0.0020549020264297724, -0.0056439912877976894, -0.012287475168704987, -0.0316203273832798, 0.0011567560723051429, 0.009198132902383804, 0.028013765811920166, -0.0228415634483099, -0.012462211772799492, 0.009037375450134277, -0.0001762655156198889, -0.008506176061928272, -0.013615473173558712, 0.01088259369134903, 0.004473255947232246, -0.005360917653888464, -0.012441243045032024, 0.002004228299483657, 0.010064826346933842, -0.006779778748750687, 0.012490170076489449, -0.011155182495713234, -0.016005869954824448, -0.0028971321880817413, -0.018074750900268555, -0.0035174470394849777, -0.036009710282087326, -0.010050847195088863]" +13,"Microsoft 365 is the cloud-first platform that supports all the ways people work and every type of worker reducing cost and complexity for IT. The new Microsoft 365 app brings together our productivity apps with third-party content, as well as personalized recommendations. Microsoft Teams is the de facto standard for collaboration and has become essential to how hundreds of millions of people meet, call, chat, collaborate and do business. As we emerge from the pandemic, we are retaining users we have gained and are seeing increased engagement, too.","[-0.011315170675516129, -0.020855411887168884, -0.017971152439713478, -0.0243139136582613, 0.009866515174508095, 0.013520780019462109, -0.013651289977133274, -0.01974608190357685, -0.003455237951129675, -0.019863540306687355, 0.006023011635988951, 0.010492960922420025, -0.008691930212080479, 0.008770235814154148, -0.02772020921111107, 0.008437437005341053, 0.023256786167621613, -0.021521009504795074, 0.002670549787580967, -0.03338431939482689, -0.02440526895225048, 0.00253025209531188, 0.012665943242609501, -0.003314940258860588, -0.030878538265824318, 0.012267889454960823, 0.013964512385427952, -0.018702005967497826, 0.04147590696811676, -0.014382142573595047, 0.01207212544977665, -0.00709971459582448, 0.005771780852228403, 0.0006884374306537211, -0.005080080591142178, 0.0006549943354912102, 0.005500973667949438, -0.002406268147751689, 0.007497768383473158, -0.0002052465279120952, 0.017383860424160957, 0.009859989397227764, -0.018206069245934486, 0.016953179612755775, -0.022108303382992744, 0.01589605212211609, 0.004159989301115274, -0.019876591861248016, 0.013572984375059605, 0.009899143129587173, 0.0039348602294921875, 0.007974128238856792, -0.026101892814040184, -0.021338297054171562, 0.00745209027081728, -0.017514370381832123, -0.03946606069803238, 0.027041560038924217, 0.007360733579844236, -0.0018173442222177982, -0.021951692178845406, 0.018101662397384644, -0.01573944091796875, -0.013135777786374092, -0.015869950875639915, -0.010388553142547607, -0.011732800863683224, 0.010708301328122616, 0.008861592039465904, 0.016861822456121445, 0.02124693989753723, 0.013292388990521431, 0.02988666668534279, -0.006071952637284994, 0.01412112358957529, 0.0018646538956090808, -0.015700288116931915, 0.0007198412786237895, 0.003690154990181327, 0.0009828993352130055, -0.008763710036873817, -0.02073795348405838, 0.010864912532269955, -0.03014768660068512, 0.009716429747641087, 0.004143675323575735, -0.009716429747641087, 0.009494563564658165, 0.0069039505906403065, 0.010643046349287033, 0.019093533977866173, 0.0011231970274820924, 0.005631483159959316, 0.015948256477713585, -0.019615571945905685, 0.01680961810052395, 0.00136382388882339, 0.01915878988802433, -0.000779386202339083, -0.021521009504795074, 0.007223698776215315, -0.010466858744621277, -0.032522957772016525, -5.072535714134574e-05, -0.026506472378969193, -0.012052549049258232, 0.011608816683292389, -0.004662450402975082, 0.039257247000932693, -0.0031730113551020622, -0.014512652531266212, 0.010701775550842285, -0.015308760106563568, -0.014212480746209621, 0.0074194627813994884, -0.004270921926945448, 0.01815386675298214, -0.018284374848008156, -0.005213852971792221, -0.009351002983748913, 0.015021638944745064, 0.012346195057034492, 0.012398398481309414, -0.010160161182284355, 0.0050474535673856735, 0.01136737409979105, -0.006714711897075176, -0.015883002430200577, 0.02732868120074272, 0.0005424299743026495, 0.03304499760270119, -0.010623469948768616, -0.0029397255275398493, 0.01515214890241623, -0.009351002983748913, 0.02915581315755844, -0.011726275086402893, 0.0019005440408363938, -0.025684261694550514, -0.00780446594581008, 0.0017227248754352331, 0.0077326856553554535, -0.0011786635732278228, -0.004730967804789543, -0.0045058391988277435, 0.017762336879968643, 0.01973303034901619, 0.009044305421411991, 0.01606571488082409, 0.010610419325530529, 0.01815386675298214, -0.02889479510486126, 0.008567946031689644, 0.005709788762032986, 0.012998742051422596, -0.00021962294704280794, -0.01353383157402277, 0.0047635952942073345, -0.009305324405431747, -0.023596109822392464, -0.017553523182868958, 0.022591188549995422, 0.0004661634739022702, -0.004058844409883022, 0.015347912907600403, 0.014264684170484543, 0.007034460082650185, 0.0001066507029463537, 0.008594048209488392, 0.008117688819766045, 0.0008850172744132578, 0.012646366842091084, -0.019106585532426834, 0.012417974881827831, -0.004685289692133665, -0.002610189141705632, 0.006385175511240959, 0.007014883682131767, -0.00807201024144888, -0.0321575328707695, 0.01429078634828329, -0.0064210654236376286, 0.006871323101222515, 0.018636751919984818, -0.01053863950073719, -0.00845701340585947, 0.018427936360239983, 0.0241442508995533, 0.01815386675298214, -0.0009706641430966556, 0.001460074563510716, 0.005468346644192934, -0.0021892962977290154, -0.03416737541556358, -0.6523385047912598, -0.022134404629468918, 0.02148185670375824, -0.02056829072535038, 0.00753692165017128, 0.0026248714420944452, 0.00999049935489893, -0.0022463940549641848, -0.015387065708637238, -0.004779909271746874, -0.007080138195306063, 0.0038043507374823093, -0.005471609067171812, -0.011889412067830563, -0.009383630007505417, -0.007471666671335697, 0.0010440757032483816, -0.019615571945905685, -0.012711621820926666, -0.007549972273409367, -0.04805358499288559, 0.0002861012180801481, -0.019458960741758347, -0.01965472474694252, -0.022421525791287422, -0.013018318451941013, 0.010871438309550285, -0.0015351175097748637, -0.020933717489242554, 0.024261709302663803, -0.02606274001300335, 0.024118147790431976, 0.015099944546818733, -0.008959474973380566, 0.04189353808760643, 0.008385232649743557, -0.020281169563531876, 0.015883002430200577, 0.01849319040775299, 0.007902347482740879, -0.016600804403424263, 0.018923871219158173, 0.0037064687348902225, 0.0041045225225389, 0.009546766988933086, -0.01211780309677124, 0.03014768660068512, -0.017044534906744957, 0.01457790657877922, -0.0006631512078456581, 0.017788439989089966, -0.022930512204766273, -0.0017374071758240461, 0.0037717234808951616, 0.00040457933209836483, 0.001510647009126842, 0.011589240282773972, -0.021299144253134727, 0.0016591015737503767, 0.00268523208796978, -0.01374264620244503, 0.018349630758166313, -0.02907750755548477, -0.027668006718158722, -0.04207625240087509, 0.016287580132484436, 0.010036177933216095, -0.006695135496556759, 0.011243389919400215, -0.007882771082222462, 0.004714654292911291, 0.020933717489242554, 0.0015489842044189572, -0.019119637086987495, 0.008731083013117313, 0.03750842064619064, 0.027876820415258408, -0.020946769043803215, -0.00549771124497056, 0.028216145932674408, 0.008417860604822636, -0.01740996167063713, 0.00836565624922514, -0.03213142976164818, 0.008933372795581818, 0.01691402681171894, -0.029129711911082268, -0.034506700932979584, 0.023047970607876778, -0.0036053238436579704, 0.03977928310632706, -0.005399828776717186, -0.004711391404271126, -0.027459191158413887, 0.013331541791558266, 0.0307480301707983, -0.012489755637943745, 0.005664110649377108, 0.007974128238856792, 0.007295479066669941, -0.02005930431187153, -0.01081923395395279, 0.02965174987912178, 0.01908048242330551, 0.013377219438552856, 0.020620495080947876, -0.02748529240489006, 0.03748231753706932, 0.05465736240148544, 0.0066494569182395935, 0.00530847255140543, -0.009468461386859417, 0.002303492045029998, -0.004003377631306648, 0.023034920915961266, -0.02456188015639782, 0.029547343030571938, -0.020998971536755562, -0.021455755457282066, -0.02839885838329792, 0.015948256477713585, -0.01914573833346367, -0.0020424730610102415, -0.014995536766946316, 0.01074092835187912, 0.004003377631306648, 0.01536096353083849, 0.007334631867706776, -0.0003374892985448241, 0.020516088232398033, 0.007771838456392288, -0.022343220189213753, 0.013781799003481865, 0.010519063100218773, 0.024796796962618828, 0.021299144253134727, -0.009514139965176582, -0.027929024770855904, 0.022134404629468918, -0.01366434060037136, -0.018036408349871635, -0.002199084497988224, -0.0039218091405928135, 0.01665300689637661, -0.010649572126567364, -0.040275219827890396, -0.02839885838329792, -0.007595650851726532, -0.013768748380243778, -0.005794620141386986, 0.0023198057897388935, -0.020542189478874207, 0.0125811118632555, 0.005990384146571159, 0.0003784774453379214, -0.005213852971792221, -0.027537496760487556, -0.03072192706167698, -0.01998099870979786, -0.02665003202855587, -0.008718032389879227, 0.011432629078626633, -0.0027325418777763844, -0.012966115027666092, 0.002822267124429345, -0.019171839579939842, -0.03288838267326355, 0.023870181292295456, 0.02531883493065834, -0.02065964788198471, 0.006381912622600794, 0.009892617352306843, 0.0016754152020439506, 0.016639957204461098, 0.008235147222876549, 0.0018499715952202678, -0.027198171243071556, 0.0009453779202885926, 0.0027880084235221148, -0.00048370068543590605, 0.0038891818840056658, 0.0053345742635428905, -0.014316887594759464, 0.009435834363102913, 0.004013165831565857, 0.0018010305939242244, 0.016613854095339775, 0.0035237555857747793, -0.02123389020562172, 0.030956843867897987, 0.008091586641967297, 0.011674071662127972, -0.023282887414097786, 0.004270921926945448, 0.010186263360083103, 0.0015604037325829268, -0.03228804096579552, -0.018036408349871635, 0.0036640530452132225, 0.0016036350280046463, 0.010401603765785694, 0.003631425788626075, 0.0047342306934297085, -0.015621982514858246, 0.012241787277162075, -0.016444191336631775, -0.014029767364263535, -0.017945051193237305, 0.0033100461587309837, 0.011869835667312145, 0.012626790441572666, -0.035602983087301254, -0.02507086843252182, -0.0048060109838843346, 0.005151860881596804, 0.009168289601802826, -0.008424385450780392, 0.02589307725429535, -0.022277964279055595, 0.005964282434433699, 0.006124156527221203, -0.018440987914800644, 0.022525932639837265, -0.028842590749263763, -0.011014998890459538, 0.008130739443004131, 0.015635034069418907, 0.03672536090016365, 0.017971152439713478, -0.016378937289118767, 0.0034878654405474663, 0.028842590749263763, 0.015517574734985828, -0.005419405642896891, 0.0053052096627652645, -0.005908816121518612, -0.005269319750368595, -0.026349861174821854, 0.025110021233558655, -0.002314911689609289, -0.0014690471580252051, -0.012032972648739815, 0.02541019208729267, -0.022930512204766273, 0.02858157269656658, 0.0038043507374823093, 0.03575959429144859, -0.011041100136935711, -0.006192673929035664, 0.012711621820926666, -0.042781002819538116, 0.01490418054163456, -0.008430911228060722, -0.017788439989089966, 0.006665770895779133, -0.026193248108029366, 0.010042702779173851, 0.0009845307795330882, 0.024105098098516464, 0.042598288506269455, -0.011478306725621223, -0.0047896974720060825, 0.02233016863465309, -0.005595593247562647, 0.002003320259973407, 0.01589605212211609, -0.001145220478065312, -0.011086778715252876, -0.005331311374902725, -0.026519522070884705, 0.01182415708899498, 0.009566343389451504, 0.027433088049292564, -0.0019315400859341025, -0.012235262431204319, 0.018349630758166313, -0.026206299662590027, 0.01816691644489765, -0.01291391160339117, 0.026506472378969193, -0.0058631375432014465, -0.012802978046238422, -0.020555241033434868, -0.004564568400382996, -0.00983388815075159, 0.004427533596754074, -0.03374974802136421, -0.006845221389085054, 0.0008368919370695949, 0.013044420629739761, 0.00268523208796978, 0.029756156727671623, -0.026336809620261192, 0.018597599118947983, 0.030382603406906128, -0.0016476819291710854, 0.008965999819338322, -0.0019103322410956025, 0.000740641204174608, -0.009429308585822582, -0.001283886842429638, -0.02373967133462429, -0.001034287502989173, -0.01939370669424534, 0.019445909187197685, -0.002603663830086589, -0.015426218509674072, -0.018440987914800644, -0.03797825425863266, -0.018884718418121338, -0.0024144251365214586, -0.010636521503329277, -0.011262966319918633, 0.004874528385698795, -0.015700288116931915, 0.010440756566822529, 0.002135460963472724, -0.02182118222117424, 0.01690097525715828, 0.005882713943719864, -0.019680825993418694, -0.011328221298754215, -0.013729595579206944, 0.004339439794421196, 0.07950636744499207, 0.026689184829592705, -0.00126512604765594, 0.02547544613480568, -0.007106240373104811, 0.0005318260518833995, -0.022852206602692604, -0.030330399051308632, 0.016861822456121445, -0.008280825801193714, 0.002450315048918128, -0.013207557611167431, 0.016222326084971428, -0.005598856136202812, -0.00201800256036222, 0.024862052872776985, 0.012398398481309414, 0.006055639125406742, -0.008776761591434479, -0.0061176312156021595, 0.01640503853559494, 0.006032799836248159, 0.014421295374631882, -0.0044993138872087, 0.028424961492419243, 0.0007765312911942601, -0.016639957204461098, 0.02790292352437973, -0.0008099743281491101, -0.02722427435219288, 0.007621752563863993, 0.039596572518348694, 0.0014168433845043182, 0.0010922010987997055, -0.021716775372624397, 0.02531883493065834, -0.033932458609342575, 0.004949571564793587, 0.015126046724617481, 0.004313337616622448, 0.0009641386568546295, 0.004959359765052795, 0.0018548656953498721, -0.015791645273566246, 0.0019919006153941154, 0.0013214083155617118, -0.008274300023913383, 0.018897769972682, 0.001668074051849544, -0.03555077686905861, 0.000971479807049036, 0.01739691197872162, -0.025423243641853333, 0.00462003517895937, -0.012959589250385761, 0.019002176821231842, -0.003151803510263562, -0.008633201010525227, -0.010486435145139694, -0.045678310096263885, -0.028294451534748077, -0.014590958133339882, -0.010036177933216095, -0.004819062072783709, -0.004597195889800787, -0.032522957772016525, 0.005921866744756699, 0.010669148527085781, 0.00259387562982738, 0.00912261102348566, 0.00177492864895612, -0.0238049253821373, -0.005350887775421143, 0.016091816127300262, 0.025423243641853333, 0.015478421933948994, 0.010421180166304111, -0.008515742607414722, -0.008352605625987053, 0.021690672263503075, 0.010962794534862041, 0.001649313373491168, 0.010408129543066025, -0.014917231164872646, -0.017044534906744957, -0.01457790657877922, -0.014930282719433308, -0.010388553142547607, -0.0048092738725245, 0.009213968180119991, -0.014160276390612125, -0.0027162281330674887, 0.000843417423311621, 0.0030588156078010798, 0.014225531369447708, 0.0145257031545043, -0.001980480970814824, -0.005641271360218525, 0.0013556670164689422, -0.024000689387321472, -0.004894104786217213, -0.022512882947921753, -0.005657585337758064, -0.018454037606716156, 0.014003665186464787, -0.0020946769509464502, 0.022930512204766273, 0.0353158600628376, -0.014604008756577969, -0.019706929102540016, 0.021951692178845406, -0.01082575973123312, 0.027459191158413887, -0.010153636336326599, 0.018375732004642487, 0.005171437282115221, 0.03048701025545597, 0.007974128238856792, 0.01590910367667675, -0.02041167952120304, 0.0036183749325573444, -0.045025765895843506, 0.013351118192076683, -0.011719749309122562, -0.021860335022211075, -0.014329939149320126, 0.023087123408913612, -0.0444515235722065, -0.03364533931016922, -0.011954667046666145, 0.013703493401408195, 0.0022235549986362457, -0.0044634235091507435, -0.009559818543493748, -0.0528041273355484, -0.007843618281185627, 0.012320092879235744, 0.022630341351032257, -0.0019413282861933112, -0.006274242419749498, -0.010212365537881851, 0.019224043935537338, 0.004949571564793587, -0.011112880893051624, -0.0102384677156806, -0.026532573625445366, 0.0012659417698159814, 0.0015620351769030094, -0.015883002430200577, 0.03863080218434334, -0.0014445766573771834, 0.00699530728161335, -0.019341502338647842, 0.0053215231746435165, 0.0019560104701668024, 0.004854951985180378, 0.008783286437392235, -0.0269110519438982, 0.038865718990564346, 0.00660051591694355, 0.032601263374090195, -0.0003715441271197051, 0.011458730325102806, -0.015139097347855568, 0.014760619960725307, -0.01581774652004242, -0.00920744240283966, -0.027798514813184738, 0.00622203852981329, 0.018858617171645164, -0.0008825702243484557, 0.0015367489540949464, 0.020777106285095215, 0.01690097525715828, 0.009259646758437157, 0.014538753777742386, -0.009109560400247574, -0.0050344024784862995, -0.02199084497988224, -0.05003732815384865, -0.015948256477713585, -0.0022463940549641848, -0.013886206783354282, 0.019798286259174347, -0.01932845078408718, -0.005553177557885647, 0.00019627399160526693, 0.019719978794455528, 0.023191532120108604, 0.009448884986341, 0.017788439989089966, 0.006936578080058098, 0.005517287645488977, 0.011719749309122562, 0.02089456468820572, -0.04207625240087509, -0.0037815116811543703, -0.03189651295542717, -0.01412112358957529, 0.019028279930353165, 0.022682543843984604, 0.01949811354279518, 0.0015489842044189572, -0.008039383217692375, 0.0061208936385810375, 0.0321575328707695, -0.04447762295603752, -0.010564740747213364, -0.009194391779601574, -0.017096739262342453, 0.0018434461671859026, -0.00845048762857914, -0.001668074051849544, 0.0004673869989346713, -0.028111737221479416, -0.003283944446593523, 0.0061208936385810375, 0.006779966410249472, -0.014342989772558212, -0.01598740927875042, 0.016209274530410767, 0.004636348690837622, 0.03591620549559593, 0.0008213939145207405, 0.0324968546628952, -0.015126046724617481, 0.014408244751393795, -0.012339669279754162, -0.024705441668629646, 0.001525329309515655, 0.006160046439617872, 0.03262736648321152, 0.028868693858385086, 0.009938295930624008, -0.00737378466874361, 0.007054036483168602, -0.015217402949929237, 0.010192789137363434, -0.037351809442043304, -0.00011888596054632217, 0.03972708061337471, -0.02706766314804554, -0.02573646605014801, -0.028372757136821747, -0.0037064687348902225, 0.024927306920289993, -0.009448884986341, 0.0007312608067877591, 0.02598443441092968, -0.03555077686905861, -0.010734403505921364, 0.014669263735413551, -0.022199658676981926, 0.02073795348405838, -0.002236605854704976, 0.016966229304671288, -0.011210762895643711, -0.005654322449117899, -0.011680596508085728, -0.004770120605826378, -0.00568042416125536, 0.00545529555529356, -0.022016946226358414, 0.01957641914486885, 0.012763825245201588, 0.022264914587140083, -0.022552035748958588, 0.024261709302663803, 0.0044634235091507435, 0.02422255650162697, -0.017618777230381966, -0.01520435232669115, 0.010623469948768616, -0.0007903979276306927, 0.03816096484661102, -0.04142370447516441, 0.00790887326002121, 0.0005656769499182701, -0.02688494883477688, -0.022669494152069092, 0.02732868120074272, -0.01053211372345686, -0.004773383494466543, -0.0017488268204033375, 0.03307109698653221, -0.010753979906439781, 0.01474756933748722, 0.0037880372256040573, 0.006858272012323141, -0.033279914408922195, 0.0038467664271593094, 0.01091711688786745, -0.00899210199713707, 0.009781683795154095, -0.023961536586284637, 0.01824522204697132, -0.0039772759191691875, 0.02205609902739525, -0.011719749309122562, 0.008417860604822636, 0.02265644259750843, 0.010858387686312199, -0.01974608190357685, 0.03534196317195892, -0.01153051108121872, -0.01606571488082409, 0.011765427887439728, -0.011341271921992302, -0.013005267828702927, 0.0036053238436579704, 0.026832744479179382, 0.0012586006196215749, -0.004597195889800787, 0.00837218202650547, 0.011589240282773972, 0.0006668217829428613, 0.0010310247307643294, -0.008417860604822636, -0.03166159614920616, 0.03724740073084831, 0.014134175144135952, -0.00526605686172843, 0.02505781687796116, 0.005115970969200134, 0.00782404188066721, -0.009181340225040913, -0.0014127648901194334, -0.03620332479476929, -0.0331755056977272, -0.02672833763062954, -0.012652892619371414, 0.00418282812461257, 0.0042513455264270306, 0.00029364629881456494, -0.018454037606716156, -0.007014883682131767, -0.004398168995976448, -0.011354323476552963, 0.006114368326961994, 0.018767260015010834, 0.010251518338918686, 0.005713051650673151, 0.025123070925474167, 0.004668976180255413, -0.015935204923152924, -0.03586399927735329, -0.03803045675158501, -0.026519522070884705, -0.016052663326263428, 0.0074325138702988625, 0.010610419325530529, 0.012333144433796406, 0.011138982139527798, -0.017175044864416122, -0.01864980161190033, -0.01789284683763981, -0.05940790846943855, -0.030669722706079483, -0.0036118493881076574, 0.012013396248221397, 0.018688954412937164, 0.014695364981889725, -0.01190898846834898, 0.026258504018187523, 0.0021892962977290154, 0.015491473488509655, -0.033775847405195236, -0.010192789137363434, 0.008509216830134392, -0.024927306920289993, 0.013925359584391117, -0.0068908995017409325, -0.0002506189630366862, 0.014434346929192543, 0.02214745618402958, -0.0336192362010479, 0.025423243641853333, 0.020607443526387215, -0.01037550251930952, 0.0005085790762677789, 0.014029767364263535, 0.034611109644174576, -0.008939898572862148, 0.01173932570964098, 0.038265373557806015, -0.01750131882727146, -0.0029886667616665363, 0.024105098098516464, 0.004779909271746874, -0.0004955281037837267, 0.008509216830134392, 0.017449114471673965, 0.003527018241584301, 0.0020131084602326155, 0.018675904721021652, -0.012300516478717327, 0.00336061860434711, -5.001163299311884e-05, 0.008920322172343731, -0.01691402681171894, 0.004156726412475109, 0.023791875690221786, 0.014473499730229378, -0.027459191158413887, 0.010519063100218773, 0.023217633366584778, -0.019719978794455528, -0.006714711897075176, 0.027354782447218895, -0.013050946407020092, 0.007739210966974497, -0.017344707623124123, 0.00605890154838562, -0.015843847766518593, -0.012731198221445084, -0.013677391223609447, -0.006408014800399542, 0.002009845804423094, -0.0045188902877271175, 0.0030849173199385405, -0.011856785044074059, 0.007425988558679819, 0.0050213513895869255, 0.02714596875011921, 0.0019902694039046764, -0.012326618656516075, 0.0028190044686198235, 0.0007418647292070091, -0.025632059201598167, 0.038108762353658676, -0.002662393031641841, -0.02349170297384262, 0.01656165160238743, 0.0077196345664560795, 0.01573944091796875, 0.01880641281604767, 0.21925589442253113, 0.006476532202214003, 0.020111508667469025, 0.025083918124437332, 0.0011794792953878641, 0.01866285316646099, 0.01273772306740284, 0.005027877166867256, -0.001026130630634725, 0.007797940168529749, -0.0015644822269678116, 0.015765542164444923, 0.0016697053797543049, 0.007230224087834358, -0.0010709932539612055, -0.02372661978006363, -0.02714596875011921, -0.008920322172343731, -0.03090464137494564, 0.02839885838329792, 0.012979165650904179, -0.025175275281071663, 0.009598971344530582, -0.004261133726686239, 0.007334631867706776, 0.015635034069418907, -0.01490418054163456, 0.008704980835318565, 0.01536096353083849, 0.01290086004883051, -0.009722954593598843, 0.005500973667949438, -0.003686892334371805, 0.019380655139684677, -0.0030245566740632057, -0.02022896707057953, 0.004952833987772465, -0.026610879227519035, -0.006639668717980385, 0.01656165160238743, 0.009409732185304165, -0.001155824400484562, 0.005328048951923847, -0.01680961810052395, 0.005624957848340273, 0.008718032389879227, -0.017305554822087288, 0.0022545510437339544, 0.01429078634828329, -0.008411334827542305, -0.03150498494505882, 0.003169748466461897, 0.01128254272043705, 0.007856669835746288, -0.0014568119077011943, 0.0044471099972724915, -0.010734403505921364, 0.014108072966337204, -0.010636521503329277, 0.019106585532426834, -0.012711621820926666, 0.007328106090426445, 0.0008360762149095535, 0.017018433660268784, -0.025357987731695175, 0.0009176446474157274, -0.02157321386039257, 0.01265941746532917, -0.03904842957854271, -0.003755409736186266, 0.0066331434063613415, -0.0039218091405928135, -0.010062279179692268, 0.0044144825078547, -0.00783056765794754, -0.018532343208789825, 0.029103610664606094, 0.04139760136604309, 0.017370808869600296, 0.03758672624826431, 0.006871323101222515, 0.0035400690976530313, -0.009775158949196339, -0.0032007445115596056, -0.007797940168529749, -0.00464613689109683, 0.02449662610888481, -0.007934975437819958, -0.013468576595187187, -0.0037815116811543703, -0.026193248108029366, 0.003996852319687605, -0.023596109822392464, -0.016287580132484436, -0.004378592595458031, 0.020685749128460884, -0.01053211372345686, 0.01183068286627531, 0.0044568981975317, 0.02772020921111107, -0.034846026450395584, 0.07120596617460251, 0.023674417287111282, 0.007615227252244949, -0.019706929102540016, 0.007243275176733732, 0.0030327136628329754, 0.0022985979449003935, 0.010545164346694946, 0.0138209518045187, -0.02089456468820572, -0.02064659632742405, 0.02423560619354248, -0.00820251926779747, 0.018258273601531982, 0.03197481855750084, 0.0082090450450778, -0.005517287645488977, -0.019954897463321686, 0.004959359765052795, 0.023622212931513786, -0.031009048223495483, -0.010258044116199017, 0.028346655890345573, -0.03466331213712692, 0.0020343163050711155, -0.003363881492987275, 0.01091059111058712, -0.0023720094468444586, -0.03638603910803795, 0.016039613634347916, -0.005967545323073864, 0.018427936360239983, -0.036934178322553635, -0.022134404629468918, 0.005027877166867256, 0.015139097347855568, -0.014695364981889725, -0.030330399051308632, -0.002771694678813219, -0.03265346586704254, -0.002184402197599411, -0.00683217030018568, 0.000819354725535959, 0.0030392392072826624, -0.007563023362308741, 0.008731083013117313, 0.01066262274980545, -0.010773556306958199, -0.008868117816746235, -0.023674417287111282, -0.0038043507374823093, -0.02889479510486126, -0.0028924159705638885, 0.03748231753706932, -0.0014992274809628725, -0.011393476277589798, -0.006930052302777767, 0.007047511171549559, 0.004290498793125153, -0.02016371116042137, -0.0238049253821373, 0.01190898846834898, -0.024601032957434654, -0.023517804220318794, -0.01536096353083849, -0.16475515067577362, 0.0056053814478218555, -0.01536096353083849, -0.006238352507352829, 0.03380195051431656, 0.004512364510446787, -0.002654236275702715, -0.0003715441271197051, -0.012026446871459484, -0.007171494886279106, 0.022538984194397926, 0.005324786063283682, -0.0300693791359663, -0.022760849446058273, 0.023374244570732117, 0.027354782447218895, 0.011086778715252876, 0.02041167952120304, 0.03184431046247482, 0.01482587493956089, 0.02206915058195591, -0.014538753777742386, -0.010062279179692268, -0.03166159614920616, 0.005086606368422508, -0.005921866744756699, -0.02847716398537159, 0.013847053982317448, 0.014760619960725307, -0.008137265220284462, -0.015269607305526733, -0.008939898572862148, 0.021390501409769058, 0.025462396442890167, -4.233910658513196e-05, -0.012059073895215988, 0.02813784033060074, -0.027537496760487556, -0.00999049935489893, 0.03575959429144859, 0.004757069982588291, 0.0030995996203273535, 0.0012847025645896792, 0.01948506198823452, -0.003987064119428396, 0.027589701116085052, 0.0049919867888092995, 0.0071780201978981495, 0.0021142533514648676, 0.003814138937741518, 0.01474756933748722, -0.031165659427642822, -0.012059073895215988, -0.005031139589846134, -0.007889296859502792, 0.01673131249845028, -0.0014127648901194334, 0.0014869922306388617, -0.010042702779173851, -0.026676133275032043, 0.019289297983050346, -0.0359945110976696, -0.011217288672924042, -0.020281169563531876, -0.015713339671492577, -0.014604008756577969, 0.0174882672727108, 0.021207787096500397, -0.028712080791592598, 0.015804694965481758, 0.017436064779758453, -0.01228094007819891, -0.0004914496676065028, -0.022264914587140083, -0.0013556670164689422, 0.002595506841316819, -0.027433088049292564, 0.043929483741521835, 0.01674436405301094, 0.016339784488081932, 0.012953064404428005, -0.005726102739572525, 0.004544991999864578, 0.019941845908761024, -0.01722724922001362, -0.010323298163712025, -0.015256555750966072, 0.016170121729373932, -0.03113955818116665, -0.004685289692133665, -0.0052497428841888905, -0.0132010318338871, 0.000982083729468286, -0.0029364628717303276, 0.004453635308891535, 0.009103034622967243, 0.02482290007174015, -0.0014127648901194334, -9.599582699593157e-05, 0.001760246348567307, 0.024679338559508324, 0.00622203852981329, -0.0025253579951822758, 0.02165151946246624, 0.04669628664851189, 0.015008588321506977, 0.017214197665452957, 0.0064047519117593765, 0.007119290996342897, -0.022277964279055595, -0.02522747963666916, 0.0028124789241701365, 0.037012483924627304, 0.022082200273871422, 0.013886206783354282, 0.030382603406906128, 0.018127763643860817, -0.0055792792700231075, -0.00969685334712267, 0.007556498050689697, 0.07000527530908585, 0.002148512052372098, -0.01881946437060833, -0.006085003726184368, -0.01988964155316353, -0.013716544024646282, -0.09736005961894989, -0.050768181681632996, -0.012196109630167484, 0.004832112696021795, -0.0019266459858044982, 0.02466628886759281, -0.002786376979202032, 0.01606571488082409, 0.01503468956798315, 0.017762336879968643, 0.017853694036602974, -0.01199381984770298, -0.018440987914800644, 0.004173039924353361, 0.015935204923152924, -0.008065484464168549, -0.012887809425592422, -0.022003894671797752, -0.009383630007505417, 0.0055760168470442295, 0.004323125816881657, -0.029208017513155937, -0.008359131403267384, -0.00576525554060936, -0.029599545523524284, -0.01767098158597946, -0.025331886485219002, -0.0010938324267044663, 0.016183173283934593, 0.023126276209950447, -0.0010424443753436208, -0.002553091384470463, 0.009520664811134338, -0.014695364981889725, 0.03372364491224289, 0.0031485408544540405, -0.007582599762827158, -0.025605956092476845, -0.0013499571941792965, -0.031035149469971657, 9.089780360227451e-05, 0.012855182401835918, -0.011667545884847641, -0.052177682518959045, -0.0050507159903645515, -0.009494563564658165, -0.008437437005341053, -0.012522382661700249, 0.029703954234719276, -0.011804580688476562, -0.021181685850024223, -0.00376846082508564, -0.016026562079787254, -0.04627865552902222, 0.0029576707165688276, 0.019863540306687355, 0.004874528385698795, 0.007054036483168602, -0.01733165606856346, 0.004179565701633692, -0.001510647009126842, -0.02572341449558735, -0.017879797145724297, 0.01722724922001362, 0.007067087572067976, 0.003218689700588584, -0.011491358280181885, 0.0057913572527468204, 0.012672469019889832, -0.02973005548119545, -0.001898912712931633, -0.006137207616120577, -0.032522957772016525, 0.01581774652004242, -0.009683801792562008, 0.00836565624922514, -0.011223813518881798, -0.021690672263503075, 0.021364398300647736, 0.008541843853890896, -0.013964512385427952, -0.02449662610888481, 0.003497653640806675, 0.003690154990181327, 0.030278194695711136, 0.012170007452368736, -0.0007214726065285504, 0.004796222783625126, 0.01623537763953209, -0.02714596875011921, 0.01566113531589508, 0.014891129918396473, 0.009683801792562008, 0.008248197846114635, 0.007497768383473158, 0.007197597064077854, -0.016287580132484436, -0.032940588891506195, 0.005279107950627804, 0.02157321386039257, 0.002889153314754367, -0.002507413038983941, -0.05690212547779083, 0.01012100838124752, -0.005217115860432386, 0.014982486143708229, 0.022604238241910934, -0.00390223297290504, -0.0027602750342339277, -0.036594852805137634, 0.0015383802819997072, 0.02557985484600067, -0.01615707203745842, 0.017253350466489792, 0.011295594274997711, 0.00048370068543590605, -0.021507959812879562, -0.0023214370012283325, 0.04144980385899544, 0.0012618633918464184, 0.014460448175668716, 0.02364831417798996, -0.004695077892392874, -0.03515924885869026, -0.002135460963472724, 0.026336809620261192, -0.010656097903847694, 0.025788670405745506, -0.010506011545658112, 0.006016486324369907, -0.02949513867497444, -0.011465256102383137, -0.014016715809702873, 0.002771694678813219, 0.016887923702597618, 0.03254906088113785, 0.0005130653153173625, 0.0030995996203273535, 0.013161879032850266, 0.029599545523524284, -0.011563138104975224, 0.012607214041054249, -0.009259646758437157, -0.04536508768796921, 0.028346655890345573, -0.02907750755548477, -0.025671212002635002, -0.02897310070693493, -0.023348143324255943, -0.00626445421949029, 0.009514139965176582, 0.018923871219158173, 0.02957344427704811, 0.008887694217264652, -0.026193248108029366, -0.010812709107995033, 0.022630341351032257, -0.027589701116085052, 0.014029767364263535, -0.01607876643538475, -0.004597195889800787, -0.010127534158527851, 0.004453635308891535, 0.02347865141928196, 0.006652719806879759, 0.017279453575611115, 0.0030849173199385405, 0.014421295374631882, -0.028346655890345573, -0.007014883682131767, -0.0012031340738758445, -0.0003344304859638214, 0.006215513218194246, -0.019432859495282173, 0.021364398300647736, 0.011895937845110893, -0.0007263667066581547, 0.007112765684723854, 0.0005195908015593886, 0.011178135871887207, -0.008339555002748966, 0.02131219580769539, 0.017840644344687462, -0.017684031277894974, -0.013625187799334526, 0.023791875690221786, 0.018036408349871635, 0.01374264620244503, -0.020294221118092537, 0.004564568400382996, -0.010062279179692268, -0.015478421933948994, -0.0023426448460668325, -0.001812450122088194, 0.005628220736980438, -0.0036999431904405355, 0.005566228646785021, -0.0069039505906403065, -0.019341502338647842, 0.029756156727671623, 0.020503036677837372, 0.02205609902739525, -0.009005152620375156, 0.012568061240017414, -0.002750486833974719, -0.021534061059355736, -0.01490418054163456, 0.0001963759568752721, -0.0125811118632555, -0.012254838831722736, -0.022003894671797752, 0.011935090646147728, 0.0015661135548725724, 0.001261047669686377, 0.022512882947921753, 0.006923526991158724, -0.023922383785247803, 0.010636521503329277, 0.018049458041787148, -0.0023997428361326456, -0.02383102849125862, 0.026963254436850548, 0.01299221720546484, 0.012046023271977901, 0.01891082152724266, -0.006208987440913916, 0.04322473332285881, 0.027589701116085052, -0.012411450035870075, -0.03106125257909298, -0.007380309980362654, -0.006443904712796211, -0.021599315106868744, -0.006277505308389664, 0.00928574800491333, -0.02282610535621643, -0.0027390674222260714, 0.012587637640535831, -0.023948486894369125, 0.02364831417798996, 0.020620495080947876, 0.06494151055812836, 0.018506241962313652, -0.010055754333734512, -0.0015457214321941137, 0.01592215523123741, 0.01697928085923195, 0.025501549243927002, 0.015543676912784576, -0.008731083013117313, -0.009873040951788425, -0.0006590727716684341, 0.011295594274997711, -0.004812536295503378, 0.004055581521242857, -0.020946769043803215, -0.004796222783625126, -0.0307480301707983, -0.008313452824950218, -0.032366346567869186, 0.0026444480754435062, 0.02988666668534279, -0.0005216299905441701, 0.0035694336984306574, -0.03213142976164818, -0.02680664323270321, -0.016117919236421585, 0.00862015038728714, 0.008652777411043644, -0.007569548673927784, -0.0026901261880993843, 0.023256786167621613, 0.009011678397655487, -0.029860565438866615, -0.01764487847685814, 0.027955126017332077, 0.0020212652161717415, 0.017018433660268784, -0.005396566353738308, 0.008052433840930462, 0.011621867306530476, -0.0030115058179944754, -0.005778306629508734, -0.012019921094179153, -0.015635034069418907, -0.00974905677139759, -0.015230454504489899, -0.03090464137494564, -0.007210647687315941, 0.004551517311483622]" +14,"Users interact with Teams 1,500 times per month on average. In a typical day, the average commercial user spends more time in Teams chat than they do in email, and the number of users who use four or more features within Teams increased over 20% year over year. Teams is becoming a ubiquitous platform for business process. Monthly active enterprise users running third party and custom applications within Teams increased nearly 60% year over year, and over 55% of our enterprise customers who use Teams today also buy Teams Rooms or Teams Phone.","[-0.013855385594069958, -0.014995800331234932, -0.01472052838653326, -0.020566793158650398, 0.012754295952618122, -0.017630552873015404, -0.01090603694319725, -0.024184660986065865, -0.0018843063153326511, -0.01866610161960125, -0.006180524360388517, 0.016857167705893517, -0.006770394276827574, -0.01361943781375885, -0.010165422223508358, -0.004686187952756882, 0.006537723354995251, 0.002015388337895274, 0.006855597719550133, -0.01898069866001606, -0.03292784094810486, -0.002538078697398305, -0.02894294448196888, 0.014890935271978378, -0.0389576219022274, 0.01034238375723362, 0.019242864102125168, -0.02037017047405243, 0.007628982421010733, -0.018023798242211342, 0.017932040616869926, -0.016503246501088142, -0.018456369638442993, 0.0033049092162400484, -0.021772749722003937, 0.007805943489074707, 0.008598990738391876, 0.006498398724943399, 0.011436919681727886, 0.0003432714438531548, 0.016568787395954132, 0.013291732408106327, -0.009464132599532604, 0.011128876358270645, -0.028471048921346664, 0.018902050331234932, 0.023883171379566193, -0.02579697221517563, -0.021602341905236244, 0.004017668776214123, -0.0011690891114994884, 0.019505027681589127, -0.03185296803712845, 0.0010896205203607678, 0.0016655628569424152, -0.01614932343363762, -0.03549705445766449, 0.003591651562601328, 0.0071439784951508045, 0.004748451989144087, -0.025888729840517044, 0.010611101984977722, -0.02384384721517563, -0.0030689614359289408, -0.025062911212444305, -0.0028231823816895485, -0.006416472606360912, 0.005269503220915794, 0.022362619638442993, -0.004368313588202, -0.007307831197977066, 0.026072245091199875, 0.014694311656057835, -0.020016247406601906, 0.007104653865098953, -0.005348152946680784, -0.0016286959871649742, -0.0013878325698897243, -0.008874263614416122, -0.006567216943949461, -0.00040635475306771696, -0.037804100662469864, -0.009700081311166286, -0.00597407016903162, -0.00177288637496531, 0.03649327903985977, 0.006095320917665958, -0.00748479226604104, -0.002172687090933323, 0.019269078969955444, 0.004882811103016138, -0.010624210350215435, 0.011004348285496235, 0.022873839363455772, -0.005993732251226902, 0.005833156872540712, -0.016791626811027527, 0.02017354592680931, -0.0034540153574198484, -0.019020022824406624, 0.004351928364485502, -0.0044633480720222, -0.02168099209666252, -0.01220375020056963, -0.030489712953567505, 0.009201969020068645, 0.008749735541641712, 0.005901975091546774, 0.013462139293551445, -0.01478606928139925, -0.03539218753576279, 0.030673228204250336, -0.0029952276963740587, 0.003630976192653179, -0.019976923242211342, 0.006059273611754179, 0.018010690808296204, -0.029100243002176285, -0.0028592299204319715, -0.001164992805570364, 0.025547916069626808, -0.017735417932271957, 0.018495695665478706, 0.0031771042849868536, 0.015113774687051773, 0.016739193350076675, 0.013842277228832245, 0.0001997979125007987, 0.026439273729920387, -0.003919356968253851, 0.00022406858624890447, -0.0006021587178111076, 0.015153099782764912, 0.031066475436091423, -0.017748527228832245, 0.047451745718717575, 0.0018072954844683409, 0.020514359697699547, -0.005354706663638353, -0.003991452045738697, -0.012498685158789158, 0.004990953952074051, 0.008028782904148102, -0.0062231263145804405, -0.005469403695315123, 0.03481542691588402, 0.03486785665154457, 0.0036113138776272535, 0.005544776096940041, 0.0012297146022319794, 0.030909176915884018, -0.013606329448521137, 0.015467696823179722, 0.017682984471321106, 0.02250680886209011, 0.0057348450645804405, -0.0007737944833934307, 0.01999003253877163, -0.04178899899125099, -0.012420035898685455, -0.023031137883663177, 0.0451446995139122, 0.020068680867552757, 0.0019711481872946024, 0.021209096536040306, 0.02510223723948002, 0.01078806258738041, 0.024879395961761475, 0.0052269017323851585, 0.007130870129913092, -0.0003287295112386346, 0.02962457202374935, -0.016555678099393845, 0.0078124976716935635, 0.014169982634484768, -0.0039881751872599125, -0.00390952592715621, -0.018338395282626152, -0.01689649187028408, -0.03709625452756882, 0.002220204332843423, -0.00240371935069561, 0.012544563971459866, 0.01854812726378441, -0.021602341905236244, -0.012911594472825527, 0.014169982634484768, 0.0014500966062769294, 0.030122684314846992, -0.011876044794917107, 0.01534972246736288, 0.01898069866001606, -0.003942296374589205, -0.01878407597541809, -0.6560400724411011, -0.010833941400051117, 0.02119598723948002, 0.002674076473340392, 0.009706635028123856, -0.006291944533586502, 0.0029935892671346664, -0.0013288455083966255, -0.022467484697699547, -0.0037194567266851664, -0.0017384773818776011, -0.0025315245147794485, 0.007137424312531948, -0.004115980118513107, 0.0015107220970094204, -0.002949348883703351, 0.005669304169714451, -0.0010248987236991525, -0.006373870652168989, -0.005757784470915794, -0.02168099209666252, -0.007255398202687502, -0.02655724808573723, 0.004417469259351492, -0.01150901522487402, -0.017761634662747383, -0.0021284467075020075, -0.011351716704666615, -0.025692105293273926, 0.008749735541641712, -0.031302422285079956, 0.010925699025392532, 0.02930997498333454, -0.0017597782425582409, 0.03625733032822609, -0.0019105226965621114, -0.020252196118235588, 0.010938807390630245, 0.00954933650791645, 0.020579900592565536, -0.009149535559117794, 0.004886087961494923, 0.005901975091546774, 0.0075372252613306046, 0.012374157086014748, 0.007832160219550133, 0.017001358792185783, -0.00024721279623918235, -0.0003311873006168753, -0.030935393646359444, 0.008749735541641712, -0.022873839363455772, -0.01116164680570364, -0.01329828705638647, 0.0012706777779385448, 0.0028248208109289408, 0.013776736333966255, 0.004168413113802671, 0.0014410846633836627, -0.011102660559117794, -0.013947143219411373, 0.001262485166080296, -0.004541997332125902, -0.01701446622610092, -0.049785010516643524, 0.01348835602402687, 0.0065606627613306046, 0.0057250140234827995, 0.00869730208069086, -0.007701077964156866, 0.011607326567173004, 0.026019811630249023, 0.01633283868432045, -0.007937025278806686, -0.00507615739479661, -0.002113700145855546, 0.024866288527846336, -0.02345060184597969, -0.011024011299014091, 0.025521699339151382, -0.005063049029558897, -0.011685975827276707, -0.005669304169714451, -0.01201368123292923, 0.012498685158789158, 0.0004354385891929269, 0.0005394850741140544, -0.018888941034674644, 0.03866923972964287, 0.014563229866325855, 0.023542357608675957, 0.01828596368432045, -0.004165136255323887, -0.02037017047405243, 0.011744963005185127, 0.01904623955488205, -0.00354577274993062, -7.290165740414523e-06, 0.012538010254502296, 0.001286243787035346, -0.020973147824406624, -0.030227549374103546, 0.05411072075366974, 0.01251834724098444, 0.026635898277163506, 0.02402736246585846, -0.022847622632980347, 0.013816061429679394, 0.029493488371372223, 0.005675858352333307, 0.0022808299399912357, -0.02288694679737091, -0.003037829417735338, -0.022349510341882706, 0.01361943781375885, -0.02598048746585846, 0.018810292705893517, -0.010493127629160881, 0.0016090336721390486, -0.042968735098838806, 0.0032000436913222075, -0.014838501811027527, 0.015048233792185783, -0.02439439296722412, 0.015336614102125168, 0.01582161895930767, 0.015271073207259178, -0.0018679209752008319, 0.022467484697699547, 0.0007193134515546262, -0.003762058448046446, -0.01740771345794201, 0.01503512542694807, -0.005167914554476738, 0.014812286011874676, 0.0051515293307602406, 0.011148539371788502, -0.010833941400051117, 0.01929529570043087, -0.010139206424355507, 0.0019498473266139627, 0.01078150887042284, -0.006524615455418825, 0.00650822976604104, -0.004378144629299641, -0.038878973573446274, -0.02818266674876213, 0.009247847832739353, -0.015336614102125168, -0.012000572867691517, 0.007963242009282112, -0.004817269742488861, 0.0009528035297989845, 0.015205532312393188, 0.005636533722281456, -0.007845268584787846, -0.022100454196333885, -0.04236575961112976, -0.013645654544234276, -0.015507020987570286, -0.03510380536317825, 0.017053790390491486, -0.012531455606222153, 0.00023062269610818475, -0.00030148899531923234, -0.01311477180570364, -0.02988673560321331, 0.00709154549986124, 0.010676642879843712, -0.016568787395954132, 0.004214291926473379, 0.01280017476528883, 0.00036928305053152144, 0.035339754074811935, 0.0001542263780720532, 0.01949192024767399, -0.01595270074903965, -0.015480805188417435, 0.018246639519929886, -0.0057250140234827995, -0.003047660458832979, 0.02005557343363762, -0.0005112204817123711, -0.009313388727605343, 0.02912645973265171, -0.008415475487709045, 0.03295405954122543, 0.021641667932271957, -0.03992763161659241, 0.0373322032392025, -0.006894922349601984, 0.006275559309870005, -0.02440750040113926, 0.003775166580453515, 0.022087346762418747, 0.01103711873292923, -0.00769452378153801, -0.013147542253136635, 0.000849576317705214, -0.012295507825911045, 0.008933249861001968, 0.016555678099393845, -0.014012684114277363, -0.005688966251909733, -0.0159002672880888, -0.01005400251597166, 0.00658687949180603, -0.030568363144993782, 0.03977033123373985, 0.008166419342160225, 0.016988249495625496, -0.017197981476783752, -0.005092542618513107, -0.008304055780172348, -0.005764338653534651, 0.017682984471321106, 0.006006840616464615, 0.008100878447294235, -0.019570568576455116, -0.00033835586509667337, 0.013009905815124512, -0.043545499444007874, 0.03507759049534798, -0.02541683427989483, 0.010362045839428902, 0.02649170719087124, 0.02394871413707733, 0.031171340495347977, -0.000655410869512707, -0.02012111432850361, 0.01570364460349083, 0.023817630484700203, -0.0017040682723745704, 0.002393888309597969, 0.016490137204527855, -0.00111583701800555, 0.016686759889125824, -0.026531031355261803, 0.03007025085389614, 0.013947143219411373, 0.00196950975805521, -0.0017565011512488127, 0.033583253622055054, -0.026583464816212654, 0.03932465240359306, 0.014091333374381065, 0.01219719648361206, 0.0022038191091269255, -0.003680132096633315, 0.019255971536040306, -0.021838290616869926, 0.019767191261053085, 0.0059052519500255585, -0.00917575228959322, 0.0003959091263823211, 0.0018990529933944345, 0.010748738422989845, 0.005643087439239025, 0.020566793158650398, 0.022362619638442993, -0.003650638507679105, -0.001019163872115314, 0.023634115234017372, 0.0018793906783685088, 0.001843343023210764, 0.0034638463985174894, -0.009568998590111732, -0.009477240964770317, 0.013501464389264584, -0.03523488715291023, 0.012806728482246399, 0.008251623250544071, 0.012433144263923168, -0.0055677155032753944, -0.0178533922880888, 0.013514571823179722, -0.020986255258321762, 0.004161858931183815, -0.03607381507754326, 0.039062488824129105, -0.007084991317242384, -0.012596997432410717, 0.007157086860388517, 0.010794617235660553, -0.005135144107043743, -0.012295507825911045, -0.010257179848849773, 0.0002343093801755458, -0.007137424312531948, 0.009686972945928574, -0.021589234471321106, 0.023634115234017372, -0.03185296803712845, 0.014117550104856491, 0.01034238375723362, 0.027920503169298172, -0.002633113181218505, -0.012813282199203968, -0.014261740259826183, -0.006029780022799969, 0.016254190355539322, -0.011050227098166943, -0.02401425503194332, -0.030148901045322418, 0.01621486432850361, -0.014025792479515076, -0.05395342409610748, -0.04129088670015335, -0.034579478204250336, -0.02622954361140728, 0.009274063631892204, -0.001214967924170196, -0.012420035898685455, 0.009038115851581097, -0.003689963137730956, 0.002164494479075074, -0.0005902794073335826, -0.024106012657284737, 0.035287320613861084, -0.003686686046421528, -0.008297502063214779, -0.002577403327450156, -0.008848046883940697, 0.0260984618216753, 0.08200500905513763, 0.02106490544974804, 0.00226116762496531, 0.021222203969955444, -0.01563810370862484, -0.010774955153465271, -0.03945573419332504, -0.014130658470094204, 0.006236234679818153, 0.0025675720535218716, -0.02232329361140728, -0.020566793158650398, 0.0013018097961321473, 0.00838925875723362, 0.019137997180223465, 0.006596710532903671, -0.0005538222030736506, -0.020317737013101578, 0.0027363402768969536, -0.008664531633257866, 0.01898069866001606, 0.0027592796832323074, 0.011843274347484112, 0.0027756651397794485, 0.03696517273783684, -0.004817269742488861, 0.010067110881209373, 0.04614092409610748, 0.008225406520068645, -0.018194206058979034, 0.026845630258321762, 0.04302116855978966, -0.0014836863847449422, 0.0013214722275733948, -0.011305837891995907, 0.03513002395629883, -0.025193994864821434, 0.002949348883703351, 0.008166419342160225, 0.004260170739144087, -0.0026757149025797844, 0.021274637430906296, 0.001054392196238041, -0.013606329448521137, -0.012465914711356163, -0.021222203969955444, 0.01103711873292923, 0.016057565808296204, 0.000861865293700248, -0.03020133264362812, -0.0066262041218578815, 0.02799915336072445, -0.02672765590250492, 0.013449030928313732, -0.029545921832323074, 0.026059135794639587, -0.001274774200282991, -0.003193489508703351, -0.020475035533308983, -0.06333890557289124, -0.012033343315124512, -0.020907606929540634, 0.013947143219411373, -0.0159002672880888, 0.00696701742708683, -0.01841704547405243, -0.01496958453208208, -0.012433144263923168, -0.006390255875885487, 0.008330272510647774, 0.001129764481447637, -0.01884961687028408, -0.011141984723508358, -0.0002384057006565854, 0.03261324390769005, 0.0023250700905919075, 0.0030624072533100843, 0.0043158805929124355, -0.014641879126429558, 0.02573143132030964, 0.006947355344891548, 0.0013780014123767614, -0.0053317672573029995, -0.03775166720151901, -0.03741085156798363, 0.005823325831443071, -0.009654202498495579, -0.0068162730894982815, -0.004374867770820856, -0.023988038301467896, -0.0070587750524282455, -0.031931616365909576, 0.0004041017673444003, -0.0060723815113306046, 0.010099881328642368, -0.006688468158245087, -0.012092330493032932, -0.004656694363802671, 0.010447249747812748, 0.0027019314002245665, -0.009326497092843056, -0.02017354592680931, 0.0005562799633480608, -0.010250626131892204, -0.0036670237313956022, 0.007615874521434307, 0.00973940547555685, 0.021287744864821434, -0.018299071118235588, -0.02540372498333454, 0.0031541648786514997, -0.007170194759964943, 0.00517119187861681, -0.019570568576455116, 0.016372162848711014, -0.016870275139808655, 0.019754083827137947, 0.008605544455349445, 0.0198589488863945, -0.0005005700513720512, 0.017184872180223465, -0.031931616365909576, 0.024119120091199875, -0.016608111560344696, -0.013127880170941353, 0.003267223248258233, 0.018390828743577003, -0.028706995770335197, -0.028523480519652367, -0.01293125655502081, 0.00036395786446519196, -0.011194417253136635, -0.021733423694968224, -0.016568787395954132, -0.06312917172908783, -0.030411064624786377, 0.002062905812636018, 0.007032558787614107, 0.0175256859511137, 0.008959466591477394, -0.03263946250081062, 0.03145972266793251, -0.023057354614138603, -0.013632546178996563, 0.011377932503819466, -0.028392398729920387, -0.016372162848711014, -0.0014869633596390486, 0.007766618859022856, 0.01967543363571167, -0.0023594792000949383, 0.018390828743577003, -0.021392611786723137, 0.003277054289355874, -0.007740402594208717, -0.013973359949886799, 0.0010470189154148102, -0.002400442259386182, 0.03544462099671364, 0.009398591704666615, 0.027946719899773598, -0.007628982421010733, 0.012570780701935291, -0.01157455611974001, 0.0014124104054644704, -0.008848046883940697, 0.0021956264972686768, -0.021707208827137947, 0.0013485078234225512, -0.0031836582347750664, 0.005259672179818153, 0.034264881163835526, 0.02346370927989483, 0.01727662980556488, 0.0012780511751770973, 0.008454800583422184, -0.008979128673672676, 0.01141070295125246, -0.02352925017476082, -0.03979654982686043, -0.011187863536179066, -0.010171976871788502, -0.02736995741724968, 0.011620434932410717, -0.03877410665154457, -0.019242864102125168, 0.024132227525115013, 0.004791053477674723, 0.006344377063214779, 0.004886087961494923, 0.007261952385306358, -0.0009773814817890525, -0.00819918978959322, -0.012636321596801281, 0.021405719220638275, -0.016975142061710358, -0.014890935271978378, -0.04986365884542465, -0.010283396579325199, 0.018312180414795876, 0.02307046204805374, 0.03069944493472576, 0.010899483226239681, 3.61500060535036e-05, 0.0030787924770265818, 0.02225775271654129, -0.047320663928985596, -0.019819624722003937, -0.015507020987570286, -0.0015533238183706999, 0.0039062488358467817, -0.016188649460673332, 0.0027478099800646305, 0.0062231263145804405, -0.017132440581917763, 0.007170194759964943, 0.011640097014605999, 0.020645443350076675, -0.025993594899773598, -0.0010224409634247422, 0.024119120091199875, -0.003916080109775066, 0.051043398678302765, 0.01828596368432045, -0.005836433731019497, -0.003919356968253851, 0.024630339816212654, -0.002503669587895274, -0.03211513161659241, 0.0011264873901382089, 0.0023643947206437588, 0.036729224026203156, 0.0070391129702329636, -0.007294722832739353, 0.0012059559812769294, 0.021707208827137947, -0.004037330858409405, -0.0035785434301942587, -0.02805158495903015, 0.008317164145410061, 0.016188649460673332, -0.0182335302233696, -0.02346370927989483, -0.0049188584089279175, 0.003142695175483823, 0.0443844236433506, -0.01116164680570364, -0.005823325831443071, 0.023358844220638275, -0.015375939197838306, -0.009142981842160225, 0.022231535986065865, 0.006400087382644415, 0.019518135115504265, -0.011063335463404655, 0.0014853249303996563, 0.0037325648590922356, 0.001784356078132987, -0.004276555962860584, -0.000983935547992587, -0.0007971434970386326, 0.0004907388938590884, -0.025639673694968224, 0.0060002864338457584, 0.002085844986140728, 0.017053790390491486, -0.015978917479515076, 0.0015230110147967935, -0.007511008530855179, 0.02269032411277294, -0.0030804311390966177, -0.020278412848711014, 0.02907402627170086, 0.02459101565182209, 0.020068680867552757, -0.04336198419332504, -0.007838713936507702, 0.002135000890120864, -0.028077801689505577, -0.022362619638442993, 0.009857379831373692, -0.007150532677769661, 0.0005513643845915794, 0.01903313212096691, 0.02484007179737091, 0.0006054358091205359, -0.008271285332739353, -0.02394871413707733, 0.005181022919714451, -0.024695882573723793, 0.009149535559117794, 0.006282113026827574, 0.010506235994398594, 0.016883384436368942, -0.007740402594208717, -0.009936029091477394, 0.004053716082125902, 0.020396387204527855, -0.01576918549835682, -0.007347155828028917, 0.006075658835470676, 0.01563810370862484, -0.026950495317578316, 0.013829169794917107, -0.007583103608340025, -0.01141070295125246, 0.032062698155641556, -0.012092330493032932, -0.019976923242211342, -0.0077469563111662865, 0.005564438179135323, 0.002583957277238369, -0.010709413327276707, -0.005158083513379097, 0.012249629013240337, 0.016175540164113045, 0.009582106955349445, 0.008022229187190533, -0.02415844425559044, 0.0159002672880888, -0.006629480980336666, -0.0003981621121056378, 0.013167204335331917, -0.0036113138776272535, 0.0014500966062769294, -0.013258961960673332, -0.0011707276571542025, -0.020632334053516388, -0.024171553552150726, -0.003922634292393923, -0.012603551149368286, -0.0015443118754774332, 0.0013067254330962896, -0.003896417561918497, -0.01071596797555685, -0.00040225841803476214, -0.0020678213331848383, 0.042024943977594376, 0.005344875622540712, -0.0035031710285693407, 0.00043666749843396246, 0.0022546134423464537, 0.0006083032349124551, 0.011869491077959538, -0.005105650518089533, -0.016424596309661865, -0.01808934099972248, -0.026780087500810623, -0.02813023515045643, -0.011259959079325199, 0.015677427873015404, 0.013311394490301609, 0.010689751245081425, -0.03298027440905571, -0.010774955153465271, -0.016660545021295547, -0.057728588581085205, -0.027527255937457085, -0.007366818375885487, 0.019439486786723137, 0.01195469405502081, 0.013167204335331917, -0.019819624722003937, 0.022847622632980347, -0.022113563492894173, 0.0023021306842565536, -0.05329801142215729, -0.0049942308105528355, 0.005256395321339369, -0.039429519325494766, 0.0053874775767326355, -0.01157455611974001, -0.02168099209666252, 0.025967378169298172, 0.01828596368432045, -0.02187761478126049, -0.01671297661960125, 0.018954481929540634, -0.003929188009351492, -0.013724303804337978, 0.018626777455210686, 0.0009323219419457018, -0.018115555867552757, 0.013108217157423496, 0.04084520414471626, -0.034841641783714294, 0.0010650426847860217, 0.01195469405502081, 0.010879820212721825, 0.0008995514363050461, 0.02321465313434601, 0.008598990738391876, 0.01440593134611845, 0.009254401549696922, 0.01065698079764843, -0.005289165768772364, -0.011935031972825527, 0.011148539371788502, 0.027317525818943977, -0.0029673727694898844, -0.010486573912203312, 0.026124676689505577, 0.011515568941831589, -0.019308404996991158, 7.9046139944694e-06, 0.027605906128883362, -0.018613668158650398, -0.009942582808434963, -0.0016442619962617755, -0.01721108891069889, 0.0074716839008033276, -0.017997583374381065, 0.0036113138776272535, -0.008087770082056522, -0.003824322484433651, 0.003726010909304023, -0.006344377063214779, -0.015061342157423496, -0.008933249861001968, 0.008271285332739353, -0.041212234646081924, 0.007838713936507702, -0.009437916800379753, 0.014025792479515076, 0.004289664328098297, -0.0047386204823851585, 0.01078806258738041, -0.0004723054589703679, -0.03405514732003212, 0.033006493002176285, -0.0091167651116848, -0.02983430214226246, 0.03064701147377491, 0.01620175689458847, 0.0028297363314777613, 0.016359055414795876, 0.19788165390491486, -0.0024790915194898844, 0.003644084557890892, 0.021458152681589127, -0.009031562134623528, 0.0014541929122060537, 0.008028782904148102, -0.0016729362541809678, 1.6180456441361457e-05, -0.006419749464839697, 0.009221631102263927, 0.014825394377112389, -0.0027854961808770895, -0.0035490498412400484, 0.011377932503819466, -0.009955691173672676, -0.012590442784130573, -0.03290162608027458, 0.001359158311970532, 0.04100250452756882, 0.0037555042654275894, -0.01917732134461403, 0.010126098059117794, 0.004689464811235666, 0.010735630057752132, 0.007583103608340025, -0.016922708600759506, -0.008251623250544071, 0.028208883479237556, 0.007845268584787846, -0.0010478381300345063, -0.015860943123698235, -0.0023840570356696844, 0.022087346762418747, 0.003358980640769005, -0.013881602324545383, 0.011017456650733948, -0.009890150278806686, 0.0032754158601164818, -0.011358270421624184, -0.014445255510509014, 0.0100933276116848, 0.022808298468589783, -0.02017354592680931, 0.013514571823179722, -0.001468120375648141, -0.0011494267964735627, -0.013462139293551445, 0.021235311403870583, -0.0040930407121777534, -0.010827387683093548, 0.008212298154830933, -0.01182361226528883, 0.02591494657099247, -0.013776736333966255, 0.01510066632181406, -0.013285178691148758, 0.010879820212721825, -0.0001869969128165394, 0.01084704976528883, -0.01822042278945446, 0.016477029770612717, 0.002998504787683487, 0.009090548381209373, -0.01790582574903965, 0.010958469472825527, -0.011377932503819466, 0.022270862013101578, -0.018902050331234932, 0.005430079065263271, -0.006052719429135323, 0.006419749464839697, -0.01613621599972248, -0.0010494766756892204, -0.010958469472825527, -0.029152676463127136, 0.02161545120179653, 0.03235108032822609, 0.023437492549419403, 0.021982479840517044, 0.011351716704666615, 0.0002508994657546282, -0.0023234314285218716, 0.0019482087809592485, 0.007596211973577738, -0.000691458466462791, 0.03680787608027458, -0.011109214276075363, 0.019583676010370255, -0.000740614312235266, 0.00383743061684072, 0.0005292442510835826, -0.0006078935693949461, -0.01415687520056963, -0.004987676627933979, 0.0076420907862484455, 0.01348835602402687, -0.0014779515331611037, -0.0025053080171346664, 0.010997794568538666, -0.02634751796722412, 0.06816273182630539, 0.0357067845761776, 0.011528677307069302, -0.014117550104856491, -0.006695021875202656, 0.0053121051751077175, 0.014746744185686111, 0.011980910785496235, 0.013855385594069958, 0.007917363196611404, -0.012157871387898922, 0.012354495003819466, -0.0038800323382019997, 0.004351928364485502, 0.0013280262937769294, -0.01318031270056963, -0.006436134688556194, 0.004328988958150148, -0.005233455915004015, 0.002818266861140728, -0.014012684114277363, -0.004925412591546774, 0.02010800503194332, -0.03371433541178703, -0.008972574956715107, -0.023870063945651054, -0.006619649939239025, -0.02394871413707733, -0.011908815242350101, 0.012354495003819466, -0.000266875111265108, 0.014759852550923824, -0.01892826519906521, -0.03557570278644562, -0.011024011299014091, 0.0024201045744121075, -0.010584885254502296, -0.017381496727466583, 0.01746014505624771, -0.022624783217906952, -0.01879718340933323, 0.015061342157423496, 0.028602130711078644, 0.011266512796282768, -0.023686548694968224, 0.009909812361001968, 0.009955691173672676, -0.015913376584649086, -0.014104441739618778, 0.0033344028051942587, 0.006504952907562256, -0.01949192024767399, -0.0017941872356459498, 0.03523488715291023, -0.0030738769564777613, -0.02068476751446724, 0.0009233100572600961, -0.006010117474943399, -0.014117550104856491, -0.031617019325494766, -0.0035490498412400484, 0.016804734244942665, -0.011364824138581753, -0.02849726565182209, 0.01696203276515007, -0.16558299958705902, 0.014117550104856491, -0.013855385594069958, -5.0333506806055084e-05, 0.015520129352807999, -0.004915581550449133, 0.003919356968253851, 0.0006037972634658217, -0.003965235780924559, 0.0012190642300993204, 0.022729648277163506, -0.01472052838653326, -0.0295721385627985, -0.014340389519929886, 0.034395962953567505, 0.011869491077959538, 0.022808298468589783, 0.015218640677630901, 0.04931311309337616, 0.01390781905502081, 0.038564376533031464, -0.0073995888233184814, -0.01200712751597166, -0.01860056072473526, 0.01157455611974001, -0.004483010154217482, -0.004568213596940041, 0.00017419592768419534, 0.020697874948382378, -0.018587451428174973, -0.0194788109511137, 0.013763627968728542, 0.036414626985788345, 0.003241006750613451, 0.015428371727466583, -9.733875776873901e-05, 0.008035337552428246, -0.003047660458832979, 0.0032000436913222075, 0.02383073978126049, 0.003971789963543415, -0.004017668776214123, -0.01891515776515007, 0.029598355293273926, 0.002510223537683487, -0.002549548400565982, 0.026635898277163506, 0.006203463766723871, -0.007937025278806686, -0.0037686126306653023, -0.001736838836222887, -0.04522335156798363, 0.011876044794917107, 0.008054999634623528, 0.0018843063153326511, 0.024433717131614685, 0.013311394490301609, 0.015048233792185783, -0.005531667731702328, -0.03539218753576279, 0.01770920120179653, -0.02314911223948002, 0.0022365895565599203, -0.010171976871788502, -0.019570568576455116, -0.012918148189783096, -0.006285390350967646, 0.009411700069904327, -0.01929529570043087, 0.01702757366001606, 0.016096891835331917, -0.014445255510509014, 0.00736026419326663, -0.004764837212860584, 0.006796610541641712, 0.01255111861974001, 0.014668094925582409, 0.011568001471459866, 0.03007025085389614, 0.009582106955349445, 0.003108286065980792, 0.02005557343363762, -0.006187078543007374, 0.027002928778529167, -0.02755347266793251, -0.006763840094208717, -0.007773173041641712, 0.012524901889264584, -0.0252857506275177, -0.02439439296722412, 0.015284181572496891, -0.022926272824406624, -0.012616659514605999, 0.01036859955638647, 0.020946931093931198, 0.004260170739144087, 0.016988249495625496, 0.0017876331694424152, 0.007687969598919153, -0.007714185863733292, 0.0007139882072806358, 0.0024020809214562178, -0.018613668158650398, 0.012039897963404655, 0.04962771013379097, 0.01746014505624771, 0.009621432051062584, -0.0013894709991291165, 0.02245437726378441, -0.01538904756307602, -0.02560034953057766, -0.010073665529489517, 0.029283758252859116, 0.004659971222281456, 0.009254401549696922, 0.037043821066617966, 0.015611886978149414, -0.008867708966135979, -0.020461928099393845, 0.0069211386144161224, 0.06249998137354851, -0.006590156350284815, -0.03355703502893448, -0.0013943866360932589, 0.0056299795396625996, -0.010755292139947414, -0.09815432876348495, -0.0041487510316073895, -0.01188259944319725, 0.024132227525115013, 0.015860943123698235, 0.0272388756275177, -0.011259959079325199, 0.022664107382297516, 0.015651211142539978, 0.03195783495903015, 0.004869702737778425, -0.008631761185824871, -0.007078437600284815, -0.013658762909471989, 0.026373732835054398, -0.01337038166821003, -0.0020366893149912357, -0.00748479226604104, -0.021772749722003937, 0.021956264972686768, 0.014025792479515076, -0.044541724026203156, 0.02199558913707733, -0.012734632939100266, -0.019898274913430214, -0.03083052672445774, -0.02687184512615204, 0.008907034061849117, 0.016044458374381065, -0.0022021804470568895, 0.01999003253877163, -0.02338505908846855, 0.020278412848711014, -0.009372375905513763, 0.010434141382575035, 0.009595215320587158, 0.0001146969007095322, -0.009287171997129917, -0.00800912082195282, -0.04178899899125099, -0.006953909527510405, 0.013540788553655148, -0.0037849978543817997, -0.03568056970834732, -0.0027035698294639587, -0.016857167705893517, -0.019124889746308327, 0.009103656746447086, -0.02369965799152851, -0.026399949565529823, -0.017945149913430214, -0.0027871348429471254, -0.014759852550923824, -0.027002928778529167, 0.00026032101595774293, 0.026898061856627464, 0.02660968154668808, 0.003726010909304023, -0.018023798242211342, -0.006934246979653835, -0.014392822980880737, -0.013789844699203968, 0.004935244098305702, 0.04367658123373985, 0.030411064624786377, 0.0018679209752008319, -0.017289739102125168, 0.002777303569018841, -0.0005280153709463775, -0.001177281723357737, -0.008526895195245743, 0.004109426401555538, -0.02156301774084568, -0.00374239613302052, -0.022650999948382378, 0.014012684114277363, 0.02478763833642006, -0.017682984471321106, 0.001045380369760096, 0.018312180414795876, -0.03460569307208061, -0.018390828743577003, -0.02269032411277294, 0.025259535759687424, 0.015847835689783096, 0.016568787395954132, -0.00935926754027605, 0.017578119412064552, 0.015480805188417435, -0.035156238824129105, 0.014956476166844368, 0.01631973125040531, -0.017433928325772285, 0.012819836847484112, 0.003388474229723215, 0.021916938945651054, -0.025272643193602562, -0.01721108891069889, 0.01689649187028408, 0.020252196118235588, -0.018128665164113045, -0.0194788109511137, -0.05316692963242531, 0.024748314172029495, 0.017814068123698235, 0.031040258705615997, 0.027894286438822746, -0.014117550104856491, 0.0008159865392372012, -0.0404781736433506, -0.003604759695008397, 0.0034867858048528433, -0.0028674225322902203, 0.01892826519906521, -0.007707631681114435, -0.02371276542544365, -0.027160227298736572, 0.012020234949886799, 0.021392611786723137, -0.0005042567499913275, 0.010833941400051117, 0.0029214939568191767, 0.008605544455349445, -0.003350788028910756, 0.00409959489479661, 0.017106223851442337, -0.010827387683093548, 0.0008270465768873692, -0.021602341905236244, 0.005983901210129261, -0.013724303804337978, -0.015061342157423496, 0.01355389691889286, -0.011168201453983784, 0.026452383026480675, 0.009726297110319138, 0.014235524460673332, -0.016568787395954132, 0.003337679896503687, 0.029414840042591095, 0.005040109623223543, -0.0004415830771904439, 0.0012444613967090845, -0.03447461128234863, 0.023725872859358788, -0.02533818408846855, -0.0318005345761776, -0.002813351107761264, -0.008808721788227558, -0.013881602324545383, -0.007084991317242384, 0.025325076654553413, 0.03224621340632439, -0.005259672179818153, -0.024931829422712326, -0.03253459557890892, 0.00643285783007741, -0.021078012883663177, 0.020776525139808655, -0.001958040054887533, 0.018390828743577003, 0.0028592299204319715, 0.014641879126429558, 0.014104441739618778, 0.016477029770612717, 0.0022251198533922434, -0.01238726545125246, 0.007189857307821512, -0.030856743454933167, -0.0017761634662747383, 0.0009806585730984807, -0.0055021741427481174, 0.03707003965973854, -0.0020334122236818075, 0.017302846536040306, 0.027789421379566193, -0.0031508877873420715, 0.0005308827967382967, -0.008330272510647774, 0.03460569307208061, -0.02502358704805374, 0.013947143219411373, 0.018613668158650398, -0.030227549374103546, -0.02157612517476082, 0.024630339816212654, 0.01361943781375885, 0.023057354614138603, -0.01188915316015482, -0.006940801162272692, -0.00923473946750164, -0.010552114807069302, -0.017748527228832245, -0.0031066476367413998, -0.0060625504702329636, 0.008035337552428246, -0.0025642949622124434, 0.014864718541502953, -0.010886374861001968, 0.012603551149368286, 0.00419462937861681, 0.012492131441831589, 0.012590442784130573, 0.0004915581666864455, -0.014982692897319794, -0.019387053325772285, -0.013475247658789158, -0.0319054014980793, -0.015205532312393188, -0.01355389691889286, -0.022297078743577003, 0.007969796657562256, 0.019137997180223465, 0.011082997545599937, 0.014628770761191845, 0.01046691183000803, -0.014995800331234932, -0.004096318036317825, 0.002354563446715474, -0.001152703887782991, -0.020094897598028183, 0.04079277440905571, 0.0007459394983015954, 0.016673652455210686, 0.026714546605944633, -0.019505027681589127, 0.04186764732003212, 0.01491715107113123, 0.0010871627600863576, -0.020409494638442993, 0.005056494846940041, 0.0012772319605574012, -0.02818266674876213, -0.014694311656057835, -0.013396598398685455, -0.017945149913430214, -0.0048041618429124355, 0.01286571566015482, -0.020697874948382378, 0.019976923242211342, 0.004689464811235666, 0.06910651922225952, 0.015323505736887455, -0.019439486786723137, 0.011876044794917107, 0.006373870652168989, 0.015139991417527199, 0.03423866257071495, 0.015651211142539978, 0.004381421487778425, -0.02742239087820053, 0.0022005420178174973, 0.008756289258599281, -0.0078124976716935635, 0.004538720473647118, -0.009280618280172348, -0.01318031270056963, -0.007176748942583799, 0.008789059706032276, -0.033137574791908264, 0.0063935332000255585, 0.009568998590111732, -0.022847622632980347, 0.0031132015865296125, -0.025941161438822746, -0.010820833966135979, -0.009339604526758194, 0.009575553238391876, 0.007412697188556194, -0.01879718340933323, -0.01348835602402687, 0.016227973625063896, -0.015362830832600594, -0.024551691487431526, 0.004342096857726574, -0.02136639505624771, 0.006459074094891548, -0.004879533778876066, -0.030044034123420715, 0.009333050809800625, -0.005682412069290876, -0.009700081311166286, 0.021012471988797188, -0.015507020987570286, -0.018443262204527855, -0.01677851751446724, -0.001360796857625246, -0.013842277228832245, -0.0029903121758252382, -0.027894286438822746]" +15,"Teams Phone provides the best-in-class calling. PSTN users have grown by double digits for five quarters in a row. We are bringing Teams Rooms to a growing hardware ecosystem, including Cisco's devices and peripherals, which will now run Teams natively. And we are creating a new category with Microsoft Places to help organizations evolve and manage the space for hybrid and in-person work.","[0.005196182522922754, -0.016121840104460716, -0.0032595789525657892, -0.011445275507867336, -0.003999693319201469, 0.01356477104127407, 0.0030048976186662912, -0.0066046216525137424, -0.0044988002628088, -0.012874226085841656, -0.0017443106044083834, 0.020456550642848015, -0.004286850802600384, -0.00040210591396316886, -0.00428343191742897, 7.878668839111924e-06, 0.008375425823032856, 0.0031484763603657484, 0.022425631061196327, -0.0155065031722188, -0.008970252238214016, -0.005493595730513334, 0.004382569808512926, 0.0038492772728204727, -0.023068316280841827, 0.009688145481050014, 0.00122725625988096, -0.0033826464787125587, 0.02243930473923683, -0.010337668471038342, 0.012361444532871246, -0.006960149854421616, -0.020046325400471687, -0.02070268616080284, -0.02587151899933815, -0.006960149854421616, 0.010385528206825256, -0.002341700717806816, 0.0155065031722188, 0.004874839913100004, 0.02349221520125866, -0.0027194495778530836, -0.008430122397840023, 0.007021683733910322, -0.017092706635594368, 0.01023511216044426, -0.017940504476428032, -0.008368588984012604, -0.010378691367805004, -0.0017776413587853312, 0.006238837726414204, 0.01324342843145132, -0.023697327822446823, -0.016983313485980034, 0.0036886059679090977, -0.017598649486899376, -0.024175923317670822, 0.01049492135643959, -0.0019092552829533815, 0.011540994979441166, -0.014795445837080479, 0.006078166421502829, -0.022999944165349007, 0.008683094754815102, -0.019690796732902527, 0.0069259642623364925, -0.00345956371165812, 0.007233633194118738, 0.004762027878314257, 0.0037877436261624098, 0.016367975622415543, 0.027553442865610123, 0.015205671079456806, -0.005650848615914583, 0.002440838376060128, -0.006102095823734999, 0.006296952720731497, -0.008771976456046104, -0.006146537140011787, 0.0013238301035016775, -0.0037433025427162647, -0.03886197507381439, -0.007096891291439533, -0.022329911589622498, 0.009134341962635517, -0.003821928985416889, 0.0045124744065105915, 0.002237435197457671, 0.0024733145255595446, 0.029809679836034775, 0.04167885333299637, 0.02587151899933815, -0.0008640362648293376, 0.027143217623233795, -0.012477675452828407, 0.026555227115750313, -0.012361444532871246, 0.018172964453697205, -0.011759781278669834, -0.013619467616081238, 0.01982753910124302, -0.005257716402411461, -0.0179952010512352, -0.010406039655208588, -0.02503739483654499, -0.0026459507644176483, -0.0029792585410177708, -0.012860551476478577, 0.03667410835623741, -0.002917724894359708, -0.034568287432193756, 0.012457164004445076, 0.01441256981343031, -0.004464614670723677, 0.01081626396626234, 0.006006376817822456, 0.01348272617906332, -0.013701513409614563, -0.01789948157966137, 0.009476196020841599, 0.03136853501200676, -0.023738350719213486, 0.01809092052280903, 0.011677736416459084, 0.007165262475609779, -0.01242297887802124, 0.005220112390816212, -0.02025143802165985, 0.025734778493642807, -0.025693755596876144, 0.00975651666522026, -0.012108473107218742, -0.006402927450835705, 0.011117096059024334, 0.0045124744065105915, 0.005062859505414963, -0.004710749723017216, -0.012074287049472332, -0.012614416889846325, 0.012860551476478577, -0.019813865423202515, -0.00999581441283226, -0.0027502162847667933, -0.015998773276805878, 0.0030852335039526224, 0.03060278110206127, 0.029290061444044113, 0.016080817207694054, 0.004881676752120256, 0.0013041734928265214, 0.029262712225317955, -0.017721718177199364, 0.011862337589263916, -0.003955252002924681, -0.003317694179713726, 0.006396090611815453, -0.004895350895822048, 0.025598036125302315, -0.010365016758441925, -0.00038714977563358843, -0.029317408800125122, 0.013031478971242905, 0.02194703370332718, 0.0015127044171094894, 0.012949434109032154, 0.026500530540943146, 0.018145617097616196, 0.02593989111483097, -0.001499884994700551, 0.008546353317797184, -0.012375119142234325, 0.002280167071148753, -0.014918513596057892, 0.024545125663280487, 0.004816724453121424, -0.01696963794529438, -0.013263939879834652, -0.003427087562158704, -0.016285929828882217, -0.02577580139040947, 0.01000948902219534, -0.010112044401466846, -0.0019058367470279336, 0.02580314874649048, 9.379622497363016e-05, -0.023834068328142166, 0.02268543839454651, 0.010453899390995502, 0.03166936710476875, 0.012655439786612988, 0.003473237855359912, 0.01661410927772522, 0.00973600521683693, -0.012559720315039158, -0.6528593301773071, -0.022097449749708176, 0.024066530168056488, -0.0005230368115007877, 0.012252051383256912, 0.0028322613798081875, 0.03177876025438309, -0.0042458283714950085, -0.04036613553762436, 0.0021724828984588385, -0.004697075579315424, 0.0020101021509617567, -0.007445582654327154, 0.007568650413304567, -0.002090438036248088, -0.00594484293833375, 0.01613551378250122, 0.002153680892661214, 0.010802590288221836, -0.0003777488018386066, -0.01680554822087288, 0.006105514708906412, -0.012559720315039158, -0.010713707655668259, 0.015930401161313057, -0.013906625099480152, 0.013414355926215649, 0.00014795873721595854, -0.03355640172958374, -4.625713700079359e-05, -0.036619413644075394, 0.02641848661005497, 0.017147403210401535, -0.01818663999438286, 0.04077636078000069, 0.010583803057670593, -0.037494558840990067, 0.02718423865735531, 0.007561813108623028, 0.031833454966545105, -0.011643551290035248, 0.005685034207999706, -0.009715493768453598, 0.007650695275515318, -0.0010059057967737317, 0.005093626212328672, 0.016532065346837044, -0.020101021975278854, 0.0003506141365505755, -0.026650946587324142, 0.019212201237678528, -0.04657420516014099, -0.013879276812076569, -0.004444103688001633, 0.019294247031211853, -0.0004256083630025387, 0.01594407670199871, -0.004666308872401714, -0.014262153767049313, -0.020456550642848015, -0.012074287049472332, 0.003384355688467622, -0.016176536679267883, -0.04638276621699333, -0.03689289465546608, 0.028196128085255623, -0.01242297887802124, 0.008539515547454357, 0.005428643431514502, -0.004782539326697588, 0.0003630063438322395, 0.044523078948259354, 0.005749986041337252, -0.004037297330796719, -0.0008973670774139464, 0.02577580139040947, 0.026787688955664635, -0.02760813944041729, -0.00825919583439827, 0.007637021131813526, 0.010241948999464512, -0.030520735308527946, -0.018979741260409355, -0.01861053891479969, 0.0359904021024704, 0.0020579618867486715, -0.018432773649692535, -0.002406653016805649, 0.029618240892887115, 0.012587068602442741, 0.023793047294020653, 0.0008042118279263377, 0.007233633194118738, -0.02144109085202217, 0.02510576695203781, 0.019663449376821518, -0.01687391847372055, -0.013626305386424065, -0.0029963513370603323, -0.011301697231829166, -0.015957750380039215, -0.01531506422907114, 0.024545125663280487, 0.01992325857281685, 0.018528493121266365, 0.014549311250448227, -0.026309093460440636, 0.020620640367269516, 0.015738964080810547, -0.009298431687057018, -0.0010093243326991796, -0.009612937457859516, -0.009120668284595013, 0.0023246079217642546, 0.011862337589263916, -0.030001116916537285, 0.030575431883335114, 0.002656206488609314, -0.010529106482863426, -0.02375202439725399, -0.0006875540711916983, -0.016217559576034546, -0.0028835395351052284, -0.013414355926215649, 0.021810293197631836, 0.013093012385070324, 0.007178936619311571, 0.0018801976693794131, 0.007438745815306902, -0.0017520023975521326, -0.02703382447361946, -0.03656471520662308, 0.030329298228025436, 0.009455684572458267, 0.0068507567048072815, 0.0189660657197237, -0.0046697272919118404, -0.040803708136081696, 0.01970447227358818, 0.003451017430052161, -0.015862030908465385, 0.003811673494055867, -0.009065970778465271, 0.019102808088064194, -0.010624825954437256, -0.04405815899372101, -0.043565887957811356, -0.0020579618867486715, -0.021523134782910347, -0.01184182707220316, 0.0026852639857679605, -0.017106380313634872, 0.019048111513257027, 0.005189345683902502, 0.007185773458331823, -0.002716030925512314, -0.0030715593602508307, -0.02725261077284813, -0.02413490042090416, -0.011288022622466087, -0.0013879276812076569, 0.0009059134172275662, -0.011807641014456749, -0.0013323763851076365, 0.008895044215023518, 0.0009520637104287744, -0.029208015650510788, 0.012040101923048496, 0.02706117182970047, -0.0038937183562666178, 0.014658704400062561, 0.02915331907570362, 0.0026203119195997715, 0.00615337397903204, -0.005555129610002041, -0.01007785927504301, -0.024271642789244652, -0.01381774339824915, -0.005168834235519171, 0.0022682021372020245, 0.019225874915719032, 0.0044782888144254684, -0.032735951244831085, 0.003109163139015436, 0.035498131066560745, -0.01306566409766674, 0.023328125476837158, 0.023095663636922836, -0.03558017686009407, 0.030766870826482773, -0.00790366716682911, 0.002999769989401102, -0.022070102393627167, 0.009872746653854847, 0.005124393384903669, 0.012128984555602074, -0.00999581441283226, -0.01050859596580267, 0.0019690797198563814, 0.005582477897405624, 0.004785957746207714, 0.0033125663176178932, -0.0035518642980605364, -0.0010725673055276275, 0.011062399484217167, -0.007090054452419281, -0.011281185783445835, -0.032708603888750076, 0.025980912148952484, 0.016354301944375038, 0.011349556967616081, -0.031067702919244766, -0.01925322413444519, 0.00366809475235641, -0.009626612067222595, 0.04148741438984871, -0.010980354622006416, 0.012258888222277164, -0.021331697702407837, 0.0016614110209047794, 0.01431685034185648, -0.02734833024442196, 0.03361109644174576, -0.015178322792053223, -0.02053859457373619, -0.008628398180007935, 0.01822766102850437, 0.032188985496759415, 0.004174038767814636, -0.005066277924925089, 0.002917724894359708, 0.010303483344614506, -0.001400747220031917, 0.018104594200849533, 0.010016325861215591, -0.01132904551923275, 0.014002344571053982, -0.016860244795680046, 0.041733551770448685, 0.010542781092226505, 0.010761567391455173, 0.0004931245930492878, 0.027485070750117302, -0.00686101196333766, 0.030520735308527946, 0.01822766102850437, 0.021003516390919685, -0.02053859457373619, -0.015383435413241386, 0.006700340658426285, -0.017625998705625534, 0.014344198629260063, -0.024996373802423477, -0.004078319761902094, 0.003052757354453206, 0.0037877436261624098, 0.0077327401377260685, 0.007773762568831444, 0.04444103688001633, 0.014959536492824554, -0.009585589170455933, 0.0055004325695335865, 0.042444609105587006, 0.015369760803878307, -0.00733618950471282, -0.000545684655662626, 0.008628398180007935, -0.013455377891659737, 0.012375119142234325, 0.0008157494012266397, 0.012799018062651157, 0.027949992567300797, 0.0024818608071655035, -0.009647123515605927, -0.020784730091691017, 0.018815651535987854, -0.024080203846096992, 0.020620640367269516, -0.02670564316213131, 0.02111290954053402, 0.0018750698072835803, -0.006563599221408367, 0.011335882358253002, 8.806749974610284e-06, -0.015246693976223469, -0.006167048122733831, -0.022548697888851166, 0.0013998926151543856, -0.01754395291209221, 0.01934894360601902, -0.004550078418105841, 0.009264246560633183, -0.024886980652809143, 0.023095663636922836, 0.010084696114063263, -0.0012383665889501572, 0.003982600290328264, -0.003671513171866536, -0.013455377891659737, 0.004826980177313089, -0.014303176663815975, -0.008047246374189854, -0.020429201424121857, -0.009045460261404514, 0.018842998892068863, -0.008170313201844692, -0.025242507457733154, -0.044304292649030685, -0.01401601918041706, -0.0340760201215744, 0.00357921258546412, -0.008156639523804188, -0.01449461467564106, -0.013168220408260822, 0.00310574471950531, -0.013455377891659737, -0.008696768432855606, -0.027881622314453125, 0.05598203092813492, 0.0033809372689574957, -0.009004437364637852, 0.0027126125060021877, -0.0003907819918822497, 0.004013367462903261, 0.07597365975379944, 0.02356058545410633, 0.00842328555881977, 0.010419713333249092, -0.023328125476837158, -0.008313892409205437, -0.02098984271287918, -0.03817826882004738, 0.01694229058921337, -0.010700033977627754, -0.02044287696480751, -0.003326240461319685, 0.006614877376705408, -0.003504004795104265, 0.018665235489606857, 0.03372048959136009, 0.005052603781223297, 0.010515432804822922, 0.011294860392808914, -0.010071022436022758, -0.005996121093630791, 0.0007217394886538386, 0.0011981986463069916, -0.0039039740804582834, 0.038998719304800034, 0.002851063385605812, 0.005032092798501253, 0.03533404320478439, 0.013831418007612228, -0.010597477667033672, -0.009031785652041435, 0.021044539287686348, 0.005910657811909914, 0.009004437364637852, -0.014371546916663647, 0.03615448996424675, -0.017598649486899376, 0.015834683552384377, 0.021974382922053337, 0.00834124069660902, -0.00446803355589509, 0.009407825767993927, 0.012894737534224987, -0.017817435786128044, 0.00645078718662262, -0.005602988880127668, 0.0282781720161438, 0.018925044685602188, 0.012204191647469997, -0.018405426293611526, -0.005784171633422375, 0.0019126738188788295, -0.00502867391332984, -0.00408173818141222, -0.019745493307709694, 0.009606100618839264, -0.023601608350872993, -0.015451806597411633, -0.029125971719622612, -0.03995591029524803, -0.02098984271287918, -0.020388180390000343, 0.007438745815306902, -0.009544567205011845, -0.006310626864433289, -0.002136588329449296, -0.026240721344947815, -0.0005666231736540794, -0.031477928161621094, 0.010419713333249092, 0.012682788074016571, -0.023711001500487328, -0.015998773276805878, 0.01902076229453087, 0.06487023830413818, 0.00922322366386652, 0.01687391847372055, 0.0061157699674367905, -0.01777641475200653, 0.04290952906012535, 0.022890551015734673, 0.0017742228228598833, 0.0010118881473317742, -0.032763298600912094, -0.020388180390000343, 0.023574259132146835, -0.011547831818461418, 0.015287715941667557, 0.0017015788471326232, -0.002962165977805853, 0.007999386638402939, -0.037877436727285385, 0.020593293011188507, -0.011363230645656586, 0.008457470685243607, 0.0009033494861796498, 0.004597937688231468, -0.022452978417277336, -0.004871421027928591, 0.002078473102301359, -0.012347770854830742, -0.03681085258722305, 0.006884941831231117, 0.003122837282717228, 0.018938718363642693, 0.004307361785322428, 0.015246693976223469, 0.014262153767049313, -0.007192610763013363, -0.009209549985826015, 0.016545739024877548, -0.022124798968434334, -0.005220112390816212, -0.009975302964448929, 0.006351649295538664, 0.002416908508166671, 0.0057773347944021225, -0.005965354386717081, -0.007185773458331823, 0.004560334142297506, 0.020319808274507523, -0.01706535741686821, 0.014057041145861149, -0.028688397258520126, -0.02915331907570362, -0.0066935038194060326, 0.021331697702407837, -0.03161466866731644, -0.02805938571691513, -0.01439889520406723, -0.00016430363757535815, 0.004950047470629215, 0.005767079070210457, -0.011383742094039917, -0.03500586003065109, -0.007267818786203861, 0.007548138964921236, 0.02304096706211567, 0.016367975622415543, 0.005356853827834129, -0.026746666058897972, 0.017366189509630203, -0.014344198629260063, 0.003941577859222889, -0.015369760803878307, -0.02420327067375183, -0.026268070563673973, -0.013352821581065655, -0.001840884448029101, 0.02641848661005497, -0.00792417861521244, 0.020880449563264847, -0.007568650413304567, -0.004218479618430138, -0.015082603320479393, -0.024353686720132828, -0.0050218370743095875, -0.0315052755177021, 0.01960875280201435, 0.012764832936227322, 0.01324342843145132, -0.013728861697018147, -0.02442205883562565, 0.022972596809267998, -0.0011084619909524918, -0.018583189696073532, -0.009947954677045345, -0.00248357024975121, -0.015397109091281891, 0.016532065346837044, -0.019499359652400017, 0.018200313672423363, 0.008970252238214016, 0.023410169407725334, -0.008689931593835354, -0.003321112832054496, 0.004505637101829052, 0.020046325400471687, -0.02008734829723835, -0.03765865042805672, -0.020483897998929024, -0.021974382922053337, -0.026650946587324142, 0.009100156836211681, -0.016463695093989372, -0.007609672844409943, 0.004861165769398212, -0.0002867301518563181, 0.0057465676218271255, -0.002396397292613983, 0.01401601918041706, -0.0029826771933585405, 0.019485684111714363, -0.015602221712470055, 0.026555227115750313, -0.029071275144815445, -0.017667021602392197, -0.05300106108188629, -0.006016632542014122, 0.0048850951716303825, 0.006966987159103155, 0.027785902842879295, -0.011465786956250668, 0.002148553030565381, 0.017366189509630203, 0.028469610959291458, -0.030055813491344452, -0.03410336747765541, -0.014426243491470814, -0.010877798311412334, -0.002565615111961961, -0.020593293011188507, -0.003979181870818138, -0.0017024334520101547, -0.018583189696073532, -0.001177687430754304, -0.0024322920944541693, 0.011547831818461418, -0.011636714451014996, 0.0026972289197146893, 0.012990456074476242, 0.0016904686344787478, 0.023984484374523163, 0.0062354193069040775, -0.0009734295890666544, 0.010659011080861092, -0.0025314297527074814, -0.02025143802165985, -0.034923817962408066, -0.00948303285986185, 0.0021759015507996082, 0.02220684289932251, 0.00842328555881977, 0.012552883476018906, 0.001002487144432962, 0.01284004095941782, -0.010344505310058594, -0.009366802871227264, -0.027662836015224457, 0.008553190156817436, 0.024052856490015984, -0.003098907647654414, -0.012785344384610653, 0.0010785497725009918, -0.017954178154468536, 0.014809120446443558, -0.009216386824846268, -0.003620235016569495, 0.006314045749604702, -0.024381035938858986, -0.012655439786612988, 0.021359045058488846, -0.010700033977627754, 0.026103980839252472, -0.0035484456457197666, 0.023902440443634987, -0.003469819203019142, -0.010344505310058594, -8.519645780324936e-05, -0.005056022200733423, -0.02953619509935379, -0.001369125791825354, -0.025898868218064308, 0.011657225899398327, 0.0327906459569931, 0.010898309759795666, 0.0022750392090529203, 0.0004922699299640954, 0.0017049973830580711, 0.02696545235812664, -0.014836468733847141, -0.041378021240234375, 0.01716107688844204, 0.03812357038259506, 0.009777028113603592, -0.059181783348321915, -0.003510841866955161, 0.003216847311705351, -0.021769270300865173, -0.0009272792958654463, 0.021386394277215004, 0.008491656742990017, -0.0018562679179012775, -0.023806720972061157, 0.016080817207694054, -0.009106993675231934, -0.00981805007904768, 0.007807948160916567, 0.014111737720668316, -0.026760339736938477, -0.004027041606605053, 0.013681001961231232, -0.00733618950471282, 0.0155065031722188, -0.013763046823441982, -0.007404560223221779, -0.009941117838025093, 0.028743093833327293, -0.019772842526435852, 0.018856672570109367, 0.008416448719799519, 0.02253502421081066, -0.029454151168465614, 0.022261539474129677, 0.0017246539937332273, -0.017625998705625534, 0.030712174251675606, -0.009120668284595013, -0.0009546276414766908, 0.005879890639334917, -0.0010785497725009918, -0.005876472219824791, -0.004868002608418465, 0.007438745815306902, 0.009838561527431011, 0.013947647996246815, 0.016559412702918053, -0.010966680012643337, -0.04165150597691536, 0.010693197138607502, 0.008915555663406849, 0.00440991809591651, 0.0173525158315897, -0.03134118393063545, 0.017790088430047035, -0.001835756585933268, -0.021099235862493515, -0.011752944439649582, -0.023382822051644325, -0.01558854803442955, 0.006560180336236954, 0.000212911021662876, -0.016121840104460716, -0.013277613557875156, 0.0005110719357617199, 0.015985097736120224, -0.0013238301035016775, -0.0017417467897757888, 0.005715800914913416, 0.027936318889260292, -0.002895504469051957, 0.008792487904429436, 0.030575431883335114, 0.014070715755224228, -0.02644583396613598, -0.04859798029065132, -0.02368365414440632, -0.02760813944041729, -0.029809679836034775, -0.016272256150841713, -0.004731261171400547, 0.016190210357308388, 0.006478135474026203, -0.02098984271287918, 0.005575640592724085, -0.013359659351408482, -0.046683598309755325, -0.022603394463658333, -0.01973181962966919, 0.0070832171477377415, 0.017530279234051704, 0.020689010620117188, -0.012874226085841656, 0.024408383294939995, -0.011670899577438831, 0.005045766942203045, -0.005999539978802204, -0.006878104992210865, 0.005291901528835297, -0.025789475068449974, 0.002244272269308567, 0.00027690184651874006, -0.038998719304800034, 0.0021041121799498796, 0.02789529599249363, -0.028934532776474953, 0.01649104245007038, 0.014262153767049313, 0.009941117838025093, -0.015889380127191544, 0.0034561450593173504, 0.013058827258646488, -0.010529106482863426, 0.004262920934706926, 0.027744879946112633, -0.01925322413444519, 0.008060920052230358, 0.03484177216887474, 0.028743093833327293, -0.015957750380039215, 0.009250572882592678, 0.021318022161722183, 0.015670591965317726, 0.017831111326813698, 0.01467237900942564, -0.028524307534098625, 0.0337478369474411, -0.010761567391455173, 0.024449406191706657, -0.015260367654263973, -0.020812079310417175, 0.017489256337285042, 0.02898922935128212, -0.009045460261404514, 0.0009802667191252112, 0.01941731385886669, -0.016983313485980034, -0.011657225899398327, 0.006724270526319742, -0.020128371194005013, -0.002895504469051957, 0.004174038767814636, 0.007124240044504404, -0.011814478784799576, -0.014289502054452896, -0.013715187087655067, -0.008812999352812767, 0.0006114915595389903, 0.0021690644789487123, 0.005896983668208122, -0.030903613194823265, 0.00245451251976192, -0.019212201237678528, 0.006430275738239288, 0.002704065991565585, -0.01439889520406723, 0.005196182522922754, 0.0009999233298003674, -0.00798571202903986, 0.032735951244831085, -0.01067268569022417, -0.032380420714616776, -0.005688452627509832, -0.008313892409205437, 0.016860244795680046, -0.004023623187094927, 0.21616119146347046, 0.011595691554248333, 0.00035766485962085426, 0.01732516661286354, 0.028879836201667786, 0.00881983619183302, -0.003661257680505514, 0.01100770290941, -0.00357921258546412, -0.003360426053404808, -0.0048098876141011715, 0.008443797007203102, 0.011540994979441166, -0.004837235901504755, 0.016053469851613045, -0.013639979064464569, -0.03136853501200676, -0.01575263775885105, -0.021413741633296013, 0.042827483266592026, 0.005257716402411461, -0.02529720403254032, 0.02413490042090416, 0.011465786956250668, 0.015615896321833134, 0.0189660657197237, -0.022029079496860504, -0.0010264170123264194, 0.03577161580324173, 0.02070268616080284, -0.00470049399882555, -0.0032988921739161015, 0.014125412330031395, 0.011240163818001747, 0.011281185783445835, -0.020620640367269516, 0.014535637572407722, 0.014508288353681564, 0.008334403857588768, 0.006098677404224873, 0.008252358064055443, -0.020976169034838676, 0.02182396687567234, -0.009742842055857182, 0.0085190050303936, -0.00011291868577245623, -0.01431685034185648, -0.008149801753461361, 0.013681001961231232, -0.0023793047294020653, -0.009777028113603592, -0.004526148550212383, 0.012552883476018906, 0.010980354622006416, -0.01597142405807972, 0.008142964914441109, -0.02001897804439068, 0.025529665872454643, 0.004799631889909506, 0.006177303846925497, -0.013127198442816734, 0.014822794124484062, -0.013311799615621567, 0.019813865423202515, -0.011158118024468422, 0.022740136831998825, -0.004509055987000465, 0.01992325857281685, -0.009182201698422432, 0.009325779974460602, 0.011397416703402996, -0.010255623608827591, 0.016477368772029877, 0.012511860579252243, -0.034732379019260406, -0.03834235668182373, 0.030219903215765953, 0.015998773276805878, 0.03574426844716072, 0.03946363925933838, 0.007910504005849361, -0.011288022622466087, -0.00824552122503519, 0.006796059664338827, -0.004632123280316591, -0.023957137018442154, 0.03708433359861374, -0.009619775228202343, 0.013352821581065655, 0.002204959047958255, 0.0028715746011584997, 0.0183233805000782, 0.0009529183735139668, -0.026623599231243134, -0.004638960584998131, 0.017270470038056374, -0.01777641475200653, 0.007937852293252945, 0.01150680985301733, 0.017530279234051704, -0.012046938762068748, 0.05923648178577423, 0.029946420341730118, -0.040284089744091034, -0.013961322605609894, -0.005756823346018791, 0.018008874729275703, 0.02423061989247799, 0.015985097736120224, 0.00957875233143568, -0.012792181223630905, 0.004143272060900927, 0.004645797424018383, 0.00047474991879425943, 0.01475442387163639, 0.00429026922211051, -0.007411397062242031, -0.011055562645196915, 0.006163629703223705, -0.0019297664985060692, 0.0273209810256958, -0.010159904137253761, -0.00959242694079876, 0.02503739483654499, 0.009250572882592678, -0.00015041581355035305, -0.00967447180300951, 0.005244042258709669, -0.008908717893064022, -0.04515209048986435, 0.006823408417403698, 0.013448541052639484, -0.0017759321490302682, -0.0282781720161438, -0.018501145765185356, 0.008525841869413853, 0.031286489218473434, -0.011855500750243664, -0.04132332652807236, 0.006645644083619118, -0.02989172376692295, -0.008183987811207771, 0.010002651251852512, 0.019485684111714363, 0.018528493121266365, -0.0096402857452631, 0.0010093243326991796, 0.010747893713414669, -0.00310574471950531, -0.02092147246003151, -0.014357873238623142, -0.026555227115750313, -0.006960149854421616, 0.009633448906242847, 0.010700033977627754, -0.018528493121266365, -0.017297819256782532, -0.009353128261864185, 0.013325473293662071, 0.008327566087245941, -0.02950884774327278, -0.013585282489657402, 0.024736564606428146, -0.002025485737249255, -0.012258888222277164, -0.019526707008481026, -0.17557626962661743, 0.01575263775885105, -0.0032988921739161015, -0.010426550172269344, 0.011951220221817493, -0.008669420145452023, -0.003174115438014269, 0.007616509683430195, -0.019212201237678528, 0.009975302964448929, 0.0359904021024704, 0.018268683925271034, -0.01580733433365822, -0.014029692858457565, 0.012176843360066414, 0.026500530540943146, 0.009517218917608261, 0.012320422567427158, -0.0005828612484037876, 0.005770497489720583, 0.028223475441336632, -0.009811213240027428, -0.015219345688819885, -0.037111684679985046, 0.009824886918067932, -0.001121281529776752, -0.016463695093989372, -0.015465480275452137, 0.012785344384610653, -0.02574845217168331, -0.022138472646474838, 0.006334556732326746, 0.028168778866529465, 0.014740749262273312, 0.0015109952073544264, -0.0040031117387115955, 0.018473796546459198, -0.022740136831998825, 0.00867625791579485, 0.029071275144815445, 0.00683024525642395, -0.016764525324106216, 0.007958363741636276, 0.018213987350463867, -0.01787213422358036, 0.001499884994700551, -0.0031792433001101017, -0.012217866256833076, 0.005941424518823624, -0.0028835395351052284, 0.01642267219722271, -0.035306692123413086, -0.02230256237089634, 0.014973210170865059, 0.018213987350463867, -0.001890453277155757, -0.0013195568462833762, -0.01620388589799404, -0.0013195568462833762, -0.004143272060900927, 0.020333483815193176, -0.03590835630893707, -0.02532455325126648, 0.0017426013946533203, -0.015697941184043884, -0.023779371753335, 0.018815651535987854, -0.0046526347286999226, -0.023779371753335, 0.019116481766104698, 0.00019603196415118873, -0.017749065533280373, 0.024435732513666153, -0.019663449376821518, 0.028168778866529465, 0.006751618813723326, 0.012860551476478577, -0.004632123280316591, 0.006792641244828701, 0.009024948813021183, -0.0023758860770612955, -0.00044911084114573896, 0.002965584397315979, 0.017831111326813698, -0.02211112529039383, -0.006560180336236954, -0.01777641475200653, 0.014932188205420971, -0.015602221712470055, -0.02593989111483097, 0.015643244609236717, -0.019198527559638023, 0.013605793938040733, 0.006645644083619118, 0.014426243491470814, 0.02191968634724617, 0.01031715702265501, 0.00036856147926300764, 0.000917878292966634, -0.033857230097055435, 0.008895044215023518, 0.012108473107218742, -0.018583189696073532, 0.004645797424018383, 0.03839705511927605, 0.02124965190887451, -0.009421499446034431, 0.02475023828446865, 0.017502930015325546, -0.011192304082214832, -0.027389351278543472, 0.01587570458650589, 0.046109285205602646, 0.016408998519182205, -0.0015238147461786866, 0.01973181962966919, 0.0045842635445296764, -0.01399550773203373, -0.010932494886219501, 0.018241336569190025, 0.07515320926904678, 0.010125719010829926, -0.02060696668922901, -0.010467573069036007, 0.007295167073607445, -0.030055813491344452, -0.10244683921337128, -0.03560752421617508, 0.0188019759953022, 0.011964893899857998, -0.01091198343783617, 0.0136604905128479, -0.01132904551923275, 0.016354301944375038, 0.007144751027226448, 0.031833454966545105, 0.03820561617612839, -0.03746721148490906, -0.0021588087547570467, 0.001505012740381062, 0.017174750566482544, -0.012074287049472332, -0.010624825954437256, 0.0033364961855113506, -0.008949740789830685, 0.012026428245007992, 0.0034629821311682463, -0.03828766196966171, 0.02239828184247017, -0.010460736230015755, -0.030001116916537285, -0.020429201424121857, -0.039162807166576385, 0.016463695093989372, 0.026268070563673973, 0.011698247864842415, 0.018760953098535538, -0.011356393806636333, 0.0015639825724065304, -0.0009144597570411861, 0.004348384216427803, 0.006782385520637035, -0.002657915698364377, -0.005811519920825958, 0.012778506614267826, -0.021331697702407837, -0.005763660650700331, 0.01275799609720707, -0.012675950303673744, -0.02194703370332718, -0.01485014334321022, -0.013694675639271736, -0.02085310034453869, 0.008204499259591103, 0.014029692858457565, -0.020771056413650513, -0.04195233806967735, 0.001252040732651949, -0.002300678286701441, -0.0350332111120224, -0.009059133939445019, -0.00496714049950242, 0.016764525324106216, 0.005018418654799461, -0.020333483815193176, -0.023355472832918167, -0.03645532205700874, -0.0016699574189260602, 0.010966680012643337, 0.013229754753410816, 0.008197661489248276, -0.001278534415178001, -0.0136604905128479, -0.014740749262273312, 0.02301361970603466, -0.017475582659244537, -0.007917341776192188, -0.007725903298705816, -0.018884021788835526, 0.02118128165602684, -0.025926215574145317, 0.0026459507644176483, 0.004146690480411053, -0.010385528206825256, 0.026145003736019135, 0.019362617284059525, -0.02011469565331936, -0.0186378862708807, -0.0006901180022396147, -0.0006302935071289539, 0.004956884775310755, 0.020429201424121857, 0.003620235016569495, -0.00615337397903204, 0.000673025322612375, -0.0269928015768528, 0.018760953098535538, 0.010659011080861092, -0.0034834935795515776, 0.01191019732505083, 0.005380783695727587, 0.008238684386014938, -0.023957137018442154, 0.0024237458128482103, 0.011397416703402996, 0.012812692672014236, -0.01934894360601902, -0.014699727296829224, -0.07241837680339813, 0.02458614856004715, 0.00479621347039938, 0.012607580050826073, -0.00310574471950531, -0.00893606711179018, 0.00478937616571784, -0.032544512301683426, 0.012812692672014236, 0.006854175124317408, -0.01485014334321022, 0.019225874915719032, -0.0034493079874664545, -0.012812692672014236, -0.023095663636922836, -0.007452419959008694, 0.02937210537493229, -0.02027878537774086, 0.015027906745672226, -0.01687391847372055, 0.01264860201627016, -0.003368972335010767, 7.926742546260357e-05, 0.01584835723042488, 0.002153680892661214, 0.012231539934873581, -0.022480327636003494, 0.005315831396728754, -0.02686973288655281, -0.021290674805641174, 0.013544260524213314, -0.010426550172269344, 0.029317408800125122, 0.016463695093989372, -0.011773455888032913, -0.022001730278134346, -0.006908871699124575, 0.034595638513565063, -0.003457854501903057, -0.002857900457456708, -0.019198527559638023, -0.04408550634980202, 0.010884635150432587, -0.0091616902500391, -0.018528493121266365, -0.02092147246003151, -0.013510074466466904, 0.0035518642980605364, 0.0015238147461786866, 0.007076380308717489, 0.016121840104460716, 0.0012597324093803763, -0.025051070377230644, -0.016108166426420212, 0.012689624913036823, -0.00881983619183302, 0.013120360672473907, 0.0006815716624259949, 0.00499790720641613, -0.011978568509221077, 0.008594212122261524, 0.02808673493564129, -0.0009221514919772744, -0.0036646761000156403, 0.009947954677045345, 0.021003516390919685, -0.011616203002631664, 0.00496714049950242, -0.013380169868469238, -0.0036510019563138485, 0.021167606115341187, 0.008368588984012604, 0.017475582659244537, 0.022603394463658333, -0.011698247864842415, -0.0031433487311005592, 0.012293074280023575, 0.00922322366386652, -0.0271568913012743, 0.022384608164429665, 0.002760472008958459, 0.001245203660801053, -0.02027878537774086, 0.006396090611815453, 0.006471298635005951, 0.022644417360424995, -0.009763353504240513, 0.002341700717806816, -0.012525535188615322, 0.013352821581065655, -0.03158732131123543, -0.003269834676757455, -0.0024733145255595446, 0.020524920895695686, 0.009195875376462936, 0.0226580910384655, 0.007267818786203861, 0.010795753449201584, 0.010187252424657345, 0.013072501868009567, -0.021605180576443672, -0.0011349556734785438, 0.0011306825326755643, -0.030548084527254105, -0.004204805474728346, -0.016272256150841713, -0.023505888879299164, -0.006259348709136248, -0.02268543839454651, 0.0008742919308133423, 0.012122146785259247, 0.025980912148952484, 0.022863203659653664, 0.006402927450835705, -0.004440684802830219, 0.01348272617906332, 0.0188019759953022, -0.0012289655860513449, -0.029864376410841942, 0.019745493307709694, 0.02934475801885128, 0.024640845134854317, 0.018760953098535538, 0.011137607507407665, 0.031231792643666267, 0.0136604905128479, 0.0007089199498295784, -0.007459256798028946, 0.006645644083619118, 0.008142964914441109, -0.013954484835267067, -0.021194955334067345, 0.009770190343260765, -0.02803203836083412, 0.004905606620013714, -0.00774641428142786, -0.011076073162257671, 0.01322291698306799, 0.014385221526026726, 0.0703945979475975, 0.006891779135912657, -0.021837640553712845, -0.012539208866655827, -0.008689931593835354, 0.019225874915719032, 0.010583803057670593, 0.011315370909869671, -0.014945861883461475, -0.018856672570109367, 0.003986019175499678, 0.002244272269308567, 0.003931322135031223, 0.007185773458331823, -0.017010660842061043, -0.0009785573929548264, -0.007739577442407608, -0.013366496190428734, -0.012887900695204735, 0.014549311250448227, 0.024175923317670822, -0.02118128165602684, 0.013961322605609894, -0.015027906745672226, -0.005941424518823624, -0.024914328008890152, 0.020524920895695686, 0.014658704400062561, -0.011014539748430252, -0.019294247031211853, 0.016504716128110886, -0.012614416889846325, -0.04039348289370537, 0.0014836469199508429, -0.00399285601451993, 0.005107300356030464, -0.005093626212328672, -0.018309706822037697, 0.021878663450479507, 0.0013639979297295213, -0.01837807707488537, 0.014207457192242146, -0.020620640367269516, -0.02970028668642044, 0.014521962963044643, -0.0221794955432415, -0.0027792740147560835, -0.018172964453697205, -0.004040715750306845]" +16,"Just like Outlook calendar orchestrates when people can meet and collaborate, Places will do the same for where. We also announced Teams Premium, addressing enterprise demands for advanced meeting features like additional security options and intelligent meeting recaps. All this innovation is driving growth across Microsoft 365. Leaders in every industry from Fannie Mae and Land O'Lakes to Rabobank continue to turn to our premium E5 offerings for advanced security, compliance, voice, and analytics.","[-0.023598868399858475, -0.03185022249817848, -0.00901460275053978, -0.01804295741021633, -0.019418183714151382, 0.01673649251461029, -0.02827463485300541, -0.01291336677968502, -0.011716920882463455, -0.02951233834028244, 0.02364012412726879, 0.0012892738450318575, -0.012177621014416218, 0.0013210759498178959, -0.0046070050448179245, -0.00462763337418437, 0.014701159670948982, -0.029182283207774162, -0.0002514084044378251, -0.024148957803845406, -0.006535758730024099, -0.008010688237845898, 0.01116683054715395, 0.004383530933409929, -0.011118697933852673, 0.004971439950168133, 0.009406541474163532, -0.018496781587600708, 0.01919814758002758, 0.0011878509540110826, 0.021536029875278473, -0.011104945093393326, -0.0042081899009644985, -0.020683391019701958, -0.011930080130696297, -0.012459542602300644, 0.006422302685678005, -0.005328998435288668, 0.009929127991199493, 0.0022519316989928484, -0.005844708066433668, 0.013346563093364239, -0.004074105527251959, -0.003957211039960384, -0.028714707121253014, 0.031465157866477966, -0.014632398262619972, -0.013415323570370674, 0.00037238525692373514, -0.007302446756511927, 0.0015007146866992116, 0.009991012513637543, -0.03297790512442589, -0.008622663095593452, -0.012487046420574188, -0.02138475514948368, -0.01181318610906601, 0.0031389519572257996, 0.007508730981498957, -0.0034569730050861835, -0.025702962651848793, -0.004063791129738092, -0.02513912133872509, -0.0033349215518683195, -0.008464512415230274, 0.0011242467444390059, -0.026060521602630615, 0.008932089433073997, 0.009186506271362305, -0.014453618787229061, 0.021907340735197067, 0.0034225923009216785, 0.009764100424945354, -0.007103039417415857, 0.007213057484477758, -0.01082990039139986, 0.004314769990742207, -0.002941263373941183, 0.016901521012187004, 0.002095499774441123, -0.005263675469905138, -0.017107803374528885, -0.015388772822916508, 0.0031544233206659555, 0.014632398262619972, 0.013600979000329971, 0.0004576922219712287, 0.029319806024432182, -0.009227762930095196, 0.019170641899108887, 0.04056914895772934, 0.020449601113796234, 0.0026094901841133833, 0.017465362325310707, -0.02793082781136036, 0.0174928680062294, 0.0011698011076077819, 0.014054804109036922, 0.011434999294579029, -0.014329848811030388, 0.023997683078050613, 0.005521530285477638, -0.037681177258491516, -0.004221942275762558, -0.02997991442680359, -0.004476358648389578, 0.00645668338984251, -0.0061438195407390594, 0.03314293175935745, 0.005253361072391272, -0.03927643969655037, 0.00983973778784275, 0.008547025732696056, -0.000679447315633297, -0.023805152624845505, -0.0223336610943079, 0.00789379421621561, -0.01747911423444748, -0.024025188758969307, -0.006136943586170673, 0.0185242872685194, -0.001450003357604146, 0.013710997067391872, -0.0010804114863276482, -0.01919814758002758, -0.004517615307122469, 0.010279810056090355, -0.012411409057676792, 0.03066752664744854, -0.013594103045761585, 0.014563636854290962, -0.010589235462248325, -0.010417332872748375, 0.013284677639603615, -3.8060439692344517e-05, 0.022429926320910454, -0.022980017587542534, 0.019115634262561798, -0.022993769496679306, -0.02198985405266285, -0.014041051268577576, 0.005091771949082613, -0.004411035683006048, 0.0015084503684192896, -0.00456231040880084, 0.006477311719208956, 0.009970384649932384, 0.027765801176428795, 0.018084215000271797, -0.0013004475040361285, 0.006195390596985817, -0.02574422024190426, 0.013497837819159031, 0.013463457114994526, 0.017671646550297737, 0.014893691055476665, -0.0039056402165442705, 0.01208823174238205, -0.020367087796330452, -0.01995452120900154, -0.006305408664047718, 0.008615787141025066, -0.0030254959128797054, 0.022773733362555504, 0.01140749454498291, 0.020133299753069878, 0.01045171357691288, -0.012762092053890228, -0.001615889836102724, 0.014907443895936012, -0.026693126186728477, 0.018194232136011124, -0.02355761080980301, 0.0026524660643190145, 0.005469959229230881, -0.0055731008760631084, 0.004376654978841543, 0.0016666012816131115, -0.023241309449076653, -0.021205976605415344, 0.01673649251461029, -0.004005344118922949, 0.006264152005314827, 0.04139428585767746, -0.003816250478848815, -0.0014861029339954257, 0.04188936576247215, -0.012493923306465149, 0.010128535330295563, -0.004655138123780489, -0.008691424503922462, 0.0040672291070222855, -0.0055731008760631084, -0.025922998785972595, -0.6570277214050293, -0.010025393217802048, 0.03627844527363777, -0.020312080159783363, 0.013105898164212704, 0.0087464340031147, 0.016365181654691696, 0.015086222440004349, -0.022086121141910553, 0.016475200653076172, -0.010747387073934078, 0.004472920671105385, -0.02145351655781269, 0.005439016502350569, 0.002748731756582856, -0.013257172890007496, 0.011723796837031841, -0.017506619915366173, -0.016310174018144608, 0.0023911732714623213, -0.015883853659033775, 0.007529359310865402, -0.020848417654633522, -0.01728658378124237, 0.0011044779093936086, 0.014219830743968487, 0.011221839115023613, 0.0005638424190692604, -0.02617054060101509, 0.008478264324367046, -0.03655349090695381, 0.01995452120900154, 0.0024668106343597174, 0.009805357083678246, 0.04370466247200966, 0.021288489922881126, -0.031245121732354164, 0.011091193184256554, 0.006126629188656807, 0.03341797739267349, -0.017589133232831955, -0.0001276381080970168, -0.008306361734867096, 0.02431398630142212, 0.024231471121311188, 0.005311808083206415, 0.03341797739267349, -0.014274840243160725, 0.0029309492092579603, -0.007130543701350689, 0.004290703218430281, -0.01926690898835659, -0.012487046420574188, 0.012218877673149109, 0.00592722138389945, 0.00495424959808588, 0.022787485271692276, -0.0024668106343597174, 0.009021478705108166, 0.011256219819188118, -0.008980222046375275, 0.004926744848489761, -0.012672701850533485, -0.049040537327528, -0.04290703311562538, 0.024960340932011604, -0.005521530285477638, 0.01857929490506649, 0.01665397919714451, -0.015430029481649399, 0.011249343864619732, 0.03845130279660225, 0.0024977531284093857, -0.023282567039132118, 0.011820062063634396, 0.012762092053890228, 0.031162608414888382, -0.014879939146339893, -0.015938863158226013, 0.02534540370106697, 0.018084215000271797, -0.030089931562542915, -0.0026902847457677126, -0.021054701879620552, 0.006023487541824579, -0.006205704528838396, -0.038011230528354645, -0.027366986498236656, 0.04315457493066788, 0.009722843766212463, 0.02629430964589119, -0.00997726060450077, 0.007206181064248085, -0.031465157866477966, 0.010128535330295563, -0.0014285154175013304, -0.004483235068619251, 0.0067832996137440205, 0.006673281546682119, -0.004301017615944147, -0.024781562387943268, -0.030227454379200935, 0.014934947714209557, 0.019005615264177322, 0.016103889793157578, 0.025359157472848892, -0.020339583978056908, 0.012122612446546555, 0.030970076099038124, 0.014164822176098824, -0.011593149974942207, -0.0029962724074721336, -0.018909350037574768, -0.003816250478848815, 0.010465465486049652, -0.02575797215104103, 0.010561731643974781, -0.01351846568286419, -0.009736595675349236, -0.00990849919617176, 0.025978008285164833, -0.0009669553837738931, -0.01653021015226841, -0.016433943063020706, -0.002631837734952569, 0.026583107188344002, 0.013600979000329971, -0.0010468903928995132, 0.010101030580699444, 0.018868092447519302, 0.011661911383271217, -0.023681381717324257, 0.02016080543398857, -0.002777955261990428, 0.00932402815669775, 0.013463457114994526, 0.013704121112823486, -0.025029102340340614, 0.01981699839234352, -0.01734159328043461, -0.018262993544340134, -0.010520474053919315, -0.0014525818405672908, -0.006264152005314827, -0.01065112091600895, -0.009825985878705978, -0.03328045457601547, 0.006972393020987511, -0.030172444880008698, -0.003840317018330097, -0.001592682907357812, -0.007233685813844204, -0.0057862610556185246, 0.025647955015301704, -0.008753309957683086, 0.005844708066433668, -0.021219728514552116, -0.05069080740213394, -0.039303943514823914, -0.005050515290349722, -0.006580453831702471, 0.002917196834459901, -0.020848417654633522, -0.018689313903450966, 0.02937481552362442, -0.015815092250704765, -0.01260394137352705, 0.012548931874334812, 0.020875921472907066, -0.005861898418515921, -0.0062503996305167675, -0.010630492120981216, 0.008045068942010403, 0.027435747906565666, 0.006154133938252926, 0.0031802088487893343, -0.0271744541823864, -0.006092248484492302, 0.00979848112910986, -0.0030340910889208317, 0.011256219819188118, 0.014439866878092289, -0.022581201046705246, -0.008663919754326344, 0.003295383881777525, -0.016571465879678726, 0.01618640311062336, 0.01672274060547352, -0.01918439380824566, 0.02876971662044525, 0.014398610219359398, 0.014852434396743774, -0.015512542799115181, 0.008870203979313374, 0.008773937821388245, 0.0005784541717730463, -0.05093834921717644, -0.015443781390786171, -0.008753309957683086, 0.005762194283306599, 0.007900670170783997, -0.008966470137238503, 0.012212001718580723, -0.012521427124738693, 0.013325934298336506, -0.002600895008072257, -0.022801237180829048, -0.031382642686367035, 0.026459336280822754, 0.01570507511496544, 0.007336827460676432, -0.03421560674905777, -0.022567449137568474, 0.016268916428089142, 0.009275895543396473, 0.020105795934796333, 0.006466997321695089, 0.00856765452772379, -0.028439661487936974, 0.006735166534781456, 0.02689940854907036, -0.015347516164183617, 0.04298954829573631, -0.024093950167298317, -0.01673649251461029, 0.00026215234538540244, 0.01665397919714451, 0.03457316756248474, 0.006236647255718708, -0.015567551366984844, 0.011434999294579029, 0.02821962535381317, 0.0030736287590116262, 0.016557713970541954, 0.002631837734952569, -0.002174575114622712, 0.007811280433088541, -0.009241514839231968, 0.025427918881177902, -0.008120706304907799, 0.006690471898764372, 0.00816196296364069, 0.028852229937911034, 0.0032713175751268864, 0.02827463485300541, -0.01089866179972887, 0.01598011888563633, -0.002865626011043787, -0.0051433430053293705, 0.021976102143526077, -0.03633345663547516, 0.01789168268442154, 0.00829260889440775, -0.011758177541196346, 0.00541495019569993, -0.009234638884663582, 0.01987200789153576, -0.00953031238168478, 0.03845130279660225, 0.02185233123600483, -0.007329951506108046, 0.003572148038074374, 0.006979268975555897, 0.0003158720792271197, -0.014879939146339893, 0.002136756433174014, 0.006827994249761105, -0.0008573671220801771, -0.0027727982960641384, -0.00847138836979866, 0.037186093628406525, 0.022581201046705246, 0.005734689999371767, -0.0016717583639547229, -0.027985837310552597, 0.016021376475691795, -0.010637369006872177, 0.014357353560626507, -0.0072886948473751545, 0.011840690858662128, -0.002246774500235915, -0.025579193606972694, 0.019418183714151382, 0.03080504946410656, -0.014316096901893616, -0.006329474970698357, -0.02526289038360119, -0.022773733362555504, -0.01188194751739502, 0.013972289860248566, -0.00326272239908576, 0.05008570849895477, -0.03410559147596359, 0.010396704077720642, 0.005665928591042757, -0.0078250328078866, 0.0071855527348816395, -0.024754056707024574, -0.007433093618601561, 0.0036546615883708, 0.00019833329133689404, -0.015801340341567993, 0.00026988799800165, -0.010211048647761345, 0.04739026725292206, -0.006511692423373461, -0.029044760391116142, -0.022732475772500038, -0.01918439380824566, -0.01454988494515419, -0.015044965781271458, -0.0022639648523181677, -0.023076282814145088, 0.022443678230047226, -0.00046156003372743726, 0.011249343864619732, -0.004338836297392845, -0.018606800585985184, 0.03053000383079052, 0.008196343667805195, -0.011517512612044811, -0.01331905834376812, -0.007329951506108046, 0.015072470530867577, 0.08834448456764221, 0.020037034526467323, 0.014673654921352863, 0.02362637221813202, -0.010465465486049652, -0.014041051268577576, -0.013552846387028694, -0.025922998785972595, 0.02615678682923317, 0.00908336415886879, -0.024740304797887802, -0.0024324299301952124, 0.011964460834860802, -0.002692003734409809, 0.031327635049819946, 0.008911460638046265, 0.0033882115967571735, -0.022704971954226494, -0.0002361519873375073, 0.011551893316209316, 0.013539094477891922, 0.000551379460375756, 0.006587329786270857, 0.0007972010062076151, 0.0338580496609211, 0.018551791086792946, 0.029044760391116142, 0.01665397919714451, 0.004737651441246271, -0.026074273511767387, 0.0052464851178228855, 0.02362637221813202, 0.010534226894378662, 0.0006102562765590847, -0.009358408860862255, 0.01720407046377659, -0.009564693085849285, -0.008354494348168373, 0.012322019785642624, 0.015154983848333359, 0.007543111220002174, 0.01947319135069847, -0.002110971137881279, -0.026253053918480873, -0.00983973778784275, -0.0062847803346812725, 0.006869250908493996, 0.005033324938267469, -0.0017422387609258294, -0.01763039082288742, 0.009447799064218998, 0.005583415273576975, -0.01365598849952221, 0.00017985369777306914, -0.005102086346596479, 0.013580351136624813, -0.022911256179213524, -0.0178366731852293, -0.009901623241603374, -0.052231062203645706, -0.02610177919268608, -0.015553799457848072, 0.002095499774441123, -0.00047015518066473305, 0.0024066444020718336, -0.00870517734438181, -0.013325934298336506, 0.002465091645717621, -0.014728664420545101, 0.03113510273396969, 0.01714906096458435, -0.012239506468176842, -0.016984034329652786, 0.015553799457848072, 0.051735978573560715, 0.0010279810521751642, 0.015760082751512527, -0.014302344061434269, -0.005659052636474371, -0.005060829687863588, 0.03352799639105797, 0.0008810037979856133, 0.009860366582870483, -0.010334818623960018, -0.046345096081495285, -0.011971337720751762, -0.014137317426502705, -0.005356503184884787, 0.012095107696950436, -0.00031286379089578986, -7.896801980677992e-05, -0.021150967106223106, -0.0036512233782559633, 0.002525257645174861, -0.00542870257049799, 0.005040201358497143, -0.003699356457218528, 0.02097218856215477, 0.014494876377284527, -0.011579398065805435, 0.016763998195528984, -0.015485038049519062, -0.012954623438417912, -0.009984136559069157, 0.020738398656249046, 0.011331857182085514, 0.017932940274477005, 0.009275895543396473, 0.0015625999076291919, -0.035288285464048386, 0.010520474053919315, -0.010135411284863949, 0.027091940864920616, -0.0034036829601973295, -0.01089178491383791, -0.008622663095593452, 0.01673649251461029, 0.015595056116580963, 0.008980222046375275, -0.004720461089164019, 0.010884908959269524, -0.03677352890372276, 0.021549781784415245, -0.035425808280706406, -0.010726758278906345, -0.018207984045147896, 0.00880831852555275, -0.022031111642718315, -0.01201947033405304, 0.002155665773898363, 0.007329951506108046, -0.007708138320595026, 0.0025733904913067818, -0.007625625003129244, -0.03776368871331215, -0.00423569418489933, -0.009042107500135899, 0.010850528255105019, -0.015251250006258488, -0.017121557146310806, -0.019308164715766907, 0.016832759603857994, -0.005868774373084307, -0.020655885338783264, 0.011331857182085514, -0.025647955015301704, -0.016502704471349716, -0.008010688237845898, -0.014508628286421299, 0.05157095193862915, 0.011661911383271217, 0.02014705166220665, -0.024148957803845406, -0.008265105076134205, -0.001970010343939066, -0.0016528490232303739, 0.019638219848275185, -0.020587123930454254, 0.02794457972049713, 0.012610817328095436, 0.02458903007209301, -0.0036856040824204683, 0.006814241874963045, -0.0005496604135259986, 0.004338836297392845, -0.0067145382054150105, 0.004995506256818771, -0.01625516451895237, 0.0036512233782559633, 0.002521819667890668, -0.023392584174871445, 0.011214963160455227, 0.01024542935192585, -0.004129114560782909, -0.023997683078050613, 0.039358951151371, -0.01571882702410221, -0.012947747483849525, -0.022044863551855087, -0.057484421879053116, -0.014384858310222626, -0.00849889311939478, -0.014178574085235596, 0.003970963414758444, -0.0223336610943079, -0.013071517460048199, 0.004582938738167286, 0.032125264406204224, 0.02581298165023327, 0.006604520138353109, 0.010747387073934078, -0.005459644831717014, 0.012562683783471584, 0.003491353476420045, 0.0055387201718986034, -0.010774890892207623, -0.0176166370511055, -0.04761030524969101, -0.02028457447886467, 0.02724321559071541, 0.010713006369769573, 0.007845660671591759, 0.008560778573155403, 0.010266058146953583, 0.013477209024131298, 0.035288285464048386, -0.03806623816490173, 0.009330904111266136, -0.008691424503922462, -0.020875921472907066, 0.0028742211870849133, 0.001128544332459569, 0.0018806207226589322, 0.0185242872685194, -0.012624569237232208, -0.023722639307379723, -0.014233582653105259, 0.0215222779661417, -0.026651868596673012, -0.01672274060547352, 0.00319396099075675, -0.004421349614858627, 0.021604791283607483, -0.005545596592128277, 0.012892737984657288, -0.011730672791600227, 0.01912938617169857, -0.019569458439946175, -0.006044115871191025, 0.0008530695340596139, 0.011373113840818405, 0.009825985878705978, 0.005411512218415737, -0.006769547238945961, -0.009310276247560978, 0.006174762267619371, -0.014907443895936012, -0.010341695509850979, -0.04246696084737778, 0.0002432429901091382, 0.007109915371984243, -0.006068182177841663, -0.032015249133110046, -0.0223336610943079, 0.008966470137238503, 0.01526500191539526, 0.0004435101873241365, -0.00717180036008358, 0.006295094266533852, -0.023406336084008217, -0.023887665942311287, 0.011524388566613197, -0.02398393116891384, 0.029182283207774162, -0.006460121367126703, -0.008670796640217304, 0.003891887841746211, -0.0051055243238806725, -0.005600605625659227, -0.01954195275902748, 0.00870517734438181, 0.0016666012816131115, -0.020642133429646492, 0.0038231266662478447, 0.0009832861833274364, 0.012748339213430882, -0.01754787564277649, 0.01051359809935093, 0.008505769073963165, 0.02412145398557186, -0.008134458214044571, -0.01816672831773758, 0.010616740211844444, 0.004263198934495449, 0.010527350939810276, -0.04125676304101944, -0.006841746624559164, 0.016200155019760132, 0.005566224921494722, -0.007804404478520155, 0.010431084781885147, 0.012383905239403248, -0.0072543141432106495, -0.009165877476334572, 0.019899511709809303, -0.003401963971555233, 0.020985940471291542, 0.022374916821718216, 0.009585320949554443, -0.018262993544340134, 0.0033882115967571735, 0.013752254657447338, -0.0011001803213730454, -0.0003306987346149981, -0.01940442994236946, -0.008375123143196106, -0.0006201406940817833, 0.019033119082450867, -0.015347516164183617, -0.002925792010501027, -0.005975354462862015, 0.01816672831773758, -0.03176770731806755, 0.026693126186728477, -0.009764100424945354, 0.002480562776327133, 0.01519624050706625, -0.011201211251318455, -0.02445150725543499, 0.016172651201486588, -0.003496510675176978, 0.0015763521660119295, 0.007391836494207382, 0.01154501736164093, 0.008767061866819859, 0.002887973329052329, 0.009736595675349236, -0.004393845330923796, -0.03663600608706474, 0.02610177919268608, 0.011366237886250019, -0.007618749048560858, 0.03394056484103203, -0.017781665548682213, 0.0035205769818276167, -0.007467473857104778, -0.009069611318409443, 0.011565646156668663, -0.032757870852947235, -0.002530414843931794, 0.00418068515136838, 0.01672274060547352, 0.010713006369769573, -0.012170745059847832, -0.005432140547782183, -0.0063225990161299706, 0.001513607450760901, 0.018950605764985085, 0.018207984045147896, 0.006893317215144634, -0.0033246073871850967, 0.008925212547183037, 0.007625625003129244, 0.015897605568170547, -0.02322755753993988, -0.045877519994974136, -0.002334445249289274, -0.03149266168475151, -0.023268813267350197, -0.015361268073320389, 0.008086325600743294, 0.03512325882911682, 0.022168634459376335, -0.034875717014074326, -0.025565439835190773, -0.009248390793800354, -0.03721360117197037, -0.028329644352197647, -0.011063688434660435, -0.001483524451032281, 0.034655679017305374, 0.008822071366012096, -0.0023396022152155638, 0.02172856219112873, 0.002291469369083643, 0.012335771694779396, -0.024272728711366653, -0.0022227081935852766, -0.018703065812587738, -0.043402113020420074, 0.017712904140353203, 0.005868774373084307, -0.01181318610906601, 4.1095601773122326e-05, -0.0005449330783449113, -0.013827892020344734, 0.030777545645833015, 0.014137317426502705, -0.016241412609815598, 0.00613350560888648, 0.0061438195407390594, 0.03135513886809349, -0.0001483739324612543, 0.007274942472577095, 0.03526078164577484, -0.016131393611431122, 0.019033119082450867, 0.03264785185456276, 0.005500901490449905, -0.01475616917014122, 0.005579977296292782, 0.0010468903928995132, 0.013545970432460308, 0.022704971954226494, 0.023942675441503525, 0.0033400787506252527, 0.009612825699150562, -0.0012669264106079936, -0.0004821884213015437, -0.02179732359945774, -0.007907546125352383, 0.016612723469734192, 0.02548292651772499, -0.014934947714209557, 0.0010933042503893375, 0.01448112353682518, -0.017025290057063103, -0.014047927223145962, 0.012576436623930931, -0.018565542995929718, 0.020119547843933105, -0.012370152398943901, 0.00469639478251338, 0.008175714872777462, -0.024547774344682693, -0.01796044409275055, 0.0014285154175013304, 0.002549324184656143, -0.0012248101411387324, -0.0028553118463605642, -0.025152873247861862, 0.004259760957211256, -0.026885656639933586, 0.012954623438417912, 4.356670979177579e-05, -0.00580688938498497, -0.0012849762570112944, 0.00840262696146965, -0.01713530905544758, 0.0474177710711956, -0.0157738346606493, -0.017795417457818985, 0.005528406240046024, -0.011448751203715801, 0.015498790889978409, 0.005665928591042757, 0.2132149487733841, 0.014824929647147655, 0.0006149836117401719, 0.012672701850533485, 0.00010357166320318356, 0.04483234882354736, 0.005167409311980009, 0.005466521251946688, -0.010156040079891682, -0.00717180036008358, -0.0052808658219873905, 0.009791605174541473, -0.013662864454090595, -0.002669656416401267, 0.012108859606087208, -0.015801340341567993, -0.023035025224089622, -0.013841643929481506, -0.018661808222532272, 0.027421994134783745, -0.007075534667819738, -0.005559348966926336, 0.012555807828903198, 0.002827807329595089, 0.008368246257305145, 0.007446845527738333, 0.003620280884206295, 0.020188309252262115, 0.01653021015226841, 0.035893384367227554, 0.008285732939839363, 0.009887870401144028, -0.005150219425559044, 0.02219613827764988, 0.0037440513260662556, -0.015952615067362785, -0.003950335085391998, -0.0031303567811846733, 0.022044863551855087, 0.019995776936411858, 0.014054804109036922, -0.0023722639307379723, 0.020614629611372948, -0.026005512103438377, 0.008780814707279205, 0.018400516360998154, 0.00553528219461441, -0.022306155413389206, 0.011263095773756504, 0.012122612446546555, -0.03765367344021797, 0.00039516243850812316, 0.002114409115165472, 0.008045068942010403, -0.004276950843632221, 0.03168519213795662, -0.0062503996305167675, 0.024066444486379623, -0.0041016098111867905, 0.008106953464448452, -0.01331905834376812, 0.005325560458004475, 0.002275998005643487, 5.122177390148863e-05, -0.008973346091806889, 0.012294515036046505, -0.01161377876996994, 0.018978111445903778, -0.012452666647732258, 0.0037956221494823694, 0.0014585984172299504, -0.0021212853025645018, 0.018400516360998154, 0.0004009641706943512, -0.014047927223145962, -0.031657688319683075, 0.02841215766966343, 0.04458480700850487, 0.013545970432460308, 0.04618006944656372, -0.006188514176756144, 0.009365284815430641, -0.012095107696950436, -0.01547128614038229, 0.00789379421621561, -0.022168634459376335, 0.029292302206158638, -0.006965516600757837, -0.020600877702236176, -0.015044965781271458, -0.0004925025859847665, -0.0003317731316201389, -0.017657894641160965, -0.014797425828874111, -0.0022020796313881874, 0.0038334408309310675, 0.0015359548851847649, 0.012308267876505852, -0.011428123340010643, -0.012679578736424446, -0.012473294511437416, 0.06502065807580948, 0.01741035468876362, -0.003128637792542577, -0.014921195805072784, -0.00854014977812767, 0.01775415986776352, 0.0271744541823864, 0.01560880895704031, 0.001978605519980192, -0.011359361931681633, -0.01823548972606659, 0.01947319135069847, -0.00626758998259902, 0.0006609677220694721, 0.011373113840818405, 0.002745293779298663, -0.00860891118645668, 0.008388875052332878, -0.008553901687264442, 0.02014705166220665, -0.014247335493564606, 0.0007482086075469851, 0.03284038230776787, -0.0243964996188879, 0.001517905038781464, -0.028027094900608063, 0.005951288156211376, -0.003279912518337369, -0.03462817519903183, 0.01181318610906601, 0.016021376475691795, 0.019294412806630135, -0.022897502407431602, -0.00836137030273676, -0.0174928680062294, 0.00932402815669775, -0.009241514839231968, -0.013470333069562912, -0.0010082121007144451, -0.01954195275902748, -0.0010726758046075702, 0.005442454479634762, -0.000479609880130738, 0.015127480030059814, -0.015306258574128151, -0.018469277769327164, -0.001970010343939066, -0.011902576312422752, -0.01925315521657467, -0.01899186335504055, -0.033032916486263275, -0.019101880490779877, -0.004469482693821192, 0.03245532140135765, -0.0073230755515396595, -0.022512439638376236, -0.011586274020373821, 0.012768968008458614, 0.002884535351768136, -0.03949647396802902, 0.0031355139799416065, 0.023860160261392593, -0.030172444880008698, -0.017176564782857895, -0.009956631809473038, -0.17734907567501068, 0.02568921074271202, -0.006295094266533852, -0.015691321343183517, 0.013779758475720882, 0.008340742439031601, 0.00836137030273676, -0.003974401392042637, -0.021412258967757225, 0.004407597705721855, 0.02369513362646103, 0.00046800641575828195, -0.034738194197416306, -0.010541102848947048, 0.018414268270134926, 0.031987741589546204, 0.004658576101064682, 0.0322352834045887, 0.01058235950767994, 0.01161377876996994, 0.035205770283937454, -0.004146304447203875, 0.0041428664699196815, -0.035343293100595474, -6.698851939290762e-05, -0.012232630513608456, -0.028192121535539627, -0.0002056391822407022, 0.003953773062676191, -0.02724321559071541, 0.009110867977142334, 0.010609864257276058, 0.03407808765769005, 0.027834562584757805, -0.001449143746867776, -0.00870517734438181, 0.014494876377284527, -0.033913057297468185, -0.023722639307379723, 0.017877930775284767, 0.006834870204329491, -0.009097116068005562, -0.010547978803515434, 0.016681484878063202, -0.007123667746782303, 0.021054701879620552, 0.017795417457818985, -0.007749395444989204, 0.013738501816987991, 0.007996935397386551, 0.02364012412726879, -0.04007406905293465, -0.001982043730095029, 0.014824929647147655, 0.008526397868990898, 0.01925315521657467, 0.003035810077562928, -0.0057140616700053215, -0.018551791086792946, -0.04494236782193184, -0.011551893316209316, -0.028384651988744736, 0.00338993058539927, -0.00894584134221077, -0.014728664420545101, -0.018593046814203262, 0.010169791989028454, 0.027848314493894577, -0.01219137292355299, 0.018125470727682114, 0.022031111642718315, -0.013882900588214397, 0.012349524535238743, -0.013704121112823486, 0.010754263028502464, 0.01325029693543911, -0.009523436427116394, 0.025304147973656654, 0.017506619915366173, 0.012968375347554684, -0.006081934552639723, 0.022031111642718315, -0.0036271570716053247, 0.010080402716994286, -0.022663714364171028, 0.0014328130055218935, -0.006962078623473644, 0.0329228974878788, -0.006281341891735792, -0.01448112353682518, 0.01168254017829895, -0.001717312727123499, -0.01974823698401451, -0.010919289663434029, 0.008086325600743294, 0.03688354417681694, 0.015485038049519062, 0.003243813058361411, -0.01188194751739502, -0.0021831702906638384, 0.01226701121777296, -0.0005273129791021347, -0.031465157866477966, -0.0023035025224089622, 0.02281498908996582, -0.003128637792542577, 0.030777545645833015, 0.004527929704636335, 0.0253316517919302, -0.023722639307379723, -0.025317899882793427, 0.0008135318057611585, 0.039441466331481934, 0.013147154822945595, 0.0014861029339954257, 0.02493283711373806, 0.026473090052604675, -0.001944224932231009, 0.0061472575180232525, 0.0011869914596900344, 0.04485985264182091, 0.0031784898601472378, -0.014020423404872417, -0.002559638349339366, -0.02171481028199196, -0.0022794362157583237, -0.10880783200263977, -0.03380304202437401, -0.009007726795971394, 0.008388875052332878, -0.005951288156211376, -0.0058722123503685, -0.001257471740245819, 0.0047445278614759445, -0.004479796625673771, 0.022869998589158058, 0.009344656951725483, -0.006281341891735792, -0.003805936314165592, 0.0011242467444390059, 0.02179732359945774, -0.006102562882006168, -0.018331754952669144, -0.010142287239432335, -0.0002406644489383325, 0.015113727189600468, -0.0019803245086222887, -0.027270719408988953, -0.00463107181712985, -0.005600605625659227, -0.001573773566633463, -0.0014964172150939703, -0.029677364975214005, 0.009330904111266136, 0.017314087599515915, 0.019418183714151382, -0.0012351243058219552, -0.018593046814203262, 0.010396704077720642, -0.005229294765740633, 0.010988051071763039, 0.018826836720108986, -0.020435849204659462, -0.002243336522951722, -0.02131599374115467, -0.02964985929429531, -0.0016133113531395793, 0.006944888271391392, -0.009949755854904652, -0.04485985264182091, -0.010933042503893375, 0.006931135896593332, -0.013504713773727417, 0.00657701538875699, 0.020683391019701958, -0.016681484878063202, -0.027614526450634003, -0.00449354900047183, -0.01974823698401451, -0.04037661850452423, 0.0011586274486035109, -0.00034337659599259496, 0.0003702364629134536, 0.006632024422287941, -0.038561321794986725, -0.014426114968955517, 0.009296523407101631, -0.01058235950767994, -0.02942982316017151, 0.038286276161670685, 0.007983183488249779, 0.010850528255105019, -0.006896755658090115, -0.009159001521766186, 0.016887769103050232, -0.0029051636811345816, -0.02970486879348755, 0.016035128384828568, -0.010836776345968246, 0.022911256179213524, -0.01837301254272461, 0.0028639070224016905, -0.00014880369417369366, -0.03256533667445183, 0.015485038049519062, 0.017644142732024193, -0.007006773725152016, -0.024341490119695663, -0.00043427039054222405, -0.014783672988414764, 0.01315403077751398, 0.019514448940753937, 0.004225380253046751, 0.0155400475487113, 0.020917179062962532, -0.032482825219631195, 0.009172753430902958, 0.007804404478520155, 0.0174928680062294, 0.0019287536852061749, 0.0024444630835205317, 0.02403894066810608, -0.02410770207643509, -0.02970486879348755, -0.004428226035088301, 0.005081458017230034, -0.014948700554668903, -0.008333866484463215, -0.07420716434717178, 0.02438274584710598, -0.008320113644003868, 0.012610817328095436, -0.004651700146496296, -0.010286686010658741, 0.010706129483878613, -0.03614092245697975, 0.01885434053838253, 0.032015249133110046, -0.02548292651772499, 0.016681484878063202, 0.010492970235645771, -0.011379990726709366, -0.016351429745554924, 0.0004278240376152098, 0.022925008088350296, -0.020600877702236176, 0.024286480620503426, -0.003400244750082493, 0.00606474420055747, -0.02110970951616764, -0.004875174257904291, 0.001423358335159719, -0.008306361734867096, 0.011744424700737, -0.029677364975214005, 0.016420191153883934, -0.019294412806630135, -0.005084895994514227, 0.009942879900336266, 0.0077631473541259766, 0.008072572760283947, 0.026459336280822754, -0.021357251331210136, -0.018015453591942787, -0.0038575073704123497, 0.025991760194301605, -0.00018898605776485056, -0.010568607598543167, -0.0034260302782058716, -0.02711944468319416, 0.032262787222862244, -0.013848519884049892, -0.01811171881854534, -0.030997581779956818, -0.0003038388676941395, -0.00905585940927267, 0.006594205740839243, -0.007199305109679699, 0.01818048022687435, 0.014948700554668903, -0.020243318751454353, -0.0252078827470541, 0.012686454690992832, 0.005263675469905138, 0.004338836297392845, 0.013545970432460308, 0.019445687532424927, -0.009984136559069157, 0.022732475772500038, 0.023887665942311287, 0.004380092956125736, 0.004651700146496296, -0.0005904874415136874, -0.009605949744582176, -0.00652200635522604, 0.0041394284926354885, -0.02102719619870186, 0.0010529069695621729, 0.004187561571598053, -0.013676616363227367, 0.015072470530867577, 0.018978111445903778, -0.0028518736362457275, -0.008051944896578789, 0.016145145520567894, 0.014769921079277992, -0.009757224470376968, 0.03218027576804161, 0.021907340735197067, -0.018194232136011124, -0.0342981219291687, 0.03550831973552704, 0.010341695509850979, -0.0023206928744912148, -0.023200053721666336, -0.015306258574128151, -0.016076385974884033, 0.015237498097121716, -0.00120761978905648, -0.0017757598543539643, -0.0025699525140225887, -0.012273887172341347, 0.0067867375910282135, 0.0038953260518610477, -0.0019115633331239223, 0.003503386862576008, 0.00022712707868777215, 0.02493283711373806, 0.009764100424945354, 0.014508628286421299, 0.009227762930095196, -0.015595056116580963, -0.01259706448763609, -0.012933994643390179, -0.01598011888563633, -0.001370068290270865, -0.001770602772012353, 0.031052589416503906, 0.01694277673959732, 0.009894747287034988, 0.015058718621730804, 0.004851107485592365, -0.014728664420545101, 0.01519624050706625, 0.011324981227517128, -0.007192429155111313, -0.02562044933438301, 0.011909452266991138, 0.026418080553412437, -0.005136467050760984, 0.01994076929986477, 0.00011721647751983255, 0.026198044419288635, 0.006587329786270857, -0.007501854561269283, -0.014261087402701378, 0.00567280501127243, -0.007412464823573828, -0.019486945122480392, -0.02062838152050972, -0.0020731522236019373, -0.020917179062962532, -0.02629430964589119, 0.008210095576941967, -0.014467371627688408, 0.027490755543112755, 0.0002868634182959795, 0.07651754468679428, 0.007735643070191145, -0.017589133232831955, -0.012040098197758198, -0.010341695509850979, 0.015732578933238983, 0.00836137030273676, 0.02458903007209301, -0.021494774147868156, -0.023873914033174515, 0.012700206600129604, -0.0016262041172012687, 0.017465362325310707, 0.009048983454704285, -0.008216971531510353, -0.017327839508652687, -0.007006773725152016, 0.01659897156059742, -0.014824929647147655, 0.01344970427453518, 0.03468318656086922, -0.018895598128437996, 0.019376926124095917, -0.01974823698401451, -0.04249446466565132, -0.004827041178941727, 0.009509683586657047, -0.006907069589942694, -0.016282668337225914, -0.011572522111237049, 0.029319806024432182, -0.00041063371463678777, -0.011214963160455227, 0.004118800163269043, 0.0077287666499614716, 0.0003038388676941395, 0.011648159474134445, -0.0157738346606493, 0.007508730981498957, 0.0019132823217660189, -0.014508628286421299, 0.002208955818787217, -0.015760082751512527, -0.03526078164577484, -0.004789222497493029, -0.006226333323866129, -0.011159954592585564, -0.0014775077579542994, 0.001808421453461051]" +17,"We've also built a completely new suite for our employee experience platform, Microsoft Viva, which now has more than 20 million monthly active users at companies like Finastra, SES, and Unilever. And we are extending Viva to meet role-specific needs. Viva Sales is helping salespeople at companies like Adobe, Crayon, and PwC reclaim their time by bringing customer interactions across Teams and Outlook directly into their CRM system. Now on to Windows.","[-0.03199895843863487, -0.02947564609348774, -0.0066167693585157394, -0.011230138130486012, -0.032442618161439896, 0.004492055159062147, -0.043062724173069, -0.029614288359880447, 0.004956511314958334, -0.016290631145238876, 0.008082926273345947, 0.007368911523371935, 0.015126025304198265, -0.01473782304674387, -0.007854164578020573, -0.008117587305605412, 0.006173109635710716, -0.03718423470854759, 0.0009453765815123916, -0.04134354367852211, -0.00235520931892097, -0.002382938051596284, 0.004637631122022867, 0.0012928522191941738, -0.030751166865229607, -0.013150352984666824, -0.0023326799273490906, -0.01656791940331459, 0.023098036646842957, -0.020602449774742126, 0.003102152142673731, -0.010536919347941875, -0.010523054748773575, 0.0031940035987645388, -0.020131060853600502, 0.0052337986417114735, -0.010141785256564617, 0.010627037845551968, 0.015153753571212292, -0.003289321204647422, 0.007972011342644691, 0.012380880303680897, 0.0025718400720506907, 0.008505789563059807, -0.044144146144390106, 0.024858810007572174, -0.026938466355204582, -0.006831666920334101, -0.01013485249131918, 0.012540319934487343, 0.01893872581422329, 0.02986384741961956, -0.039541177451610565, -0.0033222490455955267, 0.006010203156620264, -0.02668890729546547, -0.0066618286073207855, 0.022349359467625618, 0.004661893472075462, -0.004700020421296358, -0.03194350376725197, 0.018245507031679153, -0.01939624920487404, -0.00479013891890645, -0.03671284392476082, -0.005972076207399368, -0.01728886552155018, -0.003649794729426503, 0.010682495310902596, 0.0021680404897779226, 0.029752932488918304, 0.017885034903883934, -0.0030536269769072533, 0.0047520119696855545, 0.023014850914478302, 0.006173109635710716, -0.018564388155937195, -0.004939180798828602, 0.023721933364868164, 0.002729547442868352, 0.01983991079032421, -0.028103072196245193, -0.00971198920160532, -0.0019531426951289177, 0.017940491437911987, 0.026536399498581886, -0.006890590768307447, 0.01240167673677206, -0.012748286128044128, 0.00761153781786561, 0.011583679355680943, 0.011098425835371017, -0.003384638810530305, 0.036823760718107224, -0.019188284873962402, 0.020546993240714073, 0.017302731052041054, 0.009171279147267342, -0.00823543407022953, -0.036879219114780426, 0.003109084442257881, -0.01550036296248436, -0.027340533211827278, -0.007965079508721828, -0.01983991079032421, 0.02237708866596222, -0.0043048863299191, -0.004041463136672974, 0.04006802290678024, 0.0077709779143333435, -0.02756236307322979, 0.024664709344506264, 0.017177950590848923, -0.011451967991888523, -0.003228664631024003, -0.012228372506797314, 0.022127529606223106, -0.0011117489775642753, 0.004554444923996925, -0.015999479219317436, 0.0051471465267241, -0.003830031491816044, 0.03845975548028946, 0.0037399132270365953, 0.013365250080823898, 0.01224223617464304, 0.01042600441724062, -0.029752932488918304, 0.018314829096198082, -0.009774379432201385, 0.02908744290471077, -0.0014670233940705657, 0.006876726169139147, -0.02230776660144329, -0.027354396879673004, 0.0076254019513726234, -0.0011074163485318422, 0.019118962809443474, -0.006162711419165134, -0.012845336459577084, -0.007965079508721828, 0.019923096522688866, -0.01473782304674387, 0.0006628900882788002, 0.02487267553806305, 0.03119482658803463, 0.004706952720880508, -0.002001668093726039, 0.00972585380077362, -0.00033469448680989444, 0.02889334224164486, -0.0411771722137928, 0.0010675563244149089, -0.0019254140788689256, 0.021642277017235756, -0.0018283635145053267, -0.01008632779121399, 0.02165614254772663, -0.021448176354169846, -0.013025573454797268, -0.026855280622839928, 0.01877235434949398, -0.008970245718955994, 0.014848737977445126, 0.008554315194487572, 0.016041073948144913, 0.017912762239575386, -0.0018439608393236995, -0.007937350310385227, -0.017358187586069107, 0.002138578798621893, 0.03432817384600639, -0.023264408111572266, 0.021295668557286263, -0.0008400939987041056, 0.011798576451838017, -0.011250934563577175, -0.001323180622421205, 0.013795045204460621, -0.02836649678647518, 0.028560597449541092, -0.006204304285347462, 0.005999804940074682, 0.01237394753843546, -0.02768714167177677, -0.0011152150109410286, 0.01637381874024868, -0.021683869883418083, 0.021877972409129143, -0.013185013085603714, -0.004058793652802706, 0.015112160705029964, 0.009531752206385136, -0.02075495757162571, -0.6450812816619873, -0.016165852546691895, 0.0027468777261674404, 0.0057814414612948895, 0.02506677620112896, 0.0039409464225173, 0.032248519361019135, -0.007251064293086529, -0.0059616779908537865, -0.0031038853339850903, -0.013822774402797222, -0.004706952720880508, -0.0061349826864898205, -4.180973337497562e-05, -0.004031064920127392, -0.018037542700767517, 0.016969986259937286, -0.00985756516456604, 0.013711859472095966, -5.816535485791974e-05, -0.024858810007572174, 0.0027139498852193356, -0.007382775656878948, 0.0035198163241147995, 0.015195346437394619, -0.0017304463544860482, 0.0030016356613487005, -0.016526326537132263, -0.01751069538295269, 0.008873195387423038, 0.003044961718842387, 0.026051146909594536, 0.014190180227160454, -0.002954843221232295, 0.05282324180006981, 0.003178406273946166, -0.022488003596663475, 0.014308026991784573, 0.011992678046226501, 0.024359693750739098, -0.049107588827610016, 0.023500103503465652, -0.010211106389760971, 0.006474659778177738, 0.021059975028038025, 0.010647834278643131, 0.024844946339726448, -0.002661958569660783, 0.013822774402797222, 0.002533713122829795, 0.014266434125602245, -0.025926366448402405, -0.017496831715106964, -0.009302990511059761, -0.0034799561835825443, 0.004734681453555822, 0.013947553932666779, -0.01464077178388834, -0.007209470961242914, 0.008304756134748459, -0.023125765845179558, -0.008179976604878902, 0.01586083695292473, -0.03457773104310036, -0.03618599846959114, 0.03258126229047775, 0.010190309956669807, -0.001255591749213636, -0.0021351126488298178, -0.011951085180044174, -0.008242366835474968, 0.005511085968464613, 0.0075630126520991325, -0.026078876107931137, 0.013185013085603714, 0.020477671176195145, -0.0018196982564404607, 0.0021125830244272947, -0.019118962809443474, 0.039152972400188446, 0.011313323862850666, -0.013143420219421387, 0.012360083870589733, -0.010010072961449623, 0.00618697376921773, -0.0079096220433712, -0.03751697763800621, -0.015569685027003288, 0.0219888873398304, 0.010252700187265873, 0.02169773541390896, 0.00020406616386026144, 0.010613173246383667, -0.03041842207312584, 0.007091624196618795, 0.029337001964449883, -0.0072164032608270645, -0.006627167575061321, 0.0067623453214764595, -0.006713820155709982, 0.0008717221207916737, -0.00486292690038681, 0.014821008779108524, 0.0003420599387027323, 0.020727230235934258, 0.03457773104310036, -0.02065790817141533, 0.00879000872373581, 0.024470608681440353, -0.009531752206385136, 0.0040969206020236015, -0.032803092151880264, -0.015611277893185616, -0.022349359467625618, -0.015333990566432476, -0.027742600068449974, 0.012769082561135292, -0.020117197185754776, -0.0011524755973368883, -0.017718661576509476, -0.0053343153558671474, -0.028297174721956253, 0.013094895519316196, 0.0065890406258404255, 0.01796822063624859, 0.009975412860512733, 0.0032945203129202127, -0.007452097721397877, -0.009296058677136898, -0.006731150206178427, 0.0056878565810620785, -0.022072073072195053, 0.007583809085190296, 0.0010822871699929237, 0.005836898926645517, 0.013919824734330177, 0.020824279636144638, -0.011451967991888523, -0.0024713235907256603, -0.01076568104326725, -0.02908744290471077, -0.008082926273345947, -0.006595972925424576, 0.008471128530800343, -0.008228502236306667, -0.04339547082781792, -0.023098036646842957, 0.02250186912715435, -0.017080901190638542, 0.014432806521654129, -0.006679159123450518, -0.017108630388975143, -0.012942386791110039, 0.023195086047053337, 0.013566283509135246, 0.0007712054648436606, -0.022030480206012726, -0.03804382309317589, -0.01702544279396534, -0.016789749264717102, -0.008166112005710602, 0.0022182988468557596, -0.0008037000661715865, 0.0036428626626729965, -0.0034331639762967825, -0.0048525286838412285, -0.026148196309804916, 0.024013085290789604, 0.012817608192563057, -0.01371879130601883, 0.016969986259937286, -0.003091753926128149, 0.0021836378145962954, 0.03615827113389969, 0.003311850829049945, 0.005999804940074682, -0.025316335260868073, 0.014321891590952873, -0.0035042189992964268, 0.003334380453452468, -0.0009427769691683352, 0.009836768731474876, -0.015292397700250149, -0.011694594286382198, 0.021614549681544304, -0.00327892298810184, -0.002336145844310522, 0.046390172094106674, -0.04134354367852211, -0.0010294292587786913, 0.02376352623105049, -0.011445035226643085, -0.02247413992881775, 0.010107124224305153, -0.007902689278125763, 0.010432936251163483, -0.039513446390628815, -5.4482632549479604e-05, -0.0028369962237775326, -0.02087973803281784, 0.009101957082748413, 0.01520921103656292, -0.00018944358453154564, 0.0008907855954021215, 0.01920214854180813, -0.0167620200663805, -0.01058544497936964, -0.017233408987522125, 0.04655654728412628, -0.0038820228073745966, 0.007147081661969423, -0.02230776660144329, -0.01238781213760376, -0.012859201058745384, 0.008443400263786316, 0.011847102083265781, 0.008193841204047203, -0.005542281083762646, -0.0028196657076478004, 0.016498597338795662, 0.0068628620356321335, -0.03294173628091812, 0.028837883844971657, -0.01906350441277027, -0.01949330046772957, 0.012394744902849197, -0.0022408284712582827, 0.03651874512434006, 0.013656402006745338, -0.030196592211723328, 0.0072164032608270645, 0.012408608570694923, 0.008734551258385181, -0.010419072583317757, 0.009899158030748367, -0.009573346003890038, 0.04089988395571709, -0.02928154356777668, 0.017940491437911987, 0.0007608071900904179, 0.02707711048424244, 0.020241975784301758, 0.032054416835308075, -0.026023417711257935, 0.035880982875823975, 0.005850763060152531, 0.008013604208827019, -0.024013085290789604, -0.02322281524538994, 0.01550036296248436, -0.014210976660251617, -0.010065530426800251, 0.008519654162228107, 0.003334380453452468, 0.009171279147267342, -0.024304235354065895, 0.0015311461174860597, -0.004436597693711519, 0.01825937256217003, 0.028782427310943604, -0.0035475450567901134, 0.01281067542731762, 0.0253301989287138, -0.0016975185135379434, -0.005750246345996857, -0.00612805038690567, -0.011361849494278431, 0.0011325455270707607, -0.021905699744820595, -0.021295668557286263, 0.02276529185473919, -0.014432806521654129, 0.035714611411094666, -0.00042654594290070236, 0.008450332097709179, 0.008651365526020527, 0.01016258168965578, -0.006471193395555019, -0.027118703350424767, -0.003906285390257835, -0.0043048863299191, -0.03310810774564743, 0.006932183634489775, -0.009906090795993805, 0.008762280456721783, -0.006131516303867102, -0.006232033018022776, -0.014106993563473225, -0.0008166978950612247, 0.011146951466798782, 0.005684390664100647, 0.020519264042377472, -0.015333990566432476, 0.012464066036045551, -0.004665359854698181, 0.02036675624549389, 0.03003022074699402, 0.0021784387063235044, 0.0035302145406603813, 0.0035804728977382183, 0.00507435854524374, -0.0033829056192189455, -0.0023049511946737766, -0.02000628225505352, 0.029364731162786484, -0.011015240103006363, -0.042757708579301834, -0.02431810088455677, -0.027506904676556587, -0.014862601645290852, -0.0051471465267241, 0.0050327652134001255, -0.02344464510679245, 0.007237199693918228, 0.010550783947110176, 0.010536919347941875, 0.0005706053925678134, -0.012852268293499947, 0.033967699855566025, -0.0022494937293231487, -0.003577006747946143, -0.007306521758437157, -0.01630449667572975, 0.01705317199230194, 0.07320386171340942, 0.004987706430256367, -0.02191956527531147, 0.015389448031783104, 0.005313518922775984, -0.010453732684254646, -0.044144146144390106, -0.02000628225505352, 0.00641227001324296, -0.003913217689841986, -0.011666865088045597, -0.013829706236720085, 0.013365250080823898, 0.009614938870072365, 0.012658167630434036, 0.015652870759367943, 0.018592117354273796, -0.002908051013946533, -0.008838534355163574, -0.004353411495685577, 0.006089923437684774, 0.015347855165600777, -0.003937480505555868, 0.018897132948040962, 0.03441135957837105, 0.019243741407990456, 0.023749660700559616, 0.034383632242679596, -0.01416938379406929, -0.03194350376725197, 0.005795305594801903, 0.030584795400500298, 0.01326126791536808, 0.02344464510679245, -0.006464261561632156, 0.018924862146377563, -0.03155529871582985, 0.017843440175056458, -0.001575338770635426, 0.024526065215468407, 0.00500850286334753, 0.023652611300349236, 0.010502258315682411, -0.02208593674004078, 0.013219674117863178, -0.018411880359053612, -0.012089728377759457, 0.0006009336793795228, 0.011923355981707573, -0.01767706871032715, -0.0009453765815123916, -0.000618697376921773, -0.011015240103006363, -0.015431040897965431, -0.022779155522584915, 0.01666496880352497, -0.024013085290789604, -0.00822156947106123, -0.013670266605913639, -0.03784972429275513, -0.028449682518839836, -0.010460665449500084, -0.009178210981190205, -0.024650845676660538, -0.0025215819478034973, -0.020699501037597656, -0.019091233611106873, -0.003892421256750822, -0.004228631965816021, 0.009753582067787647, -0.004589105490595102, -0.041593100875616074, -0.02467857487499714, 0.031666215509176254, 0.0420367605984211, -0.0022148326970636845, 0.009441634640097618, -0.002996436320245266, 0.0003476923448033631, 0.018134592100977898, 0.010481461882591248, -0.0029201824218034744, 0.00014503428246825933, -0.008859330788254738, -0.030557066202163696, -0.013677198439836502, -0.011250934563577175, -0.0022338961716741323, -0.003930548205971718, 0.0005597738199867308, -0.003604735480621457, -0.005635865498334169, 0.006502388510853052, -0.014238705858588219, 0.01175698358565569, 0.008783076889812946, 0.01835642196238041, 0.017136357724666595, 0.01990923099219799, 0.0024435948580503464, 0.009739718399941921, -0.036629658192396164, -0.006748480722308159, -0.024151727557182312, 0.008720687590539455, -0.008263163268566132, 0.009039567783474922, 0.013379114679992199, -0.012574980966746807, -0.019867638126015663, -0.0022564257960766554, -0.0067900740541517735, 0.015805378556251526, -0.010211106389760971, 0.02000628225505352, -0.011999609880149364, 0.024692438542842865, 0.017815712839365005, 0.012644303031265736, -0.010821138508617878, 0.03463318943977356, -0.04383913055062294, 0.009982344694435596, -0.020644042640924454, -0.01683134213089943, -0.0012295960914343596, 0.02928154356777668, -0.01942397840321064, -0.01120240893214941, 0.01906350441277027, 0.010592376813292503, 0.002051926450803876, -0.007375843357294798, -0.01344150397926569, -0.024761760607361794, -0.019798316061496735, 0.01104296837002039, 0.004696554504334927, -0.015084431506693363, -0.022058209404349327, -0.017094764858484268, 0.01942397840321064, -0.007341182790696621, -0.015999479219317436, 0.003850828157737851, -0.036657389253377914, -0.008297824300825596, 0.004772808402776718, -0.011244001798331738, 0.016401546075940132, -0.0008188642095774412, -0.012200643308460712, -0.020893601700663567, -0.0030536269769072533, -0.010523054748773575, -0.016290631145238876, 0.0014808877604082227, -0.0035908711142838, 0.02833876758813858, 0.028227852657437325, 0.02908744290471077, 0.0018630244303494692, -0.003819633275270462, -0.02399921976029873, 0.003128147916868329, -0.009330719709396362, -0.016512461006641388, -0.004121183417737484, 0.0015363452257588506, 0.013899028301239014, 0.008193841204047203, 0.019188284873962402, 0.026938466355204582, -0.024401286616921425, 0.001984337577596307, 0.0010372280376031995, -0.03710104897618294, -0.021489769220352173, -0.02315349318087101, -0.02133726142346859, -0.009815972298383713, -0.009649599902331829, -0.018398014828562737, 0.004190505016595125, -0.0069079212844371796, 0.007147081661969423, 0.014210976660251617, 0.013788113370537758, 0.014252569526433945, 0.002606501104310155, 0.030778896063566208, -0.007819503545761108, 0.015195346437394619, -0.004658427555114031, 0.020117197185754776, -0.022390954196453094, -0.0020449941512197256, -0.04558604210615158, 0.009282194077968597, 0.029974762350320816, 0.007375843357294798, 0.024165593087673187, 0.02228003926575184, 0.019770588725805283, 0.0027451447676867247, 0.03527095168828964, -0.01942397840321064, -0.01283840462565422, 0.018106864765286446, -0.00197047321125865, 0.0011334120063111186, 0.0088662626221776, -0.0028543267399072647, -0.015652870759367943, -0.022127529606223106, 0.0057537127286195755, 0.009510955773293972, 0.011590611189603806, -0.012977047823369503, -0.021420447155833244, -0.0007062162039801478, -0.010349750518798828, 0.04511465132236481, 0.0017781051574274898, 0.020574720576405525, 0.012214507907629013, 0.01683134213089943, -0.015749922022223473, -0.04383913055062294, -0.007452097721397877, -0.00775018148124218, 0.005875025875866413, 0.0391807034611702, -0.0027919369749724865, -0.027992157265543938, 0.011153883300721645, -0.006391473580151796, -0.023139629513025284, -0.031472112983465195, 0.0034608927089720964, -0.013801977969706059, 0.0008400939987041056, -0.02986384741961956, -0.015126025304198265, -0.027798056602478027, 0.05165863409638405, -0.0253579281270504, -0.007029234431684017, 0.03848748281598091, -0.03310810774564743, -0.009344583377242088, 0.029226087033748627, -0.004911452066153288, 0.028449682518839836, -0.0035198163241147995, -0.012574980966746807, 0.013795045204460621, 0.002986038103699684, -0.012505659833550453, -0.014488263987004757, -0.009996209293603897, 0.011680729687213898, -0.006079525221139193, 0.004876791033893824, 0.012034270912408829, 0.02133726142346859, 0.006925251334905624, 0.025233149528503418, 0.01877235434949398, 0.022196851670742035, 0.0023326799273490906, -0.005795305594801903, 0.01787116937339306, 0.014162451028823853, 0.015042838640511036, -0.014696229249238968, 0.0020086001604795456, -0.02429037168622017, -0.012276897206902504, -0.01644313894212246, 0.0004913185257464647, -0.017455238848924637, 0.003927082289010286, -0.012006542645394802, 0.024234915152192116, -0.0003806202148552984, -0.001190602546557784, 0.01206200011074543, -0.014585314318537712, -0.020546993240714073, 0.006765811238437891, -0.006914853118360043, -0.019673537462949753, 0.004131581634283066, 0.0034314310178160667, -0.0039513446390628815, -0.002977372845634818, -0.001232195645570755, -0.026245247572660446, 0.00292191538028419, 0.0013309792848303914, 0.005604670383036137, -0.03210987523198128, 0.009677328169345856, -0.005999804940074682, -0.014210976660251617, 0.023458510637283325, -0.010010072961449623, -0.03122255578637123, 0.02337532304227352, 0.023167358711361885, 0.015583548694849014, 0.0008435600902885199, 0.005247663240879774, 0.01702544279396534, 0.011909491382539272, 0.013940621167421341, -0.0032217323314398527, -0.003791904542595148, 0.013004777021706104, 0.0006303954869508743, -0.024914268404245377, 0.01473782304674387, -0.01974285952746868, 0.000774238258600235, 0.000957507872954011, -0.0027676743920892477, -0.011590611189603806, -0.039152972400188446, -0.008207705803215504, -0.004804003518074751, -0.0021281803492456675, 0.005923551041632891, -0.011396510526537895, -0.03369041159749031, 0.003549278015270829, -0.01001700572669506, 0.008415671065449715, 0.020865872502326965, -0.021780921146273613, -0.0027676743920892477, 0.0205608569085598, 0.029531102627515793, -0.003687921678647399, 0.0035458120983093977, -0.000526845979038626, -0.03083435259759426, -0.025954095646739006, -0.018910996615886688, -0.01654019020497799, 0.01630449667572975, 0.02850513905286789, 0.02587090991437435, -0.02801988646388054, -0.004277157597243786, -0.01809299923479557, -0.06926637887954712, -0.004141979850828648, 0.002469590399414301, 0.024068541824817657, 0.037627894431352615, 0.0038127009756863117, 0.006020601373165846, -0.0006559579051099718, -0.012866132892668247, 0.014682365581393242, -0.031278014183044434, 0.006564777810126543, 0.015347855165600777, -0.02850513905286789, 0.0181623212993145, -0.009919955395162106, -0.013025573454797268, -0.0029323138296604156, 0.00020666573254857212, -0.030917540192604065, 0.003046694677323103, -0.021157024428248405, -0.018037542700767517, -0.0065613118931651115, 0.02969747595489025, 0.007088157813996077, 0.0215313620865345, -0.006984175182878971, 0.043367739766836166, -0.006443464662879705, -0.018134592100977898, 0.013351385481655598, -0.029364731162786484, -0.006051796488463879, 0.021157024428248405, -0.0006039665313437581, 0.02584318071603775, 0.02003401145339012, -0.004977307748049498, 0.006464261561632156, -0.011507425457239151, -0.005712119396775961, 0.009101957082748413, -0.012304626405239105, 0.012609641999006271, 0.0239298976957798, 0.022002751007676125, -0.010238835588097572, 0.014134722761809826, 0.0344945453107357, -0.01371879130601883, -0.01598561555147171, 0.01758001744747162, -0.02276529185473919, 0.026647314429283142, -0.0191328264772892, -0.004069191869348288, 0.002038062084466219, 0.003982539754360914, -0.014321891590952873, 0.010322021320462227, -0.009393109008669853, -0.0003292787296231836, 0.005181807558983564, 0.0004297953855711967, 0.013191945850849152, -0.0017668403452262282, 0.01551422756165266, -0.00025909036048687994, -0.003044961718842387, -0.00031628087162971497, 0.016678834334015846, -0.009892226196825504, 0.05224093794822693, 0.0023396119941025972, -0.024498337879776955, 0.024595387279987335, 0.017482968047261238, -0.002382938051596284, 0.034938205033540726, 0.20718911290168762, 0.030279777944087982, 0.008200773037970066, 0.019382385537028313, 0.011708457954227924, 0.01298398058861494, 0.0034470283426344395, 0.0009315122151747346, 0.014210976660251617, 0.00015326625725720078, 0.0047797407023608685, 0.008914788253605366, -0.01654019020497799, 0.002459192182868719, 0.007195606827735901, -0.04034531116485596, -0.03393997251987457, -0.01374652050435543, -0.00896331388503313, 0.013795045204460621, 0.015431040897965431, -0.01857825182378292, 0.010114056058228016, -0.015611277893185616, 0.0021749725565314293, 0.010051666758954525, -0.011015240103006363, -0.006713820155709982, 0.02869924157857895, 0.01942397840321064, -0.011313323862850666, 0.01608266681432724, 0.009781311266124249, 0.035492781549692154, 0.004741613753139973, -0.017205679789185524, 0.004360343795269728, -0.015320125967264175, 0.014862601645290852, 0.015347855165600777, 0.005095154978334904, 0.00831862073391676, -0.02503904700279236, 0.0008842867100611329, -0.009677328169345856, 0.01952102966606617, -0.008152248337864876, 0.010044733993709087, 0.012796810828149319, 0.024401286616921425, -0.03757243603467941, -0.00499463826417923, 0.017191816121339798, 0.021670006215572357, -0.0036255321465432644, 0.01311569195240736, -0.01311569195240736, 0.0029201824218034744, -0.03177712857723236, 0.025011319667100906, -0.009178210981190205, 0.016318360343575478, 0.003968675155192614, -0.012977047823369503, -0.03100072592496872, -0.020838145166635513, -0.018536658957600594, 0.007868028245866299, -0.013663333840668201, -0.009483227506279945, -0.004821333568543196, -0.002687954343855381, -0.00746596185490489, 0.003635930363088846, -0.01647086814045906, -0.016886800527572632, 0.03485501930117607, 0.029004257172346115, 0.006232033018022776, 0.04253587871789932, 0.0031125505920499563, -0.0126650994643569, 0.0017798382323235273, -0.006363744847476482, -0.007833367213606834, -0.006731150206178427, 0.01922987774014473, 0.0014141654828563333, 0.00515407882630825, 0.006568244192749262, -0.01920214854180813, -0.008602839894592762, -0.007777910213917494, -0.022640511393547058, -0.006797006353735924, 0.013081030920147896, -0.010023937560617924, -0.0018578252056613564, -0.010183378122746944, 0.013552418909966946, -0.023070307448506355, 0.06011589616537094, 0.02986384741961956, -0.003119482658803463, -0.0009514422272332013, 0.0028058013413101435, 0.00020460774248931557, 0.023985356092453003, -0.008055197075009346, -0.017760254442691803, -0.005878491792827845, -0.006713820155709982, 0.016096530482172966, -0.0157637856900692, -0.0023846712429076433, -0.004294487647712231, -0.012249168939888477, -0.005573475733399391, 0.01344150397926569, 0.015264668501913548, 0.02986384741961956, -0.018273236230015755, 0.0022477605380117893, 0.00908116064965725, -0.001219197758473456, -0.0056081367656588554, -0.02944791689515114, 0.022002751007676125, -0.011708457954227924, -0.0191328264772892, 0.02801988646388054, 0.0019410114036872983, 0.02966974675655365, -0.034716375172138214, -0.01219371147453785, 0.002637695986777544, 0.006831666920334101, -0.008651365526020527, -0.008900923654437065, 0.0022616249043494463, -0.005708653479814529, -0.0007213803473860025, -0.01154208555817604, -0.006606371141970158, -0.005947813857346773, -0.008006672374904156, 0.0263284333050251, 0.008838534355163574, -0.013739587739109993, -0.013545487076044083, -0.020228112116456032, -0.0013110492145642638, -0.010647834278643131, 0.00732038589194417, 0.0324980765581131, 0.008443400263786316, -0.024831082671880722, -0.010883528739213943, 0.028006022796034813, 0.011888694949448109, -0.04475417733192444, -0.005122883711010218, 0.029142901301383972, -0.0026827550027519464, -0.017427509650588036, -0.00938617717474699, -0.17879487574100494, 0.01389209646731615, -0.011153883300721645, -0.01952102966606617, 0.018786218017339706, -0.008692958392202854, -0.0016281966818496585, 0.026896873489022255, -0.013607876375317574, 0.010412139818072319, 0.01751069538295269, 0.00492185028269887, -0.012152117677032948, -0.015431040897965431, 0.008713754825294018, 0.004485122859477997, -0.0015190147096291184, 0.013836639001965523, 0.03313583880662918, 0.004100386518985033, 0.023292137309908867, -0.0038127009756863117, -0.012706693261861801, -0.025441113859415054, -0.002590903779491782, -0.022654376924037933, -0.0035700746811926365, -0.010127920657396317, 0.023028714582324028, -0.0215313620865345, 0.006100321654230356, -0.021877972409129143, 0.024276508018374443, 0.007084691897034645, 0.009504023939371109, -0.008720687590539455, 0.006159245036542416, -0.018051406368613243, 0.007923485711216927, 0.023403052240610123, 0.014807144179940224, -0.0006399272242560983, -0.0102942930534482, 0.015472633764147758, 0.0013041170313954353, 0.02036675624549389, 0.017275001853704453, -0.0020034010522067547, -0.005244196858257055, -0.006270159967243671, 0.02652253583073616, -0.05795305594801903, 0.004117717035114765, 0.012145185843110085, -0.007160945795476437, 0.017108630388975143, 0.011396510526537895, 0.021503634750843048, -0.0031940035987645388, -0.018328694626688957, 0.012457134202122688, -0.005434832070022821, 0.01974285952746868, -0.005972076207399368, -0.017954355105757713, -0.02182251401245594, 0.003072690451517701, 0.01767706871032715, -0.012561117298901081, 0.02458152361214161, 0.0010250966297462583, -0.007868028245866299, -0.028255581855773926, -0.01464077178388834, 0.009490159340202808, 0.006554379593580961, -0.01770479790866375, 0.007556080352514982, 0.028394224122166634, 0.00937231257557869, -0.006880192551761866, 0.0004934848402626812, 0.0011594077805057168, 0.021212482824921608, -0.04400550201535225, 0.014252569526433945, 0.005885424092411995, 0.004460860043764114, -0.0027191489934921265, 0.004141979850828648, 0.00500850286334753, -0.03601962700486183, -0.00822156947106123, -0.004495521076023579, -3.2413376175099984e-05, 0.01237394753843546, 0.004738147370517254, 0.02337532304227352, 0.0038404297083616257, -0.009219804778695107, 0.003909751772880554, -0.0038958871737122536, -0.02032516337931156, 0.009101957082748413, 0.0411771722137928, -0.005462560802698135, 0.012574980966746807, 0.0025493106804788113, 0.026966195553541183, -0.01608266681432724, -0.022723698988556862, 0.022820748388767242, 0.03271990641951561, 0.01048839371651411, -0.005316984839737415, 0.02571840211749077, -0.007257996592670679, 0.006159245036542416, -0.006221634801477194, -0.019631944596767426, 0.0632215142250061, -0.0066618286073207855, -0.01233928743749857, 0.002528514014557004, -0.003968675155192614, -0.01685907132923603, -0.10298452526330948, -0.037045590579509735, 0.0008526585879735649, 0.020449941977858543, 0.007382775656878948, 0.03460546210408211, -0.008242366835474968, 0.030584795400500298, -0.004107318818569183, 0.025219283998012543, 0.021905699744820595, -0.012921590358018875, -0.008484993129968643, 0.011486628092825413, 0.0382656529545784, -0.005805703811347485, -0.013039438053965569, -0.010273496620357037, -0.033413127064704895, 0.02165614254772663, -0.021032245829701424, -0.033413127064704895, 0.02169773541390896, -0.013857435435056686, -0.02399921976029873, -0.0014314959989860654, -0.013316725380718708, -0.007313454058021307, 0.027770327404141426, 0.007098556030541658, 0.0027728735003620386, -0.021378854289650917, 0.03044615127146244, 0.005972076207399368, -0.002940978854894638, 0.01104296837002039, -0.035548239946365356, -0.021004516631364822, 0.004204369615763426, -0.041593100875616074, -0.003065758151933551, -0.01942397840321064, 0.011001375503838062, -0.033413127064704895, -0.006152313202619553, 0.009400040842592716, -0.0006598572363145649, -0.0015285465633496642, 0.015389448031783104, -0.0287269689142704, -0.028033751994371414, 0.0008855864871293306, -0.007999739609658718, -0.037794265896081924, 0.003989471588283777, -0.008561247028410435, 0.01062010508030653, 0.0076184701174497604, -0.01386436726897955, -0.02136499062180519, -0.007819503545761108, -0.007978943176567554, -0.028976527974009514, 0.01954875886440277, 0.008554315194487572, -0.009788243100047112, -0.003256393363699317, -0.023167358711361885, 0.004031064920127392, -0.004239030182361603, -0.031860318034887314, -0.0038958871737122536, -0.014148587360978127, 0.024304235354065895, 0.0006299621891230345, 0.020214248448610306, -0.003218266414478421, -0.02405467815697193, -0.0008171311346814036, 3.975173967774026e-05, -0.015541955828666687, -0.018952589482069016, -0.009947683662176132, 0.01168766152113676, -0.0010250966297462583, 0.021420447155833244, 0.005840364843606949, 0.002057125559076667, 0.002991237211972475, -0.042175404727458954, -0.0036220659967511892, -0.017690932378172874, 0.025635216385126114, -0.006523184943944216, -0.0036428626626729965, 0.0010606241412460804, -0.01932692900300026, -0.011292527429759502, 0.018411880359053612, 0.013697994872927666, -0.023624882102012634, 0.00027555431006476283, -0.07409118115901947, 0.010058598592877388, 0.019659673795104027, 0.00612111808732152, 0.020907465368509293, -0.01935465633869171, 0.005410569254308939, -0.022557325661182404, -0.004516317509114742, -0.009642667137086391, -0.037600163370370865, 0.011036036536097527, 0.0015458769630640745, 3.4335971577093005e-05, -0.03870931267738342, 0.0157915148884058, 0.05007809400558472, -0.002478255657479167, 0.026785958558321, 0.029004257172346115, 0.01588856428861618, -0.019049640744924545, 0.02470630221068859, 0.010523054748773575, -0.0015415443340316415, -0.0015857369871810079, -0.028186259791254997, -0.0021420447155833244, -0.013496961444616318, -0.010918189771473408, 0.009309922344982624, -0.013795045204460621, 0.0017373785376548767, 0.03615827113389969, -0.008984110318124294, -0.015347855165600777, -0.029337001964449883, 0.017302731052041054, 0.015458770096302032, -0.0023153494112193584, -0.01233928743749857, -0.027992157265543938, 0.004245962481945753, -0.036629658192396164, -0.0021455108653753996, -0.011354916729032993, 0.0012036004336550832, -0.0054798913188278675, 0.010446800850331783, 0.022363224998116493, -0.0009531752439215779, -0.001222663908265531, -0.0324980765581131, -0.023430781438946724, 0.010772613808512688, -0.00037022194010205567, -0.003715650411322713, 0.006706887856125832, 0.026175925508141518, -0.006190440151840448, 0.03155529871582985, 0.030889810994267464, 0.020061740651726723, 0.021448176354169846, 0.004006802104413509, -0.021226346492767334, -0.029531102627515793, 0.002656759461387992, 0.00457177497446537, -0.010315089486539364, -0.0011949351755902171, -0.0020623246673494577, 0.015777649357914925, 0.012762150727212429, 0.000398383941501379, 0.007479826454073191, 0.0026827550027519464, 0.01077954564243555, -0.012470998801290989, 0.026217518374323845, -0.008769212290644646, -0.013032505288720131, -0.032082147896289825, 0.03277536481618881, 0.0068628620356321335, 0.017191816121339798, -0.020810415968298912, -0.00938617717474699, -0.00018922695016954094, -0.007202539127320051, -0.0020137992687523365, -0.0038716245908290148, -0.020865872502326965, -0.013774248771369457, -0.0018976853461936116, -0.001539811259135604, 0.0023118832614272833, 0.0239298976957798, 0.01360094454139471, 0.029531102627515793, -0.004141979850828648, 0.025857046246528625, 0.008852398954331875, -0.016193581745028496, -0.017080901190638542, 0.009497092105448246, 0.0020761890336871147, -0.008290891535580158, 0.009309922344982624, 0.016748156398534775, 0.026065010577440262, -0.008956381119787693, 0.008970245718955994, 0.00781257078051567, -0.009760514833033085, 0.005382840521633625, 0.016165852546691895, -0.005670526530593634, -0.0253579281270504, 0.023818982765078545, 0.01224223617464304, 0.02318122237920761, 0.02477562427520752, -0.004083056002855301, 0.012658167630434036, 0.00984370056539774, -0.009628803469240665, -0.02429037168622017, 0.011029104702174664, -0.004135047551244497, -0.011181612499058247, -0.015944022685289383, -0.004474724642932415, -0.012942386791110039, -0.017566153779625893, -0.007251064293086529, -0.01647086814045906, 0.02133726142346859, -0.01063396967947483, 0.07996967434883118, 0.011403442360460758, -0.01845347322523594, 0.004006802104413509, 0.00042567940545268357, 0.01595788635313511, 0.0215590912848711, 0.017067035660147667, -0.02989157661795616, -0.024082405492663383, 0.030085677281022072, 0.025787724182009697, 0.02318122237920761, -0.013282064348459244, -0.004602970089763403, 0.017774119973182678, -0.030584795400500298, 0.01751069538295269, -0.04056714102625847, 0.007542215753346682, 0.02101838029921055, -0.010197242721915245, 0.016110394150018692, -0.026480941101908684, -0.012748286128044128, -0.0009167813113890588, 0.0079096220433712, 0.02591250278055668, -0.009185143746435642, -0.03599189966917038, 0.01993696019053459, -0.004301419947296381, -0.013940621167421341, -0.002771140541881323, -0.003311850829049945, -0.0018716895719990134, 0.005975542590022087, -0.0019046175293624401, -0.005375908687710762, 0.03041842207312584, -0.008873195387423038, 0.012658167630434036, -0.022390954196453094, -0.015347855165600777, 0.005400171037763357, -0.00969812460243702, -0.015749922022223473, -0.010391343384981155, -0.003256393363699317]" +18,"Despite the drop in PC shipments during the quarter, Windows continues to see usage growth. All up, there are nearly 20% more monthly active Windows devices than pre-pandemic. And on average, Windows 10 and Windows 11 users are spending 8.5% more time on their PCs than they were two and a half years ago. And we are seeing larger commercial deployments of Windows 11.","[0.009205316193401814, -0.01999434269964695, 0.005942213349044323, -0.03365384414792061, 0.010789027437567711, -0.016312217339873314, -0.03716440498828888, -0.018885746598243713, -0.007898755371570587, -0.01652337796986103, 0.022488687187433243, 0.032967571169137955, -0.023386122658848763, 0.02813725359737873, -0.008360670879483223, 0.020086726173758507, 0.012352940626442432, 0.005740950349718332, 0.016721341758966446, -0.022013574838638306, -0.012630090117454529, -0.009581447578966618, -0.015005655586719513, 0.009145927615463734, -0.023386122658848763, 0.023927224799990654, 0.01599547453224659, -0.01588989421725273, 0.023518098518252373, -0.01504524890333414, 0.0031311274506151676, -0.024851055815815926, -0.02024509757757187, 0.0010294117964804173, -0.028322020545601845, 0.0027467478066682816, -0.0020802696235477924, 0.005856429226696491, 0.014504147693514824, -0.0027335500344634056, 0.028559576719999313, 0.010241326875984669, -0.005905920173972845, 0.028612367808818817, 0.0028424302581697702, 0.024177977815270424, 0.0016826923238113523, 0.0034313725773245096, -0.041625186800956726, 0.015296002849936485, -0.011521493084728718, 0.0200075414031744, -0.021591251716017723, -0.026606334373354912, -0.015137631446123123, -0.013883860781788826, -0.024745475500822067, 0.01856900379061699, -0.004632352851331234, -0.012432126328349113, -0.01986236684024334, 0.012154976837337017, -0.022515082731842995, 0.032307691872119904, -0.024996228516101837, 0.005199849139899015, -0.018014704808592796, 0.0030486425384879112, 0.030248869210481644, 0.003277950454503298, 0.023280542343854904, 0.03470965102314949, -0.004427790176123381, -0.0014954515499994159, -0.0011044730199500918, -0.003279600292444229, -0.013751884922385216, 0.00015063807950355113, -0.019255278632044792, 0.0024085594341158867, 0.0066053918562829494, -0.0426018089056015, -0.005486896727234125, 0.004685143008828163, 0.00793174933642149, 0.0053945137187838554, -0.01478129718452692, 0.012174773961305618, -0.01089460775256157, -0.0043618022464215755, 0.015375188551843166, -0.0022369909565895796, 0.013646304607391357, 0.03312594071030617, 0.022013574838638306, 0.014794494956731796, -0.004045060370117426, 0.02813725359737873, -0.011363121680915356, -0.004925999324768782, 0.0006103883497416973, 0.005206448026001453, -0.015137631446123123, -0.004836915526539087, -0.022369910031557083, 0.002469598315656185, 0.002113263588398695, -0.01052507571876049, 0.03637254983186722, -0.012669683434069157, -0.02621040679514408, 0.012920437380671501, 0.024072397500276566, 0.001882305834442377, -0.001065705087967217, 0.010261123068630695, -0.010564668104052544, -0.009000753983855247, 0.008974358439445496, -0.0009485765476711094, 0.02592005953192711, -0.01464932132512331, 0.026012443006038666, 0.00961444154381752, 0.002438254188746214, 0.018001507967710495, -0.002218844136223197, -0.010214932262897491, 0.01950603350996971, -0.013151395134627819, 0.020693816244602203, -0.013336161151528358, 0.013204185292124748, 0.007423642557114363, -0.003182268003001809, 0.02618401125073433, -0.01478129718452692, 0.02090497687458992, -0.005731051787734032, -0.0125772999599576, -0.005397812929004431, 0.020311085507273674, 0.01574472151696682, -0.010953997261822224, 0.01173925306648016, 0.052975110709667206, 0.023425716906785965, -0.022554675117135048, 0.004434389062225819, -0.01897813007235527, 0.012623491697013378, -0.018001507967710495, 0.014688913710415363, 0.004817118868231773, 0.01115855947136879, -0.011937216855585575, 0.003949377685785294, 0.0032894983887672424, -0.016087858006358147, -0.013078807853162289, -0.004282617010176182, 0.0180674958974123, 0.0020423266105353832, 0.009574849158525467, 0.007977941073477268, 0.027450980618596077, 0.02025829441845417, 0.022752638906240463, -0.013963046483695507, -0.0027879902627319098, 0.011264139786362648, -0.0013750235084444284, -0.016879713162779808, 0.023399321362376213, 0.018397435545921326, 0.02141968347132206, -0.020720209926366806, -0.000744013930670917, -0.01740761660039425, -0.026236802339553833, -0.011541289277374744, -0.004836915526539087, -0.002829232718795538, 0.010280920192599297, -0.028612367808818817, -0.039935898035764694, 0.03932880610227585, 0.012979825958609581, 0.00966723170131445, 0.0007002969505265355, -0.001603506738319993, 0.023914026096463203, -0.013831070624291897, -0.020561840385198593, -0.6478431224822998, 0.009442873299121857, -0.008888574317097664, -0.002268335083499551, -0.010630656033754349, -0.00801093503832817, 0.00947586726397276, 0.010564668104052544, -0.04191553592681885, 0.00981900468468666, 0.01818627491593361, -0.01541478093713522, 0.014583333395421505, 0.008881975896656513, -0.002969457069411874, -0.015164026990532875, -0.006641685497015715, 0.02271304652094841, -0.039803922176361084, -0.0032911482267081738, -0.016681749373674393, -0.007106900215148926, -0.009416477754712105, -0.0018328148871660233, -0.014622925780713558, -0.005067873280495405, 0.01207579206675291, -0.006803355645388365, -0.016074661165475845, 0.020852187648415565, -0.011330127716064453, 0.019690798595547676, 0.009706825017929077, 0.003906485624611378, 0.04228506609797478, -0.018503015860915184, -0.02568250335752964, 0.02594645507633686, 0.01833144761621952, 0.029140271246433258, -0.024230768904089928, -0.015164026990532875, 0.010419494472444057, 0.0009650735300965607, 0.0019120003562420607, 0.0056848605163395405, 0.004045060370117426, -0.01018853671848774, 0.02040346898138523, -0.003075037617236376, 0.016417797654867172, -0.001103648217394948, 0.0065031107515096664, -0.02284502238035202, 0.01781674101948738, 0.025735294446349144, 0.03209653124213219, -0.0041506411507725716, 0.015559954568743706, -0.030776772648096085, -0.014319381676614285, 0.0049688913859426975, -0.00162825221195817, -0.008387066423892975, -0.032202109694480896, 0.021894795820116997, -0.0037877073045819998, 0.020152714103460312, 0.024587104097008705, -0.02401960827410221, 0.004609256982803345, 0.007040912285447121, 0.02233031578361988, -0.031938157975673676, -0.0017123868456110358, 0.0011440657544881105, 0.039566364139318466, -0.03085595741868019, -0.02553733065724373, 0.02478506788611412, -0.00770739046856761, -0.02826922945678234, 0.020363876596093178, -0.017315233126282692, 0.023663273081183434, -0.003437971230596304, 0.009027149528265, -0.006572397891432047, 0.013567118905484676, 0.012082390487194061, 0.010492081753909588, 0.006453619804233313, 0.0009155825828202069, -0.0257880836725235, 0.01575791835784912, 0.04101809859275818, 0.00464555062353611, -0.0014104921137914062, -0.005797039717435837, 0.014543740078806877, -0.01231994666159153, -0.012273755855858326, 0.05112744867801666, 0.019809577614068985, 0.03420814499258995, 0.022369910031557083, -0.012768665328621864, 0.004906202666461468, 0.01649698242545128, -0.03082956187427044, 0.02169683203101158, -0.0464291088283062, -0.003698623739182949, 0.005863027647137642, 0.010353506542742252, -0.025128204375505447, 0.020733408629894257, -0.004840214736759663, -0.0066053918562829494, -0.024587104097008705, 0.01963800936937332, -0.006687876768410206, 0.0037679108791053295, -0.036847662180662155, -0.012300150468945503, 0.009317495860159397, 0.016866516321897507, 0.019044118002057076, 0.007727187126874924, -0.03845776617527008, 0.002294730395078659, -0.009574849158525467, 0.017262443900108337, 0.0012216016184538603, 0.009456071071326733, 0.01909690722823143, 0.00036520196590572596, -0.021749623119831085, 0.009264705702662468, -0.011666666716337204, -0.01141591276973486, 0.021221719682216644, -0.02089178003370762, -0.023254146799445152, 0.01413461472839117, -0.03858974203467369, -0.0014121417189016938, 0.007067307364195585, -0.0024844456929713488, -0.018687782809138298, 0.007463235408067703, -0.016219833865761757, 0.007384049706161022, 0.017064480111002922, -0.020363876596093178, 0.008980957791209221, -0.004104449413716793, -0.019783182069659233, -0.00955505296587944, 0.00338848028331995, -0.03111990913748741, 0.021736424416303635, 0.006816553417593241, 0.009720022790133953, -0.0020093326456844807, -0.00805712677538395, -0.011402714997529984, 0.016338612884283066, -0.000517180422320962, -0.015652338042855263, 0.0161142535507679, -0.002976055722683668, 0.025827676057815552, 0.014174208045005798, 0.012082390487194061, 0.0187009796500206, -0.031278278678655624, -0.005150358192622662, -0.000988169340416789, -0.0005934789660386741, 0.00458286190405488, 0.004200132098048925, 0.006298548076301813, -0.01005656085908413, 0.02066742070019245, 0.006014800164848566, 0.012755467556416988, 0.026118023321032524, -0.001431938144378364, 0.019294871017336845, 0.016285821795463562, 0.019176093861460686, -0.03341628983616829, -0.005995003506541252, 0.009145927615463734, -0.0027879902627319098, -0.004041760694235563, -0.0014830788131803274, 0.01464932132512331, -0.0005386265111155808, 0.03840497508645058, 0.045135747641325, -0.0065756975673139095, -0.011277337558567524, -0.0014632823877036572, -0.03853695094585419, -0.0018575603608042002, -0.022132351994514465, 0.021604448556900024, 0.0374019593000412, 0.01922888308763504, -0.035316742956638336, -0.015150829218327999, -0.008888574317097664, -0.01258389838039875, 0.03647812828421593, -0.028849923983216286, 0.007087104022502899, -0.02540535479784012, 0.012082390487194061, -0.004523472860455513, -0.018107088282704353, 0.015771115198731422, -0.018357843160629272, -0.004553167149424553, 0.007456636521965265, 0.0035468514543026686, 0.04178356006741524, 0.014213800430297852, -0.02091817557811737, -0.022515082731842995, 0.013883860781788826, 0.002012631855905056, 0.026276394724845886, -0.005255938973277807, 0.0032433068845421076, 0.03497360274195671, -0.02401960827410221, 0.03280920162796974, -0.0015317448414862156, 0.00859162863343954, 0.005308729130774736, 0.010340308770537376, -0.021063348278403282, 0.003060190472751856, 0.004203431308269501, 0.02890271507203579, 0.030301658436655998, -0.015256410464644432, -0.014213800430297852, -0.002941412152722478, -0.016061462461948395, 0.0075952112674713135, 0.019123302772641182, 0.0011193202808499336, -0.010967194102704525, 0.014477752149105072, 0.008954562246799469, 0.040991704910993576, 0.033891402184963226, -0.010498680174350739, -0.0033158937003463507, 0.017064480111002922, -0.0029843042138963938, -0.004097850527614355, -0.014504147693514824, -0.014200602658092976, 0.002162754535675049, 0.007634803652763367, 0.0007955670007504523, -0.01155448704957962, 0.014345776289701462, 0.03214932233095169, -0.0106570515781641, -0.014900075271725655, -0.00597190810367465, -0.0017767250537872314, -0.010947397910058498, -0.002703855512663722, 0.04049019515514374, -0.0063942307606339455, -0.018357843160629272, -0.012359539978206158, 0.013131598941981792, 0.009997171349823475, 0.005823435261845589, -0.019294871017336845, 0.012814856134355068, -0.005041478201746941, 0.013910256326198578, -0.029720965772867203, 0.024837857112288475, -0.027160633355379105, -0.0008199000731110573, 0.01478129718452692, -0.007634803652763367, 0.022171946242451668, -0.005797039717435837, 0.0018542609177529812, 0.0023260745219886303, 0.0036128393840044737, -0.0034676657523959875, -0.04798642545938492, -0.021380091086030006, 0.02556372433900833, -0.003461067099124193, -0.010591063648462296, -0.034894417971372604, -0.009251507930457592, 0.008241892792284489, -0.014741703867912292, -0.01755278930068016, -0.007087104022502899, 0.0009122831979766488, -0.01962481066584587, 0.008789592422544956, -0.006107183173298836, -0.014292986132204533, 0.05086349695920944, 0.01400263886898756, -0.014504147693514824, 0.0013131598243489861, -0.020838988944888115, 0.012095588259398937, 0.07585972547531128, 0.01186463050544262, -0.012154976837337017, 0.01413461472839117, -0.004770927596837282, 0.004097850527614355, -0.021498868241906166, 0.021855203434824944, 0.013593514449894428, 0.003322492353618145, -0.02813725359737873, -0.03056561015546322, -0.008934766054153442, -0.01181184034794569, 0.03082956187427044, -0.008980957791209221, 0.005724453367292881, -0.00974641740322113, -0.006202865857630968, -0.024468325078487396, 0.011231145821511745, -0.0007291666697710752, 0.016972096636891365, 0.01975678652524948, 0.011481900699436665, -0.009013951756060123, 0.030380845069885254, 0.020931372418999672, -0.00670767342671752, 0.003457767656072974, 0.0018179675098508596, 0.018925338983535767, -0.026632729917764664, 0.011178355664014816, 0.01714366488158703, 0.016734540462493896, -0.014543740078806877, 0.014451357536017895, -0.0075886123813688755, 0.02465309202671051, -0.011039781384170055, 0.0072982655838131905, 0.014292986132204533, -0.02347850613296032, 0.010201734490692616, -0.00748303160071373, -0.010551470331847668, 0.024877451360225677, -0.002466298872604966, -0.04682503640651703, 0.013633106835186481, 0.013817872852087021, -0.02980015054345131, 0.000583580753300339, -0.04027903452515602, 0.016549773514270782, -0.0029892532620579004, -0.0050711724907159805, -0.02698906511068344, -0.03938159719109535, -0.02877073921263218, -0.019915157929062843, -0.006856146268546581, -0.006842948496341705, -0.009865195490419865, -0.007984539493918419, -0.007674396503716707, -0.011072775349020958, -0.016483785584568977, 0.00858503021299839, 0.014570135623216629, -0.013481334783136845, -0.0027154034469276667, 0.005371417850255966, 0.021353695541620255, 0.008657616563141346, -0.000967548054177314, -0.0013964696554467082, -0.004530071746557951, 0.01614064909517765, 0.0006767887389287353, -0.008202300406992435, -0.02180241234600544, -0.03845776617527008, -0.008017533458769321, 0.011125565506517887, -0.008802790194749832, -0.0024893947411328554, -0.02681749500334263, -0.004688442684710026, 0.02182880789041519, -0.01730203628540039, 0.037217192351818085, -0.021881598979234695, 0.007417043671011925, -0.0010483833029866219, -0.004467383027076721, 0.008373868651688099, 0.004045060370117426, -0.0045861611142754555, 0.01718325726687908, -0.014424961991608143, -0.022488687187433243, -0.010808823630213737, -0.0044772811233997345, -0.004213329404592514, 0.009046945720911026, 0.006618589628487825, -0.0290346909314394, 0.0011580882128328085, 0.0022765835747122765, -0.009759615175426006, -0.01817307621240616, -0.00739064859226346, 0.0200075414031744, -0.0005229543894529343, 0.03111990913748741, -0.01946643926203251, 0.03333710506558418, -0.0032086633145809174, 0.00010027072858065367, -0.02747737430036068, 0.019835973158478737, -0.0031113310251384974, 0.00819570105522871, -0.005414309911429882, -0.025062216445803642, 0.011660067364573479, -0.04555806890130043, -0.0012834653025493026, -0.010703242383897305, -0.00942307710647583, 0.005628770682960749, -0.02244909480214119, -0.011336727067828178, -0.021129336208105087, 0.014332578517496586, 0.027015458792448044, -0.006783559452742338, 0.004539969842880964, -0.04178356006741524, 0.030512820929288864, -0.020218702033162117, 0.00863782037049532, 0.0050711724907159805, -0.028348416090011597, -0.007139894179999828, -0.01897813007235527, 0.003919683396816254, 0.005321926902979612, -0.0037547133397310972, -0.005051376298069954, -0.010076357051730156, -0.0014022436225786805, -0.003922982607036829, -0.017988311126828194, 0.0031047321390360594, -0.023148566484451294, 0.02927224710583687, 0.015599546954035759, 0.03199094906449318, 0.0072058821097016335, -0.01102658361196518, 0.008558634668588638, -0.00845965277403593, -0.011006787419319153, -0.008175904862582684, -0.011151961050927639, -0.02400640957057476, -0.0006248232093639672, -0.019123302772641182, 0.023518098518252373, -0.0004212917119730264, 0.0023013290483504534, 0.015533559024333954, -0.009528657421469688, -0.002860576845705509, -0.00047593796625733376, -0.04283936694264412, -0.013791478238999844, -0.001974688842892647, -0.022911010310053825, -0.016074661165475845, 0.025735294446349144, -0.02462669648230076, -0.034868024289608, -0.010795625858008862, 0.01727564074099064, 0.008043929003179073, 0.009508861228823662, 0.017843136563897133, 0.008241892792284489, 0.000722980301361531, 0.0019928356632590294, 0.006252356804907322, -0.0206410251557827, 0.02078619971871376, -0.04207390546798706, 0.008367270231246948, 0.017777148634195328, -0.00739064859226346, 0.03790346905589104, 0.0002800362999550998, 0.02218514308333397, 0.003022247226908803, 0.025999246165156364, -0.03919683024287224, -0.030750377103686333, 0.0051800524815917015, -0.008439856581389904, 0.026909878477454185, -0.03162141889333725, 0.00725867273285985, 0.005942213349044323, -0.036082200706005096, 0.0030618400778621435, -0.006044494453817606, 0.018120286986231804, 0.00942967552691698, -0.008109916932880878, 0.009825603105127811, 0.006611990742385387, 0.04719457030296326, 0.000667302985675633, 0.01727564074099064, 0.009647435508668423, 0.012194570153951645, -0.017869532108306885, -0.04022624343633652, -0.007311462890356779, -0.003919683396816254, 0.04861990734934807, 0.01199660636484623, -0.0038371982518583536, 0.006404128856956959, -0.006447020918130875, -0.004982088692486286, 0.01413461472839117, -0.018648190423846245, 0.020179109647870064, 0.0135539211332798, -0.022303922101855278, -0.023267345502972603, -0.018634991720318794, -0.025194192305207253, 0.03146304562687874, -0.011732654646039009, -0.005651866551488638, 0.021208520978689194, -0.016338612884283066, 0.006720870733261108, -0.0032960972748696804, -0.011653468944132328, 0.004942496307194233, -0.021498868241906166, 0.008868778124451637, 0.012544305995106697, -0.004246323369443417, 0.028453996405005455, -0.004734633956104517, -0.025524131953716278, -0.013699094764888287, -0.03378582000732422, -0.009812405332922935, 0.004853412508964539, -0.005173454061150551, -0.01690610870718956, 0.009845399297773838, -0.011501696892082691, 0.027794117107987404, -0.01701168902218342, -0.016562970355153084, 0.011990007013082504, 0.02363687753677368, 0.014504147693514824, -0.005166855175048113, -0.014213800430297852, -0.03700603172183037, -0.020957767963409424, -0.003758012782782316, 0.010247926227748394, -0.005886123515665531, -0.0003357136156409979, -0.0023326734080910683, -6.29978530923836e-05, -0.004952394403517246, -0.017315233126282692, -0.008367270231246948, 0.028823528438806534, -0.013593514449894428, -0.0018460124265402555, 0.014952865429222584, -0.003929581493139267, 0.016351809725165367, 0.0013931702123954892, -0.006057692226022482, 0.0019334463868290186, 0.014952865429222584, -0.024745475500822067, 0.013527526520192623, 0.03397058695554733, 0.012366138398647308, -0.026289591565728188, -0.0010244626319035888, -0.010353506542742252, -0.018357843160629272, 0.019783182069659233, -0.011620474979281425, -0.019176093861460686, -0.0005456377402879298, -0.0032861989457160234, 0.004906202666461468, -0.007469833828508854, 0.011844834312796593, -0.002248538890853524, 0.027556560933589935, -0.0037283182609826326, -0.0193740576505661, -0.03009049780666828, 0.022026771679520607, 0.0032713518012315035, 0.002138009062036872, 0.012181372381746769, 0.015454374253749847, 0.020588234066963196, -0.023531297221779823, 0.012029600329697132, 0.008367270231246948, -0.009594645351171494, -0.03278280422091484, -0.019796378910541534, 0.014807691797614098, -0.020495852455496788, 0.001963140908628702, -0.03191176429390907, 0.00369532429613173, -0.003169070463627577, 0.012874245643615723, 0.025629712268710136, 0.0018460124265402555, 0.002703855512663722, -0.002400310942903161, 0.014622925780713558, 0.004345305263996124, 0.0023013290483504534, -0.016180241480469704, -0.009772812947630882, -0.01974358968436718, -0.010518476366996765, -0.0200207382440567, 0.004935897421091795, 0.01859539933502674, 0.012194570153951645, -0.01491327304393053, -0.02234351448714733, -0.013481334783136845, -0.041730768978595734, -0.01988876238465309, 0.020720209926366806, 0.010498680174350739, 0.02427036128938198, 0.0024959936272352934, -0.007153091952204704, 0.02850678749382496, 0.0008834134205244482, 0.010855015367269516, -0.05664404109120369, -0.01181843876838684, 0.01727564074099064, -0.012663084082305431, -0.010426093824207783, -0.018753770738840103, -0.01147530134767294, -0.00948246568441391, 0.01924208179116249, -0.0219475869089365, -0.00916572380810976, -0.0027879902627319098, 0.025365760549902916, -0.010208332911133766, -0.012306749820709229, 0.00713329529389739, -0.0015490667428821325, -0.013857466168701649, 0.0264743585139513, -0.037481144070625305, -0.007977941073477268, 0.03341628983616829, 0.0180674958974123, 0.001012914814054966, -0.009231711737811565, 0.010069758631289005, -0.0014047181466594338, -0.014029034413397312, 0.016866516321897507, -0.022911010310053825, 0.005041478201746941, -0.02013951726257801, 0.009950980544090271, -0.017579184845089912, 0.010030165314674377, 0.029879335314035416, 0.012735671363770962, -0.03500000014901161, 0.017513196915388107, 0.018503015860915184, -0.020680617541074753, 0.0010822020703926682, 0.0005988404736854136, -0.03468325734138489, 0.017486801370978355, -0.0007225678418762982, 0.015797510743141174, 0.00152349635027349, -0.007212480995804071, -0.020601432770490646, 0.002778091933578253, -0.010148944333195686, 0.011752450838685036, 0.01554675679653883, -0.017579184845089912, 0.0061698718927800655, -0.004487179219722748, 0.0020060332026332617, 0.0225810706615448, -0.005467100068926811, 0.01347473543137312, -0.012194570153951645, -0.017526395618915558, 0.028691552579402924, -0.017315233126282692, -0.0004272718506399542, 0.034920815378427505, 0.043552037328481674, 0.021116139367222786, 0.012247360311448574, 0.2166515737771988, 0.0014137914404273033, 0.026118023321032524, 0.039698339998722076, 0.021881598979234695, 0.02130090445280075, 0.009046945720911026, -0.007786576170474291, 0.013019419275224209, 0.002956259297206998, -0.011528091505169868, 0.011673265136778355, -0.012913838028907776, -0.005694758612662554, 0.00648331455886364, 0.007740384433418512, -0.030380845069885254, -0.0025487837847322226, -0.018753770738840103, 0.0644570142030716, 0.02568250335752964, -0.027134237810969353, -0.008710406720638275, -0.010914403945207596, 0.008439856581389904, -0.025220587849617004, -0.009238310158252716, 0.007819569669663906, 0.03885369375348091, 0.0193740576505661, -0.015269607305526733, 0.009284501895308495, -0.01006315927952528, 0.003761312225833535, -0.010122548788785934, -0.014543740078806877, 0.001330481725744903, 0.006704373750835657, 0.014504147693514824, 0.009106334298849106, 0.00947586726397276, 0.017354825511574745, -0.005698057822883129, -0.026936274021863937, 0.0013816223945468664, 0.007397247478365898, 0.008611424826085567, 0.008208898827433586, 0.01717006042599678, -0.022277526557445526, 0.002012631855905056, -0.01536199077963829, 0.014952865429222584, 0.014873679727315903, -0.026249999180436134, -0.003378582186996937, -0.013204185292124748, 0.005351621191948652, -0.020627828314900398, -0.004107748623937368, 0.010142344981431961, 0.012412330135703087, -0.014398566447198391, 0.026540346443653107, -0.02037707343697548, 0.01328337099403143, -0.014240195974707603, 0.032967571169137955, -0.03032805398106575, -0.012663084082305431, -0.00380750373005867, 0.025009427219629288, -0.009185520000755787, -0.013910256326198578, -0.0077997734770178795, -0.031278278678655624, 0.03135746717453003, 0.017579184845089912, 0.03597662225365639, 0.008017533458769321, 0.015467571094632149, 0.00752262445166707, -0.004510275088250637, -0.008050527423620224, -0.004045060370117426, -0.01779034733772278, 0.013355957344174385, -0.022119155153632164, 0.00752262445166707, 0.014292986132204533, 0.009601243771612644, -0.0025784785393625498, -0.017592383548617363, -0.011039781384170055, 0.019004523754119873, -0.015837103128433228, -0.0040582576766610146, 0.011930618435144424, 0.0007704091258347034, -0.013250377029180527, -0.018608596175909042, 0.04014705866575241, 0.056327298283576965, -0.01959841512143612, 0.008439856581389904, 0.020205505192279816, -0.012491515837609768, 0.02077300101518631, 0.005249340087175369, -0.004704939667135477, 0.011877828277647495, -0.016576169058680534, 0.023544494062662125, -0.009178921580314636, -0.015203619375824928, 0.006034596357494593, -0.00615667412057519, -0.003381881630048156, -0.0026312689296901226, -0.003853695234283805, -0.002053874311968684, -0.026091627776622772, -0.013052413240075111, 0.002672511385753751, -0.0031987649854272604, -0.011072775349020958, -0.016813725233078003, -0.008090120740234852, -0.02438914030790329, -0.016483785584568977, 0.013765082694590092, -0.027662141248583794, -0.009469267912209034, -0.02167043648660183, -0.004414592869579792, 0.005150358192622662, 0.006291949190199375, -0.030407238751649857, -0.017843136563897133, 0.005041478201746941, -0.001847662148065865, -0.00024374292115680873, 0.011666666716337204, 0.014979260973632336, 0.027319004759192467, -0.006763763260096312, 0.0053681181743741035, 0.016853317618370056, -0.013976244255900383, -0.029219456017017365, -0.020060330629348755, 0.002382164355367422, -0.003985671326518059, 0.010175338946282864, 0.016747737303376198, 0.002085218671709299, -0.03666289523243904, -0.017486801370978355, 0.004190233536064625, 0.001718985615298152, -0.03713800758123398, -0.020482653751969337, 0.014807691797614098, -0.004751130938529968, -0.02192119136452675, 0.0024893947411328554, -0.16681750118732452, 0.025510935112833977, -0.007417043671011925, -0.0225810706615448, 0.023267345502972603, 0.012504713609814644, -0.006179769989103079, -0.012821455486118793, -0.0016463989159092307, 0.006338140927255154, 0.04207390546798706, 0.005638668779283762, -0.013699094764888287, 0.005506692919880152, 0.0322285071015358, -0.00291996612213552, -0.004196832422167063, 0.028849923983216286, 0.040727753192186356, 0.006803355645388365, 0.04357843101024628, -0.00876979622989893, -0.003154223086312413, -0.0386953242123127, 0.01651018112897873, -0.0038305995985865593, -0.005882824305444956, -0.0005118189146742225, 0.015810709446668625, -0.04231146350502968, -0.022673454135656357, -0.0017486802535131574, 0.04349924623966217, 0.019835973158478737, 0.012933635152876377, -0.015203619375824928, -0.014741703867912292, -0.0168005283921957, -0.000998892355710268, 0.048593513667583466, 0.005015082657337189, 0.012082390487194061, 0.027450980618596077, 0.015190422534942627, 0.006159973330795765, 0.008782994002103806, 0.007812971249222755, -0.01949283480644226, -0.007324660662561655, -0.0035204561427235603, 0.008796191774308681, -0.036319758743047714, -0.0013708992628380656, 0.0015985576901584864, -0.005566081963479519, 0.024296756833791733, 0.004790723789483309, 0.012696078047156334, 0.00915912538766861, -0.016193438321352005, 0.01936085894703865, -0.02956259436905384, -0.006790158338844776, -0.008466252125799656, 0.00018724075926002115, -0.022264327853918076, -0.012399132363498211, 0.015177224762737751, -0.025722095742821693, 0.008657616563141346, 0.003975772764533758, -0.019413650035858154, -0.0006264729308895767, -0.009178921580314636, 0.010736236348748207, 0.005810237489640713, 0.006948529276996851, 0.014715309254825115, 0.0296681746840477, 0.019954750314354897, -0.001317284069955349, 0.00041448671254329383, 0.007555618416517973, 0.01961161382496357, -0.03758672624826431, -0.003995569422841072, -0.009838800877332687, -0.0022105956450104713, 0.002985954051837325, -0.01574472151696682, 0.008565234020352364, -0.016866516321897507, -0.002888621762394905, -0.013567118905484676, -0.004276018124073744, -0.004810520447790623, 0.015480768866837025, 0.00793174933642149, -0.027688536792993546, -0.02956259436905384, -0.0032894983887672424, -0.004206730518490076, -0.026223603636026382, 0.015599546954035759, 0.027899697422981262, 0.008921568281948566, -0.01934766210615635, -0.006070889998227358, 0.012643287889659405, -0.012326546013355255, -0.02840120531618595, 0.010571266524493694, 0.031014328822493553, 0.014029034413397312, -0.0027830409817397594, 0.03576545789837837, 0.009865195490419865, 0.013712292537093163, -0.02631598711013794, -0.015784313902258873, 0.049095023423433304, -0.009053544141352177, -0.021221719682216644, 0.005952111445367336, -0.02411198988556862, -0.0245211161673069, -0.1123378574848175, -0.01856900379061699, 0.00890837050974369, 0.029377827420830727, 0.0054835970513522625, 0.02621040679514408, -0.011600678786635399, 0.01368589699268341, 0.003464366542175412, 0.00012857335968874395, 0.009469267912209034, -0.006572397891432047, -0.0061995661817491055, 0.0031360764987766743, 0.020218702033162117, -0.005269136279821396, -0.0080637251958251, -0.014358974061906338, -0.010307314805686474, 0.019255278632044792, -0.001389870885759592, -0.026500754058361053, 0.013619909062981606, -0.00890177208930254, -0.015784313902258873, -0.03201734647154808, -0.031172700226306915, -0.012062594294548035, -0.0015985576901584864, 0.010043363086879253, 0.025972850620746613, -0.010690045543015003, 0.013923454098403454, 0.010610859841108322, -0.0031179299112409353, -0.003936180379241705, -0.0277413260191679, -0.013976244255900383, 0.014873679727315903, -0.03769230842590332, 0.009396681562066078, 0.008941364474594593, 0.014411764219403267, -0.012095588259398937, 0.001963140908628702, -0.017117269337177277, -0.00850584451109171, 0.01817307621240616, -0.0044904788956046104, -0.04038461297750473, -0.006935331504791975, -0.009277903474867344, 0.003294447436928749, -0.03125188499689102, -0.027820512652397156, -0.01116515789180994, 0.010247926227748394, 0.005717854481190443, -0.02618401125073433, -0.02466628886759281, -0.020060330629348755, -0.0021248115226626396, -0.022092759609222412, 0.028295625001192093, 0.010228129103779793, -0.00162082863971591, -0.011858031153678894, -0.009772812947630882, -0.015177224762737751, -0.005958710331469774, -0.012517910450696945, -0.0005213046679273248, -0.014636123552918434, -0.002707154955714941, -0.005110765341669321, 0.011653468944132328, 0.0028803732711821795, -0.025062216445803642, 0.007040912285447121, 0.01768476516008377, -0.027319004759192467, -0.00542090879753232, 8.284578507300466e-05, 0.013408747501671314, 0.022277526557445526, 0.02231711894273758, -0.008228695020079613, 0.007014517206698656, -0.007040912285447121, -0.022119155153632164, -0.006341440137475729, 0.012979825958609581, -0.005147058516740799, 0.010604260489344597, -0.004642250947654247, 0.003370333695784211, -0.023003393784165382, -0.021907994523644447, 0.02181561104953289, 0.010947397910058498, 0.00024250565911643207, 0.006361236795783043, -0.05965309217572212, 0.015071643516421318, -0.001334605971351266, 0.026632729917764664, 0.001882305834442377, 0.008862179704010487, -0.004500376991927624, -0.029747359454631805, -0.02982654608786106, -0.005087669473141432, -0.02969457022845745, 0.017104072496294975, -0.007100301329046488, -0.008545436896383762, -0.0225678738206625, 0.005338423885405064, 0.026144418865442276, 0.0026494155172258615, 0.018159879371523857, 0.007311462890356779, 0.003281249897554517, -0.01368589699268341, 0.007179487030953169, 0.012016402557492256, -0.0180806927382946, 0.012511312030255795, -0.016312217339873314, -0.011930618435144424, 0.0007704091258347034, -0.01554675679653883, 0.009950980544090271, 0.00367552787065506, 0.0011151960352435708, 0.009654034860432148, -0.008974358439445496, 0.005876225419342518, 0.004391497001051903, 0.02308257855474949, 0.01885935105383396, 0.020720209926366806, -0.009845399297773838, -0.026289591565728188, 0.026672322303056717, -0.011448906734585762, -0.013619909062981606, -0.013791478238999844, 0.007938348688185215, 0.00413414416834712, 0.0011267439695075154, 0.009508861228823662, 0.03146304562687874, 0.0019103506347164512, -0.0031047321390360594, -0.023399321362376213, 0.02308257855474949, -0.0245211161673069, -0.015784313902258873, -0.015467571094632149, 0.0072850678116083145, -0.01678732968866825, 0.004790723789483309, 0.02568250335752964, -0.0018196172313764691, -0.007034313399344683, 0.02115573175251484, -0.003800904843956232, -0.019387254491448402, -0.004533370956778526, 0.0015094740083441138, 0.011541289277374744, 0.018476620316505432, -0.01949283480644226, 0.021208520978689194, 0.008921568281948566, 0.014939667657017708, 0.008987556211650372, -0.016470588743686676, 0.006856146268546581, -0.014860482886433601, 0.00026292065740562975, -0.002728600986301899, -0.004662047605961561, -0.031806182116270065, 0.02118212729692459, 0.007687594275921583, 0.016193438321352005, 0.0020901677198708057, 0.002410209272056818, -0.013204185292124748, 0.010914403945207596, -0.003863593563437462, -0.017486801370978355, 0.000887537666130811, 0.004866609815508127, 0.005312028806656599, 0.013296568766236305, 0.00327630084939301, 0.02309577725827694, 0.008116515353322029, 0.026038838550448418, 0.00183776393532753, -0.014543740078806877, -0.035923831164836884, -0.006803355645388365, -0.006829751189798117, 0.01213518064469099, 0.009825603105127811, -0.027899697422981262, -0.012115384452044964, -0.005711255595088005, 0.015441176481544971, 0.023953620344400406, 0.023531297221779823, 0.006334841717034578, -0.027952488511800766, 0.005391214042901993, -0.01039309985935688, -0.011798642575740814, -0.027556560933589935, 0.02671191468834877, 0.0007295790710486472, 0.008888574317097664, -0.0035897435154765844, -0.002225443022325635, 0.029219456017017365, -0.018107088282704353, 0.02890271507203579, -0.025576923042535782, 0.016694946214556694, -0.009904788807034492, 0.0004338706494309008, -0.021063348278403282, -0.010683446191251278, -0.0206410251557827, 0.007852563634514809, -0.007951545529067516, -0.018014704808592796, 0.032202109694480896, 0.028084464371204376, 0.059441931545734406, 0.01044589001685381, -0.015216817148029804, 0.0018922039307653904, 0.02734539844095707, 0.02644796296954155, 0.014095022343099117, 0.014279788359999657, -0.012808257713913918, -0.016562970355153084, 0.018687782809138298, -0.017961915582418442, -0.0002746747632045299, 0.0009939431911334395, -0.011442307382822037, 0.008307880721986294, -0.009548453614115715, -0.017460407689213753, -0.016549773514270782, 0.015190422534942627, 0.027846908196806908, -0.024956636130809784, 0.006638385821133852, 0.0013395550195127726, -0.018146680667996407, -0.016694946214556694, 0.016153845936059952, 0.013540723361074924, -0.03046002984046936, -0.035052791237831116, 0.010366704314947128, 0.001484728534705937, -0.02969457022845745, -0.00489960378035903, 0.0024811462499201298, 0.01387066300958395, 0.0015210218261927366, -0.03111990913748741, 0.03444569930434227, -0.006186368875205517, 0.005067873280495405, 0.026012443006038666, 0.012927035801112652, 0.006390931084752083, 0.0037283182609826326, -0.016747737303376198, -0.029140271246433258, 0.012775263749063015, -0.0034874621778726578]" +19,"Accenture, for example, has deployed Windows 11 to more than 450,000 employees' PCs, up from just 25,000, seven months ago, and L'Oreal has deployed the operating system to 85,000 employees. Now to security. Security continues to be a top priority for every organization. We're the only company with integrated end-to-end tools spanning security, compliance, identity and device management, and privacy across all clouds and platforms.","[0.01380225084722042, -0.027254054322838783, 0.003672962309792638, -0.028440184891223907, 0.002205462194979191, 0.026553159579634666, -0.03844142705202103, -0.008909461088478565, -0.00077460752800107, -0.023978715762495995, 0.035125650465488434, 0.004033518955111504, -0.015365786850452423, -0.0027530367951840162, -0.027065351605415344, 0.019881172105669975, 0.009704708121716976, -0.01713150553405285, -0.004437881987541914, -0.022199518978595734, -0.03183683380484581, -0.016538439318537712, -0.0007181652472354472, 0.01918027736246586, -0.018075017258524895, -0.003807749832049012, 0.017697613686323166, -0.022967807948589325, 0.03337341174483299, -0.02622966840863228, 0.014462710358202457, -0.008457922376692295, -0.006129466462880373, 0.015702756121754646, -0.013627027161419392, 0.00799290556460619, 0.006102508865296841, -0.0017016935162246227, 0.020730333402752876, -0.021053824573755264, 0.017374122515320778, 0.02221299707889557, 0.0064293690957129, 0.00527356518432498, -0.01636321470141411, 0.020919036120176315, -0.018587211146950722, -0.010156245902180672, -0.02790103480219841, 0.02300824411213398, 0.00290298811160028, 0.03375081717967987, -0.030488956719636917, -0.025973571464419365, -0.025367027148604393, -0.024140460416674614, -0.020622503012418747, 0.008437704294919968, 0.018816350027918816, -0.0027193399146199226, 0.0077705057337880135, 0.007056131027638912, -0.02771233208477497, -0.005381395108997822, -0.024059588089585304, -0.011086280457675457, -0.014813157729804516, 0.011605213396251202, 0.01715846173465252, -0.005934024229645729, 0.04860441014170647, 0.026930563151836395, -0.0023453044705092907, 0.02364174649119377, 0.007777244783937931, -0.004673760384321213, -0.015648841857910156, -0.00739983981475234, 0.010776269249618053, -0.0013546154368668795, 0.002141438191756606, -0.021633410826325417, -0.012076969258487225, -0.016107119619846344, 3.5506793665263103e-06, 0.0073863607831299305, -0.014476189389824867, -0.0006722531979903579, 0.0013108095154166222, 0.016053203493356705, 0.018263719975948334, -0.0009300344972871244, -0.008714018389582634, 0.00694830110296607, -0.0035819807089865208, 0.023318255320191383, 0.023709140717983246, 0.004896159749478102, -0.00028179032960906625, -0.016471045091748238, 0.005057904869318008, -0.0074672335758805275, -0.02582530491054058, -0.006719162221997976, -0.024194374680519104, -0.01161195244640112, 0.0007754499674774706, 0.007561584934592247, 0.042835500091314316, 0.003521326230838895, -0.00629121158272028, 0.037120506167411804, 0.020945994183421135, -0.005701515823602676, 0.017428036779165268, -0.03242990002036095, -0.0009671010775491595, -0.005671188700944185, -0.0041211312636733055, 0.0005505231092683971, 0.010365166701376438, 0.024558302015066147, 0.011618691496551037, -0.010479736141860485, 0.027281012386083603, 0.011665867641568184, -0.004670390393584967, -0.028655845671892166, 0.003406756790354848, -0.004117761272937059, 0.01705063320696354, -0.029437612742185593, 0.0059272851794958115, 0.004552451428025961, -0.0033730599097907543, -0.00797942653298378, -0.0001363671472063288, 0.020811205729842186, -0.0162823423743248, -0.01382920891046524, 0.011841091327369213, 0.02205125242471695, 0.00012941716704517603, 0.02281954139471054, 0.007460494060069323, 0.032834261655807495, -0.00806029886007309, 0.013950517401099205, 0.0062238178215920925, -0.007615499664098024, 0.013027221895754337, -0.021377313882112503, 0.017859358340501785, 0.00261319475248456, 0.010749312117695808, -0.006813513580709696, 0.004205373581498861, 0.016659747809171677, -0.025757912546396255, -0.015527532435953617, 0.013236142694950104, 0.016255386173725128, -0.020042916759848595, 0.005314001347869635, 0.007554845418781042, 0.012878956273198128, 0.050787970423698425, 0.019315063953399658, -0.00419526407495141, 0.008828587830066681, 0.015864500775933266, -1.0135396451005363e-06, -0.008545534685254097, 0.021929943934082985, 0.00937447790056467, 0.014691849239170551, 0.00839052814990282, 0.0026350978296250105, 0.0025778128765523434, -0.03461345657706261, 0.019530724734067917, 0.010338209569454193, 0.014543582685291767, 0.01035842765122652, -0.032834261655807495, -0.002564334310591221, 0.021606452763080597, 0.02620271034538746, 0.012171320617198944, -0.016848450526595116, 0.004491797182708979, 0.028655845671892166, -0.012386981397867203, -0.017144983634352684, -0.6530190110206604, 0.008040080778300762, -0.009724926203489304, 0.0037369863130152225, -0.00851183757185936, 0.002269486431032419, 0.02678229846060276, -0.0020420323126018047, -0.023426085710525513, 0.011760219000279903, -0.02399219386279583, -0.003868404310196638, 0.005843042861670256, -0.011349116452038288, -0.0022661166731268167, -0.021498624235391617, 0.0035415443126112223, 0.009199254214763641, 0.003309035673737526, -0.0019611597526818514, -0.02715970203280449, -0.003061363473534584, -0.018870264291763306, -0.007622239179909229, 0.004434512462466955, 0.0005256716976873577, 0.013411367312073708, -0.01795370876789093, -0.0362309105694294, -0.004212112631648779, -0.0031472905538976192, -0.0012838519178330898, -0.01620147004723549, 0.007736808620393276, 0.05165060982108116, 0.005162365268915892, -0.028682803735136986, 0.007440275978296995, 0.01328331883996725, 0.04178415983915329, -0.024989621713757515, -0.008835327811539173, 0.017778486013412476, 0.012973307631909847, -0.0025980311911553144, 0.015123169869184494, 0.018816350027918816, -0.017306728288531303, 0.002309922594577074, 0.0052836742252111435, 0.008767933584749699, -0.028925420716404915, 0.010756051167845726, -0.013081137090921402, 0.011045844294130802, 0.012110666371881962, 0.024113502353429794, -0.02473352663218975, 0.01513664796948433, -0.011221067979931831, -0.019449852406978607, 0.016929322853684425, -0.023237382993102074, -0.027510151267051697, -0.02372261881828308, 0.02082468569278717, 0.010681917890906334, 0.004350270144641399, 0.000421211268985644, -0.009879931807518005, 0.017697613686323166, 0.006213708780705929, 0.007035912945866585, -0.03213336691260338, 0.0077705057337880135, 0.011369334533810616, 0.009927107021212578, -0.027564065530896187, -0.02997676469385624, 0.029033251106739044, -0.008889243006706238, -0.03803706169128418, 0.004768111743032932, -0.0030141877941787243, -0.0027176551520824432, 0.01205001212656498, -0.006139575503766537, -0.04340161010622978, 0.01997552253305912, -0.00893641822040081, 0.018681561574339867, 0.02396523579955101, -0.00048355053877457976, -0.04423729330301285, 0.012447635643184185, 0.027429278939962387, -0.011288462206721306, -0.008956636302173138, -0.012023054994642735, 0.0008676951983943582, -0.006705683656036854, -0.023480001837015152, 0.007285270374268293, 0.016767578199505806, 0.046744342893362045, 0.022253433242440224, -0.0012274096952751279, 0.011248026043176651, 0.03434388339519501, -0.02494918555021286, -0.005566728301346302, -0.03806402161717415, -0.020447280257940292, -0.007204397581517696, 0.017697613686323166, -0.024005671963095665, -0.00039678101893514395, -0.007750287652015686, -0.02825148217380047, -0.028898462653160095, 0.027388840913772583, -0.003679701592773199, -0.0022206257563084364, -0.03156725689768791, 0.005027577746659517, 0.012656556442379951, 0.003918949514627457, 0.004181785508990288, 0.024504387751221657, -0.012872216291725636, 0.0012097187573090196, -0.02068989723920822, 0.021714283153414726, 0.0009376162779517472, 0.012225235812366009, 0.021687326952815056, 0.033076878637075424, -0.03189074620604515, 0.011793915182352066, -0.02467961050570011, -0.01478620059788227, -0.012932870537042618, -0.016565397381782532, -0.0030057637486606836, -0.0077637662179768085, -0.045099932700395584, -0.032969050109386444, 0.014840115793049335, -0.020352927967905998, -0.016457566991448402, -0.0023419347126036882, -0.0018449054332450032, -0.018843308091163635, 0.021053824573755264, 0.010216901078820229, 0.00936099886894226, -0.018681561574339867, -0.03528739511966705, 0.003703289432451129, 0.001157488557510078, -0.0028692912310361862, 0.026984479278326035, -0.01869504153728485, -0.01620147004723549, 0.014462710358202457, -0.023574352264404297, 0.0006137048476375639, 0.022442135959863663, -0.004249179270118475, -0.015783628448843956, 0.026499243453145027, -0.014759243465960026, 0.034909989684820175, 0.023601310327649117, 0.013175488449633121, 0.007184179499745369, -0.028386270627379417, 0.01814241148531437, 0.01105258334428072, -0.004626584704965353, 0.02000248059630394, 0.01763021945953369, -0.019085925072431564, -0.0221860408782959, 0.012562205083668232, 0.008538794703781605, -0.004026779904961586, 0.026216190308332443, -0.01808849722146988, -0.0002739979245234281, 0.0023250861559063196, -0.006351865828037262, -0.005566728301346302, 0.01718541979789734, 0.0029484787955880165, -0.0031388665083795786, -0.0052836742252111435, -0.011119977571070194, 0.012696992605924606, -0.00031211753957904875, 0.04210764914751053, -0.0010184888960793614, 0.001425378955900669, -0.010264076292514801, 0.012528507970273495, -0.023574352264404297, -0.005512813106179237, -0.004636693745851517, 0.024288726970553398, 0.006388932466506958, 0.01800762489438057, -0.0209325160831213, -0.012811562046408653, -0.005014099180698395, 0.009050987660884857, 0.046825215220451355, -0.006533829495310783, 0.014287486672401428, -0.00992036797106266, 0.013317015953361988, 0.02779320441186428, -0.005408352706581354, 0.021579496562480927, -0.0198137778788805, 0.0026839582715183496, 0.01707758940756321, 0.00638219341635704, 0.024989621713757515, 0.02806277945637703, -0.014597497880458832, -0.009441872127354145, 0.024113502353429794, 0.002697437070310116, 0.021444708108901978, -0.003922319505363703, 0.00896337628364563, 0.034640416502952576, -0.028574973344802856, 0.02372261881828308, -0.015837544575333595, 0.011760219000279903, 0.019881172105669975, 0.028574973344802856, -0.005644231103360653, 0.021983858197927475, 0.007696372456848621, 0.029464570805430412, 0.020366407930850983, -0.02484135515987873, -0.0023436194751411676, 0.01248807180672884, 0.0002571494842413813, 0.0019780080765485764, 0.008181607350707054, 0.009475569240748882, -0.0019409415544942021, 0.012663295492529869, 0.010297773405909538, 0.02170080505311489, 0.02800886519253254, -0.0015458454145118594, 0.015352308750152588, 0.0036392654292285442, -0.011180631816387177, -0.014166177250444889, -0.017576303333044052, -0.002988915191963315, -0.0036965501494705677, 0.0005551564390771091, -0.021404271945357323, 0.008734237402677536, 0.004613105673342943, 0.03593437746167183, 0.01688888669013977, 0.00031527664395980537, 0.021552538499236107, 0.0028878245502710342, 0.0033747446723282337, -0.0014430697774514556, 0.02970718778669834, -0.02689012698829174, -0.013660724274814129, -0.003528065513819456, 0.011948921717703342, 0.0044884271919727325, -0.00374709558673203, -0.02574443258345127, -0.000996585818938911, -0.009172297082841396, -0.014597497880458832, 0.007217876147478819, 0.0337238609790802, -0.025488335639238358, 0.01035842765122652, 0.010392124764621258, -0.007298748940229416, 0.022590402513742447, -0.011713042855262756, 0.008269219659268856, 0.0008015650673769414, 0.02412698231637478, -0.018816350027918816, -0.018506338819861412, -0.017171941697597504, 0.033022962510585785, -0.011113238520920277, -0.03606916218996048, -0.024800918996334076, -0.020123789086937904, -0.024302205070853233, 0.015230999328196049, -0.009347520768642426, 0.010210161097347736, -0.000501662609167397, -0.010479736141860485, 0.025367027148604393, -0.02319694682955742, -0.0017926752334460616, 0.03857621178030968, 0.029060207307338715, 0.004784959834069014, -0.021390793845057487, -0.03388560563325882, 0.02508397400379181, 0.0879354327917099, 0.025447899475693703, -0.028332354500889778, 0.013869645074009895, -0.009098163805902004, -0.009462090209126472, -0.02776624634861946, -0.018506338819861412, -0.002250953111797571, -0.0032601752318441868, -0.012225235812366009, -0.0202181413769722, 0.004407554864883423, -0.03151334077119827, 0.04248505458235741, 0.011254765093326569, 0.014462710358202457, 0.002122904872521758, -0.019665511325001717, 0.008181607350707054, 0.012696992605924606, -0.003425290109589696, 0.023466521874070168, 0.015257957391440868, 0.007292009424418211, -0.00787159614264965, 0.03865708410739899, 0.021215569227933884, -0.004690608941018581, -0.007022434379905462, 0.003571871668100357, 0.024585260078310966, -0.004714196547865868, 0.025447899475693703, -0.019139839336276054, 0.02055511064827442, -0.03234902396798134, 0.012191538698971272, -0.005799236707389355, 0.010513433255255222, 0.014503146521747112, 0.01779196411371231, 0.01707758940756321, -0.013195706531405449, -0.003979604225605726, -0.010823444463312626, -0.0033797991927713156, 0.023102596402168274, -0.023129552602767944, -0.03016546741127968, 0.0036055685486644506, -0.003878513351082802, -0.025286154821515083, -0.00787159614264965, -0.010459518060088158, 0.0217816773802042, -0.01590493693947792, -0.025016579777002335, -0.027402320876717567, -0.036850932985544205, -0.04380597174167633, -0.016295822337269783, -0.013215924613177776, -0.029437612742185593, -0.02101338841021061, -0.013242882676422596, -0.0051758443005383015, -0.009050987660884857, -0.018546774983406067, 0.014314443804323673, 0.011571516282856464, -0.04644780978560448, -0.021606452763080597, 0.023129552602767944, 0.04768785461783409, 0.006274363026022911, -0.0010016404557973146, -0.005371286068111658, -0.005553249269723892, -0.0007581802783533931, -0.003763943910598755, -0.016902366653084755, -0.01571623422205448, -0.03396647796034813, -0.01250155083835125, 0.005115189589560032, -0.021929943934082985, -0.006692204624414444, -0.011510862037539482, 0.007999644614756107, 0.002813691273331642, -0.01620147004723549, 0.014435752294957638, -0.0026098249945789576, -0.0002758933696895838, 0.002850757911801338, -0.0009460404980927706, 0.006880907341837883, 0.009819277562201023, -0.028332354500889778, -0.00010435509466333315, -0.0050242082215845585, -0.03019242361187935, -0.030650701373815536, 0.016322778537869453, -0.0025373767130076885, 0.01195566076785326, -0.000730380357708782, -0.008909461088478565, -0.015365786850452423, 0.007426796946674585, -0.015487096272408962, -0.0069752587005496025, 0.00012004520976915956, -0.0021195351146161556, -0.007972686551511288, 0.019584638997912407, 0.016107119619846344, 0.01513664796948433, -0.02202429436147213, 0.01893765851855278, -0.03636569529771805, 0.021188611164689064, 0.0014708697563037276, -0.008761194534599781, 0.008943158201873302, 0.004549081902951002, -0.0065978532657027245, -0.011814134195446968, 0.016107119619846344, 0.0055869463831186295, 0.003164139110594988, 0.0014388577546924353, -0.016390172764658928, -0.02981501817703247, -0.026270104572176933, 0.00785811711102724, 0.009293605573475361, -0.015621883794665337, -0.029114123433828354, -0.016134075820446014, 0.02079772762954235, -0.007972686551511288, -0.0040402584709227085, 0.01239372044801712, -0.027415798977017403, 0.002571073593571782, 0.007817680947482586, 0.002727764192968607, 0.013094616122543812, -0.005287043750286102, -0.017994144931435585, -0.016417130827903748, 0.0001652201171964407, -0.00804681982845068, -0.012400459498167038, 0.010122549720108509, -0.021390793845057487, 0.03938493877649307, 0.018479380756616592, 0.03137855604290962, -0.02773929014801979, 0.001812893315218389, 0.007130264304578304, -0.0020588806364685297, -0.019247669726610184, -0.016983238980174065, 0.0049871415831148624, -0.003571871668100357, -0.006297951098531485, -0.01571623422205448, 0.007069610059261322, -0.010425821878015995, -0.005196062382310629, 0.011672606691718102, 0.023520438000559807, -0.017401080578565598, -0.019625075161457062, -0.0404362827539444, -0.03027329593896866, -0.01504229661077261, -0.004410924389958382, -0.013606809079647064, 0.03216032311320305, -0.013357452116906643, -0.003024296835064888, 0.00455582095310092, 0.02327781915664673, 0.01997552253305912, 0.002891194075345993, 0.026243146508932114, 0.02161993272602558, -0.020406844094395638, 0.00549259502440691, -0.0030360908713191748, -0.018519816920161247, -0.0033612658735364676, -0.0384683832526207, 0.018317636102437973, 0.017144983634352684, 0.016713663935661316, 0.02718666009604931, 0.023250862956047058, 0.0012139308964833617, 0.0031253877095878124, 0.054777681827545166, -0.008444443345069885, -0.02476048283278942, 0.01240719947963953, -0.011625431478023529, 0.014570540748536587, -0.010317991487681866, -0.0003704553237184882, -0.010210161097347736, -0.023345213383436203, -0.012777864933013916, -0.015352308750152588, 0.01203653309494257, -0.0032028905116021633, -0.024612216278910637, 0.007406578864902258, -0.003133811755105853, 0.04024757817387581, -0.012238714843988419, 0.03348124027252197, 0.0129261314868927, 0.022617360576987267, -0.01045277900993824, -0.026876648887991905, -0.0027732551097869873, -0.00699547678232193, 0.032780345529317856, 0.01622842811048031, -0.010317991487681866, 0.00848487950861454, 0.008882503025233746, -0.0044884271919727325, -0.0022206257563084364, -0.03264555707573891, 0.004326682072132826, 0.009253169409930706, -0.003521326230838895, -0.034775201231241226, -0.0398971326649189, -0.02401915192604065, 0.004977032542228699, -0.01508273370563984, 0.008862284943461418, 0.004097543191164732, -0.01256894413381815, 0.007851378060877323, 0.008161389268934727, -0.03145942836999893, 0.0376596562564373, 0.002269486431032419, 0.006789925508201122, 0.01284525915980339, -0.012285890057682991, -0.011349116452038288, -0.01808849722146988, -0.012461114674806595, -0.005745321977883577, 0.001675578416325152, 0.005556619260460138, 0.004390706308186054, 0.018465902656316757, 0.0033932779915630817, 0.003868404310196638, -0.0008904406568035483, 0.02803582325577736, -0.00739983981475234, -0.00806029886007309, -0.007824420928955078, 0.010446039959788322, 0.024383077397942543, -0.0016957966145128012, -0.0007042652578093112, -0.019342022016644478, -0.0073526641353964806, 0.001897135516628623, 0.000833155878353864, -0.008343352936208248, -0.003497738391160965, -0.015567968599498272, -0.0024902010336518288, -0.009724926203489304, 0.017697613686323166, 0.008997072465717793, 0.010264076292514801, -0.029006293043494225, -0.004185155034065247, 0.00912512093782425, -0.018344594165682793, -0.018870264291763306, 0.00019354658434167504, -0.003905470948666334, 0.0040705855935812, 0.01707758940756321, -0.01488055195659399, -0.0022627469152212143, 0.020703377202153206, 0.003423605114221573, -0.032780345529317856, 0.010567348450422287, -0.02098643034696579, 0.004768111743032932, 0.029141081497073174, -0.002018444472923875, -0.017010195180773735, 0.0020824684761464596, 0.014031389728188515, -0.003521326230838895, 0.011254765093326569, 0.010122549720108509, -0.006442847661674023, -0.0025019950699061155, 0.02817060984671116, -0.01571623422205448, -0.008808369748294353, 0.005556619260460138, -0.009569919668138027, -0.0004049946437589824, 0.03593437746167183, -0.020999908447265625, 0.013276579789817333, -0.01718541979789734, 0.00011646491475403309, -0.005337589420378208, -0.020325971767306328, -0.030488956719636917, -0.015096211805939674, 0.01587798073887825, -0.016619311645627022, -0.017293250188231468, -0.04191894456744194, 0.011362595483660698, 0.0016806329367682338, 0.003986343275755644, 0.01388312317430973, -0.012333066202700138, 0.0012097187573090196, -0.00787159614264965, 0.009738404303789139, 0.015392744913697243, -0.012993525713682175, -0.012090448290109634, -0.011915224604308605, -0.020784249529242516, -0.0009654162568040192, 0.005014099180698395, -0.0036830713506788015, 0.03145942836999893, 0.0030057637486606836, -0.01915331929922104, -0.0077637662179768085, -0.01920723356306553, -0.03827967867255211, -0.017387600615620613, 0.018344594165682793, 0.017401080578565598, 0.04146066680550575, 0.022280391305685043, 0.015729714184999466, -0.0005126141477376223, 0.02817060984671116, 0.018317636102437973, -0.034667372703552246, -0.0028541276697069407, 0.005223019979894161, -0.024935707449913025, 0.009024030528962612, -0.013141791336238384, -0.024194374680519104, 0.002594661433249712, -0.012225235812366009, -0.018560253083705902, 0.010432560928165913, -0.005303892306983471, -0.013579851016402245, -0.010594305582344532, 0.0016957966145128012, -0.008168129250407219, 0.009024030528962612, 0.01497490331530571, 0.020582066848874092, -0.03418213874101639, 0.013856166042387486, 0.02819756790995598, -0.01579710841178894, -0.01114693470299244, 0.010756051167845726, 0.012171320617198944, 0.01585102267563343, 0.020433802157640457, 0.011133456602692604, 0.02161993272602558, 0.0014169546775519848, -0.013411367312073708, 0.014651413075625896, -0.015945373103022575, 0.005465637426823378, 0.025205282494425774, -0.006324908696115017, -0.022590402513742447, 0.024248290807008743, -0.005590315908193588, -0.012798083014786243, -0.009967543184757233, 0.006092399824410677, -0.038818832486867905, 0.025151368230581284, -0.006762968376278877, 0.0062945811077952385, -0.024005671963095665, 0.00013857851445209235, -0.013404627330601215, 0.0003521326289046556, -0.005287043750286102, 0.016794536262750626, 0.000732486427295953, -0.0021178503520786762, 0.0013664093567058444, -0.01773804984986782, 0.0061159878969192505, 0.0017471843166276813, -0.011045844294130802, -0.010641481727361679, 0.002645206870511174, -0.015244478359818459, 0.0435633547604084, -0.0024548193905502558, -0.022280391305685043, 0.007285270374268293, 0.010762790217995644, 0.003794271033257246, 0.01861416921019554, 0.20660243928432465, 0.014341401867568493, -0.004586148541420698, 0.03348124027252197, -0.007049391977488995, 0.022940849885344505, 0.005256716627627611, 0.010749312117695808, 0.01899157464504242, 0.019112883135676384, 0.006570895668119192, 0.005923915188759565, -0.0018145781941711903, -0.006641659419983625, 0.00704265246167779, -0.01598581112921238, -0.02771233208477497, -0.00046796572860330343, -0.020447280257940292, 0.05200105905532837, 0.020015960559248924, -0.012360023334622383, -0.0007918772171251476, -0.025393985211849213, 0.02596009336411953, 0.007244833745062351, -0.016592353582382202, 0.011173892766237259, 0.03844142705202103, 0.019476808607578278, -0.01478620059788227, 0.014772721566259861, -6.586691597476602e-05, 0.0070898281410336494, 0.004643433261662722, -0.025178324431180954, -0.004373857751488686, -0.0030141877941787243, 0.006065442226827145, -0.0064832838252186775, 0.009462090209126472, 0.0031624543480575085, -0.01680801436305046, -0.005081492941826582, -0.00040794312371872365, 0.021161654964089394, 0.005944133270531893, -0.012076969258487225, -0.018209805712103844, 0.015325350686907768, -0.01150412205606699, 0.0036965501494705677, 0.041083261370658875, 0.011672606691718102, 0.010291033424437046, 0.021822113543748856, 0.009064466692507267, 0.004333421587944031, -0.03396647796034813, -0.012178060598671436, -0.004175045993179083, 0.009205993264913559, -0.0019190385937690735, 0.017374122515320778, -0.01683497242629528, 0.012946349568665028, 0.006442847661674023, 0.020447280257940292, -0.005361177027225494, -0.007406578864902258, -0.017441516742110252, 0.019005052745342255, -0.004879311192780733, 0.01726629212498665, 0.0013419791357591748, -0.01397747453302145, 0.02470656856894493, 0.02125600539147854, 0.01800762489438057, 0.014489667490124702, 0.023399129509925842, -0.0023436194751411676, 0.00859270989894867, 0.02027205564081669, -0.008343352936208248, -0.007204397581517696, 0.022226477041840553, -0.007150482386350632, 0.002491885796189308, 0.0030293515883386135, 0.0017674025148153305, -0.018816350027918816, -0.014503146521747112, -0.031028106808662415, 0.014732285402715206, 0.0033006116282194853, 0.014530103653669357, 0.0006069654482416809, -0.009974283166229725, 0.00020765715453308076, -0.006284472066909075, 0.05154278129339218, 0.018344594165682793, -0.01869504153728485, -0.0009502526372671127, 0.0023554135113954544, -0.015675798058509827, 0.017293250188231468, 0.0012408883776515722, -0.016875408589839935, -0.004859093111008406, -0.0221860408782959, 0.005873369984328747, -0.009064466692507267, 0.0003845658793579787, 0.018897222355008125, -0.010230379179120064, -0.0026603704318404198, 0.0074470154941082, -0.013000264763832092, 0.020514674484729767, -0.01773804984986782, -7.318545976886526e-05, 0.008080516941845417, -0.006543938536196947, -0.015433181077241898, -0.02172776311635971, 0.0020740441977977753, -0.017171941697597504, -0.03369690105319023, 0.013768553733825684, -0.019881172105669975, 0.0006600380875170231, -0.012076969258487225, -0.019247669726610184, -0.004939965903759003, 0.014327922835946083, -0.013404627330601215, -0.021053824573755264, 0.00013657775707542896, -0.004505275748670101, -0.013937038369476795, 0.004387336783111095, -0.002099317032843828, 0.0168619304895401, -0.01612059772014618, 0.009772101417183876, 0.013613548129796982, 0.0040705855935812, -0.01869504153728485, -0.020595546811819077, -0.006476544309407473, -0.011160413734614849, -0.010189943015575409, 0.03011155128479004, -0.004542342387139797, -0.0299228485673666, -0.005516182631254196, 0.01702367514371872, 0.023520438000559807, -0.050922758877277374, -0.019544202834367752, 0.04450686648488045, -0.016619311645627022, -0.02071685530245304, 0.0023436194751411676, -0.17231248319149017, 0.011254765093326569, 0.00552629167214036, -0.02366870455443859, 0.015864500775933266, 0.016659747809171677, -0.01381572987884283, -0.0023503589909523726, -0.0221860408782959, 0.009293605573475361, 0.02268475480377674, 0.00539824366569519, -0.037120506167411804, -0.008127693086862564, -0.009448611177504063, -0.003878513351082802, -0.007204397581517696, 0.01231284812092781, 0.049035731703042984, 0.003450562711805105, 0.03968147188425064, -0.0181154552847147, -0.00903076957911253, -0.024693090468645096, 0.015635361894965172, -0.004963553510606289, -0.016309300437569618, 0.0030596787109971046, 0.019261149689555168, -0.05159669741988182, 0.006955040618777275, -0.012649817392230034, 0.029302826151251793, 0.03137855604290962, -0.003807749832049012, 0.0008407377172261477, 0.01513664796948433, -0.0013445063959807158, -0.018600689247250557, 0.00857923086732626, 0.024032630026340485, 0.018465902656316757, 0.009536223486065865, 0.023412607610225677, 0.00843096524477005, 0.011921963654458523, 0.03830663859844208, -0.02569051831960678, 0.009145339019596577, -0.023331735283136368, 0.024086546152830124, -0.04795743152499199, -0.004747893661260605, 0.007103306706994772, -0.0026772187557071447, 0.013485499657690525, 0.028467142954468727, 0.011167153716087341, -0.011793915182352066, -0.020433802157640457, 0.009650792926549911, -0.01622842811048031, 0.004771481268107891, 0.009940586052834988, -0.012184799648821354, -0.03941189497709274, 0.005300522781908512, 0.01571623422205448, -0.019827257841825485, 0.033049922436475754, 0.010675178840756416, -0.015352308750152588, -0.0022071469575166702, -0.02002943865954876, 0.0015256272163242102, 0.0014826636761426926, -0.007123525254428387, 0.021458186209201813, 0.01696975901722908, 0.006153054069727659, 0.012703731656074524, 0.006891016382724047, 0.01478620059788227, 0.018425466492772102, -0.040867604315280914, 0.00699547678232193, 0.0025929766707122326, 0.006746119819581509, -0.01291265245527029, 0.0007476499886251986, 0.02976110391318798, -0.02420785464346409, -0.015729714184999466, -0.01691584475338459, -0.004198634065687656, -0.012413938529789448, 0.00641589006409049, 0.013937038369476795, -0.02822452411055565, -0.012616120278835297, 0.0031877269502729177, -0.007999644614756107, -0.027510151267051697, 0.0029417395126074553, 0.021309921517968178, 0.004188525024801493, 0.0002533585939090699, 0.00641589006409049, 0.02470656856894493, -0.009751883335411549, -0.02000248059630394, 0.017724569886922836, 0.03154030069708824, 0.0008462134283035994, -0.019773341715335846, 0.038899704813957214, 0.011564776301383972, 0.015406223945319653, -0.009003812447190285, -0.017320208251476288, 0.04558517038822174, 0.002008335432037711, -0.022091688588261604, -0.008619667030870914, -0.02811669558286667, -0.020042916759848595, -0.11559385061264038, -0.030596787109971046, 0.004973662551492453, 0.026660988107323647, 0.014840115793049335, 0.02104034461081028, -0.0054723769426345825, 0.033049922436475754, -0.027227096259593964, 0.022388221696019173, 0.014705328270792961, -0.024356121197342873, -0.0018769174348562956, 0.005590315908193588, 0.005954242777079344, 0.019166797399520874, -0.0020824684761464596, -0.004528863821178675, -0.022401699796319008, 0.01571623422205448, -0.004471579100936651, -0.022064730525016785, 0.022347785532474518, -0.015635361894965172, -0.00990688893944025, -0.002993969712406397, -0.017832400277256966, -0.017859358340501785, 0.01239372044801712, 0.016875408589839935, 0.009071205742657185, -0.022913893684744835, 0.007581803016364574, -0.0038582952693104744, 0.0008613770478405058, 0.002429546555504203, -0.06027701869606972, -0.008457922376692295, -0.0029080426320433617, -0.018681561574339867, 0.007029173895716667, -0.010789748281240463, 0.00691460445523262, -0.022428657859563828, -0.01678105629980564, -0.015123169869184494, -0.006422629579901695, -0.014408795163035393, -0.001542475656606257, -0.01186130940914154, -0.023709140717983246, -0.010297773405909538, 0.0021363836713135242, -0.014920988120138645, 0.003297241870313883, 0.007345924619585276, 0.011915224604308605, 0.023978715762495995, -0.03450562804937363, -0.011901745572686195, 0.011975878849625587, -0.008093995973467827, -0.003423605114221573, 0.019247669726610184, -0.0020588806364685297, -0.006466435268521309, -0.02191646583378315, -0.011692824773490429, 0.0004730202490463853, -0.0030158727895468473, -0.010264076292514801, 0.0002708388492465019, -0.015163606032729149, 0.026607073843479156, -0.013141791336238384, 0.002732818713411689, -0.018452422693371773, -0.03561088442802429, 0.0016898995963856578, 0.006968519184738398, -0.013755075633525848, -0.02497614361345768, 0.007999644614756107, -0.0012745852582156658, 0.014341401867568493, 0.02569051831960678, 0.0029181516729295254, 0.0030933755915611982, 0.005101711023598909, -0.022549966350197792, 0.011834352277219296, 0.017576303333044052, 0.025097452104091644, -0.007413318380713463, 0.006537199020385742, 0.010270815342664719, -0.018438944593071938, -0.017091069370508194, 0.003056308953091502, 0.0345325842499733, -0.0009098163573071361, 0.011045844294130802, -0.060977913439273834, 0.025205282494425774, -0.009819277562201023, 0.00392905855551362, 0.0030040787532925606, 0.00859270989894867, -0.000254411599598825, -0.016349736601114273, 0.005900327581912279, 0.022523008286952972, -0.03914232179522514, 0.005462267901748419, -0.0024784072302281857, 0.013317015953361988, -0.02161993272602558, 0.0003786689485423267, 0.012730689719319344, 0.0007716590771451592, 0.02484135515987873, 0.011793915182352066, 0.0053274803794920444, -0.015810586512088776, 0.013108095154166222, 0.01609363965690136, 0.008559012785553932, 0.011591734364628792, -0.026243146508932114, -0.012292630039155483, -0.008626407012343407, -0.013701160438358784, 0.01994856633245945, 0.0043367911130189896, -0.020568588748574257, 0.021768199279904366, -0.026162274181842804, -0.01997552253305912, -0.008680322207510471, 0.008168129250407219, 0.01705063320696354, 0.02587922103703022, -0.016740620136260986, -0.030704617500305176, 0.019773341715335846, -0.0257174763828516, -0.013485499657690525, -0.0028895093128085136, -0.009967543184757233, -0.0055060735903680325, 0.0014034759951755404, 0.008114214055240154, 0.017913272604346275, 0.021309921517968178, -0.010041676461696625, -0.010931274853646755, 0.012171320617198944, -0.003996452782303095, 0.008424225263297558, 0.00832313485443592, 0.0033865387085825205, -0.014449231326580048, 0.023587830364704132, 0.02161993272602558, 0.013519196771085262, -0.0032113147899508476, 0.015864500775933266, 0.007224615663290024, -0.02776624634861946, -0.003110224148258567, -0.01388312317430973, 0.00696178013458848, -0.01231284812092781, -0.0035819807089865208, 0.011618691496551037, 0.001488560694269836, 0.01043929997831583, 0.012649817392230034, -0.015096211805939674, 0.022496052086353302, -0.010412342846393585, 0.018600689247250557, -0.011477164924144745, -0.01792675256729126, -0.021552538499236107, 0.015635361894965172, 0.012872216291725636, -0.0012451005168259144, -0.02221299707889557, -0.007561584934592247, -0.014314443804323673, 0.0006444532191380858, -0.014637934044003487, -0.006850580219179392, -0.004899529740214348, 0.0010909371776506305, -0.005357807502150536, 0.01508273370563984, 0.02197038009762764, 0.026660988107323647, -0.005536401178687811, 0.018681561574339867, 0.005263456143438816, -0.006560786627233028, -0.004751263186335564, -0.015365786850452423, -0.032753389328718185, 0.007521148305386305, 0.004656911827623844, -0.017091069370508194, -0.002338564954698086, 0.007676154375076294, 0.0033545265905559063, 0.016255386173725128, 0.03377777338027954, 0.0014936152147129178, -0.020703377202153206, -0.01478620059788227, -0.00945535022765398, -0.009185775183141232, -0.0337238609790802, 0.006651768460869789, 0.009967543184757233, 0.010675178840756416, 0.00787159614264965, -0.006220448296517134, 0.01329679787158966, -0.008067037910223007, 0.0071639614179730415, -0.052998486906290054, 0.019395936280488968, 0.007487451657652855, -0.023533916100859642, -0.0024177527520805597, 0.014651413075625896, -0.024410035461187363, -0.0006162321078591049, -0.01061452366411686, -0.01206349115818739, 0.020096832886338234, 0.02223995514214039, 0.06944257766008377, 0.013141791336238384, -0.037039633840322495, 0.011921963654458523, 0.014557061716914177, 0.017401080578565598, 0.011160413734614849, 0.017360644415020943, -0.030381126329302788, -0.01231284812092781, 0.01781892217695713, -0.00419526407495141, -0.0011701248586177826, 0.003905470948666334, -0.016956280916929245, 0.012413938529789448, -0.02215908281505108, 0.014449231326580048, -0.026027487590909004, -0.0005589473876170814, 0.03838751092553139, -0.0012122460175305605, 0.0033376780338585377, -0.0027294489555060863, -0.016403652727603912, -0.01816936954855919, 0.006089030299335718, 0.03000372089445591, -0.014840115793049335, -0.03240294009447098, 0.017751527950167656, 8.234680717578158e-05, -0.01853329688310623, -0.009185775183141232, 0.010607784613966942, 0.0009359314572066069, -0.0033983325120061636, -0.02314303256571293, 0.019436372444033623, -0.012164581567049026, -0.00500735966488719, 0.01776500605046749, -0.004549081902951002, -0.006658507976680994, -0.004215482622385025, -0.008242262527346611, -0.025043537840247154, -0.016713663935661316, 0.011032365262508392]" +20,"More than 860,000 organizations across every industry from BP and Fuji Film to ING Bank, iHeartMedia, and Lumen Technologies now use our security solutions, up 33% year over year. They can save up to 60% when they consolidate our security stack, and the number of customers with more than four workloads have increased 50% year over year. More organizations are choosing both our XDR and cloud-native SIM to secure their entire digital estate. The number of E5 customers who also purchased Sentinel increased 44% year over year.","[0.011292602866888046, -0.0127616161480546, -0.012316038832068443, -0.03848675265908241, -0.013583149760961533, 0.031246118247509003, -0.028168847784399986, -0.0032600255217403173, -0.001530802226625383, -0.009809665381908417, 0.01675092615187168, 0.025356141850352287, 0.012622373178601265, -0.006906450260430574, -0.010192584246397018, 0.028711896389722824, 0.006610558833926916, 0.004619384650141001, 0.013137572444975376, -0.008347614668309689, -0.016235727816820145, -0.008410274051129818, -0.01291478332132101, 0.027054905891418457, -0.016500288620591164, -0.012580600567162037, 0.0031817012932151556, -0.007087466306984425, 0.00871660839766264, -0.008953321725130081, 0.012497054412961006, -0.013854673132300377, -0.00908560212701559, 0.015442042611539364, -0.015177481807768345, 0.002412384143099189, -0.0030250530689954758, 0.0020277253352105618, 0.02381054498255253, -0.027416937053203583, 0.01475975289940834, -0.009524217806756496, 0.012371735647320747, 0.0007149255252443254, -0.02229279652237892, 0.010519804432988167, -0.012650221586227417, 0.008967245928943157, -0.013464793562889099, 0.0026403944939374924, -0.008055204525589943, 0.01297048106789589, -0.026219448074698448, -0.016764851287007332, -0.017391445115208626, -0.011390073224902153, -0.009907135739922523, -0.011369186453521252, 0.01574837788939476, -0.01730789802968502, 0.0032652472145855427, -0.0023288382217288017, -0.02553715743124485, -0.007811529561877251, -0.028684047982096672, -0.017057260498404503, -0.011821726337075233, -0.009009018540382385, -0.0163192730396986, -0.00036986407940275967, 0.03929436206817627, 0.028405562043190002, -0.005298194009810686, 0.022585205733776093, -0.006286818999797106, -0.00025085487868636847, 0.002405422041192651, 0.0010695599485188723, 0.002929323585703969, 0.0018693365855142474, 0.014536963775753975, -0.03598037734627724, -0.01743321679532528, -0.00595959834754467, 0.02921317145228386, 0.005458323750644922, -0.019396543502807617, 0.013179345056414604, 0.0030215720180422068, 0.02467385120689869, 0.03138536214828491, 0.0099419467151165, -0.001724872039631009, -0.003381863236427307, -0.0005217259167693555, 0.015400270000100136, 0.006843790877610445, 0.009614725597202778, -0.0032112905755639076, -0.03430946171283722, -0.010986268520355225, -0.03007647767663002, -0.022877616807818413, -0.01013688649982214, -0.00329831731505692, -0.005378258880227804, -0.011933120898902416, -0.001713558565825224, 0.006192830391228199, 0.00550009636208415, -0.005510539747774601, 0.02612197771668434, 0.005618453025817871, -0.019605407491326332, 0.025049805641174316, -0.021206701174378395, 0.014195818454027176, 0.005802949890494347, 0.0029345450457185507, -0.01467620674520731, 0.024144727736711502, 0.0066453698091208935, 0.02000921219587326, -0.02809922769665718, 0.015817999839782715, -0.00415292102843523, 0.009238769300282001, -0.036537349224090576, 0.032555002719163895, -0.002685648389160633, 0.00382918119430542, -0.012343887239694595, 0.008096977137029171, 0.0029850206337869167, -0.016542062163352966, 0.024325743317604065, 0.007101390510797501, 0.02367130108177662, -0.01347175519913435, -0.017238277941942215, -0.0008989872876554728, 0.015344573184847832, 0.003484554821625352, 0.012302114628255367, 0.020788973197340965, 0.010916647501289845, -0.0022574763279408216, 0.010373599827289581, 0.011654634959995747, -0.004330455791205168, 0.002137379255145788, -0.002483746036887169, -0.00046907467185519636, 0.005228572525084019, 0.004612422548234463, -0.008361538872122765, -0.00251681637018919, 0.030104326084256172, -0.023657377809286118, 0.005197243299335241, -0.031134722754359245, 0.020510487258434296, -0.02424219809472561, -0.010826139710843563, 0.0020573146175593138, 0.026720721274614334, 0.0012479649158194661, 0.007505194749683142, -0.0028666642028838396, 0.00414247764274478, 0.008208371698856354, 0.03347400575876236, -0.0027987833600491285, 0.016249652951955795, 0.01775347627699375, 0.04224631190299988, 0.006363402586430311, -0.00843116082251072, -0.009712195955216885, -0.029603051021695137, 0.019229451194405556, 0.008549517020583153, 0.02055225893855095, 0.004365266300737858, -0.01729397475719452, 0.02241811528801918, 0.01945224031805992, 0.01389644667506218, 0.007070060819387436, -0.005113697145134211, 0.02751440741121769, 0.020454788580536842, -0.004316531587392092, -0.006433024071156979, -0.6483151912689209, -0.0006174554582685232, -0.0066523319110274315, -0.0072684818878769875, -0.003843105398118496, 0.010464107617735863, 0.01956363394856453, 0.011633748188614845, -0.03564619645476341, 0.000584385241381824, 0.015804074704647064, -0.00014990373165346682, -0.012357811443507671, -0.02300293557345867, 0.011661596596240997, -0.029296716675162315, -0.008821040391921997, -0.008173560723662376, -0.008626100607216358, -0.019494011998176575, -0.03361324965953827, 0.008062167093157768, -0.005771620199084282, -0.007505194749683142, 0.007463422138243914, -0.015135708265006542, -0.0026612807996571064, -0.012949594296514988, -0.005496615543961525, -0.0033435712102800608, -0.007118795998394489, 0.024005483835935593, 0.01618003100156784, 0.007707097101956606, 0.041912127286195755, 0.0043617854826152325, -0.01333947479724884, 0.022807994857430458, 0.029185323044657707, 0.05714530497789383, -0.010853988118469715, 0.0037769649643450975, 0.04026906192302704, 0.008730532601475716, 0.001394169987179339, 0.03163599967956543, 0.02752833068370819, -0.014926844276487827, 0.009029905311763287, -0.0034758520778268576, 0.01269895676523447, -0.01871425285935402, -0.012072363868355751, -0.020329469814896584, 0.018101584166288376, 0.013812900520861149, 0.021067457273602486, -0.04458559304475784, 0.014300250448286533, -0.013137572444975376, -0.015957241877913475, 0.0124204708263278, -0.03160814940929413, -0.015817999839782715, -0.016082560643553734, 0.0021391198970377445, -0.002374092349782586, -0.0027657130267471075, 0.03205372765660286, -0.016263576224446297, 0.027625801041722298, 0.026470083743333817, 0.00039988834760151803, -0.0023062112741172314, 0.024451062083244324, 0.010394486598670483, 0.026275144889950752, 0.001187046174891293, -0.012316038832068443, 0.03940575569868088, -0.0012853865046054125, -0.0241029541939497, -0.013875559903681278, -0.008688759990036488, 0.007484308443963528, 0.0070213256403803825, -0.02665110118687153, -0.03812471777200699, 0.004330455791205168, -0.0047307792119681835, 0.0191459059715271, 0.00457413075491786, 0.0006035311380401254, -0.04001842439174652, 0.008556479588150978, 0.027681497856974602, -0.010255243629217148, 0.014843298122286797, 0.005903901066631079, -0.016542062163352966, -0.036787986755371094, 0.0004218626127112657, 0.006077954545617104, 0.0008267550147138536, 0.043610893189907074, 0.018212977796792984, -0.004796919412910938, -0.01604078710079193, 0.013074913062155247, -0.025982733815908432, 0.0002671724068932235, -0.016374971717596054, -0.02399156056344509, -0.011041966266930103, -0.0006117987213656306, -0.032694242894649506, 0.023935863748192787, -0.0036516464315354824, -0.009928022511303425, -0.017140807583928108, 0.01078436616808176, -0.02084467001259327, -0.007247595582157373, -0.009740044362843037, 0.0017022450920194387, 0.03018787130713463, 0.0044557745568454266, -0.006502645555883646, 0.022223174571990967, -0.003051161067560315, -0.008514706045389175, -0.023086480796337128, 0.02807137928903103, -0.003251322777941823, 0.0163053497672081, 0.008841927163302898, 0.03018787130713463, -0.03598037734627724, 0.007386838551610708, -0.029575202614068985, -0.033696793019771576, -0.017349671572446823, 0.0025533675216138363, 0.01185653731226921, -0.0053538912907242775, -0.02924101985991001, -0.013290739618241787, 0.022056082263588905, -0.0027517888229340315, -0.011870461516082287, 0.00047734222607687116, -0.0015891101211309433, -0.006976071745157242, 0.010241318494081497, 0.008410274051129818, -0.0050719245336949825, 0.004567168653011322, -0.04085388034582138, -0.02979799173772335, -0.005552312824875116, 0.020357320085167885, 0.034086674451828, -0.007191898301243782, -0.01411923486739397, -0.005148508120328188, -0.010331827215850353, 0.010742593556642532, 0.025746021419763565, -0.0007867226377129555, -0.015553437173366547, -0.00843116082251072, -0.006589672528207302, 0.016778774559497833, 0.0076235514134168625, 0.020245924592018127, 0.014063538052141666, -0.015274951234459877, 0.007150125224143267, 0.030744843184947968, -0.003745635272935033, 0.022626979276537895, -0.00011248219379922375, -0.02580171823501587, -0.0004747314378619194, 0.019396543502807617, 0.007219746708869934, 0.01743321679532528, 0.007104871328920126, -0.027305541560053825, -0.012100212275981903, -0.003115561092272401, 0.002821410307660699, 0.015052163042128086, 0.025314368307590485, -0.006248527206480503, -0.008124826475977898, -0.020496562123298645, -0.01675092615187168, 0.004939643666148186, -0.0004560206725727767, 0.010798290371894836, 0.005482691340148449, 0.012803388759493828, 0.00957295298576355, 0.0031573339365422726, -0.015121784061193466, 0.016096485778689384, -0.010735630989074707, 0.023142177611589432, 0.00893243495374918, 0.01843576692044735, -0.007818491198122501, 0.0008132658549584448, -0.013583149760961533, 0.015804074704647064, 0.01390340831130743, 0.003916208166629076, 0.01112551148980856, -0.025425761938095093, -0.015066087245941162, -0.00042099234997294843, -0.022585205733776093, 0.0396842397749424, -0.01262933574616909, 0.0036168356891721487, -0.0036133546382188797, 0.014662282541394234, 0.024061182513833046, 0.015957241877913475, -0.016082560643553734, -0.0009738303488120437, 0.010610313154757023, 0.012524902820587158, 0.001968547236174345, 0.017502838745713234, -0.0027622319757938385, 0.04299822449684143, -0.019187677651643753, 0.02140164189040661, -0.009336239658296108, 0.013450868427753448, 0.006252008490264416, 0.04931985214352608, -0.004873502999544144, 0.026316916570067406, 0.010791328735649586, 0.020649729296565056, -0.0022470331750810146, 0.002786599565297365, 0.0018223420483991504, -0.015121784061193466, 0.0036272788420319557, 0.004943124484270811, -0.0033574956469237804, 0.015845848247408867, -0.015525588765740395, 0.011369186453521252, 0.011021079495549202, 0.020245924592018127, 0.00794380996376276, 0.029324565082788467, 0.014272402040660381, 0.029046079143881798, -0.013910370878875256, 0.011863498948514462, 0.010373599827289581, -0.011021079495549202, -0.010881836526095867, 0.01817120425403118, -0.01618003100156784, 0.0007714929524809122, -0.0016282722353935242, 0.02979799173772335, -0.018101584166288376, 0.01071474514901638, 0.005520983133465052, 0.00489787058904767, 0.013248967006802559, -0.009224845096468925, 0.007070060819387436, -0.01361796073615551, -0.03815256804227829, 0.010484994389116764, 0.006321629974991083, -0.006861196365207434, -0.021067457273602486, -0.013297701254487038, -0.00397190498188138, -0.013506566174328327, 0.02283584326505661, 0.0117033701390028, 0.014167970046401024, -0.009663460776209831, 0.014968616887927055, 0.01587369665503502, 0.010679934173822403, 0.02738908864557743, -0.018686404451727867, -0.0006087527726776898, 0.01213502325117588, 0.03489428386092186, -0.00037639110814779997, -0.020802896469831467, -0.03414237126708031, 0.03957284614443779, -0.02183329500257969, -0.020357320085167885, -0.014216705225408077, -0.007386838551610708, -0.013242004439234734, 0.01645851694047451, -0.028739744797348976, -0.011508429422974586, 0.014620509929955006, 0.0049779354594647884, 0.012524902820587158, -0.019800348207354546, -0.01985604502260685, 0.03230436518788338, 0.02413080260157585, -0.006864677183330059, -0.028544804081320763, -0.03018787130713463, 0.016625607386231422, 0.06026434898376465, 0.011891348287463188, -0.012128060683608055, 0.012469206005334854, -0.010011567734181881, -0.030884085223078728, -0.026191597804427147, -0.03344615548849106, 0.0005391312879510224, -0.014815449714660645, -0.004782995209097862, 0.005228572525084019, 0.010429296642541885, -0.0163192730396986, -0.001767515204846859, 0.009969795122742653, -0.005628896411508322, -0.006969109643250704, -0.018115507438778877, -0.0053678154945373535, 0.00040924371569417417, -0.0008132658549584448, 0.013290739618241787, 0.02865619957447052, 0.03887663036584854, -0.013353399001061916, 0.034393008798360825, 0.03848675265908241, 0.00957295298576355, -0.011612862348556519, 0.00036224923678673804, 0.005855165887624025, 0.005855165887624025, 0.0220003854483366, -0.016374971717596054, -0.002986761275678873, -0.0062972623854875565, -0.019953515380620956, -0.0148850716650486, 0.012072363868355751, -0.003143409499898553, 0.004487104248255491, 0.008382425643503666, -0.009802703745663166, 0.02383839339017868, -0.028057454153895378, 0.005740290507674217, 0.018254751339554787, -0.0028440372552722692, -0.019661104306578636, -0.0011887867003679276, -0.013137572444975376, -0.05449968948960304, -0.012998329475522041, -0.02509157918393612, 0.01800411380827427, -0.004831730388104916, -0.017614232376217842, -0.030522054061293602, -0.04831730201840401, -0.0354512557387352, -0.012538827955722809, 0.022348493337631226, -0.012441357597708702, -0.01886742003262043, -0.0043687475845217705, -0.005649782717227936, -0.0012879972346127033, -0.020733274519443512, -0.0002404116530669853, 0.006614040117710829, -0.02808530256152153, -0.02156873233616352, 0.015372421592473984, 0.037679143249988556, 0.015191406011581421, -0.0033192038536071777, 0.02325357310473919, 0.0012732027098536491, 0.0040937429293990135, -0.01226034201681614, 0.009719157591462135, 0.002337540965527296, -0.042190615087747574, -0.014787601307034492, 0.003850067500025034, -0.017642080783843994, -0.020928215235471725, -0.007574816234409809, 0.018602857366204262, -0.005190280731767416, -0.014411645010113716, 0.00901598110795021, 0.00978877954185009, 0.012309076264500618, 0.012886934913694859, 0.01633319817483425, 0.013047064654529095, 0.013659733347594738, 0.0027221995405852795, 0.0022679194808006287, -0.007449497934430838, -0.032387908548116684, -0.014042651280760765, 0.02197253704071045, -0.006265932694077492, 0.010039417073130608, -0.011118549853563309, -0.0017501098336651921, -0.014355948194861412, -0.005782063584774733, 0.00044470716966316104, 0.006495683453977108, -0.01789271831512451, -0.005566237028688192, 8.583022281527519e-05, 0.001789271947927773, 0.0010660787811502814, 0.010088151320815086, 0.0034549657721072435, -0.0012035812251269817, -0.016402820125222206, 0.016277501359581947, -0.00921092089265585, -0.0025498864706605673, 0.002689129440113902, 0.020816821604967117, -0.002736123977228999, -0.027848590165376663, 0.009238769300282001, -0.01899273879826069, 0.015957241877913475, 0.0017196504632011056, 0.0057159229181706905, -0.03361324965953827, 0.005691555328667164, -0.004532358143478632, 0.00985143892467022, -0.02706882916390896, -0.01601293869316578, -0.008396349847316742, 0.0016665640287101269, -0.0038709540385752916, -0.011445770040154457, -0.0006966498913243413, -0.017962340265512466, -0.025592854246497154, 0.008709646761417389, 0.009740044362843037, 0.007428611163049936, -0.010659047402441502, -0.025885263457894325, -0.003380122594535351, -0.013764165341854095, -0.03533986210823059, -0.02367130108177662, -0.01219768263399601, 0.00979574117809534, 0.043750133365392685, 0.044891927391290665, 0.013019215315580368, -0.006046624854207039, -0.003004166530445218, 0.0131236482411623, -0.0076374756172299385, -0.004904832690954208, -0.019382618367671967, 0.0015995533904060721, -0.009719157591462135, 0.010303977876901627, -0.0015508183278143406, 0.007867226377129555, -0.02825239486992359, 0.0028910317923873663, -0.00014620510046370327, 0.009329278022050858, -0.010672971606254578, -0.015999015420675278, -0.0383196584880352, -0.038096871227025986, 0.006941261235624552, 0.004957049153745174, -0.008626100607216358, 0.009127375669777393, -0.02371307462453842, 0.007073541637510061, 0.007435573264956474, -0.0029241018928587437, 0.03461579605937004, -0.015219254419207573, 0.028280243277549744, 0.001060857204720378, -0.007303292863070965, 0.009224845096468925, -0.0021530441008508205, -0.02938026189804077, -0.01856108568608761, -0.03361324965953827, 0.008326727896928787, 0.022794071584939957, 0.005820355378091335, 0.012009704485535622, 0.024158651009202003, 0.001677877502515912, 0.013026177883148193, 0.014035689644515514, -0.021081382408738136, -0.020482636988162994, -0.00139068893622607, -0.011605899780988693, 0.014871146529912949, -0.02084467001259327, -0.0325828492641449, -0.0110001927241683, -0.009503331035375595, -0.007546967826783657, -0.0053330049850046635, 0.01155716460198164, -0.012838199734687805, -0.023183951154351234, 0.007839377969503403, 0.0035332897678017616, 0.04129945859313011, -0.005587123334407806, 0.01959148235619068, 0.022738372907042503, 0.021081382408738136, -0.01616610586643219, -0.024353591725230217, 0.013381247408688068, -0.023629527539014816, 0.03066129796206951, 0.0354791022837162, -0.03202587738633156, 0.0015316724311560392, -0.0060570682398974895, 0.01913198083639145, -0.015233178623020649, -0.020496562123298645, 0.015776226297020912, -0.003080750349909067, -0.003989310469478369, -0.014717979356646538, -0.02083074487745762, -0.005447880364954472, -0.004675081931054592, -0.008897624909877777, 0.0076235514134168625, 0.016542062163352966, -0.004469698760658503, -0.0016213101334869862, 0.0028544804081320763, -0.024200424551963806, 0.01644459180533886, -0.008904586546123028, -0.0177395511418581, 0.0095799146220088, -0.024576380848884583, 0.007352027576416731, -0.027013132348656654, -0.01885349489748478, 0.011334376409649849, 0.011459695175290108, -0.006892526056617498, 0.028419485315680504, 0.01943831518292427, -0.00830584205687046, -0.007087466306984425, -0.016235727816820145, 0.02850303240120411, 0.0035750626120716333, -0.014871146529912949, 0.0039022837299853563, -0.005204205401241779, 0.008062167093157768, -0.001860633958131075, -0.010902723297476768, -0.008605213835835457, -0.010582463815808296, 0.008953321725130081, 0.011508429422974586, -0.016361046582460403, 0.0021669683046638966, 0.001713558565825224, -0.004776033107191324, -0.025049805641174316, -0.005343448370695114, -0.005162432324141264, 0.014523039571940899, -0.04514256492257118, -0.022501660510897636, 0.019396543502807617, -0.0032095499336719513, 0.021443413570523262, 0.006182387005537748, 0.003752597374841571, 0.0038883592933416367, 0.016764851287007332, 0.007372914347797632, 0.011675521731376648, 0.005183318629860878, 0.007985583506524563, -0.05004391446709633, 0.002081681974232197, 0.0006366013549268246, -0.008521668612957, 0.029825840145349503, -0.0005913474014960229, -0.015177481807768345, -0.012504016980528831, 0.004563687834888697, -0.019953515380620956, 0.010387524031102657, 0.01899273879826069, 0.016820548102259636, 0.004072856158018112, -0.0006374716176651418, 0.010840063914656639, -0.01760030910372734, 0.022640904411673546, 0.006819423288106918, 0.0008798413909971714, 0.013200231827795506, -0.018909191712737083, 0.006882082670927048, -0.0066314456053078175, 0.008424198254942894, -0.011097663082182407, -0.007679248694330454, -0.03149675577878952, -0.014154045842587948, 0.017516763880848885, -0.020218076184391975, -0.014314175583422184, -0.013012253679335117, 0.00010323559399694204, -0.015010389499366283, -0.0014959914842620492, 0.015776226297020912, 0.010721706785261631, 0.002388016553595662, -0.002591659314930439, 0.03773484006524086, 0.01077740453183651, -0.0081596365198493, -0.038625992834568024, -0.031970180571079254, -0.028308091685175896, -0.010937533341348171, 0.014662282541394234, -0.0007092687883414328, 0.033279065042734146, 0.007915961556136608, -0.03859814628958702, -0.022501660510897636, -0.020343394950032234, -0.04700842127203941, -0.005865609273314476, -0.005270345602184534, 0.030884085223078728, 0.032415758818387985, 0.021234549582004547, 0.0021426009479910135, 0.030048629269003868, 0.021875066682696342, 0.02155480906367302, -0.010707782581448555, -0.01284516230225563, 0.0008611305966041982, -0.04458559304475784, 0.03224866837263107, -0.006781131494790316, -0.02594096213579178, 0.004058931954205036, 0.011661596596240997, -0.00893243495374918, 0.011884385719895363, 0.01715473085641861, -0.03475503996014595, 0.00139068893622607, 0.0043965959921479225, 0.0029606532771140337, 0.00042142748134210706, -0.0029032155871391296, -0.014704055152833462, -0.03843105211853981, -0.006060549523681402, 0.031106874346733093, -0.015219254419207573, -0.009844476357102394, 0.003790889400988817, 0.021526960656046867, 0.02794606052339077, -0.006161500699818134, -0.005848203785717487, 0.015330648981034756, -0.001677877502515912, -0.01248313020914793, -0.010812214575707912, -0.019326921552419662, 0.0013054026057943702, 0.021359868347644806, 0.017642080783843994, -0.015163557603955269, 0.002086903667077422, 0.01957755908370018, -0.009628649801015854, -0.012838199734687805, 0.005082367453724146, -0.026776419952511787, 0.017823098227381706, -0.03049420565366745, -0.004340898711234331, -0.005896938964724541, 0.0019093689043074846, -0.010143849067389965, -0.004438369069248438, -0.02169405110180378, 0.020649729296565056, 0.001033008680678904, -0.04525395855307579, -0.022626979276537895, 0.002455897629261017, -0.0066801803186535835, 0.0047307792119681835, -0.0038848782423883677, 0.00034614925971254706, -0.0088628139346838, -0.001265370287001133, 0.0325828492641449, -0.0017666448839008808, -0.05547438934445381, -0.003790889400988817, 0.011383110657334328, 0.007505194749683142, 0.01361796073615551, 0.21755318343639374, 0.023378891870379448, 0.012893897481262684, 0.03506137430667877, 0.004567168653011322, 0.006941261235624552, -0.0009407601901330054, 0.011459695175290108, -0.004132034722715616, 0.013464793562889099, -0.0014211483066901565, 0.0056741503067314625, -0.0262612197548151, -0.003853548550978303, 0.013778089545667171, -0.026692872866988182, -0.03464364632964134, 0.02083074487745762, -0.015024314634501934, 0.029018230736255646, 0.013645809143781662, -0.014578736387193203, -0.02651185728609562, -0.014314175583422184, 0.01871425285935402, 0.00788115058094263, -0.008577365428209305, 0.01205147709697485, 0.03174739331007004, 0.02028769813477993, -0.02537006512284279, -0.0017796989995986223, 0.02468777447938919, 0.00011933555651921779, 0.002774415770545602, -0.026428312063217163, 0.0016726559260860085, 0.004351342096924782, -0.010937533341348171, 0.01056853961199522, -0.01574837788939476, -0.0059770033694803715, 0.0028527399990707636, 0.001079132896848023, 0.006098841316998005, 0.002072979463264346, -0.001717039616778493, -0.008124826475977898, -0.010317902080714703, 0.015776226297020912, -0.022863691672682762, 0.018937041983008385, 0.01029005367308855, -0.0005956987151876092, 0.018324371427297592, -0.006231122184544802, -0.00240890309214592, 0.0047655897215008736, -0.021916840225458145, 0.009203959256410599, 0.008027356117963791, 0.005127621814608574, -0.0017823097296059132, 0.012357811443507671, -0.03152460232377052, 0.021234549582004547, -0.01495469268411398, 0.02339281514286995, 0.016068635508418083, -0.015205330215394497, -0.008730532601475716, -0.012309076264500618, -0.027180222794413567, -0.004567168653011322, -0.0014054834609851241, -0.008291917853057384, 0.02069150283932686, 0.017920566722750664, 0.018756024539470673, 0.02028769813477993, 0.019521862268447876, 0.01559521071612835, -0.0022313683293759823, -0.0023862761445343494, 0.009760931134223938, -0.014898995868861675, 0.017363594844937325, -0.011821726337075233, -0.007769756484776735, -0.0027448267210274935, 0.008779267780482769, 0.0020085794385522604, -0.008730532601475716, -0.02383839339017868, 0.014084423892199993, -0.0038187378086149693, 0.02509157918393612, 0.0076305135153234005, -0.011543240398168564, -0.02325357310473919, -0.02154088392853737, 0.07998114824295044, 0.008201410062611103, -0.00105389510281384, -0.008960283361375332, -0.009740044362843037, -0.01475975289940834, 0.014251516200602055, -0.0005756825557909906, -0.019229451194405556, 0.006826385390013456, -0.038793087005615234, 0.007929885759949684, -0.009802703745663166, -0.001075651729479432, 0.011264754459261894, 0.004288682714104652, 0.0177256278693676, 0.007679248694330454, -0.004462736658751965, -0.010979306884109974, -0.008542555384337902, -0.011828688904643059, 0.01728004962205887, -0.011960969306528568, -0.023462437093257904, -0.0016291425563395023, -0.002979799173772335, -0.026135900989174843, -0.021666202694177628, 0.014731903560459614, -0.01318630762398243, 0.022585205733776093, -0.0269435103982687, -0.007303292863070965, 0.010178660042583942, 0.028851138427853584, -0.00010535687033552676, -0.016500288620591164, 0.026901736855506897, 0.009823590517044067, -0.002391497604548931, 0.0072824060916900635, -0.0021669683046638966, 0.014578736387193203, -0.015483816154301167, 0.028154924511909485, 0.02566247619688511, -0.008138750679790974, -0.0035367708187550306, -0.0085007818415761, 0.025453610345721245, -0.01112551148980856, 0.010213470086455345, 0.03854244947433472, -0.02087251842021942, -0.025328291580080986, -0.027263769879937172, 0.01874210126698017, 0.0036342409439384937, -0.04851224273443222, -0.002208741381764412, 0.028001757338643074, -0.016987640410661697, -0.007860264740884304, 0.015999015420675278, -0.18045885860919952, 0.015177481807768345, -0.0056149717420339584, -0.025049805641174316, 0.0034549657721072435, -0.002537702675908804, 0.011417921632528305, -0.005298194009810686, -0.028684047982096672, 0.0029241018928587437, 0.028990382328629494, 0.015581285580992699, -0.04171718657016754, -0.02170797623693943, -0.008201410062611103, 0.006527013145387173, 0.010512842796742916, 0.03222081810235977, 0.02564855106174946, 0.016625607386231422, 0.034281615167856216, -0.02825239486992359, -0.003068566555157304, -0.01913198083639145, 0.008695722557604313, -0.0025446650106459856, -0.027013132348656654, 0.012956556864082813, 0.012239455245435238, -0.028851138427853584, -0.006864677183330059, 0.00044209635234437883, 0.027458708733320236, 0.001556039904244244, -0.02538399025797844, -0.001770996255800128, -0.018658556044101715, -0.021359868347644806, -0.020357320085167885, 0.026330841705203056, 0.03650950267910957, 0.016667380928993225, -0.011473619379103184, 0.01553951296955347, 0.025314368307590485, -0.01022043265402317, 0.029603051021695137, -0.020023135468363762, 0.0029066966380923986, -0.00552794523537159, 0.005684593226760626, -0.04528180882334709, -0.013012253679335117, -0.009538142010569572, -0.00843812245875597, 0.013673657551407814, -0.0036307598929852247, 0.015525588765740395, 0.009092564694583416, -0.02465992607176304, 0.0032582851126790047, -0.01785094663500786, 0.016416743397712708, -0.02369914948940277, -0.003853548550978303, -0.024353591725230217, 0.016263576224446297, 0.006906450260430574, -0.0326663963496685, 0.03620316833257675, -0.006641888525336981, 0.002118233358487487, -0.024868790060281754, -0.025927037000656128, 0.0007475605816580355, 0.01084702555090189, -0.02271052449941635, 0.026038430631160736, 0.003132966347038746, -0.02467385120689869, -0.006088397931307554, 0.009287504479289055, 0.0009912357199937105, 0.021387716755270958, -0.018923116847872734, 0.005385220982134342, 0.0085007818415761, -0.0007184065761975944, 0.01099323108792305, -0.001039100461639464, 0.043026071041822433, -0.015024314634501934, 0.011041966266930103, 0.010206508450210094, 0.007226709276437759, -0.00032178175752051175, -0.01645851694047451, 0.013868597336113453, 0.011160322465002537, 0.03364109620451927, -0.0005434826598502696, -0.0016369748627766967, 0.0023497247602790594, -0.00595959834754467, 0.0019198121735826135, 0.007104871328920126, 0.008981170132756233, -0.002814448205754161, 0.01644459180533886, -0.02681819163262844, -0.03230436518788338, 0.0069865151308476925, 0.01460658572614193, 0.007386838551610708, -0.010951457545161247, 0.015191406011581421, 0.003087712451815605, 0.002236589789390564, -0.007512157317250967, -0.012566676363348961, 0.05046164616942406, 0.008020393550395966, -0.034281615167856216, -0.009002056904137135, -0.007115314714610577, -0.027013132348656654, -0.10381954163312912, -0.0033470524940639734, 0.009990681894123554, 0.032109424471855164, 0.008479896001517773, 0.029547354206442833, 0.002990242326632142, 0.022014310583472252, -0.010171697475016117, 0.0326106995344162, -0.0012279488146305084, -0.02580171823501587, -0.02821062132716179, -0.0003964072675444186, 0.017335746437311172, 8.457921649096534e-05, -0.011633748188614845, -0.02158265747129917, -0.01000460609793663, 0.0354791022837162, -0.0020207632333040237, -0.007727983873337507, 0.015915468335151672, -0.013269852846860886, -0.004929200280457735, -0.016082560643553734, -0.01644459180533886, -0.0019511418649926782, 0.012810351327061653, 0.02638653852045536, 0.0031521122436970472, -0.004010196775197983, 0.016347121447324753, -0.006231122184544802, -0.013610998168587685, 0.010770441964268684, -0.03715001791715622, 0.016124334186315536, -0.0030059071723371744, -0.008417236618697643, 0.01941046677529812, 0.006509607657790184, 0.0023636489640921354, -0.015650907531380653, -0.02381054498255253, -0.0009094304987229407, -0.003470630617812276, 0.014620509929955006, 0.006843790877610445, -0.02070542611181736, -0.050127461552619934, -0.02896253392100334, -0.007825453765690327, -0.006356440484523773, 0.015664832666516304, 0.008403312414884567, 0.012608448974788189, 0.019062358886003494, -0.033696793019771576, 0.01198881771415472, 0.003416673978790641, -0.011417921632528305, -0.02213962934911251, 0.025272594764828682, 0.005287751089781523, -0.0018902230076491833, -0.02807137928903103, -0.016277501359581947, -0.00485261669382453, 0.0007440795307047665, -0.013074913062155247, -0.010310940444469452, -0.008424198254942894, 0.028447333723306656, -0.044613439589738846, 0.021763673052191734, -0.0099419467151165, -0.03712217137217522, 0.005876052659004927, -0.006989995948970318, -0.004086780361831188, -0.012580600567162037, 0.001086094998754561, -0.019507937133312225, 0.008988132700324059, 0.013436944223940372, 0.013269852846860886, -0.01942439191043377, 0.030577750876545906, 0.00046994496369734406, 0.007832416333258152, 0.01355530135333538, 0.00039705997915007174, 0.0003463668399490416, 0.019883893430233, 0.025759944692254066, -0.007546967826783657, -0.03417022153735161, -0.009043829515576363, 0.019535785540938377, -0.000609187874943018, 0.006422581151127815, -0.06839613616466522, 0.030299264937639236, 0.010666009970009327, 0.02323964796960354, 0.023754846304655075, -0.03703862428665161, 0.004532358143478632, -0.014787601307034492, 0.016709154471755028, 0.02055225893855095, -0.016778774559497833, 0.0003607262624427676, 0.0007318957359530032, 0.0047168550081551075, -0.02822454646229744, -0.00923180766403675, 0.036955077201128006, 0.011605899780988693, 0.019396543502807617, 0.022515585646033287, -0.001857152790762484, 0.015636982396245003, -0.01319326926022768, 0.01247616857290268, -0.0007984712719917297, 0.01675092615187168, -0.029714444652199745, 0.01185653731226921, -0.018909191712737083, -0.021888991817831993, 0.016054712235927582, -0.008855851367115974, -0.030522054061293602, 0.021248474717140198, -0.023225724697113037, -0.046312205493450165, 0.0022348493803292513, -0.003381863236427307, 0.024771321564912796, -0.017795249819755554, -0.008194447495043278, -0.030299264937639236, 0.024437136948108673, -0.012141984887421131, -0.015609134919941425, -0.015400270000100136, -0.0015055644325911999, 0.0046576764434576035, 0.009287504479289055, 0.01985604502260685, 0.028391636908054352, -0.004306088201701641, -0.02496626041829586, -0.02595488540828228, -0.012719843536615372, -0.00978877954185009, 0.0038779161404818296, 0.0060640303418040276, 0.021178852766752243, -0.00880015455186367, 0.024576380848884583, 0.02071935124695301, 0.02211178094148636, -0.009893211536109447, 0.01019954588264227, -0.008605213835835457, -0.03219297155737877, 0.004476660862565041, -9.529439557809383e-05, -0.02101176045835018, 0.007010882720351219, -0.017628157511353493, -0.002682167338207364, 0.034281615167856216, -0.001158327329903841, -0.02581564337015152, 0.006540937349200249, -0.001520358957350254, -0.006537456531077623, 0.00765836238861084, 0.003552435664460063, -0.017669931054115295, -5.683940617018379e-05, 0.025578929111361504, -0.006694104988127947, 0.019118057563900948, -0.01205147709697485, 0.012100212275981903, -0.013583149760961533, 0.007358989678323269, -0.021359868347644806, 0.014342023991048336, -0.004619384650141001, 0.0005730717675760388, 0.018519312143325806, 0.025481460615992546, 0.017683854326605797, 0.02326749637722969, -0.016068635508418083, 0.01659775897860527, 0.016931941732764244, 0.005597566720098257, -0.0023897571954876184, -0.008855851367115974, -0.008563441224396229, 0.024868790060281754, 0.001469883369281888, -0.025202974677085876, -0.009308391250669956, 0.003853548550978303, -0.016931941732764244, 0.0021600062027573586, -0.007303292863070965, 0.014383796602487564, -0.017767399549484253, 0.008326727896928787, 0.013854673132300377, -0.0062833381816744804, -0.030856236815452576, 0.032833486795425415, 0.016277501359581947, 0.0170015636831522, 0.012155909091234207, -0.006171943619847298, 0.016945866867899895, -0.00809001550078392, -0.013562262989580631, -0.023030783981084824, 0.015609134919941425, -0.013952143490314484, -0.0013097539776936173, 0.020802896469831467, 0.011292602866888046, -0.009280542843043804, -0.011090700514614582, 0.0047168550081551075, -0.0099210599437356, 0.020204151049256325, 0.005559274926781654, 0.0836014673113823, 0.003985829651355743, -0.0205801073461771, 0.01161982398480177, -0.02825239486992359, 0.022014310583472252, -0.012030591256916523, 0.007721021305769682, -0.008730532601475716, -0.01945224031805992, 0.00935712642967701, 0.009928022511303425, -0.008013431914150715, -0.002487227087840438, -0.012023628689348698, -0.007707097101956606, -0.016416743397712708, 0.014383796602487564, -0.029853688552975655, -0.0009616466122679412, 0.02524474635720253, -0.01510785985738039, 0.014578736387193203, -0.007672286592423916, -0.014592661522328854, -0.009997643530368805, 0.020357320085167885, 0.018658556044101715, -0.022863691672682762, -0.026163749396800995, 0.003717786632478237, 0.006676699500530958, -0.0191459059715271, -0.0043826717883348465, -0.00022735762468073517, 0.012155909091234207, -0.00634599756449461, -0.014690130949020386, 0.006234603002667427, -0.00013108417624607682, -0.012343887239694595, 0.03804117441177368, -0.0032687282655388117, -0.024604229256510735, 0.03603607416152954, -0.008828002959489822, -0.012371735647320747, -0.012114136479794979, -0.007428611163049936]" +21,"And as threats become more sophisticated, we are innovating to protect customers. New capabilities in Defender help secure the entire DevOps life cycle and manage security posture across clouds. And Entra now provides comprehensive identity governance for both on-premise and cloud-based user directories. Now on to LinkedIn.","[-0.009703855030238628, -0.017891043797135353, 0.007042667828500271, -0.04089381545782089, -0.006249226629734039, 0.0454157255589962, -0.03684937208890915, -0.006547644734382629, -0.00010686001769499853, -0.015419439412653446, 0.018354469910264015, 0.0028964111115783453, 0.019674530252814293, 0.00010428177483845502, 0.005964851472526789, 0.004514890722930431, 0.007674612104892731, -0.022146135568618774, -0.0033493046648800373, -0.026850609108805656, -0.015236877836287022, -0.012105243280529976, 0.0004182242264505476, -0.0005722606438212097, -0.021977616474032402, -0.008819133043289185, 0.010019827634096146, -0.009963653981685638, 0.014773452654480934, -0.0017439905786886811, 0.013116354122757912, 0.0011120463022962213, 0.002064351225271821, -0.018480857834219933, -0.0038548598531633615, -0.0080046271905303, 0.0019291853532195091, -0.00768865505233407, 0.018115734681487083, 0.010349842719733715, 0.014843668788671494, 0.009696833789348602, -0.0023469708394259214, -0.007906325161457062, -0.019829006865620613, 0.014998143538832664, -0.004121680743992329, -0.015489655546844006, -0.018551073968410492, 0.014260875061154366, -0.003509046044200659, 0.01328487228602171, -0.044573135673999786, -0.007365661207586527, -0.008067822083830833, 0.002515489235520363, -0.0021872292272746563, -0.013467433862388134, 0.003717938670888543, -0.021191196516156197, -0.018719593062996864, -0.012673992663621902, -0.014913883991539478, -0.012631863355636597, -0.022160178050398827, 0.006568709388375282, -0.008461031131446362, 0.020081784576177597, 0.0007574554183520377, 0.009647682309150696, 0.039938878268003464, 0.016514809802174568, 0.01966048777103424, 0.011445212177932262, 0.004100616089999676, -0.04204535856842995, -0.009366817772388458, -0.0006631026044487953, -0.005101194605231285, 0.0019221637630835176, -0.002968382555991411, -0.01765231043100357, -0.006035067606717348, 0.010609641671180725, 0.029518818482756615, -0.0007565777050331235, -0.0020397757180035114, 0.005104705225676298, 0.01614968664944172, -0.0007232250645756721, 0.007239272352308035, 0.00677584670484066, 0.00933873187750578, 0.028381317853927612, -0.026092275977134705, 0.02003965526819229, 0.004872992169111967, 0.017525920644402504, 0.010546447709202766, -0.013004008680582047, 0.004402544815093279, -0.007260337471961975, -0.015012186951935291, -0.011557558551430702, -0.02165462262928486, -0.022665733471512794, 0.014773452654480934, 0.0025347985792905092, 0.03263641148805618, -0.009767049923539162, -0.018551073968410492, 0.0032422251533716917, -0.0034037220757454634, -0.02478625811636448, 0.012084178626537323, -0.017596136778593063, 0.014190658926963806, -0.014211724512279034, 0.0032632898073643446, 0.004700962919741869, 0.017596136778593063, 0.011052003130316734, 0.02895708940923214, -0.018143821507692337, 0.006540623027831316, 0.015363266691565514, 0.014576847665011883, -0.028311101719737053, 0.015742434188723564, -0.0010137439239770174, 0.01112924050539732, -0.018635334447026253, 0.020348604768514633, -0.023101072758436203, -0.019014500081539154, 0.0036968737840652466, -0.0016676306258887053, 0.002719115698710084, 0.0033177074510604143, -0.021556321531534195, 0.023634715005755424, 0.02123332768678665, -0.006435298826545477, 0.0016562205273658037, -0.002420697594061494, 0.01454876083880663, 0.01075709518045187, 0.00993556808680296, 0.022286567836999893, 0.016332248225808144, -0.005870060063898563, -0.0167535450309515, 0.0018027964979410172, -0.032495979219675064, -0.015616044402122498, 0.0005226705688983202, -0.015503698959946632, 0.016950149089097977, -0.0039040111005306244, -0.0011138017289340496, -0.014661106280982494, 0.011964811012148857, -0.01176118478178978, -0.0023469708394259214, 0.02873239852488041, 0.024238573387265205, -0.0020345093216747046, -0.0015333425253629684, 0.015672218054533005, -0.0022328696213662624, 0.015812650322914124, 0.011782249435782433, -0.025699065998196602, 0.0098653519526124, -0.011599687859416008, 0.019449839368462563, 0.01131882332265377, 0.0021749415900558233, -0.02575523965060711, -0.03305770456790924, 0.02010987140238285, -0.003970716614276171, 0.02857792377471924, 0.015686260536313057, -0.014618976972997189, 0.006916278973221779, 0.0023118627723306417, 0.03982653096318245, 0.0005152100929990411, -0.00890339259058237, -0.005778779275715351, 0.028184713795781136, -0.010714965872466564, -0.006600306835025549, -0.6444146037101746, -0.01508240308612585, 0.015391353517770767, -0.03522035852074623, 0.0001384572242386639, -0.007288423832505941, -0.0011357442708685994, -0.001269154716283083, -0.015531785786151886, 0.02107885107398033, -0.014373221434652805, 0.011754163540899754, -0.002629590220749378, 0.0033545708283782005, -0.014927927404642105, -0.03111974336206913, 0.004146256484091282, -0.009738963097333908, 0.026008017361164093, -0.012365042231976986, -0.017975302413105965, 0.011213500052690506, -0.00018365880532655865, -0.028844743967056274, 0.0056172823533415794, 0.004799265414476395, 0.01770848222076893, -0.013046137988567352, -0.015981167554855347, 0.019688574597239494, -0.01145925559103489, -0.0025558634661138058, 0.017216969281435013, 0.0006407212349586189, 0.04145554453134537, -0.009114040061831474, -0.020797988399863243, 0.02971542254090309, -0.00890339259058237, 0.04249474033713341, -0.021766968071460724, -0.007147991564124823, 0.02576928213238716, 0.011669903993606567, 0.006336996331810951, 0.02568502351641655, 0.04474165290594101, -0.03544504940509796, 0.0025962376967072487, -0.0052416264079511166, 0.013776385225355625, -0.014843668788671494, 0.003932097461074591, -0.0014604934258386493, 0.014436415396630764, -0.004549998790025711, 0.013649996370077133, -0.03409690409898758, 0.01614968664944172, -0.014633020386099815, -0.016711413860321045, 0.02322746254503727, -0.036512333899736404, -0.03527653217315674, -0.036905545741319656, -0.0027893318329006433, 0.00308950524777174, 0.0006350161856971681, 0.0005503181018866599, -0.013762341812252998, 0.027735332027077675, 0.001441183965653181, -0.001138377352617681, -0.012666971422731876, 0.024631783366203308, 0.03859072923660278, 0.03038949705660343, 0.017905088141560555, -0.0005709441029466689, 0.02613440528512001, 0.009036802686750889, -0.023648757487535477, 0.0007464841473847628, -0.015194748528301716, 0.027637029066681862, 0.014281939715147018, -0.01659906841814518, -0.0033949450589716434, -0.009029781445860863, 0.01763826608657837, 0.032046593725681305, 0.022988727316260338, -0.013312959112226963, -0.033619433641433716, 0.025713110342621803, 0.011838422156870365, -0.0005551454960368574, 0.00015271986194420606, -0.0037635790649801493, 0.006431788206100464, -0.0027436912059783936, -0.010047913528978825, 0.026625918224453926, 0.00498533807694912, 0.031821902841329575, 0.04342159256339073, -0.021050766110420227, 0.012666971422731876, 0.02369088865816593, -0.020236259326338768, -0.01428896188735962, 0.0026085255667567253, -0.02800215221941471, -0.0020222216844558716, -0.005027467850595713, -0.028297059237957, 0.004887035582214594, 0.00647742860019207, -0.02331172116100788, -0.01980092003941536, 0.02435091882944107, -0.011515428312122822, 0.003152699675410986, -0.006256248336285353, -0.00681095477193594, 0.032495979219675064, 0.017216969281435013, 0.0038232626393437386, -0.012084178626537323, 0.019042586907744408, 0.010651771910488605, -0.02561480738222599, 0.01362190954387188, -0.00037719172541983426, 0.015068359673023224, 0.022525301203131676, 0.03260832279920578, -0.02322746254503727, -0.00122878048568964, -0.013804471120238304, -0.013453391380608082, -0.023775147274136543, -0.01268803607672453, 0.021345673128962517, -0.02940647304058075, -0.02895708940923214, -0.011866508983075619, 0.010406015440821648, -0.0241964440792799, -0.0013674572110176086, -0.01411342155188322, 0.020067740231752396, -0.01362190954387188, 0.01696419157087803, 0.02694891206920147, -0.003956673201173544, -0.005480361171066761, -0.04580893740057945, -0.01936558075249195, -0.019000457599759102, -0.003333505941554904, 0.024379005655646324, -0.00959853082895279, -0.007885259576141834, 0.0042024292051792145, -0.012561647221446037, 0.005094172898679972, 0.03418116271495819, -0.0022872870322316885, -0.011543515138328075, -0.015573915094137192, -0.01772252470254898, 0.0002490474726073444, -0.0007311243680305779, 0.01957622915506363, 0.009191278368234634, -0.022005703300237656, 0.006284334696829319, -0.011634795926511288, 0.013186570256948471, 0.02092437632381916, -0.009521293453872204, -0.005125769879668951, -0.019267277792096138, 0.010553468950092793, 0.007885259576141834, -0.007323531899601221, 0.02613440528512001, -0.009324688464403152, 0.00712692691013217, -0.019969439134001732, 0.007379704620689154, 0.007611417677253485, 0.019702617079019547, 0.0014947237214073539, -0.009226386435329914, -0.0022697332315146923, -0.0016606090357527137, -0.00310705928131938, 0.007365661207586527, 0.0021521211601793766, -0.007604395970702171, 0.007365661207586527, -0.01331998035311699, 0.01504027284681797, -0.009282559156417847, -0.01862129010260105, -0.02300277166068554, 0.03449011221528053, 0.023718973621726036, 0.005034489091485739, -0.020137956365942955, -0.014829625375568867, -0.01638842187821865, 0.0026717199943959713, 0.03404073044657707, -0.02428070269525051, 0.011473299004137516, -0.022834252566099167, -0.020208172500133514, 0.02032051794230938, -0.01592499576508999, 0.02843749150633812, -0.005062575452029705, -5.9409343521110713e-05, 0.02241295576095581, 0.006839041132479906, 0.024027924984693527, 0.007976540364325047, -0.030136719346046448, 0.010300691239535809, 0.009984719567000866, 0.009703855030238628, 0.0006367716123349965, 0.002710338681936264, -0.015489655546844006, 0.008383793756365776, -0.022384868934750557, 0.018593205139040947, -0.024393048137426376, 0.010644749738276005, 0.00040571700083091855, 0.03154103830456734, 0.0019186530262231827, 0.041595976799726486, 0.032130856066942215, 0.024842431768774986, -9.062256140168756e-05, -0.015545828267931938, 0.0009250961593352258, -0.01912684552371502, -0.009170213714241982, 0.022146135568618774, -0.02301681414246559, 0.023424066603183746, -0.01890215463936329, 0.0017290697433054447, 0.009191278368234634, 0.047100912779569626, 0.009696833789348602, 0.011311802081763744, 0.0067231846041977406, 0.013642974197864532, -0.0030456201639026403, 0.041652146726846695, -0.011290737427771091, -0.0030052459333091974, -0.016037341207265854, 0.009310645051300526, -0.03269258141517639, 0.004715006332844496, 0.004044443368911743, 0.025741195306181908, 0.00278231012634933, -0.016472680494189262, 0.014162573032081127, -0.021500147879123688, 0.01020238921046257, 0.0037741116248071194, -0.00014723424101248384, -0.009760027751326561, -0.032720670104026794, 0.024996906518936157, 0.017483791336417198, -0.0018150843679904938, -0.009422991424798965, -0.01592499576508999, 0.002710338681936264, -0.0005863038240931928, 0.025432245805859566, 0.009359796531498432, 0.02262360416352749, 0.001635155756957829, -0.0006920667365193367, 0.011192434467375278, -0.0010462187929078937, 0.034883324056863785, -0.0364842489361763, 0.005989427212625742, 0.0033861680421978235, 0.017301229760050774, 0.0003791665658354759, -0.009710876271128654, 0.008889349177479744, 0.04637066647410393, 0.0043920124880969524, -0.01348147727549076, -0.02336789481341839, -0.004427120555192232, -0.030726533383131027, 0.008987651206552982, -0.0022978195920586586, -0.00014284573262557387, 0.0026594321243464947, -0.011037959717214108, 0.014956014230847359, -0.016585025936365128, -0.014647063799202442, 0.021050766110420227, 0.012386107817292213, 0.008173145353794098, -0.03654042258858681, -0.010883484035730362, 0.013972989283502102, 0.07572096586227417, 0.011810336261987686, -0.022061876952648163, 0.018256166949868202, -0.014787495136260986, 0.0010172546608373523, -0.013818514533340931, -0.019927307963371277, 0.016023296862840652, -0.01614968664944172, 0.005396101623773575, -0.01012515090405941, 0.009099997580051422, -0.00015754721243865788, 0.017020365223288536, 0.017764655873179436, 0.0005134547245688736, -0.012161416001617908, -0.013046137988567352, -0.005543555598706007, 0.0062983776442706585, -0.014927927404642105, 0.010686879977583885, 0.01846681535243988, 0.03491140902042389, -0.005206518340855837, 0.020727772265672684, 0.03471480309963226, -0.009788114577531815, -0.00826442614197731, -0.028311101719737053, 0.009331710636615753, 0.0011813846649602056, 0.004837884567677975, -0.028690269216895103, 0.008769981563091278, -0.026780392974615097, 0.005076618865132332, 0.006716162897646427, 0.01395894680172205, 0.018705550581216812, 0.006186032202094793, 0.006561687681823969, -0.018649376928806305, 0.00016753104864619672, 0.014008097350597382, 0.003338772105053067, 0.028872830793261528, -0.0018853003857657313, -0.0379728265106678, -0.01198587566614151, -0.0005314475856721401, -0.034124989062547684, -0.0005639224546030164, 0.0007881749188527465, 0.021008634939789772, 0.0044341422617435455, -0.020306475460529327, -0.018663421273231506, -0.04204535856842995, -0.042185790836811066, -0.02760894224047661, -0.008201232179999352, -0.015026230365037918, 0.021401844918727875, -0.01779274083673954, 0.0016070693964138627, 0.016135644167661667, -0.008138037286698818, 0.006115816067904234, -0.0007320020813494921, -0.02480030059814453, -0.026682090014219284, 0.024758171290159225, 0.02999628707766533, 0.008355706930160522, 0.01810169219970703, -0.015672218054533005, -0.011066045612096786, 0.012175459414720535, 0.005332907196134329, -0.020966505631804466, 0.002239891327917576, -0.015349224209785461, -0.0045640417374670506, 0.007211185991764069, -0.02435091882944107, 0.018930241465568542, -0.009486185386776924, 0.015475613065063953, -0.01727314293384552, -0.014281939715147018, -0.007983562536537647, 0.01262484211474657, 0.007197143044322729, 0.004557020030915737, 0.0023013304453343153, 0.01362190954387188, 0.012400150299072266, 0.014211724512279034, -0.009212343022227287, -0.011775228194892406, -0.011157327331602573, -0.009549380280077457, 0.033170051872730255, 0.012084178626537323, 0.010469209402799606, -0.010314734652638435, 0.012779316864907742, 0.004848416894674301, 0.008292512968182564, 0.009015738032758236, -0.005701541434973478, -0.0167395006865263, -0.017006322741508484, -0.020236259326338768, 0.02025030180811882, -0.00933873187750578, 0.010890506207942963, -0.0011006362037733197, 0.0038899679202586412, 0.004399034194648266, 0.015194748528301716, -0.008432945236563683, 0.010609641671180725, 0.008313577622175217, 0.030501842498779297, -0.028606010600924492, -0.032411716878414154, 0.005459296051412821, -0.02383132092654705, -0.007695676758885384, 0.0005485627334564924, -0.0031491888221353292, -0.018888112157583237, -0.01146627776324749, 0.008418901823461056, 0.014239810407161713, -0.027819590643048286, -0.03336665779352188, -0.024322832003235817, -0.0019116313196718693, -0.02091033384203911, -0.03440585359930992, 0.004781711380928755, -0.025432245805859566, -0.02963116392493248, 0.005603238940238953, -5.252487972029485e-05, 0.04409566521644592, -0.030192892998456955, -0.010258561931550503, -0.02554459124803543, 0.02054521068930626, -0.01689397729933262, -0.03319813683629036, -0.0043920124880969524, -0.004223494324833155, 0.025291813537478447, 0.017301229760050774, -0.005052043125033379, -0.036062952131032944, 0.026527615264058113, 0.004578085150569677, 0.025797368958592415, -0.005515469238162041, -0.01079220324754715, -0.0012077157152816653, -0.0010804490884765983, 0.00014152917719911784, 0.0004278789274394512, 0.004988848697394133, -0.01216843817383051, 0.0021573875565081835, 0.023845363408327103, 0.008826155215501785, -0.011831400915980339, -0.010370907373726368, -0.027524683624505997, -0.0580826997756958, -0.008917436003684998, 0.00017554007354192436, -0.011803314089775085, 0.008517203852534294, -0.0297715961933136, 0.024673912674188614, 0.02546033263206482, 0.01780678518116474, 0.025362029671669006, 0.0053013102151453495, 0.010785182006657124, 0.004237537272274494, 0.006473917979747057, 0.017216969281435013, 0.008067822083830833, -0.02152823470532894, -0.023634715005755424, -0.02926604077219963, -0.007179589010775089, 0.046904306858778, 0.015967125073075294, 0.015658173710107803, -0.010848375968635082, -0.00916319154202938, -0.014773452654480934, 0.024659868329763412, -0.015180705115199089, -0.02076990157365799, -0.0021310565061867237, -0.0227078627794981, 0.015293050557374954, -0.02376110479235649, -0.03550122305750847, -0.020348604768514633, -0.003893478773534298, -0.025053078308701515, 0.0052381157875061035, 0.007899302989244461, -0.030838878825306892, -0.03286110237240791, 0.013649996370077133, 0.015349224209785461, 0.020587339997291565, -0.01481558196246624, 0.03684937208890915, 0.015279008075594902, 0.015194748528301716, -0.0037565575912594795, -0.0008601463632658124, 0.002511978382244706, -0.015180705115199089, 0.02821280062198639, 0.022427000105381012, 0.002733158878982067, 0.014913883991539478, -0.009696833789348602, 0.002999979769811034, -0.00463425787165761, -0.014029162935912609, 0.02121928334236145, 0.00740779098123312, 0.006249226629734039, -0.01846681535243988, -0.0364561602473259, -0.028325146064162254, 0.0018080627778545022, -0.0030245555099099874, 0.019239190965890884, -0.007309488486498594, -0.006856595166027546, 0.009654703550040722, 0.00870678760111332, -0.03151295334100723, 0.024968819692730904, -0.00833464227616787, 0.0026840076316148043, 0.004293709993362427, 0.001734335906803608, -0.00012430430797394365, -0.0342373363673687, -0.00926851574331522, 0.013804471120238304, 0.007864194922149181, -0.011157327331602573, 0.01697823591530323, 0.034658633172512054, -0.0024540501181036234, 0.009802157990634441, -0.003784643951803446, 0.03387221321463585, 0.004851927515119314, -0.0022662223782390356, 0.003781133098527789, -0.02575523965060711, 0.01793317310512066, -0.0027577346190810204, 0.013565736822783947, 0.010097065009176731, -0.013825535774230957, -0.005540044512599707, 0.0160092543810606, -0.00584548432379961, -0.027651071548461914, -0.018649376928806305, 0.004901078995317221, -0.02985585480928421, 0.003784643951803446, -0.0017352135619148612, 0.007246294058859348, -0.011452234350144863, -0.019520055502653122, 0.008208253420889378, -0.02026434615254402, 0.028268972411751747, 0.012498453259468079, 0.0006415989482775331, -0.016922062262892723, 0.028620053082704544, -0.018593205139040947, 0.021261412650346756, 0.018480857834219933, 0.012280783616006374, -0.03887159377336502, 0.017062494531273842, -0.004830862861126661, -0.036287643015384674, 0.018129779025912285, -0.013439347967505455, -0.010511339642107487, -0.008517203852534294, -0.015335180796682835, 0.0029122098349034786, 0.008580398745834827, -0.004121680743992329, 0.012519517913460732, -0.0001459176855860278, 0.016725458204746246, -0.01586882211267948, -0.027117429301142693, 0.0227219071239233, 0.0007565777050331235, -0.007147991564124823, 0.018579160794615746, -0.004539466463029385, 0.01082731131464243, -0.0021889847703278065, -0.00896658655256033, -0.004114659037441015, -0.01867746375501156, -0.03238363191485405, -0.016809716820716858, 0.020306475460529327, 0.011662882752716541, -0.02359258569777012, -0.002461071824654937, -0.0028876340948045254, -0.0037003846373409033, -0.010377928614616394, 0.029294127598404884, 0.002489158185198903, 0.013628930784761906, 0.000989168300293386, 0.02092437632381916, 0.012400150299072266, -0.00401986762881279, -0.044348444789648056, -0.012154394760727882, -0.0260501466691494, -0.017525920644402504, 0.015166661702096462, -0.004251580685377121, 0.018256166949868202, 0.0253199003636837, -0.03991078957915306, -0.007913346402347088, 0.0025593743193894625, -0.022441042587161064, -0.003861881559714675, -0.03788856789469719, 0.030698448419570923, 0.0327768437564373, 0.029827767983078957, -0.0030596633441746235, 0.02367684431374073, 0.0014561049174517393, 0.038759246468544006, -0.0017264365451410413, -0.001716781873255968, 0.0058525060303509235, -0.029603077098727226, 0.024252615869045258, -0.012350999750196934, -0.04519103467464447, -0.010511339642107487, -0.0001497576158726588, -0.027356164529919624, 0.00893850065767765, 0.014015119522809982, -0.018874067813158035, -0.008475074544548988, 0.0023136180825531483, -0.0002791087026707828, 0.002940296195447445, 0.015405396930873394, 0.010293669998645782, -0.014225766994059086, 0.0016878177411854267, 0.0074428990483284, -0.0060455999337136745, 0.0016149686416611075, 0.016514809802174568, 0.010539425536990166, -0.002371546346694231, 0.013390196487307549, -0.009254472330212593, 0.009373839944601059, -0.020418820902705193, -0.010841354727745056, 0.005905168130993843, -0.002569906646385789, 0.024828387424349785, 0.026190578937530518, 0.007123416289687157, 0.003224671119824052, 0.00185194774530828, 0.016725458204746246, -0.0026998063549399376, -0.02166866697371006, 0.001363946357741952, -0.019548142328858376, 0.034967582672834396, -0.0012621331261470914, 0.005613771267235279, -0.0020889267325401306, -0.01511048898100853, -0.017090581357479095, 0.013200613670051098, -0.013165505602955818, 0.00897360872477293, -0.0018045519245788455, -0.004700962919741869, -0.01169096864759922, -0.023957708850502968, 0.006523068994283676, 0.009451077319681644, -0.00019254551443737, -0.022272523492574692, 0.004711495712399483, -0.029125608503818512, 0.02508116513490677, 0.007997605949640274, -0.01995539478957653, 0.002059085061773658, -0.0008715564617887139, 0.006259758956730366, -0.00644232053309679, 0.20559252798557281, -0.005417166743427515, 0.008917436003684998, 0.027875762432813644, 0.0029244974721223116, 0.0067231846041977406, 0.011002851650118828, 0.011192434467375278, -0.007850151509046555, 0.010398994199931622, 0.007449920754879713, 0.007674612104892731, -0.0154475262388587, -0.010363886132836342, 0.017820827662944794, -0.010525383055210114, -0.03449011221528053, 0.01447854470461607, -0.005526001565158367, 0.01023749727755785, 0.014633020386099815, -0.02182314172387123, 0.0010953700402751565, -0.02239891327917576, 0.024968819692730904, 0.0215984508395195, -0.0003585405938792974, 0.024308789521455765, 0.04524720832705498, 0.020292432978749275, -0.026555702090263367, 0.01763826608657837, 0.0031000375747680664, -0.006730206310749054, 0.013951924629509449, -0.00952831469476223, 0.007864194922149181, -0.026920825242996216, -0.0036687874235212803, 0.007983562536537647, 0.01987113617360592, -0.013720211572945118, 0.0027138495352119207, -0.00737268291413784, -0.0047501143999397755, 0.0011225787457078695, -0.01950601302087307, -0.012470366433262825, -0.006336996331810951, 0.02002561092376709, -0.02890091761946678, 0.018003389239311218, 0.02442113496363163, 0.015742434188723564, 0.0013937881449237466, 0.03224319964647293, -0.0070391567423939705, -0.002429474610835314, -0.0032422251533716917, 0.001327960635535419, -0.0018361491383984685, 0.009647682309150696, -0.013439347967505455, 0.0009417724795639515, -0.029209867119789124, 0.005571641959249973, 0.0029122098349034786, 0.0050064027309417725, 0.003847838379442692, -0.013523607514798641, -0.0035792619455605745, 0.000799585017375648, -0.009015738032758236, 0.018747679889202118, -0.029013263061642647, -0.01957622915506363, 0.017076538875699043, 0.01508240308612585, 0.017610179260373116, 0.03097931109368801, 0.011276694014668465, -0.009050846099853516, -0.007253315765410662, -0.021542277187108994, 0.010953700169920921, -0.023115117102861404, 0.02651357278227806, -0.015826692804694176, -0.031147830188274384, -0.011929702945053577, 0.00398475956171751, 0.009591509588062763, -0.011705012060701847, -0.01995539478957653, -0.0033352612517774105, 0.0009338731761090457, 0.01683780364692211, 0.022876381874084473, 0.012421215884387493, -0.017680395394563675, -0.033085793256759644, 0.06375615298748016, 0.04752220958471298, 0.01741357520222664, -0.02091033384203911, 0.01914088986814022, -0.0017009832663461566, 0.02084011770784855, 0.0013341045705601573, -0.01817190833389759, -0.002819173503667116, -0.021724838763475418, 0.0003868464264087379, -0.0008983263396658003, -0.0036126147024333477, 0.03898393735289574, 0.0017861202359199524, 0.013439347967505455, 0.024772215634584427, -0.02040477842092514, 0.02026434615254402, -0.009879395365715027, 0.0005665555945597589, 0.021977616474032402, -0.013944903388619423, -0.015068359673023224, -0.0019888689275830984, 0.0039496514946222305, -0.01964644528925419, -0.006438809912651777, 0.011838422156870365, -0.018607247620821, 0.014366199262440205, -0.03679319843649864, -0.020222216844558716, 0.002394366543740034, 0.03505184128880501, -0.0036161255557090044, 0.00979513581842184, -0.00010208752064500004, -0.011620752513408661, 0.0002391733432887122, -0.003012267639860511, -0.002655921271070838, 0.008882327936589718, -0.026766350492835045, 0.025923756882548332, -0.004111148416996002, 0.0021889847703278065, -0.02055925317108631, -0.032187025994062424, 0.0342654213309288, -0.02560076303780079, -0.007025113794952631, 0.018607247620821, -0.028086410835385323, -0.03392838314175606, -0.012077156454324722, -0.010693901218473911, -0.005729627795517445, -0.05479658767580986, 0.02760894224047661, 0.03505184128880501, -0.022427000105381012, -0.029659250751137733, -0.0034563839435577393, -0.1816629022359848, 0.0178770013153553, -0.0026190578937530518, -0.015798605978488922, 0.036147210747003555, 0.008208253420889378, -0.014759409241378307, -0.008271448314189911, -0.04378671571612358, 0.0016904509393498302, 0.04305646941065788, 0.023185333237051964, -0.03623146936297417, -0.010490274988114834, -0.0018677463522180915, 0.0075903525575995445, 0.011438190937042236, 0.012737187556922436, 0.021710796281695366, 0.003953162580728531, 0.046342577785253525, -0.009085954166948795, -0.008116972632706165, -0.01884598284959793, 0.0055540879257023335, -0.010813268832862377, -0.022595517337322235, 0.015686260536313057, -0.017778698354959488, -0.023353850468993187, 0.015279008075594902, -0.00919829960912466, 0.03861881420016289, 0.009057867340743542, -0.004163810517638922, 0.00015140330651775002, 0.01481558196246624, -0.025347985327243805, -0.03120400384068489, 0.0030912605579942465, 0.03103548474609852, 0.027496596798300743, 0.03482715040445328, 0.014436415396630764, 0.012470366433262825, 0.014134486205875874, -0.003767089918255806, -0.024224529042840004, 0.004946719389408827, -0.022286567836999893, 0.018565118312835693, -0.020868204534053802, -0.016037341207265854, -0.0009496717830188572, 0.013404239900410175, 0.01964644528925419, -0.0031825415790081024, 0.01142414752393961, -0.007829086855053902, -0.026920825242996216, 0.030417583882808685, -0.015559871681034565, 0.004655322525650263, -0.017919130623340607, -0.003568729618564248, -0.027201689779758453, 0.0036301687359809875, 0.010630706325173378, -0.022370826452970505, 0.02308703027665615, 0.010967743583023548, -0.0015333425253629684, -0.012673992663621902, -0.011901617050170898, 0.0006552033009938896, 0.00042568467324599624, -0.028325146064162254, 0.04055677726864815, 0.006537112407386303, -0.03022097796201706, 0.0020854161120951176, 0.015405396930873394, -0.009577466174960136, 0.019520055502653122, -0.027271905913949013, -0.00681095477193594, -0.002819173503667116, 0.027454467490315437, -0.0001368115481454879, 0.01770848222076893, 0.027384251356124878, -0.03527653217315674, -0.009745984338223934, -0.0056839874014258385, 0.012217588722705841, 0.012589734047651291, 0.0297715961933136, 0.012175459414720535, 0.018354469910264015, 0.00528375618159771, -0.0005349583807401359, -0.016276074573397636, -0.01447854470461607, 0.018635334447026253, -0.00010197780648013577, 0.021345673128962517, -0.0014490833273157477, -0.007197143044322729, 0.015250921249389648, -0.028086410835385323, -0.011634795926511288, 0.02016604319214821, 0.021500147879123688, 0.0020204661414027214, -0.018270211294293404, 0.04086572676897049, -0.008559334091842175, 0.0023276612628251314, -0.02249721623957157, -0.01388873066753149, 0.05620091035962105, -0.0008640959858894348, -0.019843049347400665, 0.006266780663281679, -0.006259758956730366, -0.017610179260373116, -0.1124018207192421, -0.017820827662944794, 0.017104623839259148, 0.0029912027530372143, -0.009753006510436535, 0.011887573637068272, -0.019084716215729713, 0.023129159584641457, -0.024589654058218002, 0.010328778065741062, -0.00435339380055666, -0.009240428917109966, -0.016430551186203957, -0.009430012665688992, -0.009359796531498432, -0.011213500052690506, -0.009296602569520473, -0.012049070559442043, -0.024996906518936157, 0.023943666368722916, -0.004630747251212597, -0.007344596553593874, 0.014295983128249645, 0.005143323913216591, -0.027131473645567894, 0.008587419986724854, -0.0241964440792799, 0.0013288382906466722, 0.0036758091300725937, 0.021331628784537315, 0.013685103505849838, 0.009408948011696339, 0.017301229760050774, -0.003970716614276171, -0.004493825603276491, 0.0016922062495723367, -0.04055677726864815, -0.00013867665256839246, 0.024744128808379173, -0.010265583172440529, 0.003798687132075429, -0.009816200472414494, -0.0013499031774699688, -0.0167535450309515, -0.008769981563091278, -0.007639504037797451, -0.012666971422731876, -0.015026230365037918, 0.016992278397083282, -0.018143821507692337, -0.02867622673511505, -0.02009582705795765, -0.007204164285212755, -0.01763826608657837, 0.018508944660425186, 0.0066564795561134815, 0.0036020821426063776, 0.022216351702809334, -0.019449839368462563, 0.020376691594719887, 0.009296602569520473, -0.016332248225808144, -0.02180909924209118, 0.0023697910364717245, 0.004718516953289509, 0.008608484640717506, -0.031372521072626114, -0.0037144278176128864, 0.015068359673023224, 0.01637437753379345, 0.006094751413911581, -0.012933792546391487, -0.01942175254225731, 0.005613771267235279, -0.021008634939789772, 0.00021404917060863227, 0.008531247265636921, -0.016247989609837532, 0.001346392324194312, -0.017989346757531166, 0.018663421273231506, -0.02663996070623398, 0.0021749415900558233, -0.006547644734382629, 0.033507090061903, 0.012273761443793774, 0.0022556898184120655, -0.009949611499905586, -6.829605990787968e-05, -0.01718888431787491, 0.0002233747363789007, -0.0012489676009863615, 0.010174302384257317, -0.008131016045808792, 0.009907481260597706, 0.04117467999458313, -0.01735740154981613, -0.03179381787776947, -0.010265583172440529, 0.03617529943585396, 0.01381149236112833, 0.01205609180033207, -0.0662277564406395, 0.007046178448945284, -0.005224072374403477, 0.009191278368234634, -0.011712033301591873, -0.01817190833389759, 0.0030473757069557905, -0.023662801831960678, 0.007478007115423679, 0.03999504819512367, -0.007674612104892731, -0.009942589327692986, 0.007421834394335747, 0.019337493926286697, -0.022441042587161064, -0.01912684552371502, 0.023185333237051964, -0.0003699506924021989, 0.02793193608522415, 0.005624304059892893, 0.00024224529624916613, -0.01481558196246624, -0.01268803607672453, 0.012035027146339417, -0.011620752513408661, 0.019983481615781784, -0.001960782567039132, 0.01987113617360592, -0.005066086538136005, -0.039040111005306244, 0.0020134446676820517, -0.039264801889657974, -0.022749993950128555, 0.013425304554402828, -0.025123294442892075, -0.020657556131482124, 0.00523109408095479, 0.010560491122305393, 0.012210567481815815, 0.02478625811636448, -0.010349842719733715, -0.041062332689762115, 0.030726533383131027, -0.02033456228673458, -0.002980670426040888, -0.022539345547556877, -0.023704931139945984, -0.016360335052013397, 0.016262032091617584, 0.0034669165033847094, 0.01957622915506363, 0.009107018820941448, -0.01593903824687004, -0.013649996370077133, 0.015896908938884735, -0.011922681704163551, 0.009345753118395805, -0.014534717425704002, 0.014190658926963806, -0.014731322415173054, 0.008980629965662956, -0.004030399955809116, -0.005912189371883869, 0.0040760403499007225, 0.007151502650231123, 0.007239272352308035, -0.028254929929971695, -0.004739582072943449, 0.00034888589289039373, -0.004342861473560333, 0.0028086411766707897, 0.007913346402347088, -0.00025168058346025646, -0.006663501262664795, 0.01824212446808815, 0.007562266197055578, 0.0021556320134550333, -0.0015350979520007968, -0.025965888053178787, 0.028704311698675156, -0.011171369813382626, -0.014029162935912609, -0.0014692704426124692, 0.034349679946899414, -0.002696295501664281, 0.02078394405543804, -0.0009874128736555576, -0.0057261171750724316, 0.008208253420889378, 0.01086944155395031, -0.01867746375501156, -0.0028525262605398893, -0.01621990278363228, -0.012589734047651291, -0.008278469555079937, 0.007744827773422003, 0.009226386435329914, 0.025333942845463753, -0.0002769144484773278, -0.008559334091842175, 0.03336665779352188, 0.00893147848546505, 0.004079551436007023, -0.019829006865620613, -0.03288918733596802, 0.005536533892154694, -0.0004195407673250884, -0.0122878048568964, -0.018214037641882896, 0.03960184007883072, -0.007456941995769739, -0.019997524097561836, -0.0019765812903642654, 0.013193591497838497, -0.026331011205911636, 0.009731941856443882, 0.0038232626393437386, -0.02194952964782715, -0.027159560471773148, 0.026611873880028725, 0.025502461940050125, 0.010686879977583885, 0.0007802756153978407, -0.016416506841778755, 0.012049070559442043, 0.01216843817383051, 0.0005428576841950417, -0.023873450234532356, -0.0040760403499007225, 0.020797988399863243, -0.0034669165033847094, 0.012224610894918442, -0.01846681535243988, -0.00551195815205574, -0.021401844918727875, 0.004834373481571674, -0.008720831014215946, 0.01704845204949379, -0.015012186951935291, 0.07785553485155106, 0.033984556794166565, -0.03229937329888344, 0.0005459295934997499, -0.008046756498515606, 0.018354469910264015, 0.005129280965775251, 0.008138037286698818, -0.0019432285334914923, -0.012484409846365452, 0.019548142328858376, 0.01198587566614151, -0.027637029066681862, 0.017596136778593063, -0.008734873495995998, 0.024449221789836884, -0.01571434736251831, 0.0001837685122154653, -0.025446288287639618, -0.00463425787165761, 0.02845153398811817, -0.0007956353947520256, 0.012301848269999027, -0.020053697749972343, -0.03527653217315674, -0.0064247664995491505, -0.002308351919054985, 0.016500767320394516, -0.009872373193502426, -0.01016025897115469, 0.011487342417240143, 0.006329975090920925, -0.019112803041934967, -0.009092975407838821, 0.01209822203963995, 0.021106937900185585, -0.011522450484335423, -0.007604395970702171, -0.009219364263117313, 0.002050308044999838, 0.004251580685377121, 0.022160178050398827, -0.025951843708753586, -0.04398332163691521, 0.010778160765767097, 0.003319462761282921, -0.010398994199931622, -0.001738724415190518, 0.012203545309603214]" +22,"We once again saw record engagement among our more than 875 million members, with international growth increasing at nearly 2x the pace as in the United States. There are now more than 150 million subscriptions to newsletters on LinkedIn, up 4x year over year. New integrations between Viva and LinkedIn Learning helped companies invest in their existing employees by providing access to courses directly in the flow of work. Members added 365 million skills to their profiles over the last 12 months, up 43% year over year.","[-0.04005807638168335, -0.01202403288334608, 0.02031988836824894, -0.0575355589389801, -0.026599619537591934, -0.00472632423043251, -0.03381800651550293, -0.001137788174673915, -0.0035397852770984173, -0.021483290940523148, -0.005701335147023201, 0.010351641103625298, 0.008824675343930721, 0.0009973205160349607, 0.013603881001472473, 0.007251436822116375, 0.006801940500736237, -0.025859272107481956, 0.0338708870112896, -0.02369111217558384, -0.02369111217558384, 0.012585903517901897, -0.0036455492954701185, 0.0004346235073171556, -0.02267313562333584, 0.013055230490863323, 0.005939303897321224, 0.0008043840061873198, 0.03204645961523056, -0.018654106184840202, -0.004250386729836464, 0.006881263572722673, -0.014806944876909256, 0.00760838994756341, -0.03143831714987755, -0.017926979809999466, -0.010450795292854309, -0.0156794972717762, 0.02958744950592518, 0.014436771161854267, 0.014383889734745026, 0.01948699727654457, -0.011686909943819046, -0.01193809974938631, -0.03196713700890541, 0.013577439822256565, -0.01201081182807684, -0.02075616456568241, -0.02343992330133915, 0.04095706716179848, 0.0005895511130802333, 0.021522952243685722, -0.030327796936035156, -0.004858528729528189, 0.010761476121842861, -0.015560513362288475, -0.017252735793590546, -0.002768039470538497, 0.006653210148215294, -0.023638229817152023, -0.006428461521863937, -0.012632175348699093, -0.025991477072238922, -0.0028919815085828304, -0.03585395961999893, -0.0016228148015215993, -0.02227652072906494, 0.014093038626015186, -0.0026011308655142784, 0.00712584238499403, 0.021047014743089676, 0.008421449922025204, 0.009241119958460331, 0.016049671918153763, 0.014225243590772152, -0.005863286089152098, -0.005972355138510466, -0.012176068499684334, 0.01088046096265316, 0.0018062490271404386, -0.0015567123191431165, -0.03347427397966385, -0.00400580745190382, -0.007264657411724329, 0.01290980540215969, 0.030486442148685455, -0.017133750021457672, -0.0046470011584460735, -0.004362760577350855, 0.0031233399640768766, 0.00712584238499403, -0.005635232664644718, -0.004670137073844671, -0.003757923375815153, -0.01248675025999546, 0.0011724919313564897, -0.019037501886487007, 0.008844505995512009, -0.005582350771874189, -0.03043355979025364, -0.013068451546132565, -0.003906653728336096, -0.021364307031035423, -0.009862483479082584, -0.012704887427389622, 0.02049175463616848, -0.000681268225889653, -0.0001207402310683392, 0.030750852078199387, 0.008626367896795273, -0.01129690557718277, 0.016221538186073303, 0.01327997911721468, -0.011204362846910954, -0.004048774018883705, -0.022448386996984482, -0.002616003854200244, -0.0066201589070260525, 0.03011626936495304, -0.028529809787869453, 0.03019559197127819, 0.006834991741925478, 0.030407119542360306, -0.0020425652619451284, 0.010364861227571964, 0.028133196756243706, 0.01505813468247652, 0.0002239219902548939, 0.0038934333715587854, 0.008963489904999733, -0.00520887179300189, 0.0013617101358249784, -0.009267561137676239, 0.012929636053740978, -0.018535122275352478, 0.02671860344707966, 0.025251129642128944, 0.007555508054792881, -0.013762527145445347, -0.020346328616142273, -0.0009708795114420354, 0.0021318034268915653, -0.008666029199957848, 0.011990981176495552, 0.011329957284033298, 0.022421944886446, 0.039264846593141556, 0.003903348697349429, 0.003979366738349199, 0.0022177365608513355, 0.016499167308211327, -0.02723420225083828, 0.00552616361528635, 0.012387596070766449, 0.0053212461061775684, -0.005965744610875845, 0.006015321705490351, 0.030803734436631203, -0.006887873634696007, -0.0053245509043335915, -0.020253784954547882, 0.004425557795912027, -0.011627417989075184, -0.002768039470538497, -0.008348737843334675, 0.017345279455184937, 0.0008659418672323227, -0.005496417172253132, 0.0084677217528224, -0.015970347449183464, 0.012374375946819782, 0.0268904697149992, -0.02919083461165428, 0.021721260622143745, -0.005807098932564259, 0.013134554028511047, 0.015811702236533165, -0.020941251888871193, -0.018482239916920662, -0.00918823853135109, 0.012189288623631, -0.0043594553135335445, 0.009287391789257526, 0.024312475696206093, -0.00872552115470171, 0.01913004368543625, 0.03315697982907295, 0.002731683198362589, 0.017067648470401764, -0.011019275523722172, -0.0009551801485940814, 0.008857726119458675, 0.010470625944435596, -0.024748751893639565, -0.6671586632728577, -0.011290295980870724, 0.012718108482658863, 0.018257493153214455, 0.010457404889166355, -0.003212578361853957, 0.0024672732688486576, -0.008123989216983318, -0.016234757378697395, 0.00784635916352272, -0.021694818511605263, 0.0010956478072330356, -0.003197705140337348, -0.009842652827501297, -0.013081671670079231, -0.022911103442311287, 0.014370669610798359, -0.027445729821920395, -0.005945913959294558, 0.002404476050287485, -0.010378082282841206, -0.00998807791620493, 0.02494705840945244, 0.022554149851202965, -0.012314883060753345, 0.002136761089786887, -0.0005073361680842936, -0.020452093333005905, -0.028212519362568855, 0.0003796758537646383, -0.0028738032560795546, 0.013881511054933071, -7.870321132941172e-05, 0.012116576544940472, 0.043971337378025055, 0.0005705466610379517, -0.006874653045088053, 0.021099897101521492, 0.010034349747002125, 0.024761971086263657, -0.03336850926280022, 0.001428638817742467, 0.011733181774616241, 0.01771545223891735, 0.01248675025999546, -0.006296257022768259, 0.011753012426197529, 0.013484896160662174, 0.01989683322608471, -0.017345279455184937, 0.008480941876769066, -0.004448693711310625, -0.016327301040291786, -0.003095246385782957, 0.004366065841168165, 0.0084677217528224, -0.010007908567786217, 0.0011402670061215758, 0.017437821254134178, -0.022488048300147057, -0.004422252997756004, -0.006283036433160305, 0.005162599962204695, 0.004114876501262188, -0.03783703222870827, 0.008606537245213985, 0.006183882709592581, 0.03500784933567047, 0.008626367896795273, -0.0027366408612579107, -0.0077538155019283295, 0.012242170982062817, 0.02537011355161667, 0.007403472438454628, 0.0013270063791424036, 0.018667327240109444, 0.033104099333286285, 0.013802188448607922, -0.02201211079955101, 0.01593068614602089, -0.019672084599733353, -0.021470069885253906, 0.012519801035523415, 0.001308001927100122, 0.017226293683052063, 0.01361710112541914, -0.020042257383465767, -0.01008062157779932, 0.017583247274160385, 0.018323594704270363, 0.013815408572554588, 0.00015348159649875015, -0.020610738545656204, -0.020174462348222733, -0.0008882514666765928, 0.02632198855280876, -0.018429359421133995, 0.010781306773424149, 0.024418238550424576, 0.015520851127803326, -0.028450487181544304, -0.01505813468247652, 0.022289739921689034, 0.0010634228819981217, 0.0235192459076643, 0.05068734660744667, -0.020029038190841675, 0.005803793668746948, 0.03162340447306633, -0.009062644094228745, 0.01542830839753151, -0.0024325696285814047, 0.00041995703941211104, -0.0033712240401655436, -0.03701736405491829, -0.023638229817152023, 0.013491506688296795, 0.011990981176495552, 0.0023301108740270138, -0.021562613546848297, 0.003156391205266118, -0.006101254839450121, 0.006646599620580673, -0.010695373639464378, -0.025515539571642876, 0.004994038958102465, 0.009842652827501297, 0.007006858009845018, 0.01661815121769905, -0.0057773529551923275, 0.0134452348574996, -0.010926732793450356, 0.02808031439781189, -0.011786064133048058, 0.004379286430776119, 0.012770989909768105, 0.019526658579707146, 0.008758572861552238, 0.0003356764209456742, -0.009168407879769802, -0.005618706811219454, 0.007013468071818352, -0.006960586179047823, -0.017014766111969948, 0.0007915766327641904, -0.03003694675862789, -0.0004160321841482073, 0.022117873653769493, -0.008262804709374905, 0.018931737169623375, 0.002349941525608301, -0.009075864218175411, -0.01745104230940342, 0.01738494075834751, 0.006253290455788374, 0.01273793913424015, -0.030486442148685455, -0.037466861307621, -0.025991477072238922, -0.018654106184840202, -0.02158905565738678, 0.01521677989512682, 0.00038008898263797164, 0.004250386729836464, -0.0076150004751980305, -0.018508682027459145, -0.013524558395147324, 0.01704120822250843, 0.016895782202482224, -0.001323701231740415, 0.013974054716527462, -0.00982282217592001, -0.0029299904126673937, -0.0031960527412593365, 0.0212453231215477, -0.0033431306947022676, -0.020888369530439377, 0.02168159931898117, -0.011277074925601482, -0.0027399458922445774, -0.003267112886533141, 0.0025465963408350945, -3.7079335015732795e-05, -0.001396413892507553, 0.009829431772232056, 5.820112710352987e-05, 0.025013161823153496, 0.016393404453992844, -0.012321493588387966, -0.0057509117759764194, -0.007515846751630306, 0.0032919012010097504, -0.018773091956973076, 0.015824923291802406, -0.01255946233868599, 0.0007457180763594806, -0.007158893626183271, -0.03196713700890541, 0.010318590328097343, -0.01627441868185997, 0.02209143340587616, 0.018839193508028984, 0.012704887427389622, 0.01805918477475643, -0.0028886764775961637, 0.002870498225092888, -0.009412986226379871, -0.015177118591964245, 0.028952866792678833, 0.003024186473339796, 0.03162340447306633, -0.011792674660682678, 0.009565021842718124, -0.023651450872421265, -0.0013005654327571392, 0.021641936153173447, 0.006335918325930834, -0.003873602719977498, -0.03196713700890541, 0.007496016100049019, -0.007727374788373709, -0.02773658186197281, 0.014992032200098038, -0.012440478429198265, 0.005975659936666489, 0.01872020959854126, -0.0019285385496914387, 0.04278149455785751, 0.005023784935474396, -0.013167604804039001, -0.004385896492749453, 0.022831780835986137, 0.01965886354446411, 0.014806944876909256, -0.00560879148542881, -0.0033365203998982906, 0.013722864910960197, -0.0337122417986393, 0.02588571235537529, 0.010457404889166355, 0.0005263406201265752, 0.02571384608745575, 0.030169151723384857, -0.01530932355672121, 0.03535158187150955, 0.01390795223414898, 0.02370433323085308, -0.026692163199186325, -0.02420671097934246, 0.023426702246069908, 0.0028837185818701982, 0.022990426048636436, 0.007264657411724329, 0.0016905697993934155, 0.0013195698847994208, -0.030671529471874237, -0.004960987716913223, 0.015494410879909992, 0.02731352671980858, 0.009670786559581757, 0.005562519654631615, 0.011581146158277988, 0.03043355979025364, -0.017345279455184937, 0.011667079292237759, 0.0024358746595680714, -0.010259097442030907, 0.0038075002375990152, -0.0007841401384212077, -0.026864029467105865, -0.01049706619232893, -0.012162847444415092, 0.008170261047780514, -0.005384043324738741, 0.00575421703979373, -0.022911103442311287, 0.010642492212355137, -0.004392506554722786, -0.031253229826688766, 0.02815963700413704, -0.004957682453095913, -0.04209402948617935, 0.005142769310623407, 0.021099897101521492, -0.012777600437402725, -0.02293754555284977, -0.0144235510379076, 0.007469574920833111, -0.017649350687861443, -0.0030208812095224857, -0.007006858009845018, 0.006259900517761707, -0.03239019215106964, -0.00872552115470171, 0.01450287364423275, 0.01618187502026558, 0.038498058915138245, -0.011118429712951183, 0.005050226114690304, -0.01336591225117445, 0.018574783578515053, -0.013669983483850956, -0.01795342192053795, 0.004584203939884901, 0.041618093848228455, 0.016261199489235878, -0.0268904697149992, -0.007317539304494858, -0.014899488538503647, 0.00431979401037097, 0.013042010366916656, -0.0050634462386369705, -0.025846051052212715, 0.015256442129611969, 0.0021797276567667723, 0.02217075601220131, 0.005883116740733385, 0.019592761993408203, -0.0032257987186312675, -0.00943942740559578, -0.012592514045536518, -0.01890529692173004, -0.022197198122739792, 0.03725533187389374, 0.09941805899143219, 0.01032519992440939, -0.01746426336467266, 0.016737136989831924, -0.024100948125123978, -0.0187334306538105, -0.015877803787589073, -0.01335930172353983, 0.0012047168565914035, -0.003860382130369544, 0.007641441188752651, -0.007694323547184467, -0.001308001927100122, -0.007747205439954996, 0.0028936341404914856, 0.011812505312263966, 0.02295076474547386, -0.017940200865268707, -0.009895534254610538, -0.0069275349378585815, 0.018178168684244156, -0.008335516788065434, 0.013736085966229439, 0.03442614898085594, 0.02494705840945244, 0.003113424638286233, 0.021549394354224205, 0.036144811660051346, 0.0011253939010202885, -0.026282327249646187, 0.02402162365615368, 0.03027491457760334, 0.010549948550760746, 0.014291346073150635, -0.01668425463140011, 0.023215174674987793, -0.0010816011345013976, -0.0005726123345084488, 0.011653859168291092, -0.0011700130999088287, 0.014820165932178497, 0.0030341017991304398, 0.002166507299989462, 0.0016666075680404902, 0.01973818615078926, -0.011290295980870724, -0.01585136353969574, 0.012982518412172794, 0.008421449922025204, -0.009234510362148285, 0.01898461952805519, 0.006501174531877041, -0.0132865896448493, -0.018283933401107788, -0.017728673294186592, 0.018270712345838547, 0.003151433542370796, -0.01130351610481739, -0.011647248640656471, -0.04598085209727287, -0.020954471081495285, -0.026348430663347244, 0.001936801359988749, -0.03659430891275406, -0.012744549661874771, -0.03313054144382477, -0.022197198122739792, -0.00471971370279789, -0.01434422843158245, 0.009320443496108055, 0.0029762620106339455, -0.03172916918992996, -0.010721814818680286, -0.015243221074342728, 0.023492805659770966, -0.006425156723707914, 0.029455244541168213, 0.0038835180457681417, -0.020888369530439377, 0.015018473379313946, -0.01400049589574337, 0.0024474426172673702, -0.008785013109445572, -0.017781555652618408, -0.03392376750707626, 0.018323594704270363, -0.043389637023210526, 0.01753036491572857, -0.002070658840239048, -0.01627441868185997, 0.016737136989831924, -0.009644345380365849, 0.004518101457506418, -0.005222092382609844, 0.02808031439781189, -0.000563110108487308, -0.004699883051216602, 0.01104571670293808, 0.025528760626912117, 0.017318837344646454, 0.015071354806423187, -0.023902639746665955, -0.022712796926498413, -0.00512624392285943, 0.004197504371404648, 0.005506332963705063, 0.013643542304635048, 0.004927936475723982, -0.015639835968613625, -0.02530401200056076, 0.02158905565738678, 0.0018244271632283926, 0.005331161431968212, 0.01913004368543625, 0.004716408904641867, 0.011567926034331322, 0.025938594713807106, 0.005873201414942741, 0.015230000950396061, -0.019857171922922134, 0.002118583070114255, -0.027445729821920395, -0.010391302406787872, -0.01121758297085762, -0.019936494529247284, 0.001028719125315547, 0.008930439129471779, -0.022157536819577217, -0.007231606170535088, -0.0005589787033386528, 0.008679249323904514, 0.011825725436210632, -0.015798481181263924, 0.01914326474070549, -0.035801079124212265, -0.02546265721321106, -0.0035298699513077736, 0.0036819055676460266, -0.02326805703341961, -0.005238617770373821, -0.008150430396199226, -0.015481189824640751, 0.011865386739373207, -0.023122631013393402, 0.01679001748561859, -0.03164984658360481, -0.005023784935474396, 0.009935195557773113, -0.004042163956910372, 0.02529079094529152, -0.005417094565927982, -0.004174368921667337, -0.0268904697149992, -0.0020309973042458296, -0.01965886354446411, -0.0019516743486747146, -0.01025248784571886, 0.005469976458698511, 0.03923840448260307, 0.010384692810475826, 0.029455244541168213, -0.027789464220404625, -0.00296138902194798, 0.012209119275212288, 0.012235560454428196, -0.005645147990435362, 0.010840799659490585, -0.008381788618862629, -0.0012815609807148576, 0.0012914763065055013, 0.01049706619232893, 0.00471971370279789, 0.023175513371825218, 0.013022179715335369, -0.004299963358789682, 0.030512884259223938, -0.026546737179160118, -0.015230000950396061, -0.022369064390659332, -0.01735849864780903, -0.006626768968999386, -0.015454749576747417, 0.003962840884923935, 0.007581949234008789, -0.03524581715464592, -0.0022425251081585884, -0.00512624392285943, 0.000792402948718518, 0.011369618587195873, -0.015190339647233486, 0.0013303115265443921, 0.00041293364483863115, 0.022567370906472206, 0.0043726759031414986, 0.002141718752682209, -0.025581641122698784, -0.0005660020979121327, -0.05253821611404419, 0.005460061132907867, 0.02310941182076931, 0.011680300347507, 0.038418736308813095, -0.008798234164714813, 0.0007791824173182249, -0.009181628003716469, 0.002754818880930543, -0.018944958224892616, -0.01425168476998806, 0.015401867218315601, -0.018112067133188248, 0.03659430891275406, -0.027842344716191292, -0.012149627320468426, 0.0016500820638611913, -0.0016104205278679729, 0.01390795223414898, -0.014674740843474865, 0.015891024842858315, -0.005417094565927982, -0.027022674679756165, 0.01407981850206852, -0.0001555472845211625, 0.043310314416885376, -0.0033117318525910378, 0.02842404693365097, 0.020967692136764526, 0.024008404463529587, -0.024722309783101082, -0.023889420554041862, 0.024074506014585495, -0.015348984859883785, 0.020967692136764526, 0.02478841319680214, -0.036224134266376495, -0.014066598378121853, 0.006874653045088053, 0.007621610537171364, -0.006689566187560558, -0.015467969700694084, 0.03077729418873787, -0.01138944923877716, -0.012592514045536518, -0.015282882377505302, -0.004223945550620556, -0.024682648479938507, 0.01407981850206852, -0.0017004851251840591, 0.001712053082883358, 0.018786311149597168, -0.014238464646041393, -0.010450795292854309, 0.049788352102041245, 0.006610243581235409, 0.006901094224303961, -0.02075616456568241, -0.011865386739373207, -0.015957128256559372, -0.014648299664258957, -0.010298759676516056, -0.009419596754014492, -0.012685056775808334, 0.026017917320132256, 0.0021896432153880596, 0.015957128256559372, 0.011905048042535782, -0.0013947613770142198, 0.0027647342067211866, 0.013894732110202312, -0.02065039984881878, 0.026930131018161774, -0.008170261047780514, -0.008051276206970215, 0.00801161490380764, 0.011310126632452011, 0.0017434516921639442, -0.021126337349414825, -0.00504031078889966, -0.020029038190841675, -0.012215729802846909, -0.005592266097664833, 0.030803734436631203, 0.0001715564721962437, -0.0003057237481698394, 0.018759870901703835, 0.017477484419941902, -0.02646741457283497, -0.00040797595283947885, -0.007648051716387272, 0.021311424672603607, -0.026877250522375107, -0.008375178091228008, 0.005304720252752304, 0.004012417979538441, -0.0047858161851763725, -0.0013038704637438059, -0.004732934292405844, -0.008917218074202538, 0.013352692127227783, -0.020108360797166824, 0.015732379630208015, -0.020769385620951653, 0.014555756002664566, -0.032760366797447205, 0.010741645470261574, -0.02359856851398945, -0.022157536819577217, 0.02741928957402706, 0.004845308605581522, -0.02412738837301731, 0.009406376630067825, 0.008487552404403687, 0.010364861227571964, 0.009016372263431549, -9.548703383188695e-05, 0.009426207281649113, -0.0010427659144625068, -0.013775747269392014, -0.00042925268644466996, -0.002259050728753209, 0.042041148990392685, -0.008170261047780514, -0.0053212461061775684, -0.008613146841526031, -0.004247081466019154, 0.019711745902895927, -0.01755680702626705, -0.008289244957268238, -0.018759870901703835, -0.021298203617334366, -0.02436535805463791, -0.008831284940242767, 0.0005817014025524259, -0.007304319180548191, 0.012519801035523415, -0.017067648470401764, 0.002465620869770646, -0.011581146158277988, 0.02538333460688591, -0.002505282172933221, -0.011964540928602219, 0.003022533841431141, 0.024153828620910645, 0.04066621884703636, 0.0037480080500245094, 0.009565021842718124, -0.02041243202984333, -0.014516094699501991, -0.0145425358787179, -0.018944958224892616, 0.02301686815917492, 0.0011757970787584782, 0.015613394789397717, 0.019011059775948524, -0.014674740843474865, -0.018482239916920662, -0.0017153581138700247, -0.058328788727521896, -0.02251448854804039, -0.00432309927418828, 0.032178666442632675, -0.006716007366776466, 0.009710447862744331, -0.00856026541441679, -0.010635881684720516, -0.0037480080500245094, 0.017186632379889488, -0.02488095685839653, -0.00863958802074194, 0.015891024842858315, -0.004518101457506418, 0.0014385542599484324, 0.004161148332059383, -0.03389732912182808, 0.016419844701886177, 0.017781555652618408, -0.009234510362148285, -0.02176092192530632, 0.009267561137676239, -0.02403484471142292, -0.007178724277764559, 0.04471168667078018, -0.026097241789102554, -0.009419596754014492, -0.002614351222291589, 0.029296599328517914, -0.030222032219171524, 0.005721165798604488, -0.00655405642464757, -0.003156391205266118, -0.014053377322852612, 0.009518750943243504, -0.017940200865268707, 0.04518762230873108, 0.015745600685477257, 0.00918823853135109, 0.002264008391648531, -0.006200408097356558, 0.008996541611850262, 0.006768889259546995, -0.01353116799145937, 0.023730773478746414, 0.03474343940615654, 0.008950269781053066, -0.004243776202201843, 0.010345030575990677, 0.023717554286122322, 0.008262804709374905, -0.013511337339878082, 0.022554149851202965, -0.031332552433013916, 0.0268904697149992, -0.023717554286122322, 0.002452400280162692, 0.0007733984966762364, 0.0004172716289758682, -0.010483846068382263, -0.010801137425005436, -0.004174368921667337, 0.0029052020981907845, -0.0046172551810741425, -0.02927015721797943, -0.0077802566811442375, -0.015230000950396061, 0.013894732110202312, -0.008428060449659824, 0.0018921821611002088, -0.0014972201315686107, -0.0024011710193008184, -0.033262744545936584, 0.015996789559721947, 0.0031398655846714973, -0.022210417315363884, 0.012440478429198265, 0.03836585208773613, -0.00601201644167304, 0.006768889259546995, 0.19936494529247284, -0.015150678344070911, 0.0070795705541968346, 0.02731352671980858, -0.02108667604625225, 0.0043429299257695675, 0.024471120908856392, 0.008580096065998077, -0.002062395913526416, -0.002416044007986784, -0.001809554174542427, 0.009769939817488194, -0.03299833461642265, -0.006795330438762903, 0.004504880867898464, -0.02539655566215515, -0.043468959629535675, -0.01407981850206852, -0.014992032200098038, 0.01753036491572857, 0.0019500218331813812, 0.0007159719825722277, -0.010470625944435596, -0.02125854231417179, 0.011402670294046402, 0.011567926034331322, -0.020108360797166824, 0.009935195557773113, 0.01895817741751671, 0.010298759676516056, -0.016300860792398453, 0.012334714643657207, -0.007813307456672192, -0.01096639409661293, -0.008130599744617939, -0.013974054716527462, 0.01788731850683689, -0.02579317055642605, 0.02092803083360195, 0.008203311823308468, 0.008566875010728836, 0.01004095934331417, -0.00961790420114994, -0.025343673303723335, 0.015203559771180153, 0.006973806768655777, 0.008355347439646721, 0.0005610444350168109, -0.012215729802846909, 0.020690061151981354, -0.012605734169483185, 0.007562118582427502, 0.03204645961523056, 0.03434682637453079, 0.011237413622438908, 0.023149073123931885, 0.008309075608849525, 0.02277889847755432, -0.003665379947051406, 0.010549948550760746, 0.005003954283893108, 0.009221289306879044, 0.00855365488678217, 0.003095246385782957, -0.011964540928602219, -0.021456850692629814, 0.008785013109445572, -0.01618187502026558, -0.00793229229748249, 0.000903950771316886, -0.008652809076011181, 0.0031944001093506813, -0.026626059785485268, -0.005585655570030212, -0.027022674679756165, -0.015454749576747417, 0.028609134256839752, 0.023056529462337494, -0.0004507359699346125, 0.028952866792678833, 0.007383641786873341, -0.016723915934562683, -0.014185582287609577, -0.029111512005329132, 0.002925032749772072, 0.0043297093361616135, 0.016644593328237534, 0.0007250610506162047, -0.00801161490380764, -0.005003954283893108, -0.0014468170702457428, 0.0020739638712257147, -0.016419844701886177, 0.012969297356903553, 0.001996293431147933, 0.008057886734604836, 0.007264657411724329, 0.0045114909298717976, -0.010920122265815735, -0.00148069451097399, -0.010854019783437252, 0.06848212331533432, 0.030460001900792122, 0.005774047691375017, -0.008038056083023548, -0.017173413187265396, -0.00998807791620493, 0.015415087342262268, 0.011918269097805023, -0.016300860792398453, 0.005195651203393936, -0.023175513371825218, 0.01796664111316204, -0.0094460379332304, -0.00512624392285943, 0.008685859851539135, 0.0013394005363807082, -0.01940767467021942, 0.025951815769076347, 0.02800099179148674, -0.00021855116938240826, -0.007377031724900007, -0.0018475630786269903, -0.0006259074434638023, -0.011627417989075184, -0.0036091927904635668, -0.007291098590940237, 0.005030395463109016, -0.017001546919345856, -0.019632423296570778, 0.028476929292082787, 0.004448693711310625, 0.007310929242521524, -0.020941251888871193, -0.01729239709675312, 0.00196158979088068, 0.014225243590772152, -0.010437574237585068, -0.007244826760143042, -0.017821216955780983, -0.014225243590772152, -0.021800583228468895, -0.014555756002664566, 0.0020194293465465307, 0.0009758371743373573, -0.0020326499361544847, 0.013035399839282036, 0.009802990593016148, 0.0036984311882406473, 0.008804844692349434, -0.011977761052548885, 0.024986719712615013, -0.00889738742262125, 0.0011204362381249666, 0.031491201370954514, -0.010695373639464378, -0.024325694888830185, -0.023307718336582184, -0.005757521837949753, -0.013352692127227783, -0.03802211955189705, -0.007793476805090904, 0.036462102085351944, -0.02815963700413704, -0.03469055891036987, 0.009009761735796928, -0.16827034950256348, 0.020002596080303192, -0.002949821064248681, -0.024669429287314415, 0.002414391376078129, -0.019632423296570778, -0.013127943500876427, 0.002452400280162692, 0.003060542745515704, 0.019711745902895927, 0.024074506014585495, 0.012638785876333714, -0.013855069875717163, -0.025356894358992577, -0.00520556652918458, 0.008057886734604836, 0.032443076372146606, 0.007892630994319916, 0.03085661679506302, 0.0016633025370538235, 0.02707555703818798, -0.015203559771180153, -0.0009849262423813343, -0.010192994959652424, 0.0023648145142942667, -0.024642987176775932, -0.0006007058545947075, -0.0015129194362089038, 0.013921172358095646, -0.013855069875717163, -0.0019384538754820824, 0.0022607033606618643, 0.040507569909095764, -0.0033398254308849573, 0.0025961732026189566, 0.01147538237273693, 0.001530271372757852, -0.016723915934562683, -0.00801822543144226, 0.02842404693365097, 0.020200904458761215, 0.028635574504733086, -0.013233707286417484, 0.01805918477475643, 0.004670137073844671, 0.0026259191799908876, 0.027683699503540993, -0.016459506005048752, 0.00863958802074194, -0.01727917604148388, 0.009333663620054722, -0.04040180891752243, 0.030883057042956352, 0.004392506554722786, 0.008123989216983318, 0.0376255065202713, 0.020703282207250595, 0.004689967725425959, 0.018825972452759743, 0.0006709396839141846, 0.0032753755804151297, -0.013035399839282036, 0.007694323547184467, -0.026176564395427704, -0.006577192340046167, -0.02858269214630127, -0.0027449035551398993, 0.0014418592909350991, -0.02613690309226513, 0.024405019357800484, 0.007952122949063778, -0.00489157997071743, -0.027207762002944946, -0.01895817741751671, 0.01504491362720728, -0.008203311823308468, -0.007304319180548191, 0.008884167298674583, 0.004898190498352051, 0.008765182457864285, -0.0030853310599923134, 0.020809046924114227, 0.011144869960844517, 0.027392849326133728, -0.03350071236491203, -0.0017269260715693235, 0.0059194727800786495, 0.02621622569859028, -0.01872020959854126, -0.01913004368543625, 0.00649456400424242, -0.0333949513733387, -0.0038901283405721188, -0.0027878701221197844, -0.0027829124592244625, -0.00529480492696166, 0.025832831859588623, 0.022448386996984482, -0.003354698419570923, 0.0066234637051820755, -0.0016467769164592028, 0.0018706988776102662, -0.0009601378696970642, 0.021708039566874504, 0.022448386996984482, -0.02022734470665455, -0.01256607286632061, 0.0016219884855672717, 0.03804856166243553, -0.010351641103625298, -0.009855872951447964, 0.00906925369054079, 0.019262248650193214, 0.008414840325713158, -0.01644628494977951, 0.02529079094529152, -0.02977253682911396, -0.0028390996158123016, -0.012156237848103046, -0.01660493202507496, 0.03852449730038643, -0.001712053082883358, -0.031173907220363617, -0.003804194973781705, -0.008130599744617939, -0.012625564821064472, -0.10840798914432526, -0.00953197106719017, 0.004861833993345499, 0.008461111225187778, 0.01820461079478264, 0.02622944675385952, -0.0023102799896150827, 0.017913758754730225, -0.00256146932952106, 0.03659430891275406, 0.025422995910048485, -0.00014263666525948793, -0.010655712336301804, 0.005975659936666489, 0.039767224341630936, -0.00927417166531086, -0.02445789985358715, -0.007555508054792881, -0.01585136353969574, 0.0290850717574358, 0.01895817741751671, -0.01788731850683689, -0.0011733182473108172, -0.008679249323904514, -0.021192440763115883, 0.003642244031652808, -0.023677891120314598, 0.013947613537311554, 0.01661815121769905, -0.003642244031652808, -0.0060715083964169025, -0.020637180656194687, 0.019381234422326088, 0.0009717057691887021, -0.008956879377365112, 0.008309075608849525, -0.011224193498492241, 0.013127943500876427, -0.002070658840239048, -0.02808031439781189, 0.006213628686964512, -0.0063293082639575005, 0.010219436138868332, -0.043045904487371445, -0.012929636053740978, 0.00927417166531086, 0.012843702919781208, 0.005469976458698511, -0.0029878299683332443, -0.028979307040572166, -0.028397604823112488, -0.002021081978455186, -0.0190507210791111, -0.006131000816822052, 0.003349740756675601, -0.0008469374151900411, -0.0023334159050136805, -0.00890399795025587, -0.031226789578795433, -0.001407981850206852, -0.0047725955955684185, -0.007053129840642214, -0.05885760858654976, 0.02199888974428177, 0.032919012010097504, 0.001260077697224915, -0.010992834344506264, -0.02008191868662834, 0.010173164308071136, 0.025766728445887566, -0.01997615583240986, 0.02681114710867405, -0.01729239709675312, 0.017913758754730225, -0.018588004633784294, 0.011118429712951183, -0.021060235798358917, -0.014899488538503647, 0.003962840884923935, 0.004934546537697315, -0.010232657194137573, -0.01247352920472622, 0.0036257184110581875, 0.006517699919641018, -0.005238617770373821, 0.0007713327649980783, -0.018112067133188248, 0.0022987122647464275, 0.00698041683062911, -0.0005829408182762563, -0.008137209340929985, -0.004610644653439522, 0.010701984167098999, 0.007793476805090904, 0.012751159258186817, 0.03839229419827461, -0.02318873442709446, -0.02445789985358715, 0.006590412463992834, 0.026044359430670738, -0.02731352671980858, 0.0036819055676460266, -0.059333544224500656, 0.013974054716527462, 0.015957128256559372, 0.026837587356567383, 0.017741892486810684, -0.026427753269672394, 0.0009849262423813343, -0.019949713721871376, -0.009789770469069481, -0.004825477488338947, -0.020967692136764526, 0.011871997267007828, 0.005007259547710419, 0.0013617101358249784, -0.014013716019690037, -0.007581949234008789, 0.037149567157030106, 0.014806944876909256, 0.0004209898761473596, 0.02696979232132435, 0.014159141108393669, -0.01142250094562769, 0.02058429829776287, 0.014873047359287739, -0.00408843532204628, -0.002130151027813554, -0.02209143340587616, 0.008923828601837158, -0.015732379630208015, -0.005384043324738741, 0.014873047359287739, -0.03995231166481972, -0.00623676460236311, 0.01997615583240986, -0.008798234164714813, -0.04317811131477356, 0.01096639409661293, 0.025449438020586967, -0.001198932877741754, 0.007674492429941893, -0.008024835959076881, -0.02320195361971855, 0.014132700860500336, -0.013154384680092335, -0.005278279539197683, -0.0056550633162260056, -0.016406623646616936, -0.0038835180457681417, -0.003946315497159958, 0.003156391205266118, 0.010351641103625298, 0.0016244673170149326, -0.03744041919708252, -0.020531415939331055, -0.003144823247566819, -0.025832831859588623, 0.018006302416324615, 0.006593717727810144, 0.04145944491028786, -0.02445789985358715, 0.03392376750707626, -0.0027911753859370947, 0.007581949234008789, 0.008276024833321571, 0.005423704627901316, -0.021377528086304665, -0.00817687064409256, 0.0006775499787181616, -0.02731352671980858, -0.012863533571362495, 0.0145425358787179, -0.0035893621388822794, 0.00752245681360364, -0.0052253976464271545, -0.009214679710566998, -0.007198554929345846, -0.012625564821064472, 0.027035895735025406, -0.03003694675862789, -0.007496016100049019, -0.004699883051216602, -0.017133750021457672, -0.009003151208162308, 0.035589549690485, 0.01088046096265316, 0.023320939391851425, -0.011144869960844517, 0.005645147990435362, 0.0061937980353832245, -0.006160746794193983, -0.010688764043152332, 0.007020078599452972, 0.0015368815511465073, -0.002900244202464819, 0.015441528521478176, 0.012143016792833805, 0.01505813468247652, -0.0035794468130916357, -0.016763577237725258, -0.005942608695477247, 0.015031693503260612, 0.0034307162277400494, -0.008282635360956192, -0.01104571670293808, -0.024180270731449127, -0.003956230822950602, -0.00014253337576519698, -0.03001050464808941, 0.00400580745190382, 0.023981962352991104, 0.024471120908856392, 0.007641441188752651, -0.002505282172933221, 0.010814358480274677, -0.016247978433966637, -0.0028919815085828304, 0.008976710960268974, 0.0052154818549752235, -0.031015262007713318, 0.05179786682128906, 0.01025248784571886, 0.011032496578991413, 0.02529079094529152, -0.03019559197127819, 0.03162340447306633, -0.018085626885294914, 0.0032439769711345434, -0.009776550345122814, 0.0043297093361616135, -0.00503700552508235, -0.02696979232132435, -0.0015542334876954556, -0.02251448854804039, -0.007661272305995226, -1.0341415872971993e-05, -0.021311424672603607, -0.0017451042076572776, 0.023003647103905678, -0.0105829993262887, 0.059069134294986725, 0.024510782212018967, -0.008580096065998077, 0.024312475696206093, 0.007152283564209938, 0.035721756517887115, 0.010741645470261574, 0.003665379947051406, -0.0169354435056448, -0.03162340447306633, -0.001778155448846519, -0.00623676460236311, -0.009538581594824791, -0.02252770960330963, -0.02328127808868885, 0.01887885481119156, -0.005549299530684948, 0.024378577247262, -0.03897399455308914, -0.013683203607797623, 0.004997344221919775, -0.02977253682911396, 0.015071354806423187, -0.012420647777616978, -0.009320443496108055, 5.969875928713009e-05, 0.00961790420114994, 0.020544636994600296, -0.020002596080303192, -0.016829680651426315, 0.018032744526863098, 0.0020789215341210365, -0.023413483053445816, 0.016578489914536476, -0.014383889734745026, -0.0037116517778486013, -0.008758572861552238, -0.011025886051356792, -0.008441280573606491, -0.00615413673222065, 0.008566875010728836, 0.014925929717719555, -0.02823895961046219, -0.024775192141532898, -0.01087385043501854, 0.012037253007292747, -0.02842404693365097, -0.0004259475681465119, -0.012004202231764793]" +23,"And with our acquisition of EduBrite, they will also soon be able to earn professional certificates from trusted partners directly on the platform. We launched the next-generation sales navigator this quarter, helping sellers increase win rates and deal sizes by better understanding and evaluating customer interest. Finally, LinkedIn Marketing Solution continues to provide leading innovation and ROI in B2B digital advertising. More broadly, with Microsoft Advertising, we offer a trusted platform for any marketeer or advertiser looking to innovate.","[-0.03107352927327156, -0.014467155560851097, -0.004552697297185659, -0.019732926040887833, -0.036586131900548935, 0.011107483878731728, -0.04506073147058487, -0.003856765339151025, -0.009736189618706703, -0.015605329535901546, -0.00353451119735837, 0.007377563510090113, 0.012231945060193539, -0.0014012913452461362, -0.00036232167622074485, -0.006928464397788048, 0.004741250071674585, -0.035324543714523315, 0.007226720917969942, -0.013767794705927372, -0.03280135989189148, -0.007452984806150198, -0.006256530527025461, -0.015097950585186481, -0.014672849327325821, -0.01366494782269001, 0.01483740471303463, -0.01441230345517397, 0.007692961022257805, -0.006085118744522333, -0.00103018491063267, 0.011038918979465961, -0.01984262838959694, -0.006510220002382994, -0.006654205732047558, -0.0030425593722611666, -0.013685517013072968, 0.015523051843047142, 0.013994058594107628, 0.021104220300912857, 0.009215097874403, 0.016524096950888634, -0.0036579277366399765, 0.00165926618501544, -0.024861566722393036, 0.002068940317258239, -0.020487137138843536, -0.00964705552905798, -0.004898949060589075, 0.016510384157299995, -0.004192732274532318, 0.008303186856210232, -0.0349954329431057, -0.007034739945083857, 0.009928170591592789, 0.000254117971053347, -0.008591159246861935, 0.01538592204451561, 0.009249379858374596, -0.015029385685920715, -0.007003885693848133, -0.004720680881291628, -0.028468070551753044, -0.0022129262797534466, -0.036202169954776764, 0.002975708805024624, -0.022982893511652946, 0.006523932795971632, -0.0028248662129044533, 0.009989879094064236, 0.03661355748772621, 0.00583485746756196, 0.018910149112343788, 0.011285752058029175, 0.01803252100944519, 0.0054268972016870975, -0.03014104999601841, -0.006657633930444717, 0.003205400425940752, 0.0015127090737223625, -0.0069764601066708565, -0.034008100628852844, -0.032993342727422714, 0.0033459581900388002, 0.03014104999601841, 0.015756171196699142, -0.014165470376610756, 0.016908058896660805, -0.006256530527025461, 0.004789245314896107, 0.02375081740319729, 0.023476559668779373, -0.001352439052425325, -0.00019830201927106827, -0.024642158299684525, 0.029016587883234024, 0.009098538197577, 0.016222411766648293, -0.0066336365416646, -0.014768839813768864, -0.003784772241488099, -0.0011715996079146862, -0.03263680636882782, -0.007500980049371719, -0.04163249582052231, 0.018690742552280426, -0.015509339049458504, -0.002675737952813506, 0.043771713972091675, -0.011683427728712559, -0.014021484181284904, 0.028084108605980873, 0.012794176116585732, -0.01671607792377472, 0.010531540028750896, -0.015454486943781376, -0.02460101991891861, 0.0001295230322284624, 0.022352097555994987, -0.007590114139020443, 0.008598015643656254, 0.008803709410130978, 0.013322124257683754, -0.0198289155960083, -0.016044143587350845, 0.015646468847990036, 0.0017861109226942062, -0.026836229488253593, 0.030579863116145134, -0.004658972378820181, 0.005732010118663311, -0.00866658054292202, -0.007017598953098059, 0.008001502603292465, -0.014549433253705502, 0.03211571276187897, 0.0024477604310959578, 0.005320622120052576, -0.04349745437502861, -0.04028862714767456, 0.011443451046943665, 0.027535589411854744, -0.006760481279343367, -0.0009427648619748652, 0.0010756090050563216, 0.004964085295796394, -0.003231112379580736, 0.0013610096648335457, 0.026740239933133125, -0.010428693145513535, 0.006366233807057142, -0.042894087731838226, -0.0034933723509311676, -0.003987038042396307, 0.006681631784886122, 0.017854252830147743, 0.003990466706454754, 0.015180228278040886, -0.010702951811254025, -0.015619042329490185, -0.021666450425982475, -0.0023483415134251118, -0.007528406102210283, -0.007466697599738836, 0.004580122884362936, 0.022749772295355797, 0.018663315102458, -0.004031605552881956, -0.014302600175142288, -0.026452267542481422, -0.004045318346470594, 0.010668669827282429, -0.020212877541780472, 0.0027871557977050543, 0.016729790717363358, 0.004909233655780554, 0.0022009273525327444, 0.013726656325161457, 0.01280788891017437, -0.019664360210299492, 0.035105135291814804, -0.010469832457602024, 0.009976166300475597, -0.0042167301289737225, -0.00599255645647645, -0.001123604248277843, 0.022681208327412605, -0.009359084069728851, 0.0173194482922554, -0.02272234670817852, 0.017689697444438934, 0.0152213666588068, -0.006085118744522333, -0.02615058235824108, -0.6441792249679565, -0.014700274914503098, 0.0034145228564739227, -0.012513061054050922, 0.005533172748982906, 0.002410049783065915, 0.027892127633094788, -0.009249379858374596, -0.008652866818010807, 0.01873188093304634, -0.002819723915308714, -0.0009204813395626843, -0.010449263267219067, -0.00014120046398602426, 0.006335380021482706, -0.01608528196811676, 0.032664231956005096, -0.022982893511652946, 0.024779288098216057, 0.0014964248985052109, -0.0068907542154192924, -0.0063216667622327805, 0.018759306520223618, -0.010668669827282429, 0.0020912238396704197, 0.011601150035858154, 0.010270994156599045, 0.009420791640877724, -0.018430195748806, 0.014508293941617012, -0.02054198831319809, 0.022694921121001244, 0.025794045999646187, 0.010702951811254025, 0.04464934393763542, -0.005142353940755129, -0.02124135009944439, 0.01553676463663578, 0.0003970325633417815, 0.022050412371754646, -0.02412106655538082, -0.018293065950274467, -0.0057388669811189175, 0.0019043850479647517, 0.02599973976612091, 0.007014170289039612, 0.02210526540875435, -0.007548975292593241, 0.0014570002676919103, -0.0001616627414477989, 0.010833225212991238, -0.01671607792377472, -0.017196031287312508, -0.007452984806150198, 0.009420791640877724, -0.0026877368800342083, 0.0010704665910452604, -0.015097950585186481, -0.006129685789346695, 0.004096741788089275, -0.012019394896924496, -0.00482352776452899, -0.008378608152270317, -0.04426538199186325, -0.02882460691034794, 0.013109574094414711, -0.0034368063788861036, 0.01851247437298298, 0.021611599251627922, -0.0030099910218268633, 0.008577446453273296, 0.03132036328315735, 0.028056681156158447, 0.012705042026937008, 0.01156001165509224, 0.025862611830234528, 0.021186497062444687, 0.010469832457602024, -0.0046384031884372234, 0.02029515616595745, 0.011114340275526047, -0.030881548300385475, 0.009667624719440937, -0.025890037417411804, 0.014494581148028374, 0.0020398003980517387, -0.009564777836203575, -0.009194528684020042, 0.011991969309747219, 0.029016587883234024, 0.01741543784737587, 0.0161538477987051, -0.013287842273712158, -0.01873188093304634, 0.037436336278915405, 0.022461801767349243, -0.009249379858374596, 0.0045252712443470955, 0.017703410238027573, -0.013143856078386307, -0.023243438452482224, 0.010181860066950321, 0.03543424606323242, -0.0018906720215454698, 0.021255062893033028, 0.04429280757904053, 0.004953800700604916, 0.01022985577583313, 0.011861695908010006, -0.025643203407526016, -0.011628575623035431, -0.018923861905932426, -0.02578033320605755, -0.007329568266868591, -0.022585216909646988, -0.02616429515182972, 0.0010490401182323694, -0.009516783058643341, 0.0014964248985052109, -0.020720256492495537, 0.0060714054852724075, 0.009839036501944065, 0.018443908542394638, 0.007658679038286209, -0.025286667048931122, 0.007418702356517315, 0.011717709712684155, 0.0029294274281710386, -0.0021135073620826006, 0.0024854710791260004, -0.00578000582754612, -0.042674679309129715, 0.00894083920866251, 0.005162923131138086, 0.0013850072864443064, 0.014220322482287884, 0.007130730431526899, -0.015989292412996292, 0.014439729042351246, -0.0001440930354874581, -0.01921183429658413, -0.002590032061561942, 0.0035242263693362474, 0.001157886697910726, -0.019623221829533577, -0.025506075471639633, -0.0005378045025281608, 0.0230377446860075, -0.028989162296056747, 0.006643921136856079, -0.002847149968147278, -0.014741414226591587, -0.011594293639063835, 0.027288757264614105, 0.01788167841732502, -0.0017304020002484322, -0.038752779364585876, -0.02663053572177887, -0.010140721686184406, -0.025588352233171463, -0.003925330005586147, 0.029071439057588577, 0.013966633006930351, -0.0070004574954509735, -0.009715620428323746, -0.019266685470938683, -0.009811610914766788, 0.030031345784664154, -0.010120152495801449, -0.012513061054050922, 0.023833096027374268, -0.007891799323260784, -0.01441230345517397, 0.012554199434816837, 0.031814027577638626, -0.01601671800017357, -0.028015542775392532, 0.004350431263446808, 0.02593117579817772, 0.008124918676912785, 0.016263550147414207, 0.002310630865395069, -0.005238344427198172, -0.01511166337877512, 0.011443451046943665, 0.0038224828895181417, 0.00488180760294199, 0.018018808215856552, -0.020281443372368813, -0.005958274006843567, -0.016140135005116463, 0.04917461425065994, -0.009317944757640362, 0.005865711718797684, -0.005348047707229853, 0.005399471614509821, -0.018553612753748894, -0.011148623190820217, -0.004796101711690426, -0.017429150640964508, 0.00936594046652317, 0.01578359864652157, 0.023257151246070862, -0.00011923832789761946, 0.02037743292748928, -0.002569462638348341, -0.016194986179471016, -0.010106438770890236, 0.024820426478981972, 0.009400222450494766, 0.016428105533123016, -0.02599973976612091, -0.004028176888823509, -0.038697924464941025, 0.010147578082978725, 0.01976035162806511, -0.004566410090774298, -0.0017475432250648737, -0.008124918676912785, 0.00862544123083353, 0.010901790112257004, -0.024326762184500694, 0.013767794705927372, -0.03030560538172722, -0.006619923282414675, 0.017086327075958252, -0.020871099084615707, 0.023613687604665756, 0.012938162311911583, -0.02708306349813938, 0.01943124085664749, 0.017511429265141487, 0.019623221829533577, 0.0029431404545903206, 0.013623809441924095, 0.010888077318668365, 0.035187412053346634, -0.010277850553393364, 0.03321274742484093, -0.01873188093304634, 0.01771712303161621, 0.03159462288022041, 0.01764855720102787, -0.009242523461580276, 0.0323076955974102, 0.00878314021974802, 0.028769755735993385, -0.015358496457338333, -0.0015855591045692563, 0.0290440134704113, -0.011484590359032154, 0.000608083326369524, 0.010469832457602024, -0.019774064421653748, 0.025794045999646187, -0.035790782421827316, -0.016208698973059654, 0.009455074556171894, 0.03269165754318237, 0.011299464851617813, 0.0005485177389346063, 0.006667918525636196, 0.01011329609900713, -0.012766750529408455, 0.021803580224514008, 0.00270316400565207, 0.004206445533782244, -0.011875408701598644, 0.004597264342010021, -0.0152213666588068, 0.020404860377311707, -0.006873612757772207, 0.005636019632220268, -0.0014887114521116018, 0.007075878791511059, -0.00396304065361619, 0.006211963482201099, 0.014617997221648693, -0.028221236541867256, 0.021131645888090134, -0.007932937704026699, -0.030360456556081772, 0.03436463698744774, 0.030003920197486877, -0.021529320627450943, -0.01471398863941431, -0.021063080057501793, -0.005282911472022533, -0.03068956732749939, 0.010846938006579876, 0.009811610914766788, 0.01874559372663498, -0.01479626540094614, -0.0014038626104593277, 0.0036544993054121733, -0.001615556189790368, 0.033761266618967056, -0.013095861300826073, 0.017278308048844337, -0.00653764558956027, 0.02654825896024704, -0.011662858538329601, -0.022393235936760902, -0.013630665838718414, 0.04130338504910469, -0.007672391831874847, -0.01881415769457817, -0.012746180407702923, -0.00230206036940217, -0.022914327681064606, 0.0008112062932923436, -0.0033031052444130182, -0.025039834901690483, 0.014700274914503098, -6.727912841597572e-05, 0.015372209250926971, 0.012698185630142689, -0.0021700733341276646, 0.004562981892377138, -0.0008390606963075697, -0.021666450425982475, -0.012506204657256603, -0.015317358076572418, 0.03005877137184143, 0.09023116528987885, -0.00025947458925656974, -0.027508163824677467, 0.022502940148115158, -0.007823234423995018, -0.008323756977915764, -0.022310959175229073, -0.015317358076572418, 0.013431827537715435, 0.015824737027287483, -0.007391276303678751, 0.0071992953307926655, -0.0002481185656506568, -0.005108071491122246, 0.001995233353227377, 0.010723521932959557, 0.016194986179471016, -0.018773019313812256, 0.0010713236406445503, -0.00920824147760868, 0.024175919592380524, 0.004374429117888212, -0.00038674785173498094, 0.024409038946032524, 0.0299216415733099, 0.014741414226591587, 0.017511429265141487, 0.058197733014822006, -0.01120347436517477, -0.03107352927327156, -0.004227014724165201, 0.01136802975088358, -0.013438684865832329, 0.019582083448767662, -0.010901790112257004, 0.024107353761792183, -0.006414229050278664, 0.015728745609521866, 0.013925493694841862, 0.02124135009944439, 0.024066215381026268, 0.01483740471303463, 0.028138959780335426, -0.025794045999646187, 0.012993013486266136, -0.00850888155400753, -0.0029157146345824003, -0.0011030348250642419, 0.019033566117286682, -0.014042054302990437, 0.018101084977388382, 0.003987038042396307, -0.03260938078165054, 0.009983022697269917, -0.019540945068001747, 0.01781311258673668, 0.0013712943764403462, 0.004316148813813925, -0.010682382620871067, -0.029949069023132324, -0.018443908542394638, -0.031896304339170456, 0.020350007340312004, -0.0172645952552557, -0.019705500453710556, -0.01999347098171711, -0.03258195146918297, -0.015440774150192738, -0.01354153174906969, 0.01616756059229374, 0.007082735188305378, -0.019074704498052597, -0.03381611779332161, -0.015248793177306652, 0.026356276124715805, 0.00208950974047184, 0.041111402213573456, 0.021378478035330772, 0.016030430793762207, 0.04015149921178818, 0.005423469003289938, -0.001559847267344594, -0.003061414696276188, -0.028687477111816406, -0.001480997889302671, -0.01943124085664749, -0.03458404168486595, 0.0020569413900375366, -0.0032773935236036777, -0.014905969612300396, 0.00040903137414716184, -0.008570589125156403, -0.001487854402512312, -0.005262341815978289, 0.004840669222176075, 0.007665535435080528, -0.0008339183405041695, 0.020267730578780174, 0.016592660918831825, 0.0045595536939799786, -0.004847525618970394, -0.01989748142659664, -0.025492360815405846, -0.03225284442305565, 0.023161161690950394, 0.008837992325425148, 0.007487267255783081, -5.139675340615213e-05, -0.005330906715244055, -0.006825617514550686, 0.003147120587527752, -0.00791922491043806, 0.003273965325206518, 0.0010550395818427205, 0.0023637686390429735, 0.010613817721605301, 0.0019232402555644512, 0.025245528668165207, 0.013013583607971668, 0.01585216261446476, 0.014590571634471416, -0.036723263561725616, 0.009969309903681278, -0.029153717681765556, -0.010284707881510258, 0.008275761269032955, 0.01585216261446476, -0.01781311258673668, -0.0025231814943253994, 0.018910149112343788, -0.009228810667991638, 0.011498303152620792, -0.0027271616272628307, -0.0028300087433308363, -0.027659006416797638, -0.02247551456093788, -0.008166057989001274, 0.002410049783065915, -0.03195115923881531, -0.02202298678457737, 0.005166351329535246, 0.01974663883447647, 0.014000914990901947, -0.021131645888090134, 0.017689697444438934, -0.029784513637423515, -0.015715032815933228, -0.0056771584786474705, 0.01007215678691864, 0.025794045999646187, -0.03077184408903122, 0.009304231964051723, -0.03241739794611931, -0.01424774806946516, 0.0062702433206140995, -0.013747225515544415, 0.007295285817235708, 0.000815491599496454, 0.0285777747631073, 0.03444691374897957, 0.009729333221912384, -0.023476559668779373, 0.018197076395154, -0.0195957962423563, 0.028605200350284576, -0.0138226468116045, -0.012026251293718815, -0.012403356842696667, -0.00648279394954443, 0.012471921741962433, -0.0109360720962286, -0.0014150043716654181, 0.021337339654564857, 0.0020089461468160152, 0.0013961490476503968, 0.014083192683756351, -0.016510384157299995, -0.015097950585186481, -0.023462846875190735, -0.02772757224738598, -0.0007782095344737172, -0.004556125495582819, -0.005207490175962448, 0.023860521614551544, -0.0323076955974102, 0.007535262499004602, 0.017854252830147743, 0.015811024233698845, 0.011107483878731728, 0.0013010154943913221, 0.018334204331040382, -0.016592660918831825, 0.005461179651319981, -0.005588024388998747, -0.02061055414378643, -0.02732989564538002, 0.015289931558072567, -0.049558576196432114, -0.018018808215856552, 0.01631840318441391, -0.004641831386834383, 0.0028677191585302353, 0.010120152495801449, 0.0013104431563988328, -0.005327478516846895, 0.0009521925239823759, -0.013130143284797668, -0.016880633309483528, -0.00270487810485065, -0.019088417291641235, 0.024655872955918312, -0.007795808371156454, -0.020432285964488983, -0.0012333078775554895, -0.0013001584447920322, -0.0004910947754979134, 0.0005300909397192299, 0.0028728616889566183, -0.009173959493637085, -0.021666450425982475, 0.005639447830617428, -0.011347460560500622, 0.02748073823750019, -0.007003885693848133, 0.0285777747631073, 0.02162531204521656, 0.009221954271197319, -0.02177615463733673, -0.01757999323308468, -0.005097786895930767, -0.0033082475420087576, 0.012862741015851498, 0.04591093584895134, -0.017292020842432976, -0.031430065631866455, 0.009153389371931553, 0.015975579619407654, -0.010462976060807705, -0.016057856380939484, 0.025341520085930824, -0.02749445103108883, -0.018773019313812256, -0.014508293941617012, -0.021666450425982475, -0.011429738253355026, 0.030168475583195686, -0.019623221829533577, -0.010024162009358406, 0.0034745170269161463, -0.02601345255970955, 0.0013430113904178143, 0.036723263561725616, 0.0009221954387612641, 0.035955335944890976, -0.005090930033475161, -0.011621719226241112, -0.020788822323083878, 0.009653911925852299, -0.01120347436517477, -0.02069283090531826, -0.005718297325074673, 0.01631840318441391, -0.010483545251190662, 0.018334204331040382, 0.028522921726107597, 0.027892127633094788, -0.010195573791861534, 0.0020089461468160152, 0.01943124085664749, 0.01826564036309719, 0.005385758355259895, -0.008707718923687935, 0.015824737027287483, -0.008454029448330402, 0.009317944757640362, -0.010277850553393364, -0.002884860383346677, -0.011073201894760132, -0.010373841971158981, -0.010147578082978725, 0.014755127020180225, -0.0011253184638917446, -0.007891799323260784, 0.025670628994703293, 0.008947695605456829, -0.002495755674317479, 0.013164425268769264, 0.0006989315734244883, -0.018635889515280724, -0.03762831538915634, -0.01716860570013523, -0.00043174345046281815, -0.003327102866023779, 0.003527654567733407, 0.0011107483878731728, 0.0030374168418347836, -0.000658221251796931, 0.012211375869810581, -0.019170694053173065, -0.005286339670419693, -0.012211375869810581, 0.017470289021730423, -0.02732989564538002, 0.013555244542658329, -0.0028934311121702194, -0.021981848403811455, -0.0023517697118222713, -0.004991511348634958, -0.028166385367512703, 0.019321536645293236, -0.00014141472638584673, -0.010524683631956577, 0.026822516694664955, -0.01648295857012272, 0.026726527139544487, 0.003412808757275343, 0.011477733962237835, 0.007576401345431805, -0.014165470376610756, 0.020500849932432175, 0.011690284125506878, -0.0121016725897789, 0.023517698049545288, -0.016688652336597443, 0.0026157440152019262, -0.008028928190469742, 0.007041596341878176, -0.009077968075871468, -0.018197076395154, -0.018539899960160255, 0.00021062223822809756, 0.010949784889817238, 0.003928758203983307, -0.009187672287225723, -0.011991969309747219, -0.002360340440645814, -0.0019369532819837332, 0.010462976060807705, -0.002809439320117235, -0.002353483811020851, 0.019307823851704597, -0.003791628871113062, 0.037216927856206894, 0.005550313740968704, -0.012814745306968689, -0.0437442883849144, -0.032444823533296585, -0.023558836430311203, -0.02708306349813938, 0.013479823246598244, -0.00561887864023447, 0.022118978202342987, 0.022050412371754646, -0.03614731878042221, -0.025890037417411804, -0.01919812150299549, -0.05241087079048157, -0.020089462399482727, -0.0086597241461277, 0.003973325248807669, 0.008591159246861935, 0.010997780598700047, -0.007788951974362135, 0.009215097874403, -0.02107679471373558, 0.002790583996102214, -0.03238997235894203, -0.00696960324421525, -0.003270536893978715, -0.007075878791511059, -0.000707930710632354, -0.001308729057200253, -0.031512342393398285, 0.003231112379580736, 0.020432285964488983, -0.005821144208312035, 0.010360128246247768, 0.01670236513018608, -0.015084237791597843, -0.011991969309747219, 0.017525142058730125, 0.004754962865263224, 0.035653650760650635, -0.0077409567311406136, 0.030333030968904495, -0.021063080057501793, 0.00835118256509304, -0.002204355550929904, 0.0001838391472119838, -0.02328457683324814, 0.012033107690513134, 0.00503950659185648, 0.02578033320605755, 0.032362546771764755, -0.0038259110879153013, 0.0014355737948790193, -0.014494581148028374, 0.034172654151916504, 0.0154270613566041, -0.009304231964051723, 0.006818761117756367, 0.011278895661234856, 0.006434798706322908, -0.026603110134601593, -0.006997029297053814, 0.02967480942606926, -0.018485046923160553, -0.024559881538152695, 0.008824278600513935, -0.03817683458328247, 0.020103175193071365, -0.015591616742312908, 0.0053069088608026505, 0.014659136533737183, 0.008419747464358807, -0.016140135005116463, 0.0019043850479647517, -0.00411731144413352, -0.007075878791511059, -0.011745136231184006, -0.01428888738155365, -0.016674939543008804, 0.0029637098778039217, -0.0009616201277822256, -0.009701907634735107, -0.019019851461052895, 0.007459841202944517, 0.0005138068227097392, -0.009537352249026299, 0.015207653865218163, 0.0119851129129529, -0.028522921726107597, 0.024258196353912354, 0.009962453506886959, 0.011299464851617813, -0.006575356237590313, 0.21973620355129242, -0.019184406846761703, 0.0001959451037691906, 0.003990466706454754, 0.00023033459729049355, 0.02373710460960865, 0.0071375868283212185, 0.02092595212161541, 0.029235994443297386, -0.01568760722875595, 0.020336294546723366, 0.022612644359469414, -0.040343478322029114, -0.007871229201555252, 0.01788167841732502, -0.02724761888384819, -0.022064125165343285, -0.018759306520223618, -0.01238278765231371, -0.0008622013265267015, 0.0042407275177538395, 0.004504702053964138, 0.006225676275789738, -0.02661682292819023, 0.003032274544239044, 0.003771059447899461, -0.025190677493810654, 0.008227765560150146, 0.0423455685377121, 0.015399635769426823, -0.021981848403811455, 0.020267730578780174, -0.011107483878731728, 0.009187672287225723, 0.012773606926202774, -0.008460885845124722, 0.009592203423380852, -0.0054783206433057785, 0.005046362988650799, 0.03694266825914383, 0.03581820800900459, -0.010243568569421768, -0.014672849327325821, -0.016990337520837784, 0.012698185630142689, 0.02100822888314724, -0.01312328688800335, 0.009962453506886959, 0.003196829929947853, 0.011957686394453049, -0.01812851056456566, 0.025588352233171463, 0.03491315245628357, 0.018567325547337532, -0.019335249438881874, 0.019623221829533577, -0.015056812204420567, 0.020089462399482727, 0.01035327184945345, 0.003791628871113062, -0.04004179313778877, 0.0073707071132957935, 0.017429150640964508, 0.0038601935375481844, -0.013308411464095116, -0.0049469443038105965, -0.017278308048844337, 0.0064690811559557915, -0.008412891067564487, 0.0032431110739707947, 0.014768839813768864, -0.0051697795279324055, -0.019554657861590385, 0.005132068879902363, -0.012746180407702923, -0.02756301686167717, 0.0327739343047142, 0.01441230345517397, 0.015660181641578674, 0.035790782421827316, 0.0077066742815077305, 0.012979300692677498, -0.023257151246070862, -0.021570459008216858, -0.014330025762319565, -0.017854252830147743, 0.011121196672320366, -0.011724566109478474, 0.003081984119489789, -0.012423926964402199, -0.003153976984322071, -0.009153389371931553, -0.017909104004502296, 0.0028917170129716396, 0.0037539182230830193, 0.02288690209388733, 0.009235667064785957, 0.02015802636742592, -0.022832050919532776, 0.009105394594371319, -0.02366854064166546, 0.08337469398975372, 0.043524883687496185, 0.009571634232997894, -0.007946650497615337, -0.005725153721868992, -0.0075078364461660385, 0.012883310206234455, 0.009592203423380852, -0.002248922595754266, 0.019582083448767662, -0.026123156771063805, 0.015358496457338333, -0.01694919727742672, -0.028797181323170662, 0.026918508112430573, -0.0055914525873959064, -0.018169650807976723, 0.02726133167743683, -0.013767794705927372, 0.015015672892332077, -0.011409169062972069, 0.022160116583108902, 0.02819381095468998, -0.029455402866005898, 0.021844718605279922, 0.0030716992914676666, 0.0015761314425617456, -0.024971269071102142, -0.004425852559506893, 0.008255192078649998, 0.010723521932959557, 0.016373254358768463, -0.039849814027547836, -0.009276806376874447, -0.015029385685920715, 0.004203017335385084, -0.0009881890146061778, -0.021844718605279922, 0.00251803919672966, 0.007939794100821018, 0.01670236513018608, -0.028550347313284874, 0.012821601703763008, 0.004213301930576563, -0.015056812204420567, 0.026301424950361252, 0.007247290574014187, 0.0054783206433057785, 0.015331070870161057, -0.00082963309250772, -0.010682382620871067, -0.004268153570592403, -0.008378608152270317, 0.005769720766693354, -0.003633929882198572, -0.032060861587524414, -0.015084237791597843, 0.010401267558336258, 0.00847459863871336, -0.04739193245768547, -0.00015523479669354856, 0.02162531204521656, -0.023476559668779373, -0.018608463928103447, -0.005241772625595331, -0.17585478723049164, 0.010668669827282429, 0.003399095730856061, -0.0016815497074276209, 0.014919682405889034, -0.02162531204521656, 0.003496800549328327, 0.014659136533737183, -0.016455531120300293, -0.0014132902724668384, 0.029153717681765556, 0.0018409626791253686, -0.024738149717450142, -0.017538854852318764, -0.00890655629336834, 0.009434505365788937, 0.016263550147414207, -0.006575356237590313, 0.005605165380984545, -0.0012967302463948727, 0.017223456874489784, 0.0020055179484188557, 0.010634387843310833, -0.01960950903594494, 0.000433029024861753, -0.02458730712532997, -0.012814745306968689, -0.00906425528228283, -0.009585347026586533, -0.023298291489481926, 0.012430783361196518, -0.01888272352516651, 0.013054721988737583, -0.012753037735819817, -0.0028008685912936926, 0.015413348563015461, -0.011141766794025898, -0.03461146727204323, -0.018087372183799744, 0.033157896250486374, 0.009119107387959957, 0.012231945060193539, 0.0038704783655703068, 0.024313049390912056, 0.0058485702611505985, 0.01655152253806591, 0.014892256818711758, -0.00017794687300920486, 0.008865417912602425, -0.01241707056760788, 0.028550347313284874, -0.03260938078165054, 0.017442863434553146, 0.011224044486880302, 0.019650647416710854, 0.03537939488887787, -0.0027151627000421286, 0.0035379393957555294, 0.006187965627759695, -0.008947695605456829, 0.005276055075228214, -0.008837992325425148, -0.00014891399769112468, -0.02726133167743683, -0.010092725977301598, -0.03153976798057556, -0.0015898443525657058, 0.03718950226902962, -0.00124444963876158, 0.01943124085664749, 0.008447173051536083, -0.019705500453710556, -0.010949784889817238, -0.0036305016838014126, 0.0019300967687740922, 0.002440903801470995, 2.7211621272726916e-05, 0.023983938619494438, 0.002797440392896533, 0.016208698973059654, -0.0056531610898673534, 0.007850660011172295, -0.012033107690513134, 0.01804623380303383, -0.039548128843307495, -0.009893888607621193, 0.01804623380303383, 0.02451874315738678, 0.0019832344260066748, 0.004350431263446808, 0.01323984656482935, -0.03167689964175224, 0.011854839511215687, -0.0058142878115177155, 0.011525728739798069, 0.0035996476653963327, 0.02185843139886856, 0.015605329535901546, -0.0013901495840400457, 0.0031814028043299913, 0.009331657551229, -0.011381742544472218, -0.007302142214030027, 0.025588352233171463, 0.04442993551492691, -0.0036167888902127743, 0.0069147516041994095, -0.012643333524465561, 0.0109360720962286, -0.008872274309396744, -0.005097786895930767, 0.026109443977475166, 0.022036699578166008, 0.012979300692677498, -0.009263093583285809, 0.02483414113521576, -0.01065495703369379, -0.013219277374446392, 0.0009916172130033374, -0.014823691919445992, 0.056031085550785065, -0.014508293941617012, -0.01858103834092617, -0.0028025826904922724, -0.017154892906546593, -0.02085738629102707, -0.11507902294397354, -0.03249967470765114, 0.01648295857012272, 0.022612644359469414, -5.051291373092681e-05, 0.023312004283070564, 0.002530038123950362, 0.0034282358828932047, -0.00045124153257347643, 0.0337064154446125, 0.013637522235512733, 0.006702200975269079, 0.008776283822953701, 0.0028248662129044533, 0.03302076831459999, -0.009201385080814362, -0.00460412073880434, -0.00975675880908966, -0.027275044471025467, 0.008460885845124722, -0.01166971493512392, -0.02591746300458908, 0.012012538500130177, -0.012567912228405476, 9.963310731109232e-05, -0.0068016196601092815, -0.031100954860448837, 0.007110161241143942, 0.014398590661585331, 0.008399177342653275, 0.01592072658240795, -0.022434376180171967, 0.03285621106624603, -0.021227635443210602, -0.002240352099761367, -0.009235667064785957, -0.03326760232448578, -0.017854252830147743, -0.005125212483108044, -0.02109050750732422, 0.02006203681230545, -0.006647349335253239, 0.015166515484452248, -0.037738021463155746, -0.01178627461194992, -0.011916548013687134, 0.005481749307364225, -0.0005609450745396316, 0.011477733962237835, -0.005917135160416365, -0.01413804478943348, -0.015056812204420567, -0.0068907542154192924, -0.0160989947617054, 0.005399471614509821, 0.0028437215369194746, 0.0026997358072549105, 0.005156066734343767, -0.04176962375640869, -0.00893398281186819, 0.013020440004765987, -0.01583844982087612, -0.032911062240600586, 0.011498303152620792, 0.004885236267000437, 0.007761525921523571, -0.02942797727882862, -0.003884191159158945, 0.004535555839538574, -0.0057114409282803535, 0.010901790112257004, 0.012334792874753475, -0.007747813127934933, 0.020199164748191833, -0.01974663883447647, 0.017058901488780975, -0.02514953725039959, -0.029784513637423515, 0.01284902822226286, -0.008591159246861935, -0.019705500453710556, -0.01849875971674919, 0.011957686394453049, -0.007089591585099697, 0.021282488480210304, 0.0001882315700640902, -0.015070524998009205, 0.018690742552280426, 0.021680163219571114, -0.02381938323378563, 0.02358626201748848, 0.003140263957902789, 0.014275173656642437, 0.006102259736508131, -0.006781050469726324, 0.004686398431658745, -0.020034609362483025, -0.02796069160103798, 0.017058901488780975, 0.004566410090774298, -0.003147120587527752, 0.009180815890431404, -0.0699908658862114, 0.00316426157951355, 0.007261003367602825, 0.025012409314513206, 0.01269132923334837, -0.009077968075871468, 0.019636934623122215, -0.030470160767436028, 0.009941884316504002, -0.001796395517885685, -0.023942798376083374, 0.009311088360846043, 0.004004179500043392, 0.0031385498587042093, -0.032444823533296585, -0.01773083582520485, 0.05084759369492531, -0.00889969989657402, 0.008001502603292465, 0.012074247002601624, -0.00675705261528492, -0.03099125251173973, 0.008138631470501423, 0.000600798346567899, -0.011470876634120941, 0.008378608152270317, -0.0017792544094845653, -0.0054680360481143, -0.0019352391827851534, -0.0022506369277834892, 0.008646010421216488, -0.009989879094064236, 0.0003443234309088439, 0.027864700183272362, -0.026849942281842232, -0.038451094180345535, 0.0012573054991662502, 0.023641115054488182, -0.0059102787636220455, 0.00728157302364707, 0.011066345497965813, -0.010147578082978725, 0.022845763713121414, -0.02959253080189228, 0.013308411464095116, -0.015029385685920715, -0.002247208496555686, 0.007439271546900272, 0.0018289638683199883, -0.020418573170900345, 0.020637979730963707, -0.007617540191859007, -0.03318532183766365, -0.03584563359618187, -0.005327478516846895, -0.003705922979861498, 0.017785686999559402, -0.011374886147677898, 0.013788364827632904, -0.023929085582494736, 0.04379913955926895, -0.0022866332437843084, 0.005114927887916565, 0.011553154326975346, 0.016962910071015358, -0.006808476522564888, -0.014220322482287884, 0.010270994156599045, -0.0035687934141606092, 0.015550477430224419, -0.006369662005454302, -0.0006269386503845453, 0.004641831386834383, -0.00611254433169961, 0.009180815890431404, -0.03428235650062561, 0.024093640968203545, -0.012081103399395943, -0.039246443659067154, 0.011059489101171494, -0.01685320772230625, -0.002283205045387149, -0.018101084977388382, 0.02601345255970955, 0.01194397360086441, 0.00552288768813014, -0.016030430793762207, -0.00937279686331749, 0.009880175814032555, 0.006873612757772207, -0.0016078426269814372, 0.014179183170199394, 0.009866463020443916, -0.001774111995473504, -0.006301097571849823, 0.002809439320117235, 0.0008746286621317267, 0.015632756054401398, 0.00032718226430006325, 0.010490401647984982, 0.013404401950538158, 0.013562100939452648, 0.006304525770246983, 0.0022437802981585264, -0.014864830300211906, 0.039246443659067154, -0.021035654470324516, -0.008481455035507679, 0.012869597412645817, 0.02054198831319809, 0.02350398525595665, -0.013747225515544415, 0.013226133771240711, 0.007288429420441389, -0.03145749121904373, 0.008028928190469742, 0.00589313730597496, -0.016112707555294037, -0.02451874315738678, 0.04325062409043312, 0.021831005811691284, 0.020733971148729324, 0.02530037984251976, -0.014330025762319565, 0.016345828771591187, -0.025506075471639633, 0.004000751301646233, -0.03178660199046135, 0.005416612606495619, -0.016222411766648293, -0.012938162311911583, -0.00211864965967834, 0.0014621425652876496, 0.015331070870161057, -0.02606830559670925, -0.007017598953098059, 0.00878314021974802, 0.00187353091314435, 0.002756301546469331, 0.06993600726127625, 0.03156719729304314, -0.010744091123342514, 0.01593443937599659, -0.01943124085664749, 0.020596841350197792, 0.0009307660511694849, 0.0036167888902127743, -0.015523051843047142, -0.016647513955831528, 0.016414392739534378, 0.014083192683756351, 0.011916548013687134, -0.019417528063058853, -0.011813701130449772, 0.002240352099761367, -0.007411845959722996, 0.019348962232470512, -0.04091942310333252, -0.014467155560851097, 0.008522594347596169, -0.013898068107664585, 0.004312720615416765, -0.011772561818361282, -0.014398590661585331, 0.004617833532392979, 0.0013644378632307053, -0.0039664688520133495, -0.005749151576310396, -0.023243438452482224, 0.036202169954776764, 0.002975708805024624, -0.028166385367512703, -0.007384419906884432, -0.01795024238526821, -0.018224501982331276, -0.01007901318371296, -0.00948250014334917, 0.006369662005454302, 0.017154892906546593, 0.033377304673194885, 0.006006269250065088, -0.022832050919532776, -0.03472117334604263, -0.013843216001987457, -0.0064073726534843445, -0.03260938078165054, -0.0035087994765490294, 0.002452902728691697]" +24,"We've expanded our geographies we serve by nearly 4x over the past year. We are seeing record daily usage of Edge, Start, and Bing driven by Windows. Edge is the fastest-growing browser on Windows and continues to gain share as people use built-in coupon price comparison features to save money. We surface more than $2 billion in savings to date.","[-0.005704060196876526, -0.006287779193371534, 0.01592084765434265, -0.020467711612582207, -0.008929875679314137, 0.007475698366761208, -0.039679232984781265, 0.002283672336488962, -0.0009071538224816322, -0.03236055746674538, 0.00125619035679847, 0.022215453907847404, -0.005881565622985363, 0.004423975013196468, -0.009469217620790005, 0.033562131226062775, 0.00798090547323227, -0.018160143867135048, -0.003812947543337941, -0.004441042896360159, -0.03342558816075325, -0.008206200785934925, 0.013176345266401768, -0.01462369505316019, -0.02946585789322853, 0.0015045269392430782, 0.03115898370742798, -0.008363224565982819, 0.008178891614079475, -0.010561557486653328, 0.0034954864531755447, -0.013189999386668205, -0.033343661576509476, 0.0023894926998764277, -0.015565837733447552, 0.0326063334941864, -0.019402680918574333, 0.008294953033328056, 0.020795412361621857, 0.008513420820236206, 0.016043735668063164, -0.004410320892930031, 0.0044820052571594715, 0.01641240157186985, -0.028482751920819283, 0.013572318479418755, -0.0046253749169409275, -0.011763131245970726, -0.017805133014917374, 0.008042349480092525, 0.0016555769834667444, 0.0346817784011364, -0.02995740994811058, -0.008984492160379887, -0.007195786572992802, -0.019074978306889534, -0.013674724847078323, 0.010998493060469627, 0.00983105506747961, -0.016057390719652176, -0.004577585030347109, 0.018965743482112885, -0.03320712223649025, -0.0035603439901024103, -0.02995740994811058, -0.006830535363405943, -0.02599767968058586, -0.004690232686698437, 0.010315781459212303, -0.004584412090480328, 0.0250555370002985, 0.0032258150167763233, -0.004645856563001871, -0.005130582023411989, -0.00020054669585078955, -0.007632722146809101, -0.019853269681334496, -0.012043043039739132, 0.02754060924053192, 0.01448715291917324, 0.010254336521029472, -0.012834988534450531, -0.0159754641354084, 0.007769264746457338, 0.03006664477288723, 0.025205733254551888, -0.01735454425215721, 0.01299883984029293, -0.028428135439753532, 0.014391573145985603, 0.03530987352132797, -0.005714301019906998, 0.023417027667164803, 0.023034708574414253, -0.008663618005812168, 0.005686992313712835, -0.002331461990252137, 0.013702033087611198, -0.019921541213989258, -0.014255030080676079, 0.007257230579853058, 0.010834642685949802, -0.01768224500119686, -0.011926981620490551, -0.02973894216120243, 0.017368197441101074, 0.006253643427044153, -0.02098657190799713, 0.02763618901371956, -0.014418881386518478, -0.017764171585440636, 0.0021420095581561327, 0.032251324504613876, 0.021682938560843468, 0.0055777584202587605, -0.009967598132789135, -0.007236748933792114, -0.018638042733073235, -0.00015243682719301432, 0.0010180945973843336, 0.009039109572768211, 0.020495019853115082, 0.030367037281394005, 0.0010710047790780663, -0.018965743482112885, 0.012923741713166237, 0.00328384549356997, -0.0252193883061409, 0.04718906432390213, -0.016385091468691826, 0.034545235335826874, -0.009455563500523567, 0.003092686180025339, 0.004379598423838615, -0.03839573264122009, 0.0345725454390049, -0.028591986745595932, 0.0004578438529279083, -0.009093726053833961, -0.013333369046449661, -0.016603561118245125, 0.011155516840517521, 0.013592799194157124, -0.007905807346105576, 0.02153274230659008, 0.047216374427080154, 0.010841469280421734, 0.006878325249999762, 0.018638042733073235, -0.004297673236578703, 0.006973905023187399, -0.02973894216120243, 0.01007683202624321, 0.008329088799655437, 0.02362184226512909, -0.0037583305966109037, -0.005594826303422451, 0.008998146280646324, 0.004263537470251322, -0.015251790173351765, 0.013292405754327774, 0.020085392519831657, 0.022870857268571854, -0.028455443680286407, -0.0019423161866143346, 0.021068498492240906, 0.012281992472708225, 0.00607272470369935, -0.013401639647781849, -0.026134222745895386, 0.003833428956568241, 0.006857844069600105, -0.019921541213989258, 0.003015881171450019, 0.02405877783894539, 0.008438322693109512, -0.005000866949558258, 0.020003467798233032, -0.001090632751584053, -0.006028348580002785, 0.0030141742900013924, -0.02450936660170555, 0.01082098763436079, -0.0028554436285048723, -0.020467711612582207, -0.033398278057575226, 0.027950236573815346, -0.00695001007989049, 0.010302126407623291, -0.010554729960858822, -0.008315434679389, 0.009653550572693348, 0.0087523702532053, -0.01590719446539879, -0.6475388407707214, -0.004301086533814669, -0.00016683779540471733, -0.012357090599834919, 0.003253123490139842, -0.003915354143828154, 0.025192080065608025, 0.005567518062889576, -0.008165237493813038, 0.012404880486428738, -0.0012578972382470965, 0.005093032959848642, 0.0053695314563810825, 0.00733915576711297, 0.0011947463499382138, -0.00135603710077703, 0.010247509926557541, 0.009988078847527504, -0.0019747449550777674, -0.004372771363705397, -0.00039213281706906855, 0.007939943112432957, -0.006079551763832569, 0.002515794476494193, -0.011899673379957676, 0.012637002393603325, -0.006086379289627075, -0.017149729654192924, -0.026079604402184486, 0.02550612762570381, -0.011305714026093483, 0.010575211606919765, 0.013585972599685192, 0.010896086692810059, 0.057402439415454865, -0.016043735668063164, -0.02659846656024456, 0.015265444293618202, -0.002007173839956522, 0.03148668631911278, -0.030257804319262505, 0.007147996686398983, 0.008103793486952782, -0.014309647493064404, -0.001021508127450943, -0.0017545702867209911, 0.020467711612582207, -0.0022990333382040262, 0.008697752840816975, 0.01183822937309742, 0.009851536713540554, -0.008813814260065556, -0.006956837140023708, -0.02285720407962799, 0.017968984320759773, 0.02296643704175949, 0.028946995735168457, -0.03189631178975105, 0.0032343489583581686, -0.011810921132564545, -0.01393415592610836, 0.01904767006635666, -0.02202429436147213, -0.040553104132413864, -0.03200554847717285, 0.02044040337204933, -0.01784609630703926, -0.00789897982031107, 0.03200554847717285, 0.0022939129266887903, 0.02267969772219658, 0.01623489521443844, 0.006001039873808622, -0.001340676099061966, 0.021191386505961418, 0.026243455708026886, 0.04617865011096001, -0.022666044533252716, -0.028400827199220657, 0.005038416013121605, 0.011428602039813995, -0.02169659361243248, 0.009011800400912762, -0.023048363626003265, 0.018474191427230835, -0.025533435866236687, -0.025205733254551888, -0.03252440690994263, -0.0008435762138105929, 0.012234202586114407, 0.007066071033477783, -0.0036115474067628384, -0.013579145073890686, -0.025956716388463974, 0.022556809708476067, 0.029766250401735306, 0.002923714928328991, 0.014951396733522415, 0.0247824527323246, -0.005140822846442461, -0.0053695314563810825, -0.021218694746494293, 0.029711633920669556, 0.015606800094246864, 0.015033322386443615, 0.027950236573815346, 0.010991666465997696, 0.01899305358529091, 0.013094419613480568, -0.01713607646524906, 0.011189652606844902, -0.02031751535832882, -0.015934502705931664, -0.004864324349910021, -0.023212214931845665, -0.028018508106470108, -0.014883125200867653, -0.033289045095443726, -0.019730381667613983, -0.014241375960409641, 0.0019030602416023612, 0.003696886356920004, -0.002300739986822009, -0.028482751920819283, 0.006465284153819084, -0.008725062012672424, -0.0014217480784282088, 0.008001387119293213, -0.006970491260290146, -0.005335395690053701, 0.009045936167240143, -0.019757689908146858, 0.015333715826272964, -0.004355703946202993, 0.03331635519862175, 0.04762599989771843, 0.0002385225670877844, -0.02968432568013668, 0.008438322693109512, -0.02169659361243248, -0.03135014325380325, 0.014569077640771866, 0.007864844053983688, -0.011981599032878876, -0.0037139542400836945, -0.011018974706530571, 0.007147996686398983, 0.023526262491941452, -0.02902892231941223, -0.0037856390699744225, 0.0024901926517486572, -0.013667898252606392, -0.018583426252007484, 0.006018107756972313, 0.009298539720475674, 0.0024543502368032932, -0.0012220548233017325, -0.023580878973007202, -0.018214760348200798, -0.01911594159901142, -0.016330474987626076, 0.007257230579853058, -0.00785118993371725, -0.012978358194231987, 0.003263364313170314, 0.0010206546867266297, -0.01740916073322296, 0.011585625819861889, 0.004997453186661005, -0.013838576152920723, 0.024536676704883575, 0.004495659843087196, 0.012179585173726082, 0.0041713714599609375, 0.016876645386219025, 0.010404533706605434, -0.027212906628847122, -0.008909394033253193, 0.02467321790754795, -0.002027655253186822, 0.01745012402534485, 0.016781065613031387, 0.0009575038566254079, -0.004819948226213455, 0.03547372668981552, 0.013292405754327774, 0.0016760583966970444, 0.028236975893378258, -0.012118141166865826, -0.014951396733522415, 0.013579145073890686, 0.024318207055330276, -0.03039434552192688, -0.01712242141366005, 0.01811918057501316, -0.014295993372797966, -0.012787199579179287, 0.013531355187296867, 0.018132835626602173, -0.0009976131841540337, 0.02560170739889145, 0.03364405781030655, 0.016494326293468475, 0.0066325487568974495, 0.017313580960035324, -0.0158662311732769, 0.0025038470048457384, -0.022215453907847404, 0.00012811520718969405, 0.006693992763757706, 0.007864844053983688, -0.03375329077243805, -0.019976157695055008, -0.0317324623465538, 0.016985878348350525, 0.028837762773036957, -0.014214067719876766, -0.002068617846816778, -0.017368197441101074, 0.00019318620616104454, -0.007912633940577507, -0.003184852423146367, -0.00047021801583468914, -0.015620455145835876, -0.023867618292570114, 0.031186291947960854, 0.00031596774351783097, 0.026079604402184486, 0.018651695922017097, -0.03591066226363182, -0.004959904123097658, 0.020467711612582207, 0.021068498492240906, 0.0049394224770367146, 0.0029680912848562002, 0.005178371910005808, 0.03855958580970764, -0.022174492478370667, 0.01768224500119686, -0.0049803853034973145, -0.002203453565016389, 0.01536102406680584, 0.03236055746674538, -0.004208920523524284, -0.0012502167373895645, 0.014801200479269028, 0.035828735679388046, -0.01635778322815895, -0.008294953033328056, 0.009018627926707268, 0.005803053732961416, -0.00034690313623286784, 0.004942836239933968, 0.007072898093611002, 0.010916567407548428, -0.02935662306845188, 0.014746583066880703, 0.02770446054637432, 0.010670791380107403, 0.02792292833328247, -4.032268770970404e-05, -0.003253123490139842, 0.013824922032654285, -0.016166623681783676, 0.00330432690680027, -0.012869124300777912, -0.015087938867509365, 0.010855123400688171, -0.006192199420183897, 0.009435082785785198, -0.004577585030347109, -0.012773544527590275, 0.023853963240981102, -0.009551143273711205, -0.009414601139724255, 0.009155170060694218, 0.006001039873808622, 0.006007867399603128, -0.018624387681484222, 0.029820868745446205, -0.003212160896509886, -0.022447576746344566, -0.008643136359751225, -0.0002799119974952191, -0.0171770378947258, 0.0019064737716689706, -0.0032565370202064514, -0.010302126407623291, -0.009872018359601498, 0.020604252815246582, -0.0037549170665442944, 0.024482058361172676, -0.019839616492390633, -0.0046287886798381805, -0.006342396140098572, 0.008240335620939732, 0.04145428538322449, -0.01917055808007717, 0.0019952263683080673, -0.0028588571585714817, 0.01877458579838276, 0.002701833378523588, -0.03432676941156387, 0.0035227949265390635, 0.03462716192007065, -0.010363571345806122, -0.017477432265877724, -0.02752695605158806, -0.008690926246345043, -0.0007121541420929134, -0.023594532161951065, -0.021232347935438156, -0.014787545427680016, 0.01911594159901142, -0.00892304815351963, 0.0038948729634284973, 0.007509834133088589, -0.014883125200867653, 0.01911594159901142, 0.009749130345880985, -0.018323995172977448, -0.001271551474928856, -0.019866924732923508, 0.023799346759915352, 0.06734272837638855, 0.0014738049358129501, 0.006260470487177372, 0.01757301203906536, 0.025246696546673775, -0.0028196012135595083, -0.026243455708026886, -0.004683405626565218, 0.0031541301868855953, -0.01137398462742567, -0.0015335422940552235, -0.00019169278675690293, 0.003302620258182287, -0.0028964064549654722, 0.03099513240158558, 0.01454176940023899, -0.00613758247345686, -0.022597773000597954, -0.01557949185371399, 0.003669577883556485, -0.008629482239484787, 0.005625548306852579, 0.025560744106769562, 0.018132835626602173, 0.014610040932893753, 0.006362877320498228, 0.011189652606844902, 0.019648456946015358, -0.006605240516364574, 0.004710713867098093, -0.005430975463241339, -0.002722314791753888, -0.008247163146734238, 0.02924739010632038, 0.010554729960858822, 0.029493166133761406, -0.025669977068901062, -0.002372424816712737, 0.015606800094246864, 0.024700526148080826, -0.0028230149764567614, -0.011851883493363857, -0.008636308833956718, -0.018405919894576073, 0.004792639520019293, -0.016781065613031387, 0.019839616492390633, 0.025355929508805275, -0.0121454494073987, -0.01933440938591957, 0.008827468380331993, -0.012404880486428738, -0.02759522572159767, 0.010575211606919765, -0.018692659214138985, 0.02240661345422268, -0.021560050547122955, 0.015470257960259914, -0.03438138589262962, -0.04647904634475708, 0.00018721248488873243, 0.0018040669383481145, 0.002783759031444788, -0.018679006025195122, -0.006530141923576593, -0.01745012402534485, 0.0026540434919297695, -0.015238136053085327, -0.004584412090480328, 0.011653897352516651, 0.014473497867584229, -0.03864150866866112, -0.02091830037534237, 0.007666857913136482, 0.03121360018849373, 0.007386945653706789, -0.003628615289926529, 0.009250749833881855, -0.0020549637265503407, 0.026721354573965073, 0.03175977244973183, 0.0036320288199931383, -0.004154303576797247, -0.04762599989771843, -0.006123928353190422, -0.012070351280272007, -0.009667204692959785, -0.023594532161951065, -0.00908689945936203, 0.011612934060394764, 0.017709553241729736, -0.0175047405064106, 0.014022908173501492, -0.00742108142003417, -0.00029399292543530464, -0.007141169626265764, 0.012418534606695175, 0.013210481032729149, -0.0015745050041005015, -0.01385223027318716, 0.004144062753766775, 0.0012032801751047373, -0.017081458121538162, -0.009243923239409924, 0.018911127001047134, 0.010500113479793072, 0.023703766986727715, -0.02180582657456398, -0.003918767906725407, -0.019402680918574333, -0.00878650601953268, -0.013797612860798836, 0.01106676459312439, -0.015948155894875526, 0.03170515224337578, 0.015306406654417515, 0.01888381876051426, 0.012725754640996456, -0.0040314155630767345, -0.007694166153669357, 0.004953077062964439, -0.022051602602005005, 0.025629015639424324, -0.020399440079927444, 0.005727955140173435, -0.001440522726625204, 0.0028554436285048723, -0.017586665228009224, -0.01585257612168789, -0.004994039423763752, -0.008854776620864868, -0.015169864520430565, -0.006810054183006287, -0.01701318845152855, -0.010786852799355984, -0.028646603226661682, -0.00811744760721922, 0.0123912263661623, -0.037467245012521744, -0.0021283552050590515, -0.049810681492090225, -0.007591759320348501, -0.012493632733821869, 0.003556930460035801, -0.0031165811233222485, -0.030312420800328255, 0.00798090547323227, -0.0076873390935361385, 0.006144409533590078, 0.008356397040188313, -0.014514461159706116, 0.006048829760402441, -0.009530661627650261, 0.01536102406680584, -0.01944364234805107, -0.008847950026392937, -0.007427908480167389, -0.011380812153220177, 0.02020828053355217, 0.03528256714344025, 0.012848643586039543, -0.0063935997895896435, 0.00207885866984725, 0.02120503969490528, 0.006100033409893513, -0.01822841539978981, -0.015388332307338715, 0.00591911468654871, 0.002044722903519869, -0.003079031826928258, 0.00784436333924532, 0.01476023718714714, 0.0005734782316721976, 0.00969451293349266, -0.007871671579778194, 0.010308953933417797, -0.010793679393827915, -0.003990452736616135, -0.03970653936266899, -0.013695206493139267, -0.02191506139934063, 0.014855816960334778, -0.02065887115895748, 0.01390684675425291, -0.004994039423763752, -0.01893843524158001, 0.012500460259616375, -0.0002511100610718131, 0.026748662814497948, 0.000317887868732214, 0.015210827812552452, 0.009196133352816105, 0.023580878973007202, 0.017914367839694023, -0.013387985527515411, -0.01866535097360611, -0.018351303413510323, -0.029329314827919006, -0.015538529492914677, 0.013469911180436611, -0.004915527533739805, 0.023198559880256653, -0.0017119008116424084, -0.002398026641458273, 0.007093379739671946, 0.04443090781569481, -0.009407773613929749, -0.024195319041609764, 2.776185101538431e-05, -0.006291192956268787, 0.013688378967344761, -0.0260932594537735, -0.007789745926856995, -0.004154303576797247, -0.018733622506260872, 0.0020157077815383673, 0.004478591959923506, 0.008486112579703331, -0.009100553579628468, 0.001047109835781157, -0.015511220321059227, 0.0031831455416977406, 0.04142697528004646, 2.73884925263701e-05, 0.03159591928124428, 0.005731368903070688, 0.01338115893304348, -0.027731768786907196, -0.018242068588733673, -0.019429989159107208, -0.008854776620864868, 0.030967824161052704, 0.02306201681494713, 0.012637002393603325, -0.01839226670563221, -0.019361717626452446, 0.009783265180885792, 0.000573051511310041, -0.02267969772219658, 0.015388332307338715, -0.0075849322602152824, -0.01269161980599165, -0.014883125200867653, -0.028155051171779633, -0.018487846478819847, 0.055545464158058167, -0.011612934060394764, 0.016152970492839813, 0.015046976506710052, -0.03484563156962395, -0.009455563500523567, 0.026243455708026886, -0.016767410561442375, 0.028728527948260307, -0.018679006025195122, 0.028264284133911133, -0.011565144173800945, 0.0052671246230602264, 0.0005043536075390875, -0.01519717276096344, -0.010855123400688171, -0.005983972456306219, -0.014104833826422691, 0.018624387681484222, 0.019648456946015358, 0.025861136615276337, -0.01779147982597351, 0.0015890125650912523, 0.00961258728057146, 0.02648923173546791, -0.014336955733597279, -0.00888891238719225, -0.01762762852013111, -0.007113860920071602, 0.012404880486428738, -0.009551143273711205, -0.01522448193281889, -0.021000226959586143, -0.0031677845399826765, -0.002104460261762142, 0.029329314827919006, -0.010527421720325947, -0.005949836689978838, -0.008008213713765144, 0.004348876420408487, 0.0016897126333788037, -0.017805133014917374, 0.007885325700044632, 0.0031950930133461952, -0.033835217356681824, -0.0014780719066038728, 0.01076637115329504, -0.013258270919322968, 0.016344130039215088, 0.020904647186398506, 0.009237095713615417, -0.014992359094321728, 0.011606107465922832, -0.03197823837399483, 0.00696707796305418, 0.004857497289776802, 0.020085392519831657, -0.03429945930838585, 0.010506940074265003, -0.004280605353415012, -0.01712242141366005, 0.0038948729634284973, -0.012288819067180157, -0.019293446093797684, -0.019757689908146858, -0.004068964626640081, -0.0082335090264678, 0.03255171701312065, 0.012889605946838856, -0.015729688107967377, 0.002805947093293071, 0.01260969415307045, -0.011947463266551495, -0.019361717626452446, 0.024140702560544014, -0.007291365880519152, -0.01286229770630598, 0.029220081865787506, -0.013579145073890686, 0.009503353387117386, -0.012834988534450531, 0.009312193840742111, -0.013865884393453598, -0.009851536713540554, -0.017818788066506386, -0.01927979290485382, 0.022311033681035042, -0.006485765799880028, 0.010459150187671185, -0.027745423838496208, -0.00483018858358264, 0.00038295885315164924, -0.007482525426894426, 0.003853910369798541, 0.0002865257556550205, 0.007045589853078127, 0.01038405206054449, 0.0017323821084573865, 0.0126643106341362, -0.004331809002906084, -0.021874098107218742, -0.02345799095928669, 0.000299966661259532, -0.01900670677423477, -0.008158410899341106, 0.01159245241433382, 0.026748662814497948, 0.022365650162100792, -0.023580878973007202, -0.033835217356681824, -0.021218694746494293, -0.06078869104385376, -0.01106676459312439, 0.014050216414034367, 0.03192362189292908, 0.02692616917192936, 0.0013039802433922887, 0.007748783100396395, 0.03656606376171112, -0.007236748933792114, 0.0051510632038116455, -0.020454056560993195, 0.016002774238586426, 0.00028759249835275114, -0.03342558816075325, -0.010698099620640278, 0.007332328706979752, -0.02075445093214512, -0.01762762852013111, 0.012582385912537575, -0.014664657413959503, 0.008492939174175262, 0.019703073427081108, 0.0019798653665930033, -0.013422121293842793, 0.00985836423933506, 0.000590972718782723, 0.015101592987775803, 0.0014652709942311049, 0.04088080674409866, -0.05347001925110817, 0.006642789579927921, 0.026024987921118736, -0.00746204424649477, -0.024031469598412514, 0.0042703645303845406, 0.01051376760005951, 0.010616173967719078, 0.008247163146734238, 0.0015181811759248376, -0.004690232686698437, 0.006202440243214369, -0.008417841047048569, 0.007946769706904888, -0.02037213183939457, 0.0077283019199967384, 0.03563757613301277, 0.02455032989382744, -0.020904647186398506, 0.007967251352965832, 0.022010641172528267, -0.025956716388463974, 0.005567518062889576, -0.0019696245435625315, -0.0486910343170166, 0.021464470773935318, -0.009598933160305023, 0.014582731761038303, 0.010090486146509647, 0.010110967792570591, -0.004092859569936991, 0.0029783318750560284, -0.017805133014917374, 0.004010933917015791, 0.006653030402958393, -0.016385091468691826, 0.0022068670950829983, 0.020140009000897408, 0.012084005400538445, 0.0011426894925534725, -0.006359464023262262, 0.009039109572768211, -0.016207586973905563, -0.02571094036102295, 0.024850724264979362, 0.006840776186436415, -0.025233041495084763, 0.028182359412312508, 0.008677272126078606, 0.018624387681484222, 0.007496179547160864, 0.22502192854881287, 0.005215920973569155, 0.01065030973404646, 0.03842304274439812, 0.012152276933193207, 0.016262203454971313, -0.004970144480466843, 0.008056003600358963, 0.011763131245970726, -0.004154303576797247, -0.012507286854088306, -0.005335395690053701, -0.026557503268122673, 0.0020344823133200407, 0.030367037281394005, -0.013114901259541512, -0.03121360018849373, -0.009981252253055573, -0.007264057639986277, 0.03465447202324867, 0.037084925919771194, -0.0023826654069125652, -0.015183518640697002, -0.008356397040188313, 0.01269161980599165, -0.006444802973419428, -0.008424668572843075, 0.0027564503252506256, 0.0339171402156353, 0.0037719847168773413, 0.0011930395849049091, 0.0060385894030332565, 0.003526208456605673, 0.039952315390110016, -0.019730381667613983, -0.005888392683118582, 0.01592084765434265, 0.00955797079950571, 0.002887872513383627, 0.03487293794751167, -0.0026489233132451773, -0.0043864259496331215, -0.008090139366686344, -0.01217275857925415, 0.0076873390935361385, 0.005932768806815147, 0.008363224565982819, 0.016822028905153275, 0.010267991572618484, 0.014282339252531528, -0.013278751634061337, -0.018214760348200798, 0.023485299199819565, 0.016671830788254738, -0.016439709812402725, -0.0040757916867733, -0.0032292285468429327, 0.018214760348200798, 0.014664657413959503, 0.0011955996742472053, -0.0009387292666360736, 0.015606800094246864, -0.010561557486653328, 0.010029042139649391, -0.026967130601406097, 0.012104487046599388, -0.007366464473307133, 0.02169659361243248, 0.0003605573729146272, -0.005239815916866064, -0.0028844589833170176, 0.007700993213802576, -0.012753063812851906, -0.0029305419884622097, -0.022980092093348503, -0.022775277495384216, 0.026721354573965073, 0.004755090456455946, 0.030148569494485855, 0.03492755442857742, 0.015115248039364815, 0.011360330507159233, 0.003802706953138113, -0.009107380174100399, -0.01719069294631481, -0.02571094036102295, 0.020522328093647957, -0.008042349480092525, 0.0021181146148592234, -0.0021590772084891796, -0.016630869358778, -0.011175998486578465, -0.02009904570877552, -0.027212906628847122, 0.004420561250299215, 0.014364263974130154, -0.01032943557947874, 0.013353850692510605, -0.016002774238586426, 0.0007437295862473547, -0.018378611654043198, 0.047380223870277405, 0.04541401565074921, 0.003273604903370142, 0.014801200479269028, -0.004441042896360159, -0.015784306451678276, 0.019593840464949608, 0.012268338352441788, -0.028346208855509758, 0.01679471880197525, -0.020140009000897408, 0.039351530373096466, -0.008356397040188313, -0.02935662306845188, 0.004400080069899559, -0.004785812459886074, -0.004949663300067186, -0.013947810046374798, -0.0034357490949332714, -0.015320061706006527, -0.02356722392141819, -0.006499419920146465, 0.020686179399490356, -0.00811744760721922, 0.009421427734196186, -0.005359290633350611, 0.007332328706979752, -0.023471644148230553, -0.033944450318813324, -0.021177731454372406, -0.02329413965344429, 0.00905959028750658, -0.01926613785326481, -0.015087938867509365, -0.0016069337725639343, -0.0031729049514979124, -0.01888381876051426, -0.03364405781030655, 0.020331168547272682, 0.0009557970333844423, -0.002582358894869685, 0.009380465373396873, 0.020495019853115082, 0.001966211013495922, 0.0041679576970636845, 0.0038266016636043787, 0.010786852799355984, 0.001233148854225874, -0.005970317870378494, -0.020945610478520393, -0.0015113541157916188, 0.012241029180586338, 0.014091179706156254, 0.01915690302848816, -0.003952903673052788, -0.017532048746943474, -0.036538757383823395, 0.011490046046674252, 0.01090291328728199, -0.04691598191857338, -0.006513074040412903, 0.023048363626003265, -0.024427441880106926, -0.015374678187072277, -0.008492939174175262, -0.17553895711898804, 0.01641240157186985, -0.005673338193446398, -0.004423975013196468, 0.01581161469221115, 0.02979355864226818, -0.0002344689710298553, -0.018924782052636147, -0.016726449131965637, 0.010711753740906715, 0.036702606827020645, 0.005905460566282272, -0.04014347493648529, -0.007550796493887901, 0.03738531842827797, -0.0020669111981987953, -0.005461697466671467, 0.0038778050802648067, 0.014282339252531528, -0.008267644792795181, 0.025342276319861412, 2.088139262923505e-05, 0.006618894636631012, -0.03910575434565544, -0.0008235215791501105, -0.01236391719430685, -0.01454176940023899, -0.001935489010065794, 0.021505434066057205, -0.04565979167819023, -0.011947463266551495, -0.006748609710484743, 0.028946995735168457, 0.004215747583657503, 0.00022593505855184048, 0.003690059296786785, -0.009291713126003742, -0.012602866627275944, -0.01861073449254036, 0.0336986742913723, 0.03342558816075325, 0.02786831185221672, 0.002742796204984188, 0.024700526148080826, 0.00405872380360961, -0.003853910369798541, -0.016562597826123238, -0.01993519626557827, 0.005656270310282707, 0.010138276033103466, 0.01926613785326481, -0.033289045095443726, -0.007134342100471258, -0.001848443178460002, 0.00190988730173558, 0.03214208781719208, -0.00518861273303628, 0.020194625481963158, 0.0063219149596989155, -0.028209667652845383, -0.008875258266925812, -0.01866535097360611, -0.004215747583657503, -0.02247488498687744, -0.017545703798532486, -0.023690111935138702, 0.0021027536131441593, 0.025629015639424324, -0.005243229679763317, 0.019184213131666183, 0.01904767006635666, 0.005632375366985798, -0.0014294285792857409, -0.01850149966776371, 0.007837535813450813, 0.004502486903220415, -0.005089619196951389, 0.020467711612582207, 0.01855611614882946, 0.01189284585416317, 0.0064550437964499, 0.02218814566731453, 0.0008333355654031038, 0.030803972855210304, -0.0254924725741148, -0.001013827626593411, -0.006506246980279684, 0.00733915576711297, 0.008622654713690281, -0.0028110675048083067, 0.013108073733747005, -0.015087938867509365, -0.017532048746943474, 0.010882432572543621, 0.01128523238003254, 0.01114869024604559, 0.024413786828517914, 0.008574864827096462, 0.00031703445711173117, 0.00047405826626345515, 0.013742996379733086, -0.006465284153819084, -0.027349449694156647, 0.027376757934689522, 0.03894190117716789, 0.014295993372797966, 0.013995599932968616, 0.005205680150538683, 0.008957183919847012, 0.010793679393827915, -0.028892379254102707, 0.00484725646674633, 0.018870165571570396, 0.002933955518528819, -0.014691966585814953, 0.03842304274439812, -0.011114554479718208, 0.0080696577206254, -0.006301433313637972, -0.03121360018849373, 0.037685710936784744, -0.01933440938591957, -0.010240682400763035, -0.016098354011774063, -0.01795533113181591, -0.02009904570877552, -0.10491921007633209, -0.04514092952013016, 0.01904767006635666, -0.004635615739971399, 0.0010684445733204484, 0.009496526792645454, -0.009039109572768211, 0.01288277842104435, 0.0035432761069387197, 0.0347910113632679, -0.01308076549321413, 0.014746583066880703, 0.002080565318465233, -0.0004141076060477644, 0.020904647186398506, -0.004673164803534746, 0.01093022245913744, -0.006642789579927921, -0.023417027667164803, 0.01623489521443844, 0.003215574426576495, -0.02307567186653614, -0.003171198070049286, 0.0038743915501981974, -0.005035002250224352, -0.025028228759765625, -0.015483912080526352, -0.0026335623115301132, 0.011114554479718208, 0.004205507226288319, 0.0043864259496331215, -0.02071348764002323, 0.01390002015978098, 6.299086817307398e-05, -0.009018627926707268, -0.02423628233373165, -0.018583426252007484, -0.005263710860162973, -0.008663618005812168, -0.0344633124768734, 0.00433522230014205, 0.002563584130257368, 0.006212681066244841, -0.015333715826272964, -0.01470562070608139, -0.004826775286346674, -0.004519554786384106, 0.012575558386743069, 0.008602173067629337, -0.01536102406680584, -0.01013144850730896, -0.0074415626004338264, 0.008725062012672424, -0.0509849451482296, 0.0018262551166117191, 0.021013880148530006, 0.0003885058977175504, -0.002130062086507678, -0.023376064375042915, -0.011189652606844902, -0.014036562293767929, -0.012889605946838856, -0.0320601649582386, 0.022379305213689804, 0.013483565300703049, 0.030367037281394005, -0.026188839226961136, -0.022952783852815628, -0.022980092093348503, -0.01060251984745264, -0.008028695359826088, 0.010793679393827915, -0.008056003600358963, 0.022666044533252716, -0.025014573708176613, 0.012104487046599388, -0.0010044402442872524, -0.028865071013569832, 0.024140702560544014, 0.0020754451397806406, -0.003360650734975934, -0.0160300824791193, 0.0019235415384173393, 0.001884285593405366, 0.0242908988147974, -0.0054412162862718105, -0.00040920061292126775, -0.006315087899565697, 0.012466324493288994, -0.05213190242648125, 0.024768797680735588, 0.014132142066955566, 0.006093206349760294, 0.005331981927156448, 0.00024662978830747306, -0.001957677071914077, -0.014295993372797966, -0.03823188319802284, 0.01955287717282772, 0.023635495454072952, 0.021000226959586143, 0.0043864259496331215, -0.06712426245212555, 0.008479285053908825, 0.0015480498550459743, 0.004608307033777237, 0.00568357901647687, 0.0007714647799730301, 0.020276552066206932, -0.046615589410066605, -0.017695900052785873, 0.007120687980204821, -0.007625895086675882, 0.0177778247743845, -0.0052978466264903545, 0.008329088799655437, -0.032906726002693176, -0.01911594159901142, 0.018323995172977448, 0.012637002393603325, 0.013374331407248974, 0.015415641479194164, 0.014104833826422691, -0.015306406654417515, -0.0021744382102042437, 0.0016973931342363358, -0.015292752534151077, 0.033015962690114975, -0.020467711612582207, 0.011428602039813995, -0.013968290761113167, -0.024918993934988976, 0.007912633940577507, -0.01581161469221115, 0.011926981620490551, 0.010302126407623291, -0.01093022245913744, -0.0038675644900649786, -0.009018627926707268, 0.02180582657456398, 0.007796572986990213, 0.0021027536131441593, -0.029657017439603806, -0.03976115584373474, 0.026407307013869286, -0.013456257060170174, -0.0003949063248001039, -0.022338341921567917, 0.00669057946652174, -0.017859751358628273, -0.00669057946652174, 0.007011454086750746, 0.026298074051737785, 0.021778518334031105, -0.014937742613255978, -0.03154130280017853, 0.028400827199220657, -0.018801894038915634, 0.01219323929399252, -0.00392218166962266, 0.01735454425215721, -0.014596386812627316, 0.011742649599909782, 0.04598749428987503, 0.014459843747317791, 0.003809534013271332, 0.04295625165104866, -0.00837005116045475, -0.021464470773935318, -0.014282339252531528, -0.01695857010781765, -0.009967598132789135, 0.005646029952913523, -0.026134222745895386, 0.03050358034670353, 0.009714994579553604, 0.024864377453923225, -0.020140009000897408, 0.003976798616349697, -0.02307567186653614, -0.034490618854761124, 0.012288819067180157, 0.008226681500673294, -0.01712242141366005, -0.02218814566731453, 0.013995599932968616, 0.0008222414762713015, 0.010336262173950672, -0.00605565682053566, -0.009974424727261066, -0.012002079747617245, 2.7948530259891413e-05, -0.0006366291199810803, -0.009469217620790005, 0.004642442800104618, 0.008813814260065556, -0.02071348764002323, -0.001450763433240354, 0.006816881243139505, 0.012623348273336887, 0.007741956040263176, 0.02296643704175949, 0.012398052960634232, -0.001368837896734476, -0.009967598132789135, -0.008506594225764275, -0.01712242141366005, 0.03077666461467743, 5.397693166742101e-05, -0.020890992134809494, -0.027881965041160583, 0.01899305358529091, 0.013879538513720036, 0.019784998148679733, 0.009667204692959785, 0.019348062574863434, -0.015306406654417515, 0.010452323593199253, -0.0008866724674589932, -0.007530315313488245, -0.023594532161951065, 0.01568872667849064, 0.005738195963203907, 0.008609000593423843, 0.010145102627575397, -0.014118487946689129, 0.025533435866236687, -0.0061102742329239845, 0.01288277842104435, -0.03823188319802284, -0.00542414840310812, -0.017327236011624336, -0.020686179399490356, -0.015429295599460602, -0.004109927453100681, -0.025355929508805275, -0.020508673042058945, -0.00429425947368145, -0.0026472164317965508, 0.031077058985829353, -0.00443421583622694, 0.07662761211395264, 0.018132835626602173, -0.011831401847302914, -0.009947116486728191, -0.010247509926557541, 0.03192362189292908, 0.0018450296483933926, 0.030640123412013054, -0.026612121611833572, -0.024632254615426064, -0.0064960066229105, -0.01921152137219906, -0.0034442830365151167, 0.00492918211966753, -0.01719069294631481, -0.007796572986990213, -0.012186412699520588, -0.007700993213802576, -0.003679818706586957, -0.009482871741056442, 0.02676231786608696, -0.01728627271950245, 0.020740795880556107, -0.027772732079029083, -0.011790439486503601, 0.009489699266850948, 0.006236575543880463, 0.009981252253055573, -0.02422262728214264, -0.023198559880256653, 0.020904647186398506, 0.0253832396119833, -0.02962970919907093, -0.00798090547323227, 0.0032138675451278687, 0.0029578504618257284, -0.0049837990663945675, -0.021177731454372406, 0.03044896386563778, 0.0027598640881478786, 0.005980558693408966, 0.012814507819712162, -0.011264750733971596, -0.002292206045240164, 0.0014447896974161267, -0.00502476142719388, -0.030148569494485855, 0.00265062996186316, 0.0009259284124709666]" +25,"And this quarter, we brought our shopping tools to 15 new markets. Users of our Start, personalized content feed are consuming 2x more content compared to a year ago. And we're also expanding our third-party ad inventory. Netflix will launch its first ad-supported subscription plan next month, exclusively powered by our technology and sales.","[-0.002623418578878045, -0.017674950882792473, 0.0065187979489564896, -0.04176270589232445, 0.010758666321635246, -0.001026843092404306, -0.03373345360159874, -0.016190998256206512, -0.020576611161231995, -0.006561859045177698, 0.024365995079278946, 0.025001974776387215, 0.008671856485307217, -0.029997069388628006, 0.00775763439014554, -0.006502235773950815, 0.01832418143749237, -0.012845476157963276, 0.011918005533516407, -0.03108353540301323, 0.00036436368827708066, 0.022073814645409584, 0.008214744739234447, -0.008579108864068985, -0.008996470831334591, 0.00860560778528452, 0.018151937052607536, 0.005220338236540556, 0.0349259153008461, -0.009937191382050514, 0.016204247251152992, -0.002893378958106041, 0.0044220504350960255, -0.010679168626666069, -0.015475519932806492, -0.001975845079869032, -0.010824914090335369, 0.0008131935028359294, 0.01329596247524023, -0.00841348897665739, 0.013070719316601753, 0.013083969242870808, -0.00546545535326004, -0.0005722166388295591, -0.03484641760587692, 0.01063279528170824, -0.021411335095763206, 0.0098974434658885, -0.021186092868447304, 0.01478654146194458, -0.0027890384662896395, 0.020841604098677635, -0.03293847665190697, 0.010288305580615997, -0.003320678137242794, 0.017595455050468445, -0.02039111778140068, 0.015727262943983078, 0.02518746815621853, -0.028831105679273605, -0.020205622538924217, 0.020894601941108704, -0.030103066936135292, -0.00717465253546834, -0.016124749556183815, 0.00903621967881918, -0.018721669912338257, -0.002785725984722376, -5.4551041102968156e-05, 0.002197775524109602, 0.02249780297279358, 0.011142903938889503, -0.0024693922605365515, -0.009201839566230774, 0.00889047421514988, -0.0046274191699922085, 0.002817193977534771, 0.004087498411536217, 0.019079407677054405, 0.006631419528275728, 0.015873007476329803, -0.021066846325993538, -0.008936847560107708, 0.02785063534975052, 0.016349993646144867, 0.025690952315926552, -0.013136967085301876, 0.032408494502305984, -0.00710177980363369, 0.009976940229535103, 0.02838061936199665, -0.00666454341262579, -8.477666415274143e-05, 0.019662389531731606, -0.007857006043195724, 0.031454525887966156, -0.011560266837477684, 0.017356961965560913, -0.027930133044719696, -0.0008239588350988925, -0.0065982951782643795, 0.011533766984939575, -0.03166651725769043, -0.018112188205122948, -0.022895289584994316, 0.025889696553349495, 0.004991782829165459, -0.008731478825211525, 0.02660517394542694, 0.019662389531731606, -0.00046083726920187473, 0.009605951607227325, 0.0063730524852871895, -0.013203215785324574, -0.013647076673805714, -0.008201495744287968, -0.0009680481161922216, -0.0049818456172943115, -0.0051342155784368515, -0.008135247975587845, 0.021742574870586395, 0.01599225401878357, 0.026181187480688095, 0.02221956104040146, -0.01004981342703104, 0.014402302913367748, 0.012765979394316673, -0.033309467136859894, 0.012752729468047619, -0.00034697362571023405, 0.008910348638892174, -0.002197775524109602, 0.012977972626686096, 0.023173531517386436, -0.0502159409224987, 0.03320347145199776, -0.016363242641091347, 0.003464767476543784, -0.029043098911643028, -0.01831093244254589, -0.003550889901816845, 0.012984597124159336, -0.004256430547684431, 0.0012636795872822404, 0.0018450053175911307, 0.01711846888065338, 0.01136814709752798, 0.005306460428982973, 0.022259309887886047, 0.017608704045414925, -0.004634043667465448, -0.022325556725263596, -0.004395551048219204, -0.01363382674753666, 0.02391550876200199, 0.020497113466262817, 0.012004127725958824, 0.022670047357678413, -0.016124749556183815, -0.0035707643255591393, 0.011600014753639698, 0.014826290309429169, -0.002649917732924223, -0.013660326600074768, 0.005183901637792587, 0.02243155427277088, 0.036197878420352936, -0.015250276774168015, -0.004481673706322908, -0.011460894718766212, -0.0026615113019943237, 0.0001747289497870952, -0.010116061195731163, 0.0009133935673162341, -0.00041011619032360613, 0.013514581136405468, 0.015051533468067646, 0.005164027214050293, -0.03280598297715187, -0.013554329983890057, 0.028327621519565582, -0.004239868372678757, 0.00407756119966507, -0.002613481367006898, -9.155672887573019e-05, -0.010314805433154106, 0.008400239050388336, -0.016045251861214638, 0.017900194972753525, -0.020192373543977737, 0.007267399691045284, 0.006015313323587179, -0.007187901996076107, -0.030527053400874138, -0.6554836630821228, 0.015382773242890835, 0.019158905372023582, -0.025942694395780563, 0.012739479541778564, 0.015846507623791695, 0.015833258628845215, 0.0035674518439918756, -0.007360146846622229, 0.004001375753432512, -0.008486362174153328, -0.004932159557938576, 0.01893366314470768, -0.02427324652671814, 0.01551526878029108, -0.004094122909009457, 0.018098939210176468, -0.023027785122394562, -0.006783789489418268, 0.023491520434617996, -0.012103499844670296, 0.014124061912298203, -0.0038258188869804144, 0.0038755047135055065, 0.005124278366565704, 0.003961626905947924, -0.018469927832484245, -0.013951817527413368, -0.0312955304980278, 0.016085000708699226, -0.027426648885011673, 0.018734918907284737, 0.03214350342750549, 0.018761418759822845, 0.05003044754266739, -0.022299058735370636, -0.025015223771333694, 0.01808568835258484, -0.007724510505795479, 0.035058412700891495, -0.04102072864770889, -0.022352056577801704, 0.009195215068757534, -0.009963691234588623, 0.004193495027720928, -0.0032229626085609198, -0.010016689077019691, 0.00430280389264226, -0.020828353241086006, 9.853088158706669e-06, 0.03333596512675285, 0.001980813452973962, -0.009413832798600197, -0.002403144259005785, 0.02308078482747078, 0.02631368301808834, 0.01121577713638544, -0.02009962685406208, 0.014919036999344826, 0.00020319486793596298, -0.022656796500086784, -0.008612233214080334, -0.01006306242197752, -0.0366748608648777, -0.04406813159584999, 0.017529206350445747, 0.014773291535675526, 0.01536952331662178, 0.017926694825291634, -0.01657523587346077, 0.0036568865180015564, 0.020589862018823624, 0.004938784521073103, 0.0006873224047012627, 0.011560266837477684, 0.023756513372063637, 0.03140152618288994, 0.0024379242677241564, -0.02391550876200199, 0.015462270006537437, -0.0027294154278934, -0.016111500561237335, 0.001195775461383164, 0.0047201658599078655, 0.0029579708352684975, -0.023544520139694214, -0.017674950882792473, -0.00976494699716568, 0.016455989331007004, 0.022988036274909973, 0.00018580479081720114, -0.02785063534975052, 0.0012727886205539107, -0.02007312700152397, 0.0011386366095393896, 0.010082936845719814, -0.0075721400789916515, 0.028460117056965828, 0.008353865705430508, -0.013130342587828636, -0.02867211028933525, -0.001036780304275453, 0.018098939210176468, 0.0037165097892284393, 0.036224376410245895, 0.028009630739688873, -0.0008276852895505726, -0.0026515740901231766, -0.0012761009857058525, -0.016495738178491592, -0.004932159557938576, 0.0006939472514204681, -0.03648936748504639, -0.0033653955906629562, -0.016098251566290855, -0.02244480326771736, 0.01864217221736908, -0.00889047421514988, -0.0007415629224851727, -0.005014969501644373, -0.00782388262450695, -0.0027741326484829187, -0.004600919783115387, 0.0033637394662946463, -0.0029496897477656603, 0.017052220180630684, 0.01625724509358406, 0.00990406796336174, -0.039828263223171234, -0.0006455034017562866, -5.85492080062977e-06, -0.02396850660443306, 0.006078248843550682, 0.008088873699307442, 0.007585389539599419, 0.017860446125268936, 0.004938784521073103, -0.025319965556263924, 0.027002662420272827, -0.0165222380310297, -0.01774119958281517, 0.01407106313854456, 1.8955710402224213e-05, -0.0070686559192836285, -0.020550113171339035, -0.008923598565161228, -0.0017771010752767324, 0.005783445667475462, -0.019622640684247017, 0.009632451459765434, -0.020907850936055183, -0.017860446125268936, -0.007240900304168463, 0.02273629419505596, -0.009632451459765434, 0.012580485083162785, -0.021225841715931892, -0.03903328999876976, -0.012693106196820736, -0.023544520139694214, 0.010877912864089012, 0.011812008917331696, -0.003148433519527316, -0.00553832808509469, -0.012235995382070541, -0.01571401208639145, -0.010884537361562252, 0.013030970469117165, -0.0020569986663758755, -0.005551578011363745, 8.720920959603973e-06, -0.004547921475023031, -0.009241588413715363, 0.024962225928902626, -0.005773508455604315, 0.020006880164146423, -0.01358082890510559, -0.0008252009865827858, 0.005372708197683096, 0.004938784521073103, -0.002794007072225213, -0.009778196923434734, -0.0036933228839188814, -0.002013937570154667, 0.01627049595117569, 0.020603111013770103, 0.01949014514684677, 0.02838061936199665, -0.02451173961162567, 0.0028403806500136852, 0.010672544129192829, 0.03344196453690529, -0.013521205633878708, 0.01344833243638277, -0.022285807877779007, -0.011666263453662395, -0.01750270649790764, -0.007015657611191273, 0.03256748989224434, -0.020881352946162224, 0.02127883955836296, 0.03132202848792076, 0.022564049810171127, -0.01020218338817358, 0.009923942387104034, -0.02539946138858795, -0.0012024001916870475, -0.02488272823393345, 0.014004815369844437, 0.0165222380310297, 0.01599225401878357, -0.04298166558146477, 0.005915941670536995, -0.01778094843029976, 0.008771227672696114, 0.04091472923755646, 0.019596142694354057, -0.0045545464381575584, -0.0012288993457332253, -0.003988126292824745, -0.021199341863393784, -0.020881352946162224, -0.006349865347146988, -0.011169403791427612, -0.021172843873500824, 0.02133183926343918, -0.026154689490795135, 0.027029162272810936, 0.031004037708044052, -0.03174601495265961, 0.007472768425941467, 0.013560954481363297, -0.011149529367685318, 0.01746295765042305, 0.004306116607040167, -0.01862892135977745, 0.027294153347611427, -0.009923942387104034, 0.01804593950510025, -0.0013680200790986419, -0.007916629314422607, 0.016111500561237335, 0.011639763601124287, 0.00509446719661355, 0.03018256463110447, 0.00451810983940959, 0.019013160839676857, -0.0010450613917782903, -0.01595250517129898, 0.012441364116966724, 0.009095842950046062, 0.008353865705430508, 0.019291400909423828, -0.012812352739274502, 0.022842291742563248, -0.016787229105830193, -0.0008918629609979689, -0.003918565809726715, 0.008042500354349613, 0.012626858428120613, 0.00681691337376833, 0.011447644792497158, 0.0016404647612944245, -0.015873007476329803, 0.008426738902926445, -0.004537984263151884, 0.0006206604302860796, -0.01805919036269188, 0.016177747398614883, -0.00932771060615778, -0.0011808696435764432, -0.015740511938929558, 0.003234555944800377, -0.008989846333861351, -0.014720293693244457, 0.0014392365701496601, 0.0046472931280732155, 0.01687997579574585, -0.01005643792450428, 0.02214006334543228, 0.004677104763686657, -0.02423349767923355, 0.020258622244000435, 0.007903380319476128, -0.019119156524538994, 0.007625138387084007, -0.00815512239933014, -0.01779419742524624, -0.015237027779221535, -0.00046414966345764697, -0.028486616909503937, 0.0011055126087740064, -0.004862599074840546, 0.012189622037112713, 0.013123718090355396, -0.0073667713440954685, 0.03426343575119972, -0.004620794206857681, 0.0009970315732061863, -0.01566101424396038, 0.008817601948976517, 0.00746614346280694, -0.02009962685406208, -0.005203776061534882, 0.03778782859444618, 0.018801167607307434, -0.017383459955453873, -0.015767011791467667, -0.016959473490715027, -0.011083281598985195, 0.007168027572333813, 0.0006641356740146875, -0.031189532950520515, 0.02338552474975586, 0.0016147936694324017, 0.001563451485708356, -0.0035210782662034035, 0.010440676473081112, 0.010427426546812057, 0.023292778059840202, 0.0003647777484729886, -0.008327366784214973, -0.019119156524538994, 0.032991476356983185, 0.09099818021059036, 0.025200719013810158, 0.008042500354349613, 0.03524390608072281, -0.01978163607418537, 0.002121590543538332, -0.016164498403668404, 0.00768476165831089, 0.019304651767015457, -0.009082593023777008, -0.007413145154714584, -0.00568407354876399, 0.010858038440346718, 0.00046953230048529804, 0.02957308292388916, 0.001572560635395348, -0.014243308454751968, -0.02188832126557827, -0.0036833856720477343, -0.0053958953358232975, 0.022656796500086784, 0.004137184005230665, 0.012838851660490036, 0.027691641822457314, 0.020033378154039383, -0.0014094250509515405, 0.03760233521461487, 0.03675435855984688, 0.013567578978836536, -0.006081561557948589, 0.012063750997185707, -0.003560827113687992, -0.01808568835258484, 0.016972724348306656, -0.013819321058690548, 0.02869861014187336, -0.019013160839676857, 0.013872319832444191, 0.02716165781021118, 0.03553539887070656, 0.012189622037112713, 0.001488094450905919, 0.0016205903375521302, -0.015926005318760872, 0.008314116857945919, -0.006137872114777565, -0.0049851578660309315, 0.014548048377037048, 0.001477329176850617, -0.029387587681412697, 0.005988814402371645, -0.006528735160827637, -0.0520973838865757, 0.012083625420928001, 0.009109092876315117, 0.0050580305978655815, -0.02422024868428707, -0.003945065196603537, -0.01779419742524624, -0.049288470298051834, -0.0023716764990240335, -0.02339877374470234, -0.007287274114787579, -0.01750270649790764, -0.0033372403122484684, -0.03166651725769043, -0.03603888303041458, 0.0027641954366117716, -0.014945536851882935, -0.0017853821627795696, 0.02429974637925625, -0.01950339414179325, -0.025836698710918427, 0.007479392923414707, 0.025359712541103363, 0.017913443967700005, 0.022895289584994316, 0.01227574422955513, -0.010699043050408363, 0.028539614751935005, -0.0018334118649363518, -0.0053395843133330345, 0.020059878006577492, -0.03235549479722977, 0.007446269039064646, -0.010745416395366192, -0.033256467431783676, 0.00013798204599879682, 0.007346896920353174, -0.005853006150573492, -0.00026126534794457257, -0.010235307738184929, 0.005574764683842659, -0.020258622244000435, 0.007353521883487701, 0.0032743047922849655, -0.004123934544622898, 0.007956378161907196, 0.018218185752630234, -0.006585045717656612, -0.010619545355439186, 0.01344833243638277, 0.009996814653277397, -0.014733542688190937, 0.003174932673573494, -0.006353178061544895, -0.005144152790307999, -0.014985284768044949, 0.00023145375598687679, -0.014190309680998325, 0.0021779011003673077, 0.01391206867992878, -0.01837717927992344, 0.00038755047717131674, 0.017065471038222313, -0.004246493335813284, -0.008930223062634468, 0.014905788004398346, -0.0036204501520842314, -0.0028519739862531424, 0.016985973343253136, -0.029202094301581383, 0.002413081470876932, -0.01687997579574585, 0.006969283800572157, 0.01420355960726738, -0.006700979545712471, -0.014826290309429169, -0.02488272823393345, 0.0004397207230795175, -0.02045736461877823, 0.022418305277824402, -0.01464079599827528, -0.014945536851882935, -0.03720484673976898, -0.013123718090355396, -0.02696291357278824, -0.012096874415874481, -0.00280560040846467, -0.019596142694354057, -0.02015262469649315, -0.01946364715695381, -0.005843068938702345, -0.022868791595101357, 0.015926005318760872, -0.027400150895118713, -0.010447300970554352, -0.025637954473495483, -0.006399551406502724, 0.019079407677054405, -0.023769762367010117, -0.013097219169139862, -0.008168371394276619, -0.014733542688190937, -0.0020818416960537434, -0.00710177980363369, 0.0002573318488430232, -0.014097562991082668, 0.043299656361341476, 0.04173620417714119, 0.01597900502383709, -0.006134559866040945, 0.01654873602092266, -0.0007365943165495992, -0.0046472931280732155, -0.007592014502733946, 0.005846381187438965, 0.01169276237487793, 0.006131247151643038, -0.00900309532880783, -0.017807448282837868, 0.014773291535675526, 0.008479736745357513, 0.010646045207977295, 0.002757570706307888, 0.009049469605088234, -0.030421055853366852, 0.0011270431568846107, -0.022113563492894173, -0.016032002866268158, -0.007380021270364523, 0.02191482111811638, -0.01711846888065338, 0.008632107637822628, -0.02782413735985756, -0.0033223344944417477, 0.023504771292209625, 0.013965066522359848, 0.01656198687851429, -0.004537984263151884, 0.02223281003534794, -0.0033256467431783676, -0.007751009427011013, 0.015873007476329803, -0.015131030231714249, -0.023491520434617996, -0.005283273756504059, -0.030235562473535538, -0.01714496873319149, 0.007042156532406807, -0.0024362681433558464, 0.004743352998048067, -3.4288488677702844e-05, 0.011295274831354618, 0.002449517836794257, 0.029705578461289406, -0.025637954473495483, -0.01807243935763836, 0.007055405993014574, -0.017595455050468445, -0.00932771060615778, -0.030553551390767097, -0.009387333877384663, -0.010387677699327469, 0.012024002149701118, 0.012315493077039719, -0.028248123824596405, -0.005296523217111826, 0.010135935619473457, -0.0014723605709150434, 0.010089562274515629, 0.004892410710453987, 0.022590549662709236, -0.0015651077264919877, 0.014667294919490814, -0.0022640235256403685, 0.016508987173438072, -0.013567578978836536, -0.02485622838139534, -0.003292522858828306, -0.00703553156927228, 0.018178436905145645, 0.03762883320450783, -0.011494018137454987, -0.00961257703602314, -0.0003950033860746771, 0.001636324217543006, -0.025902947410941124, -0.02631368301808834, 0.021199341863393784, -0.0038158816751092672, 0.008824226446449757, -0.019635891541838646, -0.03126902878284454, -0.001636324217543006, 0.025889696553349495, -0.025306714698672295, -0.009817945770919323, 0.005720510147511959, -0.019649140536785126, -0.013951817527413368, 0.027082160115242004, 0.013534455560147762, 0.019675640389323235, 0.002356770681217313, -0.00933433510363102, -0.009658950380980968, 0.0032858981285244226, -0.004869224037975073, -0.004723478574305773, -0.007128278724849224, 0.023769762367010117, -0.017661701887845993, 0.02901659905910492, 0.02747964672744274, 0.013607327826321125, -0.03378645330667496, 0.0005709744873456657, -0.00244123674929142, 0.019940631464123726, -0.0038125691935420036, 0.007651637773960829, 0.0019427209626883268, 0.006273680366575718, -0.007883505895733833, -0.016058502718806267, -0.013375460170209408, -0.014296306297183037, 0.0012272432213649154, -0.025955945253372192, 0.031772512942552567, 0.002015593694522977, -0.02782413735985756, -0.0039318157359957695, 0.021212592720985413, -0.01226911973208189, -0.011924630030989647, -0.011354898102581501, 0.015329774469137192, -0.014852789230644703, -0.021093346178531647, 0.012076999992132187, -0.0014789854176342487, 0.028539614751935005, 0.011918005533516407, -0.015276775695383549, -0.014084313064813614, 0.0026797293685376644, -0.02392875775694847, -0.008532735519111156, 0.018787916749715805, 0.01081828959286213, -0.041842203587293625, 0.015926005318760872, -0.010414176620543003, -0.008877224288880825, 0.026075191795825958, -0.029043098911643028, -0.03633037209510803, 0.011209152638912201, 0.004670480266213417, -0.005438956432044506, 0.004534672014415264, 0.01199087779968977, 0.005747009068727493, 0.03640986979007721, -0.013017721474170685, 0.004166995640844107, -0.011600014753639698, 0.011182652786374092, -0.014031315222382545, -0.0168137289583683, 0.005144152790307999, -0.008804352022707462, 0.016773980110883713, -0.040994226932525635, 0.01654873602092266, 0.004577733110636473, -0.011659638024866581, 0.0010061407228931785, 0.012149873189628124, 0.015555017627775669, -0.00502490671351552, 0.014905788004398346, -0.007452894002199173, 0.00451810983940959, -0.006002063862979412, 0.01893366314470768, 0.0035045163240283728, 0.01926490291953087, -0.009533079341053963, 0.0324614942073822, 0.02482973039150238, 0.013753073289990425, 0.0038258188869804144, -0.02933458983898163, -0.024101002141833305, -0.01348808128386736, -0.0059590027667582035, -0.009095842950046062, -0.010241932235658169, 0.033309467136859894, 0.007545641157776117, -0.03760233521461487, -0.02278929390013218, -0.008519485592842102, -0.037734828889369965, 0.0056807613000273705, -0.0040808734484016895, 0.014322806149721146, 0.009970315732061863, 0.017356961965560913, -0.0013257870450615883, 0.02280254289507866, 0.0029149095062166452, 0.011381397023797035, -0.016323493793606758, 0.013726574368774891, -0.0020553425420075655, -0.012765979394316673, 0.015449021011590958, -0.00038527321885339916, -0.03378645330667496, -0.003072248538956046, 0.01625724509358406, -0.012308868579566479, 0.02074885554611683, 0.029493585228919983, -0.01078516524285078, 0.002315365709364414, 0.005597951356321573, 0.020616360008716583, -0.0015104531776160002, -0.00753901619464159, 0.040358249098062515, 0.003613825421780348, 0.009148840792477131, 0.016045251861214638, 0.007512516807764769, -0.019715389236807823, 0.0003341380797792226, 0.011235651560127735, 0.03166651725769043, -0.006753977853804827, -0.002881785621866584, 0.00480960076674819, -0.02660517394542694, 0.00746614346280694, 0.016058502718806267, 0.0028403806500136852, 0.0060318754985928535, 0.02221956104040146, 0.01687997579574585, -0.02161007933318615, 0.012653357349336147, 0.03686035796999931, -0.015502018854022026, 0.002600231906399131, 0.008771227672696114, -0.026406431570649147, 0.019119156524538994, -0.00030184219940565526, 0.0028619111981242895, 0.019357649609446526, 0.0109176617115736, 0.0043657394126057625, 0.0032511178869754076, 0.008294242434203625, -0.0053130853921175, -0.019715389236807823, -0.03378645330667496, 0.009751697070896626, 0.016720982268452644, 0.004412113223224878, 0.0030821857508271933, -0.008499611169099808, 0.004713541362434626, -0.011944504454731941, -0.013209840282797813, 0.005150777753442526, 0.0025687641464173794, -0.03839730843901634, 0.010805039666593075, -0.009360834956169128, -0.005912628956139088, 0.016204247251152992, 0.2285289168357849, 0.0017009159782901406, 0.011812008917331696, 0.016787229105830193, 0.010858038440346718, 0.01721121557056904, 0.016442740336060524, 0.0159392561763525, 0.008718229830265045, -0.011083281598985195, -0.014799791388213634, 0.006346553098410368, -0.031825512647628784, -0.011142903938889503, -0.002926503075286746, -0.030421055853366852, -0.02726765349507332, -0.03466092422604561, -0.03540290147066116, 0.023862509056925774, -0.018695170059800148, -0.009678824804723263, -0.028460117056965828, -0.008976596407592297, 0.016124749556183815, 0.0034482055343687534, -0.012103499844670296, 0.004418737720698118, 0.03235549479722977, 0.016959473490715027, -0.02925509214401245, 0.003554202150553465, 0.002939752535894513, -0.008314116857945919, 0.007863631471991539, -0.0006082389736548066, -0.0014475176576524973, 0.01958289183676243, 0.0011734167346730828, 0.02362401783466339, 0.028301121667027473, 0.018681921064853668, -0.017264215275645256, -0.0036999478470534086, 0.012096874415874481, -0.007121654227375984, -0.003673448460176587, 0.004971908405423164, -0.007532391231507063, 0.004581045359373093, -0.005803320091217756, 0.00039334717439487576, 0.02362401783466339, 0.031110035255551338, -0.015329774469137192, 0.014919036999344826, -0.015250276774168015, 0.048970479518175125, -0.004653918091207743, 0.011189278215169907, -0.0008206464117392898, 0.02451173961162567, 8.658813749207184e-05, 0.025796949863433838, 0.0013166778953745961, 0.007664887234568596, -0.005435643717646599, 0.008320742286741734, -0.004531359300017357, 0.011911380104720592, -0.011050157248973846, 0.0002492578933015466, -0.020947599783539772, -0.00933433510363102, -0.00870497990399599, -0.031004037708044052, 0.019715389236807823, 0.009427082724869251, 0.02016587369143963, 0.040119756013154984, -0.0036204501520842314, 0.015767011791467667, -0.01740995980799198, -0.021239090710878372, -0.01653548702597618, -0.03481991961598396, -0.0072210258804261684, -0.0025720763951539993, -0.009983565658330917, -0.01776769943535328, 0.00710177980363369, -0.02510797046124935, -0.019755138084292412, -0.013282712548971176, -0.006253805942833424, 0.009347585029900074, 0.013673575595021248, 0.009393958374857903, -0.006767227780073881, -0.016363242641091347, -0.004163683392107487, 0.049288470298051834, 0.034793421626091, -0.0032047443091869354, -0.026128189638257027, 0.0010235307272523642, -0.022696545347571373, 0.029970569536089897, -0.0005163199384696782, -0.021053597331047058, 0.023716764524579048, -0.015555017627775669, 0.016747480258345604, -0.012944848276674747, -0.017383459955453873, 0.019675640389323235, -0.025531958788633347, -0.026843667030334473, 0.019158905372023582, -0.014813040383160114, -0.005018281750380993, -0.009996814653277397, -0.00118501007091254, 0.009022969752550125, -0.01803269051015377, -0.017224466428160667, 0.00010848101373994723, 0.008174996823072433, -0.004524734802544117, -0.008963347412645817, -0.0047731646336615086, -0.007134903687983751, 0.003320678137242794, -0.031189532950520515, 0.011931254528462887, 0.018867414444684982, 0.022643547505140305, 0.015117781236767769, 0.002807256765663624, 0.023756513372063637, -0.0021199341863393784, 0.012255869805812836, -0.007260774727910757, -0.01212999876588583, 0.022961538285017014, -0.027029162272810936, 0.026128189638257027, -0.006326678674668074, -0.007910004816949368, -0.006329991389065981, -0.017900194972753525, 0.02306753396987915, -0.023756513372063637, 0.00812862254679203, 0.013362210243940353, 0.006975908763706684, -0.01743645966053009, -0.03731084242463112, 0.024657486006617546, 0.01770145073533058, -0.03643637150526047, -0.019384149461984634, 0.03428993746638298, -0.01066591963171959, -0.027082160115242004, -0.004196807276457548, -0.16864076256752014, 0.015197278931736946, 0.004683729726821184, -0.0008107091998681426, 0.011752385646104813, -0.007300523575395346, 0.000338899641064927, -1.4336469575937372e-05, -0.017621953040361404, -0.0032262748572975397, 0.03156052157282829, -0.0011800414649769664, -0.02184857241809368, -0.010235307738184929, 0.03320347145199776, 0.0039483774453401566, -0.020324869081377983, 0.029679078608751297, -0.008102123625576496, 0.009890818037092686, 0.05183239281177521, 0.007578765042126179, 0.007399895694106817, -0.020020129159092903, -0.006783789489418268, -0.00553501583635807, -0.005710572935640812, -0.0046274191699922085, 0.0067274789325892925, -0.011679512448608875, -0.0063167414627969265, -0.00811537355184555, 0.020020129159092903, 0.001647089491598308, 0.012891850434243679, -0.0036800734233111143, 0.00038009759737178683, -0.008181621320545673, 0.0005850521847605705, 0.04844049736857414, 0.011195902712643147, 0.00812862254679203, -0.013660326600074768, 0.022418305277824402, 0.016999222338199615, 0.0057503217831254005, 0.009168715216219425, -0.003391894744709134, -0.02689666487276554, -0.01478654146194458, 0.0072210258804261684, -0.03670136258006096, 0.009440331719815731, 0.007161403074860573, 0.001390378805808723, 0.011056781746447086, 0.0008595670806244016, 0.009996814653277397, 0.016707731410861015, -0.025505458936095238, -0.004329303279519081, -0.007207776419818401, 0.013382084667682648, -0.02922859415411949, -0.021437834948301315, -0.019158905372023582, -0.00885734986513853, 0.013117093592882156, -0.016217496246099472, 0.019119156524538994, 0.001695119310170412, 0.009009720757603645, 0.025624705478549004, -0.004190182313323021, -0.01333571132272482, 0.003355458378791809, 0.005230275448411703, 0.008194871246814728, 0.00215140194632113, 0.019927382469177246, 0.014468551613390446, 0.012024002149701118, -0.020894601941108704, 0.03815881535410881, -0.03020906262099743, 0.0029612830840051174, 0.0059590027667582035, 0.017886945977807045, -0.02013937570154667, 0.0012462894665077329, -0.013229714706540108, -0.0005043124547228217, 0.010692418552935123, -0.0028503178618848324, 0.010699043050408363, 0.0036171379033476114, 0.013647076673805714, 0.009599327109754086, -0.0002202744217356667, -0.0016876664012670517, 0.020616360008716583, 0.0024180500768125057, -0.025293465703725815, 0.02806263044476509, 0.03845030814409256, -0.003706572577357292, -2.3950184186105616e-05, 0.012825601734220982, 0.022100314497947693, -0.010831538587808609, -0.03338896483182907, 0.0109176617115736, 0.03338896483182907, -0.006396239157766104, 0.001026015030220151, 0.05760921165347099, -0.022352056577801704, -0.011189278215169907, 0.004988470114767551, -0.021384837105870247, 0.055436279624700546, -0.011653013527393341, -0.023133782669901848, -0.0013597391080111265, 0.0005167339695617557, -0.020775355398654938, -0.10562572628259659, -0.030553551390767097, 0.00826111901551485, 0.008042500354349613, -0.009234963916242123, 0.005766883492469788, 0.006455862428992987, 0.028831105679273605, -0.037761326879262924, 0.033892448991537094, 0.01005643792450428, -0.010467175394296646, -0.01923840306699276, 0.006134559866040945, 0.03548239916563034, -0.01713171787559986, 0.007558890618383884, 0.009884193539619446, -0.02158358134329319, 0.020205622538924217, -0.017012473195791245, -0.022246060892939568, -0.006088186055421829, -0.007870255969464779, -0.021172843873500824, -0.003367051715031266, -0.019105907529592514, 0.01226911973208189, 0.018416928127408028, -0.006310116965323687, -0.01866867020726204, -0.015237027779221535, 0.020828353241086006, -0.03198450803756714, -0.003911941312253475, -0.0008968315669335425, -0.024418992921710014, -0.018257934600114822, 0.007459518499672413, -0.04369714483618736, 0.02245805412530899, -0.0015195622108876705, -0.024948976933956146, -0.0110634071752429, -0.0005937471869401634, -0.0028486617375165224, -0.006025250535458326, 0.035058412700891495, 0.0039318157359957695, -0.008373740129172802, -0.03015606477856636, 0.008049125783145428, -0.014402302913367748, -0.022921789437532425, 0.0031053724233061075, -0.01742320880293846, 0.012202871032059193, -0.03079204447567463, -0.029043098911643028, -0.017648452892899513, -0.02574395202100277, -0.010540047660470009, -0.038900792598724365, 0.01286535058170557, 0.0010583109688013792, 0.017621953040361404, -0.015131030231714249, 0.003925190772861242, -0.0018963473848998547, 0.00826774351298809, -0.011036907322704792, -0.0030556863639503717, -0.003052374115213752, 0.017860446125268936, -0.04666505381464958, 0.0015576548175886273, -0.018575923517346382, -0.018469927832484245, 0.02216656319797039, -0.013415209017693996, -0.014680544845759869, -0.00451810983940959, 0.0011816977057605982, -0.03219650313258171, 0.008996470831334591, -0.0008960034465417266, 0.015528518706560135, 0.016124749556183815, -0.01392531767487526, -0.037416838109493256, 0.028884103521704674, 0.022047316655516624, 0.01348808128386736, 0.008108748123049736, -0.005160714965313673, 0.00991731695830822, -0.03285897895693779, -0.01536952331662178, 0.030580051243305206, 0.03232899680733681, -0.0026780732441693544, -0.026697922497987747, -0.0625910609960556, 0.01522377785295248, 0.019291400909423828, 0.004713541362434626, -0.02215331234037876, -0.010559922084212303, 0.0017506019212305546, -0.02872510813176632, -0.01257385965436697, 0.003487954381853342, -0.00673741614446044, 0.014428802765905857, -0.014601047150790691, -0.008135247975587845, -0.009539703838527203, -0.019158905372023582, 0.006532047409564257, -0.009162090718746185, 0.0029082847759127617, 0.024140750989317894, 0.009943816810846329, -0.010606296360492706, 0.012659982778131962, -0.011812008917331696, -0.009215089492499828, 0.0012123374035581946, -0.01951664499938488, 0.018867414444684982, -0.00732039799913764, -8.627759962109849e-05, 0.022961538285017014, -0.00903621967881918, -0.01947689615190029, -0.00380594446323812, -0.010851413011550903, -0.018986660987138748, -0.03370695561170578, 0.023571018129587173, -0.010354554280638695, -0.02545246109366417, -0.0030209063552320004, -0.02574395202100277, 0.019437147304415703, -0.015833258628845215, -0.02012612484395504, 0.003968251869082451, 0.014839539304375648, -0.011348272673785686, 0.016628233715891838, 0.008956721983850002, 0.03545590117573738, 0.01020218338817358, -0.013845820911228657, -0.02488272823393345, -0.0005171480006538332, -0.03262048959732056, 0.0218353234231472, -0.022948287427425385, 0.005859630648046732, -0.01715821772813797, 0.03020906262099743, 0.024948976933956146, 0.030818544328212738, -0.006512172985821962, 0.011421145871281624, 0.000939892721362412, 0.0036105129402130842, -0.00933433510363102, 0.016773980110883713, -0.0025902946945279837, 0.027612144127488136, -0.01568751409649849, 0.021689577028155327, -0.0040113129653036594, 0.0032759609166532755, -0.011381397023797035, 0.017038971185684204, -0.019702138379216194, -0.025200719013810158, 0.01808568835258484, -0.0006140356417745352, -0.0009788133902475238, -0.018509676679968834, 0.025969194248318672, 0.00553170358762145, 0.02814212627708912, -0.02484297938644886, 0.013832570984959602, -0.018509676679968834, -0.006068311631679535, -0.012739479541778564, 0.0023733326233923435, 0.02455148845911026, -0.010361178778111935, -0.010294931009411812, 0.009340960532426834, 0.005856318399310112, 0.01567426323890686, -0.018827665597200394, 0.02308078482747078, 0.028857605531811714, -0.006078248843550682, -0.005982189439237118, 0.0013001159531995654, -0.030527053400874138, 0.010911036282777786, -0.026393180713057518, -0.00659167068079114, -0.022895289584994316, 0.02513447031378746, 0.015846507623791695, -0.005836443975567818, 0.010791790671646595, 0.023279527202248573, -0.02718815580010414, 0.008797727525234222, 0.00046290751197375357, 0.01866867020726204, -0.026737671345472336, 0.01896016113460064, 0.015740511938929558, 0.023531269282102585, 0.030050067231059074, -0.00855260994285345, 0.020947599783539772, -0.023809511214494705, -0.007870255969464779, -0.017608704045414925, 0.015568267554044724, 0.004266367759555578, -0.024101002141833305, 0.005230275448411703, -0.0007448753458447754, -0.002649917732924223, -0.03079204447567463, -0.016455989331007004, -0.004203432239592075, 0.016085000708699226, 0.02251105196774006, 0.07022282481193542, 0.019450396299362183, -0.006306804250925779, -0.005376020912081003, -0.011341648176312447, 0.03164001926779747, 0.013938567601144314, -0.0010773572139441967, -0.02539946138858795, -0.003428331110626459, -0.004902347922325134, 0.010983909480273724, 0.005617825780063868, -0.01595250517129898, 0.002012281445786357, 0.004282929468899965, -0.005853006150573492, 0.009605951607227325, -0.03190501034259796, -0.002722790464758873, 0.013686825521290302, -0.006677792873233557, 0.008910348638892174, -0.01020880788564682, -0.015793509781360626, -0.0037728205788880587, 0.0015816696686670184, -0.0012346961302682757, -0.00975832249969244, -0.030262060463428497, 0.012898474931716919, 0.0008036703802645206, -0.022974787279963493, -0.020934350788593292, 0.002391550922766328, -0.00546545535326004, -0.019675640389323235, -0.0008761290810070932, 0.0026416368782520294, 0.004074248485267162, 0.012037252075970173, 0.03466092422604561, -0.035058412700891495, -0.010235307738184929, -0.0030341558158397675, -0.00826774351298809, 0.005730447359383106, 0.008287617936730385, -0.004902347922325134]" +26,And with PromoteIQ we offer an omnichannel media platform for retailers like the auto group looking to generate additional revenue while maintaining ownership of their own data and customer relationships. Now onto gaming. We are adding new gamers to our ecosystem as we execute on our ambition to reach players wherever and whenever they want on any device. We saw usage growth across all platforms driven by the strength of console.,"[-0.017536817118525505, -0.010471336543560028, -0.0029717760626226664, -0.037931881844997406, -0.03290991485118866, 0.0077132610604166985, -0.00570647744461894, -0.01654845103621483, 0.009149063378572464, -0.027433833107352257, 0.008962075226008892, 0.0006544585339725018, 0.007245790679007769, -0.0033958384301513433, -0.0038132225163280964, 0.011506449431180954, 0.017750518396496773, -0.0025410354137420654, 0.005309127736836672, 0.010851990431547165, -0.006918561644852161, 0.00787353701889515, -6.067723734304309e-05, -0.0007763347239233553, -0.021129660308361053, 0.0028799513820558786, 0.007052124477922916, -0.017657024785876274, 0.006240729708224535, -0.01725633442401886, 0.006985343061387539, -0.01323608960956335, -0.007719939108937979, -0.002313978271558881, -0.016788864508271217, -0.02401462011039257, 0.008588098920881748, 0.014731994830071926, 0.016495026648044586, -0.021102948114275932, 0.01091209426522255, 0.010892059653997421, -0.0037764927837997675, -0.00721239997074008, -0.021209798753261566, 0.02481599897146225, -0.01252820622175932, -0.021450212225317955, -0.003806544467806816, 0.0017446662532165647, -0.017389897257089615, 0.0011219289153814316, -0.02229165844619274, -0.010277669876813889, 0.006163930986076593, -0.002916681347414851, -0.001520113437436521, 0.02060876600444317, 0.011359530501067638, -0.008387753739953041, -0.009756774641573429, -0.0015009137568995357, -0.02967769093811512, 0.012501493096351624, -0.018311481922864914, 0.0012671785661950707, -0.02330673672258854, 0.005058697424829006, 0.024749217554926872, -0.013516572304069996, 0.03536747395992279, 0.02804822288453579, -0.0060704369097948074, 0.015546728856861591, 0.007252468727529049, -0.01900601014494896, -0.008474569767713547, -0.02884959988296032, 0.018551895394921303, 0.008381076157093048, 0.0161611195653677, -0.044903866946697235, -0.03258936479687691, 0.024976273998618126, 0.011259357444941998, 0.02991810441017151, -0.02520333044230938, 0.030292080715298653, 0.00511546153575182, -0.007372675463557243, 0.012174264527857304, -0.0027363712433725595, 0.010364485904574394, 0.005372570361942053, -0.005830023437738419, 0.027286913245916367, -0.004267336800694466, 0.024655723944306374, -0.010084004141390324, -0.010958841070532799, 0.036035288125276566, -0.001614442327991128, -0.0381188690662384, -0.010164141654968262, -0.0213166493922472, 0.014932339079678059, -0.018845735117793083, 0.006978665012866259, 0.038946960121393204, 0.011346173472702503, 0.0016803890466690063, 0.015613510273396969, 0.03293662518262863, -0.010351129807531834, -0.005813328083604574, 0.010124072432518005, -0.01374362874776125, 0.018778953701257706, -0.009636567905545235, -0.0068350848741829395, 0.006621384061872959, 0.011266035959124565, 0.0034559417981654406, 0.0038098834920674562, -0.010851990431547165, 0.001516774413175881, -0.017069347202777863, -0.03264278918504715, 0.017122771590948105, 0.006050402298569679, -0.00427735410630703, -0.024709148332476616, 0.01051140483468771, 0.014064179733395576, -0.026645811274647713, 0.018431689590215683, 0.004761519841849804, 0.020034445449709892, -0.008721661753952503, -0.01535974070429802, -0.003526062238961458, 0.006437734700739384, 0.011713472194969654, -0.019914237782359123, 0.0020318266469985247, 0.01992759481072426, 0.01968718133866787, -0.0006715712952427566, 0.03312361612915993, 0.0102442791685462, 0.021597132086753845, -0.014224455691874027, -0.0015459912829101086, 0.005612983368337154, 0.020061157643795013, -0.0020318266469985247, 0.0029283680487424135, 0.01642824523150921, -0.007359319366514683, 0.0011369547573849559, 0.0028899686876684427, 0.0028665950521826744, -0.015386453829705715, 0.01613440550863743, 0.011726828292012215, 0.02430845983326435, 0.04022916406393051, -0.005155530292540789, -0.005062036216259003, -0.011513127945363522, -0.007813433185219765, 0.03689008951187134, -0.025831077247858047, 0.010958841070532799, -0.025817720219492912, 0.015413166023790836, 0.00741942273452878, 0.0354476124048233, 0.004197216127067804, -0.007379353977739811, 0.04527784511446953, 0.0075796982273459435, 0.018632033839821815, -0.0001866751117631793, -0.0026512248441576958, -0.015132684260606766, 0.00999050959944725, -0.019086146727204323, -0.009943762794137001, -0.01837826333940029, 0.03200168535113335, 0.02552388235926628, -0.012007310055196285, -0.013376330956816673, -0.6453762650489807, 0.004040279891341925, 0.002758075250312686, -0.02357386238873005, 0.0035527748987078667, 0.029731115326285362, 0.024121470749378204, 0.005666408687829971, 0.014398087747395039, 0.02778109721839428, 0.009636567905545235, 0.032776352018117905, 0.0003689676814246923, -0.023520438000559807, 0.004016906023025513, -0.018458401784300804, 0.026725949719548225, -0.03555446118116379, -0.0038800041656941175, -0.004233946092426777, -0.010651646181941032, -0.005359213799238205, 0.00996379740536213, 0.0009115672437474132, 0.013322905637323856, 0.037611331790685654, -0.009549751877784729, -0.0059769428335130215, 0.009703349322080612, 0.005943552125245333, -0.026405397802591324, 0.02019472047686577, 0.006237390451133251, 0.0033056833781301975, 0.04567853361368179, -0.020234789699316025, -0.022371796891093254, 0.02282590977847576, -0.004357491619884968, 0.041431233286857605, -0.040870267897844315, -0.019379986450076103, 0.025777652859687805, -0.00018135346181225032, 0.024735860526561737, 0.03510034829378128, 0.021530350670218468, 0.002576095750555396, -0.017069347202777863, -0.006521211937069893, -0.007292537949979305, -0.009629889391362667, -0.006006994284689426, -0.015346384607255459, 0.019780674949288368, 0.022692346945405006, 0.00721907801926136, -0.01374362874776125, 0.017803942784667015, 0.004684721119701862, -0.009316016919910908, 0.0024575586430728436, -0.030398931354284286, -0.033310603350400925, -0.03269621357321739, 0.009189131669700146, 0.005502793937921524, 0.002804822288453579, 0.005579592660069466, -0.014130962081253529, -0.012581631541252136, 0.025283468887209892, -0.017737161368131638, -0.02087589167058468, 0.004107061307877302, 0.013569997623562813, 0.03408527001738548, 0.01592070609331131, -0.017470035701990128, 0.01618783175945282, -0.009623211808502674, -0.02442866563796997, 0.010010544210672379, -0.009182454086840153, 0.009429545141756535, 0.005863414146006107, -0.01755017414689064, -0.002126990118995309, -0.005342518445104361, -0.003900038544088602, 0.012948929332196712, -0.002604477806016803, 0.009897015988826752, -0.0012613352155312896, 0.001616111840121448, 0.007753330282866955, -0.008267547935247421, 0.01577378623187542, 0.006925239693373442, -0.0013631769688799977, -0.019940949976444244, -0.010291025973856449, 0.024735860526561737, 0.018698815256357193, 0.017470035701990128, 0.040362726897001266, -0.009002143517136574, -0.005659730639308691, 0.016121050342917442, -0.012721871957182884, -0.0013206037692725658, -0.021129660308361053, -0.01657516323029995, -0.005843379534780979, -0.025043055415153503, -0.026912936940789223, 0.006658113561570644, -0.011299426667392254, -0.006521211937069893, -0.021744050085544586, 0.021623844280838966, -0.0010125741828233004, 0.012788653373718262, -0.0010134089970961213, -0.006097149103879929, 0.024455377832055092, 0.011332817375659943, -0.009275947697460651, -0.004437629599124193, -0.0011937189847230911, 0.009937084279954433, -0.04960528388619423, 0.0021653894800692797, -0.004738145973533392, 0.01212751679122448, 0.009429545141756535, 0.019914237782359123, -0.028181785717606544, 0.002521001035347581, -0.017563529312610626, -0.028716037049889565, -0.012087448500096798, 0.008514638990163803, 0.002137007424607873, -0.007546307519078255, -0.027594108134508133, -0.02229165844619274, 0.010110716335475445, 0.002342360559850931, -0.028261924162507057, -0.006043724250048399, 0.009496326558291912, -0.010331095196306705, 0.03264278918504715, 0.0018682120135053992, 0.0050119501538574696, -0.01980738714337349, -0.0222382340580225, -0.019139572978019714, -0.027380406856536865, -3.516462311381474e-05, 0.02398790791630745, 0.011993953958153725, -0.017122771590948105, 0.002856577979400754, -0.018538540229201317, -0.029063301160931587, 0.024054689332842827, -0.014090892858803272, 0.004574531689286232, 0.00466134725138545, 0.01161997765302658, 0.00033515956602059305, 0.02253207191824913, 0.020715616643428802, -0.004701416473835707, -0.01552001666277647, -0.015319672413170338, 0.025002986192703247, -0.014531650580465794, 0.0134898591786623, -0.011493093334138393, -0.02567080222070217, -0.007993743754923344, 0.021036166697740555, -0.02243857830762863, 0.02520333044230938, 0.03878668323159218, -0.01458507589995861, 0.010571508668363094, -0.010478014126420021, 0.0498189851641655, -0.025029700249433517, 0.015493303537368774, -0.01784401200711727, 0.005769920069724321, -0.0033557694405317307, -0.007492882199585438, -0.0028665950521826744, -0.007980386726558208, 0.02155706286430359, 0.01443815603852272, -0.006778320297598839, -0.003946785815060139, 0.015226177871227264, -0.024335172027349472, 0.015466591343283653, -0.027059856802225113, 0.02994481660425663, 0.011045657098293304, 0.01606762409210205, -0.020274857059121132, -0.02360057644546032, -0.013563319109380245, -0.009002143517136574, 0.025002986192703247, -0.002758075250312686, -0.0004213494248688221, 0.0005626339698210359, -0.017416611313819885, -0.0032055112533271313, -0.03611542657017708, 0.01023092307150364, -0.004167164675891399, -0.007199043873697519, 0.03288320079445839, -0.004607922397553921, 0.03323046490550041, 0.018338194116950035, -0.0313071571290493, -0.0003149164258502424, 0.036329127848148346, 0.005759902764111757, 0.01296896394342184, 0.024268390610814095, -0.004898421932011843, 0.03892024606466293, -0.005966925527900457, 0.04693402722477913, -0.01701592095196247, 0.011633333750069141, 0.04132438078522682, 0.01971389353275299, -0.007078837137669325, 0.017296403646469116, 0.009663280099630356, 0.01728304848074913, -0.007940318435430527, -0.02309303730726242, 0.010751818306744099, -0.015666935592889786, 0.022638922557234764, -0.0051989383064210415, -0.023467013612389565, 0.027086568996310234, -0.01040455512702465, -0.00741942273452878, 0.00627078115940094, 0.027594108134508133, 0.03889353573322296, 0.017176197841763496, -0.0074327788315713406, -0.02279919758439064, -0.006013672333210707, -0.013523249886929989, -0.0022622228134423494, 0.02107623592019081, -0.008548029698431492, 0.011306105181574821, -0.009703349322080612, -0.00858142040669918, 0.004143790807574987, 0.011246001347899437, -0.012668447569012642, -0.00031366426264867187, 0.014932339079678059, -0.010084004141390324, 0.006878492888063192, -0.020568696781992912, 0.03892024606466293, 0.01180028822273016, -0.022037889808416367, 0.024027977138757706, 0.021570418030023575, -0.010043934918940067, -0.0014775402378290892, -0.023426944389939308, 0.006053741555660963, -0.01550666056573391, 0.009649924002587795, -0.0013573336182162166, 0.00658799335360527, -0.001428288989700377, -0.007038768380880356, -0.0002758910122793168, 0.012013988569378853, 0.024335172027349472, -0.013590031303465366, 0.01942005567252636, -0.016561808064579964, 0.01980738714337349, 0.01847175881266594, -0.0356345996260643, 0.0035360795445740223, 0.021690625697374344, -0.001377368113026023, -0.025577306747436523, -0.007158974651247263, 0.002046852372586727, -0.020822465419769287, -0.003485993482172489, -0.02262556552886963, -0.013075814582407475, 0.012935573235154152, -0.011092403903603554, -0.012862113304436207, -0.008274225518107414, -0.040309302508831024, 0.022865979000926018, -0.0007479526102542877, -0.026138272136449814, -0.025550594553351402, 0.0010058960178866982, 0.005005272105336189, 0.07629116624593735, 0.004748163279145956, -0.004794910550117493, 0.01835155114531517, -0.0283153485506773, 0.020822465419769287, -0.020301571115851402, -0.014358018524944782, 0.013189342804253101, -0.0007671522907912731, -0.017657024785876274, 0.029250288382172585, 0.012648412957787514, -0.023467013612389565, 0.007225756533443928, 0.015426522120833397, -0.003890021238476038, -0.02617834135890007, -0.00945625826716423, -0.0018632033606991172, 0.006163930986076593, 0.011740184389054775, -0.021156374365091324, 0.02627183496952057, 0.02962426468729973, 0.013082492165267467, 0.024735860526561737, 0.036329127848148346, -0.01467856951057911, -0.020114582031965256, -0.00808055978268385, 0.007325928658246994, -0.013009033165872097, 0.014758707955479622, -0.017616955563426018, 0.013984042219817638, 0.0003195076424162835, 0.008427822962403297, 0.0028348739724606276, 0.016267968341708183, 0.02612491510808468, 0.005519489292055368, 0.0044443076476454735, -0.031948260962963104, 0.021330004557967186, 0.004998594056814909, -0.01276194117963314, -0.001567695289850235, -0.0069052050821483135, -0.022719061002135277, 0.01740325428545475, 0.004901760723441839, -0.04802924022078514, -0.0034960105549544096, -0.017683736979961395, 0.017630310729146004, -0.016561808064579964, -0.025817720219492912, -0.005873431451618671, -0.055134791880846024, 0.006340901833027601, -0.007239112630486488, 0.0024108116049319506, -0.013436433859169483, -0.010518083348870277, -0.01660187728703022, -0.023881057277321815, -0.011887104250490665, -0.0024909493513405323, 0.01363677904009819, -0.0048149446956813335, -0.037691470235586166, -0.025417031720280647, -0.01562686637043953, 0.030078379437327385, 0.005666408687829971, 0.020528627559542656, 0.016201186925172806, 0.015279603190720081, 0.029250288382172585, 0.008955396711826324, -0.011059013195335865, -0.004975220188498497, -0.03782503306865692, -0.011152507737278938, -0.01537309680134058, -0.013563319109380245, 9.245061664842069e-05, -0.027861233800649643, -0.005449369084089994, 0.022518714889883995, -0.024588942527770996, 0.013095848262310028, 0.016495026648044586, 0.021543705835938454, 0.011279392056167126, 0.00029529936728067696, -0.013563319109380245, 0.013396365568041801, 0.0005626339698210359, -0.024762572720646858, -0.040549714118242264, -0.03373800590634346, -0.03779831901192665, 0.029784541577100754, -0.00815401878207922, 0.00475150253623724, -0.010538117960095406, 0.008073881268501282, -0.024388596415519714, -0.02116972953081131, 0.018952583894133568, -0.01302906684577465, 0.004768197890371084, -0.01135285198688507, -0.016267968341708183, 0.006187304388731718, 0.012721871957182884, -0.02938385121524334, -0.008868580684065819, 0.004090365953743458, -0.03472637012600899, 0.013102526776492596, -0.007332606706768274, -0.012661769054830074, -0.004938490688800812, 0.006234051194041967, -0.020034445449709892, -0.019914237782359123, 0.013129238970577717, 0.025577306747436523, 0.01592070609331131, 0.004624617751687765, -0.013262802734971046, -0.0186453890055418, 0.007566342130303383, -0.015960773453116417, 0.008474569767713547, 0.012294471263885498, -0.007452813442796469, -0.027193419635295868, -0.007365997415035963, -0.006123861763626337, -0.017470035701990128, -0.012361252680420876, -0.02997152879834175, -0.01779058761894703, 0.010003865696489811, -0.008000421337783337, 0.01374362874776125, -0.03363115340471268, -0.011660046875476837, -0.019580330699682236, -0.0006744929705746472, -0.02323995530605316, -0.04380865395069122, -0.021330004557967186, -0.033551014959812164, 0.03672981634736061, 0.018939228728413582, 0.04776211455464363, -0.02493620477616787, -0.005576253868639469, -0.010551474057137966, 0.01344311237335205, -0.013957330025732517, 0.025657445192337036, 0.006831745617091656, -0.0019466802477836609, -0.000784265052061528, -0.026191696524620056, 0.01859196461737156, 0.0108653474599123, 0.008588098920881748, -0.023386875167489052, 0.01341640017926693, -0.019406698644161224, 0.017029277980327606, -0.025977997109293938, -0.028769463300704956, -0.015146040357649326, 0.008688271045684814, 0.0017847351264208555, 0.020568696781992912, -0.03371129184961319, -0.006688165478408337, 0.026632454246282578, 0.005235668271780014, 0.016802221536636353, 0.005259041674435139, 0.0063776313327252865, -0.037130504846572876, 0.0060704369097948074, 0.0025443744380027056, 0.007406066171824932, -0.004621278494596481, -0.005375909153372049, -0.034379106014966965, 0.00014128457405604422, 0.010638290084898472, 0.02306632325053215, 0.02591121569275856, 0.021303292363882065, -0.000274012767476961, 0.005516150500625372, 0.024027977138757706, -0.034379106014966965, -0.0274872574955225, 0.0005154695827513933, -0.03445924445986748, 0.0037898491136729717, 0.003172120312228799, -0.002138677053153515, -0.0066414182074368, 0.006764964200556278, 0.018284769728779793, -0.01553337275981903, -0.004591227043420076, -0.004728129133582115, -0.01258830912411213, -0.002091930015012622, -0.0022572141606360674, 0.04506414383649826, -0.012902182526886463, 0.011559874750673771, 0.034940071403980255, 0.036542825400829315, -0.0157470740377903, -0.010845312848687172, -0.001993427285924554, -0.008247513324022293, 0.015453235246241093, 0.019206354394555092, 0.01064496859908104, -0.017630310729146004, -0.00522565096616745, -0.008307616226375103, -0.02092931605875492, -0.024829354137182236, 0.0208091102540493, -0.006327545270323753, -0.004631295800209045, -0.01672208309173584, -0.008487926796078682, -0.009923728182911873, 0.021009454503655434, -0.020408421754837036, -0.0053658923134207726, -0.005135496146976948, 0.004584548529237509, -0.007072159089148045, 0.03750447928905487, -0.0005526167806237936, 0.00627745920792222, 0.009683314710855484, 0.007365997415035963, -0.000160379902808927, 0.009189131669700146, -0.01888580247759819, 0.003187146270647645, -0.004461003001779318, 0.00034288116148673, -0.028502335771918297, 0.026378685608506203, 0.02855576202273369, 0.009816877543926239, -0.0005229825037531555, 0.00015683213132433593, 0.015546728856861591, 0.024027977138757706, -0.023613931611180305, 0.008975431323051453, 0.014959052205085754, 0.0011645021149888635, -0.011506449431180954, -0.014651857316493988, -0.014745350927114487, -0.033577729016542435, -0.011392921209335327, -0.006113844458013773, -0.0013055779272690415, -0.016441600397229195, -0.013189342804253101, 0.006407683249562979, 0.001473366399295628, -0.0011085725855082273, -0.007325928658246994, -0.011312782764434814, 0.014611788094043732, -0.01580049842596054, -0.011172542348504066, 0.011673402972519398, 0.019900880753993988, 0.0033991774544119835, 0.023280024528503418, 0.005549541208893061, 0.006514533422887325, 0.00957646407186985, -0.016909072175621986, 0.008060525171458721, 0.0027914659585803747, -0.0034175424370914698, -0.01929984800517559, 0.003950124606490135, -0.0022605531848967075, -0.023814275860786438, 0.020769041031599045, -0.02238515205681324, -0.03216196224093437, 0.01322273351252079, -0.00021390942856669426, -0.004357491619884968, -0.004754841327667236, 0.0007533786119893193, 0.0047348071821033955, 0.0214101430028677, -0.0063776313327252865, -0.007559663616120815, -0.023694070056080818, 0.0028632560279220343, 0.0037764927837997675, -0.010651646181941032, 0.02807493507862091, -0.003392499405890703, 0.024508804082870483, -0.01562686637043953, 0.008220800198614597, 0.006290815770626068, -0.02253207191824913, -0.04212575778365135, -0.020501915365457535, 0.004481037613004446, -0.019246423617005348, 0.002038504695519805, 0.000857307284604758, 0.0045478190295398235, -0.019379986450076103, 0.021276580169796944, 0.012040700763463974, -0.012154229916632175, -0.007733295671641827, 0.021249867975711823, 0.03672981634736061, -0.003375803818926215, -0.004097044002264738, -0.018632033839821815, -0.020475203171372414, -0.02404133416712284, -0.036062002182006836, 0.013396365568041801, -0.009583142586052418, 0.03990861400961876, 0.010851990431547165, -0.04501071944832802, -0.04175178334116936, -0.013603388331830502, -0.05096762627363205, -0.028475623577833176, 0.024602297693490982, 0.0050019328482449055, -0.001950019272044301, 0.0072992159985005856, 0.004891743417829275, 0.02935713902115822, -0.004915117286145687, 0.0017496747896075249, -0.019727250561118126, -0.0030636005103588104, -0.01586727984249592, -0.04105725511908531, -0.0027864573057740927, -0.014491581358015537, -0.012835401110351086, 0.0013222733978182077, 0.004828301258385181, -0.0009199149208143353, 0.005175564903765917, 0.04271343722939491, 0.019553618505597115, 0.013342940248548985, 0.0069586304016411304, 0.019112860783934593, 0.007800077088177204, -0.0018248039996251464, 0.03208182379603386, -0.0209960974752903, 0.00923587940633297, 0.002669589826837182, -0.00475150253623724, -0.008227478712797165, -0.00037251546746119857, 0.007472848054021597, 0.01233453955501318, 0.02051527053117752, -0.006491160020232201, -0.013690203428268433, -0.00015307568537537009, -0.008327650837600231, 0.018418332561850548, -0.004844996612519026, 0.0010676688980311155, 0.00627078115940094, 0.00418719882145524, -0.036062002182006836, -0.019433410838246346, 0.02481599897146225, 0.005893465597182512, -0.020822465419769287, 0.02472250536084175, -0.025430388748645782, -0.004811605904251337, -0.008728339336812496, 0.0014800445642322302, 0.023587219417095184, 0.0008965414017438889, 0.01087870355695486, -0.015226177871227264, 0.0015151049010455608, 0.010785209015011787, 0.0054259952157735825, -0.014010755345225334, -0.01613440550863743, -0.0038199007976800203, -0.001229614019393921, -0.015960773453116417, -0.0038566305302083492, 0.0009341060067526996, -0.008942040614783764, -0.0144114438444376, 0.005415978375822306, 0.020568696781992912, -0.023026255890727043, 0.008087237365543842, 0.018017644062638283, 0.006043724250048399, 0.01811113767325878, 0.21156373620033264, -0.002178745809942484, -0.006157252471894026, 0.018578607589006424, 0.0014099240070208907, 0.006551263388246298, 0.027674246579408646, 0.00013439773465506732, 0.009890337474644184, -0.003509366884827614, -0.004417594987899065, 0.021931039169430733, -0.008841868489980698, -0.0032355627045035362, 0.011105760931968689, -0.0199810191988945, -0.026138272136449814, 0.0013948981650173664, -0.009155740961432457, 0.022331727668642998, 0.012354574166238308, -0.02454887330532074, -0.01483884546905756, 0.0012938912259414792, 0.01776387356221676, 0.003327387385070324, 0.005102105438709259, 0.021036166697740555, 0.04298056289553642, 0.02535025030374527, -0.022305015474557877, 0.023440299555659294, 0.013135917484760284, 0.00022622226970270276, -0.002521001035347581, 0.008588098920881748, -0.0017797264736145735, 0.006220695096999407, 0.012768619693815708, 0.031093457713723183, 0.043594952672719955, 0.009489648975431919, -0.011633333750069141, -0.004043618682771921, -0.006157252471894026, 0.01093880645930767, -0.016588520258665085, 0.010785209015011787, -0.005940212868154049, -0.0036028609611094, -0.014264524914324284, 0.007172331213951111, 0.018298126757144928, 0.040068890899419785, -0.020007731392979622, 0.03905380889773369, -0.019139572978019714, -0.0011144159361720085, 0.013376330956816673, -0.01374362874776125, 0.014625144191086292, 0.023814275860786438, 0.0010209218598902225, 0.019366629421710968, -0.01730976067483425, 0.020715616643428802, -0.013155952095985413, 0.0029150117188692093, 0.009950440376996994, -0.015292959287762642, -0.0015643562655895948, -0.007639801595360041, -0.026044778525829315, -0.008040490560233593, -0.016227900981903076, -0.021570418030023575, 0.03940107300877571, -0.016201186925172806, 0.028689324855804443, 0.019072791561484337, 0.005960247479379177, 0.01852518320083618, -0.025777652859687805, -0.004898421932011843, -0.031440719962120056, -0.024348529055714607, 0.03341745212674141, -0.019139572978019714, -0.0339784175157547, 0.005576253868639469, 0.003566131228581071, 0.00018479688151273876, -0.0023039611987769604, -0.015186108648777008, -0.02012793906033039, -0.008320972323417664, -0.005776598118245602, 0.0030552528332918882, 0.0018164563225582242, -0.009496326558291912, -0.009997188113629818, 0.06822396069765091, 0.03341745212674141, -0.004450985696166754, -0.022345084697008133, 0.012047379277646542, 0.0036329126451164484, 0.010344451293349266, 0.009643246419727802, -0.0033507607877254486, 0.008855224587023258, -0.028929738327860832, 0.015226177871227264, -0.009509682655334473, -0.014037467539310455, 0.0036696423776447773, 0.0035961829125881195, -0.009629889391362667, 0.01929984800517559, -0.025270113721489906, 0.0009716705535538495, -0.005379248410463333, -0.007793399039655924, 0.018404977396130562, -0.011092403903603554, -0.006421039346605539, -0.018298126757144928, 0.002808161312714219, -0.032188672572374344, 0.009636567905545235, 0.007339284755289555, -0.014651857316493988, -0.0047748759388923645, -0.020435133948922157, 0.011419633403420448, 0.0005196434212848544, 0.021276580169796944, -0.009816877543926239, -0.015426522120833397, 0.021543705835938454, -0.004898421932011843, 0.011246001347899437, 0.004127095453441143, -0.0031938243191689253, 0.018431689590215683, -0.04231274873018265, 0.015426522120833397, 0.0419921949505806, 0.012474780902266502, -0.005245685577392578, -0.017389897257089615, 0.013676847331225872, -0.031707849353551865, 0.011947207152843475, 0.011459702625870705, -0.006604688707739115, -0.021717337891459465, -0.001327281934209168, 0.008701627142727375, 0.014358018524944782, -0.022064602002501488, -0.010030578821897507, 0.016521738842129707, -0.007699904963374138, -0.005609644576907158, 0.017296403646469116, -0.16999894380569458, 0.01640153117477894, 0.01187374722212553, -0.02066219039261341, 0.013242768123745918, 0.0005931030609644949, 0.01942005567252636, -0.008180731907486916, -0.008621489629149437, 0.0034993495792150497, 0.019620399922132492, -0.007532950956374407, -0.03801202028989792, -0.020982742309570312, 0.022184807807207108, -0.0007729956414550543, 0.0015735386405140162, 0.013169308193027973, -0.0021570418030023575, 0.003849952481687069, 0.03403184190392494, -0.01654845103621483, -0.013690203428268433, -0.0011987276375293732, -0.0013072475558146834, 0.0021703981328755617, -0.0218241885304451, -0.002131998771801591, 0.017323115840554237, -0.029196863994002342, -0.015934061259031296, -0.020381707698106766, 0.018805665895342827, 0.038492847234010696, 0.005269058980047703, 0.005085410084575415, -0.012474780902266502, -0.009950440376996994, -0.006798354908823967, 0.03857298567891121, 0.018044356256723404, 0.04020245373249054, 0.008073881268501282, 0.03160099685192108, 0.022184807807207108, 0.012401320971548557, 0.002041843719780445, -0.01255491841584444, 0.010431267321109772, -0.0033140310551971197, 0.01686900295317173, -0.0283153485506773, 0.0018832377390936017, -0.007512916810810566, 0.02321324311196804, -0.003619556315243244, -0.01467856951057911, -0.006067097652703524, 0.005392604507505894, -0.03705036640167236, -0.005659730639308691, -0.007199043873697519, 0.02024814486503601, -0.038706548511981964, 0.009202488698065281, -0.0191529281437397, -0.017189553007483482, 0.01160662155598402, -0.020261501893401146, 0.017216265201568604, -0.006434395909309387, -0.011466380208730698, 0.017470035701990128, -0.005769920069724321, 0.005850058048963547, 0.002178745809942484, -0.002045182976871729, 0.014037467539310455, 0.01187374722212553, 0.003033548826351762, 0.006891848985105753, -0.005162208341062069, -0.020408421754837036, 0.00930933840572834, -0.011559874750673771, -0.007559663616120815, 0.009750096127390862, 0.03937436267733574, -0.025710871443152428, -0.005616322625428438, 0.013563319109380245, -0.011947207152843475, -0.0019283152651041746, -0.003462619846686721, 0.015292959287762642, 0.012928894720971584, 0.02389441430568695, 0.016027554869651794, 0.01689571514725685, -0.0061105056665837765, 0.012294471263885498, -0.010484692640602589, 0.005986959673464298, -0.00418052077293396, 0.033310603350400925, -0.0051588695496320724, 0.010337773710489273, -0.004724789876490831, 0.031200308352708817, -0.011059013195335865, -0.008768408559262753, 0.014184386469423771, 0.0025410354137420654, 0.02197110839188099, -0.0003472637035883963, 0.023026255890727043, -0.02855576202273369, -0.012514850124716759, 0.004344135522842407, 0.00616726977750659, 0.05951565504074097, -0.02941056527197361, -0.013783697970211506, 0.016735440120100975, -0.008928684517741203, -0.029277002438902855, -0.09680643677711487, -0.027620820328593254, 0.010444623418152332, 0.00219377176836133, 0.005038662813603878, 0.042232610285282135, -0.014959052205085754, 0.004424273036420345, -0.0161611195653677, 0.04257987439632416, -0.003143738256767392, -0.024869423359632492, -0.01417103037238121, -0.004457663744688034, 0.014892270788550377, -0.0019400020828470588, -0.0035794873256236315, -0.01374362874776125, -0.030666057020425797, 0.009389476850628853, -0.017349829897284508, -0.030158517882227898, 0.020702259615063667, 0.0006561280461028218, -0.023533795028924942, -0.0186453890055418, -0.025804365053772926, -0.004207233432680368, 0.00808055978268385, -0.0034008470829576254, 0.01061157789081335, -0.017657024785876274, 0.034405820071697235, -0.02012793906033039, -0.026018066331744194, -0.0033390740863978863, -0.00025084795197471976, -0.008441179059445858, 0.03290991485118866, 0.002696302253752947, 0.019820744171738625, -0.02116972953081131, -0.017590241506695747, -0.018017644062638283, -0.0007809259695932269, -0.019086146727204323, -0.007639801595360041, 0.009596498683094978, 0.014504937455058098, -0.005983620882034302, -0.035501036792993546, 0.005369231104850769, -0.009790165349841118, 0.000998383155092597, -0.018992653116583824, -0.00019585755944717675, 0.015760429203510284, -0.009816877543926239, -0.002916681347414851, -0.004491054452955723, -0.02250535972416401, -0.016227900981903076, -0.020982742309570312, -0.006581314839422703, -0.0006982838967815042, -0.0030268707778304815, -0.01954026147723198, -0.004888404626399279, 0.008901971392333508, -0.018031001091003418, -0.0004612096236087382, 0.010471336543560028, 0.0021703981328755617, 0.008875259198248386, -0.03477979451417923, 0.0012588308891281486, -0.028395486995577812, -0.0270732119679451, 0.025964640080928802, -0.022986186668276787, -0.03317704051733017, -0.018565252423286438, 0.019219711422920227, -0.015426522120833397, 0.0381188690662384, -0.00046913992264308035, -0.014651857316493988, -0.0022154757753014565, 0.004357491619884968, -0.022865979000926018, -0.015720359981060028, 0.013877191580832005, 0.021530350670218468, -0.008534673601388931, -0.02778109721839428, -0.00978348683565855, -0.0020718954037874937, -0.022812554612755775, 0.027941372245550156, 0.005192260257899761, -0.015333028510212898, -0.009469614364206791, -0.0582868792116642, 0.013877191580832005, 0.0026378685142844915, 0.015813855454325676, -0.016508381813764572, -0.012768619693815708, -0.001096051069907844, -0.03691680356860161, 0.008414466865360737, 0.009242556989192963, -0.01837826333940029, 0.027380406856536865, -0.0054994551464915276, 0.007185687310993671, -0.017349829897284508, -0.01458507589995861, 0.03694351762533188, 0.004127095453441143, 0.0009140715119428933, -0.00370637234300375, 0.005893465597182512, -0.00590682215988636, 0.03624898940324783, -0.0019733929075300694, 0.013509893789887428, 0.010478014126420021, -0.01995430700480938, 0.01467856951057911, -0.0027263539377599955, -0.0063475798815488815, -0.0012020666617900133, -0.018418332561850548, -0.03264278918504715, 0.026231765747070312, 0.002182084834203124, -0.013703560456633568, -0.021770762279629707, 0.028983162716031075, -0.004400899633765221, 0.0074862041510641575, -0.00861481111496687, -0.0011110769119113684, 0.01097219716757536, -0.01092545036226511, -0.012868791818618774, -0.006451091263443232, -0.0161611195653677, 0.0005188086652196944, 0.014878913760185242, -0.005309127736836672, 0.03536747395992279, -0.006774981506168842, -0.035741448402404785, -0.02464236691594124, -0.019753962755203247, -0.004968542139977217, 0.011499770916998386, 0.022598853334784508, 0.009062247350811958, -0.016107693314552307, 0.04968542233109474, -0.007753330282866955, 0.021303292363882065, -0.020047800615429878, 0.040629852563142776, -0.007265825290232897, -0.0035527748987078667, -0.010010544210672379, 0.008147341199219227, -0.015613510273396969, -0.005035323556512594, 0.006838423665612936, -0.007753330282866955, -0.013543284498155117, -0.01049804873764515, -0.007706583011895418, 0.022638922557234764, -0.008801799267530441, -0.0007300050929188728, 0.018992653116583824, -0.0023957856465131044, 0.007005377672612667, -0.014531650580465794, 0.01980738714337349, 0.014090892858803272, 0.02659238688647747, -0.019513549283146858, 0.0212231557816267, -0.012227688916027546, -0.00617394782602787, -0.02104952372610569, 0.017176197841763496, 0.0031971633434295654, 0.026552317664027214, -0.01912621594965458, -0.007345962803810835, 0.013676847331225872, 0.028929738327860832, -0.014558362774550915, 0.0374777689576149, 0.022131383419036865, -0.015292959287762642, -0.0018865768797695637, -0.002609486458823085, -0.00016851889085955918, 0.00429071020334959, -0.01586727984249592, -0.019753962755203247, -0.020648833364248276, 0.024775929749011993, 0.02291940525174141, 0.0270732119679451, 0.004614600446075201, 0.008220800198614597, -0.0007437787717208266, 0.03261607512831688, 0.017777230590581894, -0.012842078693211079, -0.014598431997001171, 0.04132438078522682, 0.02226494625210762, 0.0015935731353238225, -0.007472848054021597, -0.015025833621621132, 0.024762572720646858, 0.009616533294320107, -0.009716705419123173, -0.011599943041801453, 0.003462619846686721, -0.01618783175945282, 0.007052124477922916, 0.0036863377317786217, 0.017189553007483482, -0.004250641446560621, -0.019700536504387856, -0.000428236264269799, -0.0035828265827149153, 0.024882780387997627, 0.01469192560762167, 0.0815802589058876, 0.026245122775435448, -0.00104346068110317, 0.015426522120833397, 0.003485993482172489, 0.018217988312244415, -0.00548609858378768, 0.007719939108937979, -0.02398790791630745, -0.025604020804166794, -0.0008301772759296, -0.005442690569907427, 0.018698815256357193, -0.01049804873764515, -0.006891848985105753, -0.004871709272265434, -0.002916681347414851, 0.001766370260156691, -0.01604091189801693, -0.0028298653196543455, 0.0007479526102542877, -0.02855576202273369, 0.02490949258208275, -0.0059235175140202045, -0.03528733551502228, 0.008527995087206364, 0.01443815603852272, 0.009876981377601624, -0.012100804597139359, -0.02727355808019638, 0.02054198458790779, -0.009135706350207329, -0.018725527450442314, -0.012434711679816246, -0.025390319526195526, -0.005846718791872263, 0.006237390451133251, 0.010698392987251282, -0.004748163279145956, 0.013256124220788479, -0.0018598642200231552, 0.00721907801926136, -0.012534883804619312, -0.017443323507905006, 0.01672208309173584, -0.0022739095147699118, 0.003960141912102699, -0.012221011333167553, -0.021650556474924088]" +27,"PC Game Pass subscriptions increased 159% year over year. And with cloud gaming, we're transforming how games are distributed, played and viewed. More than 20 million people have used the service to stream games to date. And we are adding support for new devices like handhelds from Logitech and Razor as well as Meta Quest.","[-0.007176009006798267, -0.014091781340539455, 0.008822001516819, -0.020714789628982544, -0.005559292621910572, 0.008379600942134857, -0.015405973419547081, -0.03362249583005905, 0.011704116128385067, -0.029458720237016678, 0.022731618955731392, 0.009602709673345089, 0.004430518485605717, -0.013805522583425045, 0.010441971011459827, 0.01392262801527977, 0.018372664228081703, 0.0009604336228221655, 0.023746538907289505, -0.014365029521286488, 0.002176224021241069, -0.009388015605509281, 0.0010563957039266825, -0.019947092980146408, -0.018867112696170807, 0.020428529009222984, 0.01638185977935791, 0.013636368326842785, 0.045619379729032516, -0.0076249162666499615, 0.018073393031954765, -0.008151894435286522, -0.01506766676902771, 0.000133370966068469, -0.037500012665987015, 0.0006265995907597244, -0.009303438477218151, 0.010910396464169025, 0.008496707305312157, 0.008112858980894089, 0.032451435923576355, -0.004235341679304838, -0.006967820227146149, -0.0004310159420128912, -0.011541469022631645, 0.012205070815980434, -0.01672016642987728, -0.004075947217643261, -0.005380380433052778, 0.01351926289498806, -0.0175268966704607, 0.0069027612917125225, -0.01119665615260601, -0.013122402131557465, 0.01701943762600422, 0.00730612687766552, -0.0178782157599926, 0.008470683358609676, 0.015314891003072262, -0.031020136550068855, 0.001487411675043404, 0.02722069062292576, -0.023226067423820496, -0.016824260354042053, -0.009947522543370724, 0.00264952820725739, -0.02823561057448387, -0.0010344382608309388, 0.005487727466970682, 0.0014093408826738596, 0.018893137574195862, 0.04582756757736206, 0.017214614897966385, -0.005094120744615793, 0.007097938098013401, -0.02990112081170082, -0.02486555464565754, -0.010298841632902622, 0.003256203606724739, 0.0010344382608309388, 0.007839610800147057, -0.006850713863968849, 0.021404415369033813, 0.002646275330334902, -0.006531924940645695, 0.017435815185308456, -0.013070355169475079, 0.013571309857070446, -0.018593864515423775, -0.009212356060743332, 0.017969299107789993, 0.00025698309764266014, -0.005595074966549873, 0.014026722870767117, 0.008125870488584042, 0.02634890004992485, -0.03255552798509598, 0.03323214128613472, 0.006109041161835194, -0.013714439235627651, 0.010643654502928257, 0.018528806045651436, -0.02338220924139023, -0.01696738973259926, -0.012218082323670387, 0.0018411700148135424, 0.008223459124565125, 0.00830803532153368, 0.021105142310261726, 0.01954372599720955, 0.0077029867097735405, 0.00836008321493864, 0.011242196895182133, -0.014130816794931889, 0.008769954554736614, -0.011489421129226685, 0.00996704027056694, 0.008743931539356709, -0.012907708063721657, -0.020038176327943802, 0.004498830530792475, 0.021001048386096954, 0.024032799527049065, 0.029771003872156143, -0.0028853672556579113, 0.01297927275300026, -0.025620238855481148, -0.0019485173979774117, 0.03596462309360504, 0.008197435177862644, 0.0032936125062406063, 0.007371185813099146, -0.0014256056165322661, -0.015744280070066452, 0.003906793426722288, 0.025529155507683754, 0.00013174449850339442, 0.0075533511117100716, -0.030291475355625153, 0.000849833304528147, -0.004508589394390583, 0.020298412069678307, 0.02732478454709053, 0.003630292834714055, 0.007455762475728989, 0.012192058376967907, 0.03625088185071945, 0.003130964934825897, 0.03500174731016159, 0.01452117133885622, 0.028391752392053604, 0.012517353519797325, 0.002682057674974203, -0.002999220509082079, 0.01626475341618061, -0.014052746817469597, -0.0022819447331130505, 0.01786520518362522, -0.0033245154190808535, -0.017344731837511063, 0.005263274069875479, 0.028339704498648643, 0.0015988252125680447, -0.006619754247367382, -0.013961663469672203, 0.03346635401248932, 0.025164825841784477, -0.0005562545266002417, 0.01683727279305458, -0.009348980151116848, 0.009192838333547115, 0.024943625554442406, -0.03128037229180336, 0.017969299107789993, -0.02286173589527607, 0.021911874413490295, -0.008015270344913006, 0.002525916090235114, -0.03515788912773132, -0.006320483051240444, 0.005751216784119606, 0.00787864625453949, 0.009466086514294147, 0.001990805845707655, -0.004349194932729006, -0.016303788870573044, 0.0028772347141057253, 0.004560636822134256, 0.0024153157137334347, 0.00505508529022336, 0.023343173786997795, 0.027975374832749367, -0.004319918341934681, -0.01941360905766487, -0.6516310572624207, -7.339469448197633e-05, 0.013324085623025894, -0.015301879495382309, 0.008548754267394543, 0.0037734226789325476, 0.007136973552405834, 0.007566363085061312, -0.040128398686647415, 0.006216388661414385, 0.019205419346690178, 0.025164825841784477, 0.011547974310815334, -0.016316799446940422, 0.0024771217722445726, -0.03338828310370445, 0.0194266214966774, -0.007618410047143698, -0.016290776431560516, 0.003059400012716651, -0.02870403602719307, 0.009030190296471119, -0.008607307448983192, 0.001893217209726572, -0.013304567895829678, 0.013167943805456161, 0.005712181329727173, -0.005097373388707638, -0.019569750875234604, -0.004703766666352749, -0.0033635508734732866, -0.0003566046943888068, 0.025021696463227272, 0.032165173441171646, 0.048091620206832886, -0.017657015472650528, -0.007130467798560858, 0.02320004254579544, -0.0017842433881014585, 0.05527413636445999, -0.04658225178718567, -0.005162432324141264, 0.03075990080833435, 0.02296583168208599, -0.01463827770203352, 0.02846982330083847, 0.040752965956926346, -0.00726058566942811, -0.011066537350416183, -0.0013654259964823723, 0.00504207331687212, -0.017162567004561424, 0.012439282611012459, -0.03036954626441002, 0.008711401373147964, 0.017266660928726196, 0.013883592560887337, -0.01586138643324375, 0.009667769074440002, -0.015236820094287395, -0.016524989157915115, 0.004596419166773558, -0.024306045845150948, -0.011619539000093937, -0.035444147884845734, 0.02636191062629223, -0.005991934798657894, 0.001011667656712234, 0.006102535407990217, -0.0009848307818174362, 0.007058902643620968, 0.010494018904864788, 0.0013792510144412518, -0.004137753043323755, 0.008288517594337463, 0.017201602458953857, 0.028573917225003242, 0.0014272320549935102, -0.05355657637119293, 0.0041475119069218636, 0.01941360905766487, -0.02080587111413479, -0.0036075222305953503, -0.004859908018261194, 0.023902680724859238, 0.0015915060648694634, 0.010435465723276138, -0.0027894051745533943, 0.01757894456386566, 0.005874828901141882, -0.0038059521466493607, 0.005032314453274012, -0.022445358335971832, -0.005598328076303005, -0.001451629213988781, 0.009251391515135765, -0.03180084377527237, 0.013024814426898956, 0.00670107826590538, -0.01809941604733467, -0.0290943905711174, -0.0393216647207737, 0.03156663104891777, 0.012901201844215393, 0.04366760700941086, 0.02200295776128769, -0.028573917225003242, -0.0090562142431736, 0.025360003113746643, -0.020467564463615417, 0.02040250599384308, -0.00927741453051567, -0.007410221267491579, -0.03224324434995651, -0.011391832493245602, -0.032451435923576355, 0.02314799651503563, -0.009472591802477837, -0.0005794318276457489, -0.015106702223420143, 0.007533833384513855, -0.018528806045651436, -0.021521521732211113, -0.012530365958809853, -0.01850278303027153, 0.026674194261431694, 0.00668806629255414, -0.016681130975484848, 0.011632551439106464, -1.266871731786523e-05, -0.006567707285284996, -0.026505041867494583, 0.00902368500828743, -0.0066750543192029, 0.005995187908411026, 0.008639836683869362, 0.01690233126282692, -0.02966690994799137, 0.017800144851207733, -0.02405882254242897, -0.03690147027373314, 0.0187239833176136, -0.005308815278112888, -0.001579307485371828, 0.014794419519603252, -0.017045460641384125, -0.0006713276961818337, -0.014325994066894054, -0.0058130226098001, -0.021157190203666687, -0.009322956204414368, -0.00239254510961473, 0.021274296566843987, 0.012094469740986824, -0.02532096765935421, 0.0013337096897885203, -0.005604833830147982, -0.01838567666709423, -0.018997231498360634, -0.040310561656951904, 0.015601150691509247, 0.0009661263320595026, 0.002716213697567582, -0.004850149154663086, -0.010019088163971901, -0.015835363417863846, -0.020077209919691086, 0.045176975429058075, -0.0037116166204214096, -0.009960534982383251, 0.017735086381435394, 0.001644366537220776, 0.015392961911857128, 0.019556738436222076, -0.012107482179999352, 0.014391053467988968, -0.003309877123683691, 0.015536092221736908, 0.00033220756449736655, -0.0023616421967744827, 0.0030089793726801872, 0.011352797038853168, -0.004947737790644169, -0.005191708914935589, 0.015002608299255371, -0.01599150523543358, 0.03513186424970627, 0.02846982330083847, -0.026088664308190346, 0.011996882036328316, 0.001542711746878922, 0.04611382633447647, -0.015471032820641994, 0.02067575417459011, -0.014221900142729282, -0.009836922399699688, 0.003114700084552169, 0.007293115369975567, 0.021976934745907784, 0.005107132252305746, 0.026609135791659355, 0.006831196136772633, -0.004944484680891037, -0.005891093518584967, -0.00015227874973788857, -0.029744978994131088, -0.015119713731110096, -0.017683038488030434, 0.009583191946148872, 0.02355136163532734, 0.03213915228843689, -0.02550313249230385, -0.024670377373695374, -0.013076861388981342, 0.01639487035572529, 0.008314541541039944, -0.013324085623025894, -0.006798666436225176, -0.029640885069966316, -0.01071521919220686, -0.011079549789428711, -0.02269258350133896, 0.016928354278206825, -0.0066425250843167305, -0.02269258350133896, 0.03854095935821533, 0.00674661947414279, 0.03614678606390953, 0.011060032062232494, -0.01325902622193098, -0.009414038620889187, 0.04377170279622078, -0.014768395572900772, 0.0028544641099870205, 0.0005127463373355567, -0.012634459882974625, 0.030161358416080475, -0.024839529767632484, 0.033830687403678894, -0.0007311006193049252, 0.0006217201589606702, 0.004778584465384483, 0.020779848098754883, -0.016069576144218445, 0.005422668531537056, 0.006714089773595333, 0.02068876475095749, -0.006837701890617609, -0.010402935557067394, 0.004606178030371666, -0.017344731837511063, 0.010884372517466545, 0.02033744752407074, -0.002555192681029439, 0.013311074115335941, -0.02606263943016529, -0.0035392101854085922, 0.010942925699055195, 0.032685648649930954, 0.009427051059901714, -0.002880487823858857, 0.002880487823858857, 0.03047364018857479, -0.014026722870767117, -0.001010854379273951, 0.0034871629904955626, -0.0014369909185916185, 0.0005115264793857932, 0.009615722112357616, -0.010650159791111946, -0.009446568787097931, 0.00308705004863441, 0.002961811376735568, -0.024735435843467712, -0.018880125135183334, 0.0025991075672209263, 0.011541469022631645, -0.015562115237116814, -0.023980751633644104, 0.036068715155124664, 0.003379815723747015, -0.03398682922124863, -0.0024738688953220844, 0.00890657864511013, 0.0054161627776920795, -0.02794935181736946, -0.027064548805356026, -0.016251740977168083, -0.016811247915029526, 0.01901024393737316, -0.009739333763718605, 0.019973115995526314, -0.017279673367738724, -0.011164125986397266, 0.010819313116371632, -0.011619539000093937, 0.021989945322275162, -0.011105572804808617, -0.0026137458626180887, -0.015405973419547081, 0.0029520525131374598, 0.010526548139750957, -0.035496197640895844, 0.001896470203064382, 0.016420895233750343, 0.015575127676129341, -0.04515095427632332, -0.03882721811532974, -0.012341693975031376, -0.0038742641918361187, 0.006131811998784542, -0.011983869597315788, -0.018606876954436302, -0.017058473080396652, -0.0007664764998480678, 0.0097133107483387, 0.006034223362803459, -0.016316799446940422, 0.01809941604733467, 0.014885501936078072, -0.03328419104218483, -0.014221900142729282, -0.030811946839094162, 0.002488507190719247, 0.08062112331390381, 0.011164125986397266, 0.000785587530117482, 0.009680780582129955, -0.012250611558556557, -0.008151894435286522, -0.025594215840101242, 0.0009523012558929622, 0.0016183429397642612, -0.013987687416374683, -0.011678092181682587, 0.020142270252108574, 0.009674275293946266, -0.00796322338283062, 0.004150765016674995, 0.004840390291064978, -0.013857569545507431, -0.002493386622518301, -0.006326988805085421, -0.02126128412783146, 0.026205768808722496, 0.036120761185884476, 0.014924537390470505, 0.031826868653297424, 0.023577386513352394, 0.015484044328331947, 0.008913084864616394, -0.011307256296277046, 0.0029878350906074047, 0.0038319758605211973, 0.0009531145333312452, -0.009251391515135765, -0.01011017058044672, 0.032113127410411835, -0.009069225750863552, 0.03448127582669258, -0.003500174731016159, -0.012725542299449444, -0.003383068600669503, 0.005107132252305746, -0.009368497878313065, -0.004781837109476328, 0.0029845822136849165, 0.013805522583425045, 0.012875177897512913, -0.004466301295906305, -0.014443100430071354, 0.007592386566102505, -0.00876344833523035, -0.035600289702415466, 0.028495846316218376, -0.01418286468833685, -0.03817662596702576, -0.0033342742826789618, -0.013545285910367966, 0.0005965097807347775, 9.372564090881497e-05, -0.02137839049100876, -0.01587439887225628, -0.06693270802497864, -0.04252256825566292, -0.0225234292447567, -0.012133505195379257, -0.003000846831128001, -0.014846466481685638, -0.024683387950062752, -0.009726322256028652, 0.007826599292457104, -0.01929650269448757, 0.004040164407342672, 0.0013654259964823723, -0.03109820745885372, -0.013727451674640179, -0.010383417829871178, 0.0343511588871479, 0.010441971011459827, 0.014299971051514149, -0.0007876206655055285, -0.009101755917072296, 0.01700642518699169, -0.005068096797913313, -0.025815416127443314, 0.005194962024688721, -0.024019787088036537, 0.019673844799399376, 0.006170846987515688, 0.00618711207062006, 0.009160309098660946, -0.010942925699055195, 0.006609995383769274, 0.02377256192266941, -0.014664300717413425, -0.00018989098316524178, -0.009309944696724415, 0.027246713638305664, 0.02412388101220131, -0.010233782231807709, -0.003070785431191325, -0.002576336730271578, -0.0022949567064642906, -0.0044630481861531734, -0.028261633589863777, -0.022445358335971832, -0.015887411311268806, 0.006538430694490671, 0.008646342903375626, 0.018580853939056396, 0.007254079915583134, -0.0014312982093542814, -0.03031749837100506, -0.023681480437517166, -0.010292335413396358, -0.023928703740239143, 0.0021258031483739614, 0.002810549223795533, -0.0026267576031386852, 0.01506766676902771, -0.017630992457270622, -0.0038742641918361187, -0.001102750189602375, -0.0010905517265200615, -0.044370245188474655, 0.01868494786322117, 0.015887411311268806, -0.0030756648629903793, -0.01616065762937069, -0.0034936689771711826, 0.0007823345949873328, -0.01351926289498806, -0.0030740383081138134, -0.002896752441301942, 0.01914036087691784, -0.012569400481879711, -0.017318708822131157, -0.02606263943016529, -0.04301701858639717, 0.025477109476923943, 0.004853402264416218, -0.00648963637650013, 0.008112858980894089, -0.04267871007323265, 0.0029845822136849165, -0.01509369071573019, 0.010175229050219059, 0.0025470603723078966, -0.022211145609617233, 0.003181385574862361, 0.001235308009199798, -0.017513886094093323, 0.015223808586597443, -0.00668806629255414, -0.01361034531146288, 0.0032074092887341976, -0.005663387011736631, -0.02727273665368557, -0.012107482179999352, -0.01614764705300331, -0.049809180200099945, 0.03604269027709961, 0.01747485063970089, 0.05212527886033058, -0.024449177086353302, 0.004306906368583441, 0.0010897384490817785, -0.0003669734869617969, -0.023785574361681938, 0.0071044438518583775, -0.0022168857976794243, -0.024384116753935814, -0.01016872376203537, 0.0005696729640476406, -0.0073907035402953625, 0.023069925606250763, -0.0015890663489699364, -0.013545285910367966, -0.011697609908878803, -0.004824125673621893, 0.011749657802283764, -0.03164470195770264, -0.03333623707294464, 0.004866414237767458, 0.004837137646973133, -0.0045281071215868, 0.020883942022919655, -0.031592655926942825, -0.03809855505824089, 0.016069576144218445, 0.004999785218387842, 0.005624351557344198, 0.003532704198732972, 0.015575127676129341, -0.023785574361681938, 0.007481786422431469, -0.00020208954811096191, 0.017279673367738724, -0.006252171006053686, 8.462754340143874e-05, -0.021495496854186058, 0.016017528250813484, -0.011489421129226685, -0.001702919602394104, 0.04640008509159088, -0.028105493634939194, 0.006896255072206259, -0.01506766676902771, 0.0355222187936306, -0.0383848175406456, -0.02068876475095749, 0.03031749837100506, -0.020988037809729576, -0.000692878442350775, -0.025698309764266014, 0.014417076483368874, -0.006837701890617609, 0.006177353207021952, 0.0023567627649754286, -0.012725542299449444, 0.019738903269171715, -0.011756163090467453, -0.02171669714152813, 0.024488212540745735, 0.005585316102951765, 0.02807946875691414, -0.005315321031957865, -0.006593730766326189, 0.002307968446984887, 0.013141919858753681, -0.019322525709867477, -0.03138446807861328, 0.014143829233944416, 0.013415168039500713, 0.044318199157714844, 0.025516144931316376, -0.006326988805085421, -0.002680431352928281, -0.010786783881485462, -0.008678872138261795, -0.01717557944357395, -0.025711320340633392, 0.0007656632224097848, 0.022926796227693558, 0.0019989381544291973, -0.002499892609193921, -0.006915772799402475, 0.011105572804808617, 0.0063822888769209385, -0.019179396331310272, 0.00962873362004757, -0.0017940022516995668, -0.0036693282891064882, -0.015848375856876373, 0.039738044142723083, 0.01243277732282877, -0.0016272885259240866, -0.012465306557714939, 0.02050659991800785, 0.002247788943350315, -0.007384197786450386, -0.019452644512057304, -0.013291556388139725, -0.012933731079101562, 0.0221721101552248, -0.03047364018857479, 0.01397467590868473, 0.02377256192266941, 0.022041993215680122, -0.020311422646045685, -0.00027365447022020817, -0.0024722423404455185, 0.023733526468276978, -0.03151458501815796, -0.012263623997569084, 0.00022912969870958477, 0.01243277732282877, 0.017110519111156464, 0.005351103842258453, -0.003322889097034931, -0.03156663104891777, -0.004397989250719547, -0.00791117548942566, 0.02784525603055954, -0.012823130935430527, -0.03671930730342865, 0.0017565933521836996, 0.014312982559204102, -0.013441191986203194, 0.015562115237116814, 0.0019046025117859244, 0.028599942103028297, -0.02038949355483055, -0.028912223875522614, 0.015340914949774742, -0.008769954554736614, 0.013727451674640179, 0.0060439822264015675, 0.012640966102480888, 0.0056601339019834995, 0.02424098737537861, -0.015627173706889153, 0.025529155507683754, 0.012237600050866604, 0.0031114472076296806, -0.021456461399793625, 0.019569750875234604, -0.007605398539453745, -0.02794935181736946, 0.03489765524864197, -0.020935989916324615, -0.014000698924064636, 0.0013719318667426705, -0.007325644604861736, -0.00674661947414279, 0.017657015472650528, -0.00025840624584816396, -0.0006892189267091453, 0.010799795389175415, -0.011066537350416183, -0.031826868653297424, -0.012361211702227592, 0.025711320340633392, 0.004824125673621893, -0.004654972348362207, 0.019387586042284966, 0.006089523434638977, 0.034741513431072235, -0.009732828475534916, 0.006577466148883104, 0.001543525024317205, -0.025568190962076187, -0.03945178538560867, 0.00423859478905797, -0.0073907035402953625, -0.019166383892297745, -0.003090302925556898, -0.01183423399925232, -0.0014662675093859434, -0.00340258632786572, 0.0018802054692059755, 0.0077875638380646706, 0.01463827770203352, -0.003971852827817202, 0.022354276850819588, 0.025568190962076187, -0.002112791407853365, -0.006766137201339006, -0.02182079292833805, -0.032217223197221756, -0.0046256957575678825, -0.031020136550068855, 0.0071044438518583775, -0.02451423555612564, 0.030447617173194885, 0.0024234482552856207, -0.01868494786322117, -0.03781229630112648, -0.006258676759898663, -0.05699169263243675, -0.012588918209075928, 0.015783315524458885, 0.030577735975384712, 0.03781229630112648, 0.014234911650419235, -0.009466086514294147, 0.03260757774114609, 0.007872140035033226, 0.010428959503769875, -0.013311074115335941, -0.011300750076770782, 0.008041293360292912, -0.023226067423820496, 0.004306906368583441, -0.012061940506100655, -0.012914213351905346, 0.00104175740852952, 0.007494797930121422, -0.013714439235627651, -0.009225367568433285, 0.023629432544112206, -0.008086835034191608, -0.011762669309973717, -0.005624351557344198, -0.008067317306995392, -0.008399118669331074, 0.0012157902820035815, 0.00014882248069625348, -0.011190149933099747, 0.001994058722630143, 0.02737683244049549, 0.017552921548485756, 0.0012548256199806929, -0.01656402461230755, 0.025711320340633392, -0.005481221713125706, -0.007956717163324356, -0.0025958544574677944, -0.013226496987044811, -0.004814366810023785, -0.022028980776667595, 0.005949646700173616, -0.009244885295629501, -0.000976698356680572, 0.023004867136478424, 0.016537999734282494, -0.018815066665410995, 0.022666558623313904, 0.037031590938568115, 0.0005956965615041554, -0.0019046025117859244, 0.014833454973995686, -0.0357564315199852, 0.006265182979404926, -0.0191924087703228, 0.004134499933570623, -0.0004830631660297513, -0.0015719883376732469, -0.026726242154836655, -0.0052274917252361774, -0.0028593435417860746, 0.01349323894828558, 0.014208887703716755, -0.03630292788147926, 0.017214614897966385, 0.009882464073598385, 0.011704116128385067, 0.027116596698760986, 0.006284700240939856, 0.010585101321339607, -0.005796757992357016, -0.005773987155407667, 0.008802483789622784, 0.019517702981829643, -0.029771003872156143, 0.00902368500828743, 0.02114417776465416, 0.01695437915623188, 0.019908057525753975, 0.19819577038288116, 0.018997231498360634, -0.012699519284069538, 0.03169675171375275, 0.01821652241051197, -5.7180772273568437e-05, 0.0013605465646833181, -0.007631422020494938, -0.012029411271214485, 0.01816447637975216, 0.0029178967233747244, 0.006304217968136072, -0.012719037011265755, -0.0011897666845470667, -0.006570959929376841, -0.012074952013790607, -0.03591257333755493, -0.007494797930121422, -0.02005118690431118, 0.02875608205795288, 0.021157190203666687, 0.001293047796934843, -0.01361034531146288, -0.008861036971211433, -0.0009246512199752033, 0.0032057827338576317, 0.005116891115903854, 0.015718257054686546, 0.053712718188762665, 0.00999306421726942, -0.0036953517701476812, 0.018632899969816208, -0.013024814426898956, 0.0005680464673787355, -0.0031456032302230597, 0.000504207331687212, -0.005728445947170258, 0.013024814426898956, 0.019036266952753067, 0.019179396331310272, 0.008516224101185799, 0.04221028462052345, -0.007221550215035677, 0.007136973552405834, 0.009296932257711887, 0.005487727466970682, -0.007943705655634403, 0.010246794670820236, 0.004170282743871212, -0.008620318956673145, -0.010559077374637127, -0.017461838200688362, 0.0026348899118602276, 0.025581203401088715, -0.003574992762878537, 0.013454203493893147, -0.005913863889873028, 0.001549217733554542, -0.02841777540743351, -0.0004956683260388672, 0.010825819335877895, 0.008574777282774448, -0.01868494786322117, 0.026856359094381332, -0.018372664228081703, 0.0030463882721960545, -0.004323171451687813, 0.00787864625453949, -0.002768260892480612, -0.010162217542529106, -0.011652069166302681, 0.0023779068142175674, -0.029016319662332535, -0.016993414610624313, -0.014417076483368874, -0.011645562946796417, 0.04405796155333519, -0.011521951295435429, 0.009914993308484554, 0.017045460641384125, 0.012680001556873322, 0.0010523295495659113, 0.001484158681705594, -0.04330327734351158, -0.013246014714241028, -0.018476760014891624, 0.031488560140132904, 0.0060439822264015675, -0.018203511834144592, 0.008236470632255077, 0.01065666601061821, 0.012361211702227592, -0.0224063228815794, -0.010162217542529106, -0.008288517594337463, 0.0006168407271616161, 0.002966690808534622, 0.006291206460446119, 0.008282012306153774, 0.00842514168471098, -0.004342689178884029, 0.04452638700604439, 0.0028430786915123463, -0.001042570685967803, -0.015848375856876373, 0.01394865196198225, -0.02143043838441372, 0.015562115237116814, 0.015770304948091507, -0.00847718957811594, 0.009739333763718605, -0.018229534849524498, 0.014299971051514149, -0.02589348703622818, -0.004827378783375025, 0.019335538148880005, 0.005975670181214809, 0.00933596771210432, 0.0033293948508799076, 0.01292071957141161, -0.010467994958162308, -0.020727800205349922, 0.012061940506100655, 0.011899293400347233, 0.00036575362901203334, -0.02165163867175579, -0.01603054068982601, 2.142372977687046e-05, -0.0027894051745533943, -0.011528456583619118, 0.00824948213994503, -0.020831895992159843, -0.0021290560252964497, -0.02727273665368557, -0.003747398965060711, 0.019348550587892532, 0.033596474677324295, -0.010454983450472355, -0.018294593319296837, 0.020753825083374977, -0.011001478880643845, -0.0006644151289947331, -0.01128773856908083, 0.01850278303027153, 0.020090222358703613, -0.004290641751140356, 0.03294588252902031, 0.01976492814719677, -0.01171062234789133, -0.022015970200300217, -0.013102884404361248, 0.01437804102897644, -0.03848890960216522, 0.022666558623313904, 0.010266312398016453, -0.006967820227146149, -0.05045976862311363, -0.012595424428582191, 5.850228262715973e-05, 0.009257897734642029, -0.03856698051095009, -0.008646342903375626, 0.021014060825109482, -0.007579374592751265, 0.005848804954439402, -0.001638673827983439, -0.16394871473312378, 0.014156840741634369, -0.012992284260690212, -0.016355834901332855, 0.011183643713593483, -0.003926311153918505, 0.019751915708184242, -0.00796322338283062, -0.014924537390470505, -0.009108261205255985, 0.01361034531146288, 0.019322525709867477, -0.030161358416080475, -0.013480227440595627, 0.04611382633447647, 0.030291475355625153, -0.0058780815452337265, 0.027064548805356026, 0.006479877512902021, 0.008034788072109222, 0.050095438957214355, -0.00042085046879947186, 0.009043202735483646, -0.0016215958166867495, -0.0007038571638986468, -0.01183423399925232, -0.03042159415781498, 0.012575906701385975, 0.01056558359414339, -0.02131333202123642, -0.01005161739885807, -0.007729010656476021, 0.028573917225003242, 0.0386190302670002, 0.010604619048535824, -0.007839610800147057, 0.010968949645757675, -0.006596983876079321, -0.0022819447331130505, 0.03232131525874138, 0.010259806178510189, 0.005829287227243185, -0.004420759622007608, 0.01225711777806282, 0.020532624796032906, 0.03427308797836304, -0.0005306375678628683, -0.00556905148550868, -0.0025047720409929752, -0.006349759642034769, 0.011840740218758583, -0.026218781247735023, -0.003218794474378228, -0.004450036212801933, 0.02027238719165325, 0.010955937206745148, 0.015379950404167175, 0.008522730320692062, 0.0066945720463991165, -0.016629083082079887, 0.01057208888232708, -0.03299792855978012, -0.006753125227987766, -0.017917251214385033, -0.012081458233296871, -0.0003291579196229577, 0.009563674218952656, -0.0023779068142175674, -0.040935128927230835, 0.007280103396624327, 0.004885931499302387, -0.0017077990341931581, 0.002709707710891962, -0.019439632073044777, -0.008184423670172691, 0.013571309857070446, -0.018984219059348106, 0.01809941604733467, 0.02880812995135784, -0.0042190770618617535, -0.01685028336942196, 0.007097938098013401, -0.0070784203708171844, 0.0379163920879364, 0.001230428577400744, -0.008295023813843727, 0.006740113720297813, 0.02366846799850464, -0.011014490388333797, -0.012263623997569084, 0.01700642518699169, -0.0021957415156066418, 0.013324085623025894, -0.004111729562282562, 0.015028631314635277, 0.011294243857264519, 0.006261929869651794, -0.013363121077418327, -0.01747485063970089, -0.01437804102897644, 0.011040514335036278, -0.01071521919220686, -0.010136193595826626, -0.012100975960493088, 0.03341430798172951, 0.005012796726077795, 0.0035782456398010254, 0.01597849279642105, 0.022445358335971832, -0.016590047627687454, -0.041455600410699844, 0.014091781340539455, 0.013018308207392693, -0.0057024224661290646, 0.0005859376979060471, 0.047805361449718475, -0.011092561297118664, -0.02040250599384308, -0.01661607064306736, 0.004977014381438494, 0.04085705801844597, -0.022302228957414627, 0.0038352287374436855, -0.0005627604550682008, -0.011730140075087547, -0.008223459124565125, -0.10409441590309143, -0.03557426854968071, 0.006073258817195892, 0.0009010672802105546, -0.007416727486997843, 0.024358093738555908, -0.011034008115530014, 0.005767481401562691, -0.010370406322181225, 0.019114337861537933, 0.017110519111156464, -0.02893824875354767, -0.021989945322275162, -0.0029797027818858624, 0.013415168039500713, -0.014742371626198292, 0.007826599292457104, -0.013649380765855312, -0.001995685277506709, 0.016928354278206825, 0.011534962803125381, 0.006261929869651794, -0.03203505650162697, -0.019556738436222076, -0.03851493448019028, -0.030005216598510742, -0.018632899969816208, -0.010344382375478745, 0.022185122594237328, -0.0040531763806939125, 0.02709057182073593, 0.006470118649303913, 0.006606742739677429, -0.02382460981607437, -0.01717557944357395, -0.0012035917025059462, -0.005530016031116247, -0.009088743478059769, 0.020519612357020378, -0.025529155507683754, 0.017318708822131157, -0.0006745806313119829, 0.018086405470967293, -0.024605318903923035, -0.005520257167518139, 0.011151114478707314, -0.011235691606998444, 0.009316449984908104, 0.02097502537071705, -0.049705084413290024, -0.0276630911976099, -0.010533053427934647, -0.019960105419158936, -0.008438154123723507, -0.015627173706889153, -0.013857569545507431, 0.0032122887205332518, -9.301405225414783e-05, -0.028573917225003242, -0.016772212460637093, -0.03817662596702576, 0.0037506520748138428, -0.012608435936272144, 0.01463827770203352, 0.005913863889873028, 0.019439632073044777, -0.03224324434995651, -0.012985778972506523, -0.01282963715493679, -0.011326774023473263, -0.010428959503769875, 0.020298412069678307, -0.02171669714152813, -0.014234911650419235, -0.019218431785702705, -0.0016980401705950499, -0.0072150444611907005, -0.021118154749274254, 0.024214964359998703, -0.003692098893225193, -0.00996704027056694, -0.006226147525012493, 0.0017565933521836996, -0.023876657709479332, 0.03471548855304718, 0.009043202735483646, 2.05977848963812e-05, -0.003000846831128001, -0.011001478880643845, -0.022926796227693558, -0.003186265006661415, 0.0011848872527480125, 0.007611904293298721, 1.0178177035413682e-05, 0.012452295050024986, 0.005136408843100071, -0.015171761624515057, -0.02961486205458641, 0.016134634613990784, 0.0194266214966774, -0.020038176327943802, -0.02675226517021656, -0.05667940899729729, 0.01497658435255289, 0.01855482906103134, 0.02606263943016529, 0.022185122594237328, -0.0013703054282814264, -0.00418004160746932, -0.013304567895829678, -0.010513536632061005, -0.003376562613993883, -0.014339005574584007, 0.01843772456049919, 0.0033928274642676115, -0.005767481401562691, -0.008919590152800083, -0.005734951701015234, 0.044708553701639175, 0.00777455186471343, -0.0035522219259291887, 0.012666989117860794, 0.014130816794931889, 0.002151826862245798, 0.010513536632061005, 0.013714439235627651, -0.010578595101833344, -0.009388015605509281, -0.022185122594237328, 0.004518348257988691, 0.003147229552268982, -0.028287658467888832, 0.0036725811660289764, -0.00498352013528347, -0.010962443426251411, 0.012419764883816242, -0.004707019310444593, -0.009160309098660946, -0.012907708063721657, 0.012263623997569084, 0.004193053115159273, 0.011007985100150108, -0.0015654824674129486, -0.01981697417795658, 0.02284872531890869, -0.00644409516826272, -0.003132591489702463, -0.005194962024688721, -0.02698647789657116, -0.0057316990569233894, 0.0009335968061350286, 0.034689463675022125, 0.027637068182229996, 0.005676398519426584, -0.016082586720585823, -0.021807780489325523, -0.011482915841042995, -0.030447617173194885, 0.010012581944465637, 0.001994058722630143, -0.0014264187775552273, -0.02222415804862976, 0.046269968152046204, 0.027689114212989807, 0.007781057618558407, -0.029744978994131088, 0.024032799527049065, 0.009251391515135765, 0.003030123421922326, 0.00012615349260158837, -0.006753125227987766, -0.012055434286594391, 0.03206108137965202, -0.01833362877368927, 0.03822867572307587, 0.024488212540745735, 0.011730140075087547, 0.004261365160346031, 0.007637927774339914, -0.022432347759604454, -0.0064245774410665035, 0.01815146394073963, 0.01639487035572529, 0.01128773856908083, -0.028860177844762802, 0.006261929869651794, -0.003061026567593217, 0.02750694938004017, 0.00038405146915465593, 0.01597849279642105, -0.019153373315930367, 0.0009832043433561921, -0.0003919805458281189, -0.004170282743871212, 0.019062289968132973, 0.0028869935777038336, 0.03424706310033798, 0.01403973437845707, 0.03190493956208229, 0.006261929869651794, -0.0029536790680140257, 0.02234126441180706, 0.027975374832749367, -0.004446783568710089, -0.0038059521466493607, -0.030031239613890648, -0.0044890716671943665, 0.006131811998784542, -0.024449177086353302, -0.04343339428305626, -0.01569223403930664, 0.004928220063447952, 0.04533311724662781, 0.02114417776465416, -0.003597763366997242, 0.0021485737524926662, 0.000616027507930994, 0.028391752392053604, -0.005038820207118988, -0.019387586042284966, -0.020363470539450645, 0.020493589341640472, 0.005630857311189175, 0.009173320606350899, 0.00535760959610343, -0.020727800205349922, 0.043745677918195724, -0.0031342178117483854, 0.008047799579799175, -0.005536521784961224, -0.0002058507816400379, -0.006974325980991125, -0.02159959077835083, -0.0010653412900865078, -0.008203941397368908, -0.006183858960866928, -0.010845337063074112, -0.02526891976594925, -0.017800144851207733, 0.03031749837100506, -0.006122053135186434, 0.06433034688234329, 0.01554910372942686, 0.003278974210843444, 0.00015827637980692089, 0.01582235097885132, 0.03226926922798157, 0.0070784203708171844, -0.010253299959003925, 0.0020607442129403353, -0.023629432544112206, -0.020259376615285873, 0.0013597332872450352, 0.01696738973259926, 0.01062413677573204, -0.005728445947170258, 0.004007635172456503, 0.0020688765216618776, 0.01217254064977169, -0.021274296566843987, 0.00016488392429891974, 0.026153722777962685, -0.03723977878689766, -0.008073823526501656, -0.013252520933747292, -0.022159099578857422, 0.014169852249324322, 0.010494018904864788, -0.001229615299962461, -0.025919510051608086, -0.007436244748532772, 0.019673844799399376, -0.0075533511117100716, -0.03781229630112648, -0.01753990910947323, 0.005773987155407667, 0.01740979216992855, 0.008444659411907196, 0.004017394036054611, -0.0012466933112591505, -0.0039002876728773117, -0.0038742641918361187, 0.021391402930021286, -0.009401027113199234, -0.009316449984908104, 0.013076861388981342, -0.0028658495284616947, -0.017617980018258095, 0.001545964740216732, -0.0069808317348361015]" +28,"And as we look toward the holidays, we offer the best value in gaming with Game Pass and Xbox Series S, nearly half of the Series S buyers are new to our ecosystem. In closing, in a world facing increasing headwinds, digital technology is the ultimate tailwind. And we're innovating across the entire tech stack to help every organization, while also focusing intensely on our operational excellence and execution discipline. With that, I'll hand it over to Amy.","[-0.014578945003449917, -0.014737268909811974, -0.014499783515930176, -0.02567477524280548, -0.023352699354290962, 0.007111358921974897, -0.032034099102020264, -0.02087230049073696, -0.0041427952237427235, -0.02348463609814644, 0.04108491912484169, 0.008879303000867367, 0.007137746084481478, 0.0017267144285142422, -0.006718848831951618, -0.017415571957826614, 0.02736355923116207, -0.004367086570709944, 0.001731662079691887, -0.012408595532178879, -0.021228527650237083, -0.01963210105895996, 0.016980184242129326, 0.005683150142431259, -0.0036414379719644785, 0.012151320464909077, -0.005244462285190821, -0.004663943313062191, 0.033828429877758026, -0.019157130271196365, -0.0030196888837963343, -0.021980563178658485, -0.010324004106223583, -0.025542840361595154, -0.0014290334656834602, -0.007639103569090366, 0.0004605396534316242, 0.021136172115802765, 0.025437291711568832, 5.261984915705398e-05, 0.02651916816830635, 0.018101640045642853, -0.02215208113193512, 0.01769263856112957, -0.01758708991110325, 0.0017333112191408873, -0.011122218333184719, -0.014156749472022057, -0.0021752973552793264, 0.001384505070745945, 0.0011321771889925003, 0.0021571561228483915, -0.027785753831267357, -0.023946411907672882, 0.0021208736579865217, 0.017666252329945564, -0.011590591631829739, 0.01853702962398529, 0.025833100080490112, 0.004973993171006441, -0.012804403901100159, 0.02775936760008335, -0.018721740692853928, 0.01283738762140274, -0.017310023307800293, 0.003009793581441045, -0.03374926745891571, 0.006247177254408598, 0.014816430397331715, 0.010317407548427582, 0.023154795169830322, 0.020700782537460327, 0.028339887037873268, 0.015423336997628212, -0.0070915683172643185, -0.003136782208457589, -0.00157663703430444, -0.011603784747421741, 0.009888614527881145, 0.00511912303045392, 0.011280541308224201, -0.017257248982787132, 0.011702736839652061, -0.01223707851022482, 0.028076013550162315, 0.020832719281315804, -0.011478445492684841, 0.013629005290567875, -0.011564204469323158, -0.0019015298457816243, 0.023761702701449394, 0.016478825360536575, 0.024817191064357758, 0.03746986761689186, -0.017507927492260933, 0.012527338229119778, -0.0035721715539693832, 0.01625453494489193, 0.014249105006456375, -0.03240352123975754, 0.0213076900690794, -0.0022709511686116457, -0.011583994142711163, -0.00270634051412344, -0.020344555377960205, 0.006164717022329569, -0.01095070131123066, 0.019143937155604362, 0.04187653586268425, 0.024606093764305115, -0.007177326828241348, -0.0009532387484796345, -0.00524116400629282, -0.001632709987461567, 0.020397329702973366, 0.006702356971800327, 0.014156749472022057, -0.003173064673319459, -0.015687208622694016, 0.009855630807578564, 0.024803997948765755, 0.014354653656482697, 0.0018025777535513043, 0.00268325163051486, -0.033379849046468735, 0.006263669114559889, -0.03274655342102051, -0.020357748493552208, 0.030793899670243263, -0.007975541055202484, 0.018510643392801285, -0.012547128833830357, -0.005297236610203981, -0.013721359893679619, -0.016927408054471016, 0.01679547317326069, -0.019315453246235847, 0.028814855962991714, -0.014209523797035217, -0.03327430039644241, 0.009657726623117924, 0.0024655568413436413, 0.006751833017915487, -0.0014331565471366048, 0.017877349629998207, 0.014592139050364494, 0.027891304343938828, -0.003644736250862479, 0.02359018474817276, 0.009868824854493141, 0.015476111322641373, -0.021518787369132042, 0.007071778178215027, 0.004650749731808901, 0.022811761125922203, -0.007678684312850237, -0.009710500948131084, 0.013226599432528019, -0.015528885647654533, -0.010541698895394802, -0.0052642528899014, 0.0018965823110193014, -0.014882398769259453, -0.004475933965295553, 0.00610864395275712, 0.023801282048225403, 0.015528885647654533, 0.006102047394961119, 0.0016747645568102598, -0.0055578104220330715, 0.0013135893968865275, 0.00543906819075346, -0.02997589483857155, 0.014288686215877533, -0.00495750131085515, 0.015330981463193893, 0.013774135150015354, -0.0029784587677568197, -0.02022581361234188, -0.022323597222566605, 0.033327072858810425, -0.0038822214119136333, 0.013919265009462833, 0.007724862080067396, 0.0015815846854820848, 0.007645700126886368, 0.014935173094272614, -0.017573896795511246, 0.013345342129468918, -0.018325932323932648, 0.011537817306816578, 0.041955698281526566, 9.735445200931281e-05, -0.015185851603746414, -0.6531367301940918, -0.014605332165956497, -0.007388424593955278, -0.009506000205874443, 0.015067108906805515, -0.011689543724060059, 0.019552938640117645, 0.010983685031533241, -0.0015659172786399722, 0.004973993171006441, -0.0016788876382634044, 0.005679851397871971, 0.0005850543966516852, -0.026149746030569077, 0.007579732220619917, -0.024711642414331436, 0.03330068662762642, -0.02120213955640793, -0.010343794710934162, -0.0002521217393223196, -0.01862938515841961, 0.014301879331469536, -0.021439624950289726, -0.008767157793045044, -0.0041955700144171715, 0.00591073976829648, -0.008364751935005188, 0.02126810885965824, -0.014684494584798813, 0.011135411448776722, -0.006544033531099558, 0.004954202566295862, -0.0019641995895653963, 0.0030180395115166903, 0.04475274309515953, -0.01117499265819788, -0.021571561694145203, 0.007051987573504448, -0.0009441681322641671, 0.052009232342243195, -0.03731154650449753, -0.0009383959113620222, -0.004429756663739681, 0.0017811381258070469, 0.00567325484007597, 0.028630146756768227, 0.01690102182328701, -0.01754750870168209, -0.008094282820820808, -0.017362797632813454, -0.006751833017915487, -0.029764797538518906, 0.012863775715231895, -0.01636008359491825, 0.04301118850708008, 0.032931264489889145, 0.014183136634528637, -0.04103214666247368, 0.019012000411748886, -0.002176946494728327, -0.012646080926060677, 0.009525790810585022, -0.04203486070036888, -0.03527972847223282, -0.041454341262578964, 0.02170349843800068, 0.0027492197696119547, -0.000509191129822284, 0.01853702962398529, -0.003948189318180084, 0.013642198406159878, 0.030556414276361465, -0.025753937661647797, 0.006573718972504139, -0.0011428969446569681, 0.022877730429172516, 0.025542840361595154, -0.016729503870010376, -0.01819399558007717, 0.021334076300263405, 0.012679064646363258, -0.02928982675075531, 0.006174612324684858, -0.018800903111696243, 0.03314236178994179, -0.016096211969852448, -0.00014512977213598788, 0.007982137612998486, -0.004812371451407671, 0.01799609139561653, 0.016637150198221207, -0.0035062034148722887, -0.0381559357047081, -0.029078729450702667, 0.031691063195466995, 0.025516452267766, 0.0034864130429923534, -0.007051987573504448, 0.0024474156089127064, -0.010765990242362022, -0.02860375866293907, 0.005729327443987131, 0.030635574832558632, 0.009136578999459743, 0.021822240203619003, 0.02636084333062172, -0.00029335179715417325, 0.0017168192425742745, 0.0232867319136858, -0.023524217307567596, 0.011709334328770638, -0.02765381895005703, -0.012171110138297081, 0.010363585315644741, 0.0001414190628565848, -0.021822240203619003, 0.005112526006996632, -0.008041508495807648, -0.02438180148601532, -0.021320883184671402, 0.02085910551249981, 0.007896378636360168, -0.013187019154429436, -0.001557671232149005, -0.0021719990763813257, 0.017112119123339653, -0.00310379802249372, 0.008536268956959248, -0.026294875890016556, 0.001769593684002757, 0.00024037118419073522, -0.023365892469882965, 0.02274579368531704, -0.009400451555848122, -0.010864942334592342, 0.015476111322641373, 0.007071778178215027, -0.041111305356025696, 0.030450865626335144, -0.01243498269468546, -0.032297972589731216, 0.02245553396642208, -0.009829243645071983, -0.00531372893601656, -0.0116433659568429, -0.01740237884223461, -0.006913454737514257, -0.00536320498213172, -0.007691877894103527, -0.022086111828684807, -0.00525435758754611, 0.00041188817704096437, 0.01273843552917242, 0.028419047594070435, 0.01799609139561653, 0.0031450281385332346, -0.008358155377209187, -0.029474537819623947, -0.03053002618253231, -0.021136172115802765, 0.015845531597733498, 0.01278461329638958, -0.0054786489345133305, -0.012210691347718239, -0.02195417694747448, -0.019091162830591202, -0.02810240164399147, 0.029553698375821114, -0.003260472323745489, -0.006659477483481169, 0.024197090417146683, 0.0026733563281595707, 0.004845355171710253, 0.03646715357899666, -0.003918503876775503, 0.009195949882268906, -0.00529064005240798, 0.011524623259902, 0.013121050782501698, -0.012652677483856678, 0.0008229517843574286, 0.009552177973091602, -0.014117169193923473, 0.008846319280564785, 0.020239006727933884, -0.015990661457180977, 0.014697687700390816, 0.023273538798093796, -0.016966989263892174, 0.006659477483481169, -0.007276278920471668, 0.04232512041926384, -0.02562200091779232, -0.009552177973091602, -0.0122634656727314, -0.005122421309351921, -0.01243498269468546, -0.007929363287985325, 0.004327505826950073, 0.006326338741928339, 0.04931773617863655, -0.014658107422292233, -0.0011330017587170005, 0.0016607464058324695, 0.0009045872720889747, -0.02661152370274067, 0.0005809313734062016, -0.006547331809997559, -0.009096997790038586, 0.013945652171969414, 0.01025803666561842, -0.03390759229660034, -0.015040721744298935, -0.02175627276301384, 0.00591073976829648, 0.009849034249782562, -0.003210996277630329, 0.016518406569957733, -0.018906451761722565, -0.003161520231515169, -0.007388424593955278, -0.016927408054471016, 0.00517849437892437, -0.008556059561669827, -0.014539364725351334, 0.020832719281315804, -0.001017557573504746, 0.03137441724538803, 0.016927408054471016, -0.04034607857465744, -0.010000760667026043, 0.0240387674421072, -0.003316545160487294, 0.006946438457816839, 0.013259584084153175, -0.010165681131184101, 0.03161190450191498, -0.02066120132803917, 0.04121685400605202, -0.016821859404444695, 0.008054702542722225, 0.011577397584915161, 0.013259584084153175, -0.012692258693277836, 0.02101743035018444, -0.0032324357889592648, 0.04380280524492264, 0.010304213501513004, -0.013787328265607357, -0.003878922900184989, -0.0237880889326334, -0.012507547624409199, -1.8901400835602544e-05, -0.015291400253772736, 0.01179509237408638, -0.0006370042683556676, -0.024355415254831314, -0.002787151373922825, 0.02319437637925148, 0.023049246519804, -0.01174891460686922, 0.023036053404211998, 0.026585135608911514, -0.015199045650660992, -0.015304594300687313, 0.0013399765593931079, -0.013629005290567875, -0.016980184242129326, -0.00028510577976703644, -0.014328266493976116, -0.0008493390050716698, -0.0035062034148722887, 0.011221170425415039, -0.005669956561177969, 0.012401998974382877, 0.015608047135174274, 0.009004642255604267, 0.00307905999943614, -0.024117929860949516, 0.01715170033276081, 0.023313118144869804, -0.05762971192598343, 0.009261918254196644, 0.016043435782194138, -0.0029966000001877546, -0.006055869627743959, -0.011115620844066143, -0.008628624491393566, -0.01125415414571762, 0.04491106793284416, -0.0007359563605859876, 0.007348843850195408, -0.022310404106974602, 0.002576053375378251, 0.007381828036159277, -0.00558749632909894, 0.04132240265607834, 0.00014667589857708663, 0.005320325493812561, -0.012072158046066761, 0.007586329244077206, -0.01182147953659296, -0.018259964883327484, -0.016043435782194138, 0.0014719127211719751, 0.015951082110404968, -0.01818080246448517, -0.01992235891520977, -0.0049311136826872826, -0.023418668657541275, -0.0033363355323672295, -0.037733741104602814, -0.025265773758292198, -0.009849034249782562, -0.007909572683274746, 0.009578565135598183, -0.0019444091012701392, -0.011999593116343021, 0.007467586547136307, 0.019711261615157127, -0.01018547173589468, -0.0067155505530536175, -0.02056884765625, 0.011267348192632198, 0.0956801027059555, 0.0029817570466548204, -0.018299544230103493, 0.014724074862897396, -0.01893283799290657, -0.001668992335908115, -0.020687589421868324, -0.009096997790038586, 0.0232867319136858, -0.011412477120757103, -0.022363178431987762, 0.014407427981495857, 0.0020136756356805563, -0.01142567116767168, -0.0006658653146587312, 0.0006110293325036764, -0.0020961356349289417, -0.008397736586630344, -0.006253773812204599, 0.0014545961748808622, -0.0008996396791189909, 0.01704615168273449, -0.005815085954964161, 0.025015095248818398, 0.023458248004317284, 0.01918351650238037, 0.024566512554883957, 0.020186232402920723, -0.013088067062199116, -0.002569456584751606, -0.01063405442982912, -0.005066348239779472, -0.014433815144002438, 0.021584754809737206, -0.008674802258610725, 0.018207190558314323, -0.009637936018407345, -0.006323040463030338, -0.004508918151259422, 0.0025925454683601856, 0.011135411448776722, 0.00619440246373415, 0.012936340644955635, -0.005788698792457581, -0.009360870346426964, 0.0013424503849819303, -0.02438180148601532, 0.0061383298598229885, 0.009235531091690063, -0.04831502214074135, 0.0112739447504282, -0.013919265009462833, -0.04166543856263161, -0.0034963081125169992, -0.006557227112352848, 0.01952655054628849, -0.0014785095117986202, -0.020727170631289482, -0.03053002618253231, -0.01576637104153633, -0.01814122125506401, -0.021980563178658485, -0.01070661935955286, -0.01636008359491825, -0.01243498269468546, -0.011234363541007042, -0.013958845287561417, 4.396797976369271e-06, -0.024197090417146683, -0.0031136933248490095, -0.007658893708139658, -0.03187577426433563, -0.025899067521095276, 0.0034567273687571287, 0.03385481610894203, 0.011656559072434902, -0.0034237431827932596, 0.012771420180797577, 0.004983888473361731, 0.008147058077156544, 0.013358536176383495, 0.006900261156260967, 0.004973993171006441, -0.021729884669184685, 0.009393854066729546, -0.007131149061024189, -0.00512901833280921, 0.00021130399545654655, -0.0005574302631430328, 0.005966812837868929, 0.019895972684025764, -0.006672671064734459, 0.013028695248067379, 0.0008551112259738147, 0.001346573350019753, 0.01947377622127533, 0.01174891460686922, -0.004350594710558653, -0.0054786489345133305, -0.008147058077156544, -0.003184608882293105, -0.017059344798326492, -0.004485829267650843, -0.028471821919083595, 0.003865729318931699, -0.016188565641641617, 0.0037337932735681534, 0.015449724160134792, 0.007032196968793869, -0.024104736745357513, -0.007935959845781326, -0.012467966414988041, -0.00546545535326004, -0.005102630704641342, -0.011557606980204582, 0.003773374017328024, 0.02760104462504387, -0.007408215198665857, -0.013292567804455757, 0.015251819975674152, 0.006788115482777357, -0.0555187352001667, 0.027389945462346077, -0.01166975311934948, -0.004977291449904442, 0.023761702701449394, 0.02666429802775383, -0.0076522971503436565, -0.02215208113193512, 0.013048485852777958, 0.02087230049073696, 0.0015362316044047475, -0.0027409736067056656, -0.0030757617205381393, -0.01963210105895996, -0.028076013550162315, 0.019764035940170288, 0.007216907572001219, -0.01073300652205944, -0.014869204722344875, -0.015937887132167816, 0.009901808574795723, 0.008391140028834343, -0.028419047594070435, -0.011122218333184719, -0.03076751157641411, -0.020700782537460327, 0.012870372273027897, 0.015106690116226673, 0.008628624491393566, -0.014710881747305393, -0.014974753372371197, -0.0048222667537629604, 0.002148910192772746, -0.016122598201036453, -0.031136933714151382, -0.0237880889326334, -0.041955698281526566, 0.02855098433792591, 0.04002942889928818, 0.04831502214074135, -0.0042450460605323315, 0.01174891460686922, 0.008048105984926224, 0.0028514701407402754, -0.010093116201460361, 0.0020516072399914265, 0.016940603032708168, -0.012949533760547638, 0.002234668703749776, -0.02542409673333168, -0.0008130565402098, 0.0007095691398717463, -0.008490092121064663, 0.020199425518512726, -0.0018454570090398192, -0.008912287652492523, -0.01882728934288025, -0.028366273269057274, -0.0042252554558217525, -0.012995711527764797, -0.004815669730305672, -0.002290741540491581, 0.02715246193110943, -0.02973840944468975, -0.014671300537884235, 0.025740744546055794, 0.004683733452111483, 0.020938267931342125, 0.005966812837868929, 0.03232435882091522, 0.0024556617718189955, -0.000987047329545021, 0.015568466857075691, 0.0011288787936791778, -0.045623522251844406, -0.006788115482777357, -0.025265773758292198, 0.008292187005281448, 0.026941362768411636, 0.010541698895394802, 0.031691063195466995, -0.01072640996426344, -0.004551797639578581, -0.002800344955176115, 0.037496257573366165, -0.039580848067998886, 0.0018982314504683018, 0.00326377060264349, -0.003235734300687909, 0.016531599685549736, -0.0007648174068890512, 0.00046466264757327735, -0.03327430039644241, -0.012283256277441978, 0.013121050782501698, -0.007573135197162628, 0.009888614527881145, 0.009367466904222965, -0.02562200091779232, -0.0014512977795675397, -0.004030649550259113, 0.014367847703397274, -0.0034369369968771935, 0.00540278572589159, -8.885075658326969e-05, 0.009585161693394184, -0.028366273269057274, -0.03651992976665497, -0.023458248004317284, 0.002115926006808877, 0.026492780074477196, 0.022429145872592926, -0.0042747315019369125, 0.0015782862901687622, -0.012771420180797577, -0.010119503363966942, 0.007302666082978249, -0.004578184802085161, -0.004997082054615021, 0.006148224696516991, -0.0027294291649013758, -0.010713215917348862, -0.031691063195466995, -0.0029966000001877546, 0.029316214844584465, -0.008707785978913307, 0.009486209601163864, -0.015515691600739956, -0.015251819975674152, -0.003816253272816539, 0.016571180894970894, 0.003723897971212864, 0.01977722905576229, -0.007019003387540579, -0.005518229678273201, 0.005350010935217142, -0.003638139460235834, -0.014790043234825134, -0.035068631172180176, -0.015726789832115173, 0.02165072411298752, -0.05074264481663704, 0.02056884765625, 0.019091162830591202, 0.03195493668317795, -0.007276278920471668, 0.0047035240568220615, 0.010106309317052364, 0.020159844309091568, -0.03076751157641411, -0.032641004770994186, 0.0035556794609874487, 0.02209930680692196, 0.010871538892388344, -0.008905690163373947, -0.02894679270684719, -0.014209523797035217, -0.002322076354175806, -0.010686828754842281, 0.02195417694747448, -0.00584807014092803, -0.015436530113220215, -0.013114454224705696, 0.010983685031533241, -0.04132240265607834, 0.002204983029514551, -0.003786567598581314, 0.014552557840943336, -0.017428766936063766, -0.004769491963088512, -0.013998426496982574, 0.004927815403789282, -0.004710120614618063, 0.005211478099226952, 0.004518813453614712, 0.006629792042076588, 0.007460989523679018, -0.0008452159818261862, 0.0027228323742747307, 0.016148986294865608, 0.005171897355467081, -0.0237880889326334, 0.030292540788650513, -0.02175627276301384, -0.026690684258937836, 0.013734553940594196, -0.014869204722344875, 0.007197117432951927, 0.013536649756133556, 0.027785753831267357, -0.0041955700144171715, 0.009235531091690063, -0.0018355618230998516, -0.021373657509684563, -0.0013391519896686077, 0.008582446724176407, -0.01221728790551424, -0.02626848965883255, 0.017217667773365974, 0.0011874254560098052, -0.0041757794097065926, 0.0063659194856882095, 0.005257655866444111, 0.015212238766252995, 0.0010596122592687607, 0.0015246871626004577, 0.001794331707060337, -0.005053154658526182, -0.02547687105834484, 0.0005322799552232027, -0.008054702542722225, -0.0008501636330038309, 0.0005129018099978566, -0.020700782537460327, 0.016465632244944572, -0.009479613043367863, 0.006807905621826649, 0.015027528628706932, 0.008589044213294983, 0.008628624491393566, 0.010561489500105381, 0.017125312238931656, 0.00010199283133260906, 0.001756400102749467, -2.90929529001005e-05, -0.019447389990091324, -0.014895591884851456, -0.03889477998018265, -0.005300534889101982, -0.008998045697808266, 0.031796615570783615, 0.025793518871068954, -0.009103595279157162, -0.009255321696400642, -0.006098748650401831, -0.05631035193800926, -0.0322188101708889, 0.004868444055318832, 0.02597822993993759, 0.028656532987952232, -0.001409243093803525, -0.004934412427246571, 0.02467206120491028, 0.006623195018619299, 0.001992235891520977, -0.015225432813167572, 0.008358155377209187, 0.01600385643541813, -0.01873493380844593, 0.002581001026555896, -0.004812371451407671, -0.014499783515930176, -0.004647450987249613, 0.00659021083265543, -0.010488924570381641, -0.004855250474065542, 0.017362797632813454, 0.011458654887974262, 0.013028695248067379, -0.01345089077949524, 0.019368227571249008, 0.028682921081781387, 0.008034911938011646, 0.008655011653900146, -0.019038386642932892, -0.004376981873065233, 0.02934260107576847, -0.009809453040361404, 3.857586489175446e-05, 0.01661076210439205, 0.01327937375754118, 0.012718645855784416, -0.02022581361234188, -0.005039961077272892, -0.010983685031533241, 0.009413644671440125, -0.02448735013604164, 0.0037008090876042843, -0.008839722722768784, -0.002552964724600315, 0.025556033477187157, 0.011465252377092838, -0.018009284511208534, -0.005791997071355581, 0.031136933714151382, -0.008232816122472286, 0.01858980394899845, -0.007104761898517609, -0.018695352599024773, 0.003934995736926794, -0.014776849187910557, 0.022666631266474724, 0.014737268909811974, -0.01967168040573597, -0.010864942334592342, 0.002587597817182541, -0.023049246519804, 0.01268566120415926, 0.010205261409282684, -0.012698855251073837, -0.010884732939302921, 0.0017761904746294022, 0.008918884210288525, 0.022336792200803757, -0.00519168796017766, 0.02240275964140892, -0.010416359640657902, -0.014209523797035217, 0.022336792200803757, -0.01137289684265852, -0.038129549473524094, 0.009499403648078442, 0.006692461669445038, 0.0006840064888820052, 0.009400451555848122, 0.21225889027118683, 0.019368227571249008, -0.007355440873652697, 0.007876588962972164, 0.022732600569725037, -0.003793164622038603, 0.013668585568666458, 0.014143556356430054, 0.008595640771090984, 0.0022627050057053566, -0.013958845287561417, 0.024012381210923195, -0.00567325484007597, -0.01142567116767168, 0.003931697458028793, -0.01778499409556389, -0.035701923072338104, 0.013866489753127098, -0.022772179916501045, 0.020925074815750122, 0.010277826339006424, -0.006953035481274128, -0.001079402631148696, -0.020107069984078407, 0.015067108906805515, 0.00299165234901011, -0.00654073478654027, 0.01243498269468546, 0.018312739208340645, 0.011630171909928322, -0.011781899258494377, -0.0015288102440536022, 0.01779818721115589, 0.021083397790789604, -0.004492426291108131, -0.023365892469882965, 0.001091771642677486, -0.004271433223038912, 0.022785374894738197, 0.029949506744742393, 0.02060842700302601, 0.021927788853645325, -0.02671707235276699, 0.000440749223344028, 0.016940603032708168, 0.029896732419729233, 0.000776361848693341, -0.011907238513231277, 0.011511430144309998, 0.0016409559175372124, -0.025450484827160835, -0.010027147829532623, 0.02517341822385788, 0.02310202084481716, -0.0034501305781304836, 0.018906451761722565, 0.001979042310267687, 0.018497448414564133, -0.021136172115802765, 0.006847486365586519, 0.007665490731596947, 0.03266739100217819, -0.015924694016575813, 0.033432621508836746, -0.011234363541007042, 0.015924694016575813, -0.029474537819623947, 0.017230862751603127, 0.014790043234825134, -0.0010414710268378258, -0.0024160807952284813, 0.006164717022329569, -0.012672468088567257, -0.014262298122048378, -0.02736355923116207, -0.012355821207165718, 0.06660137325525284, 0.004116408061236143, 0.021439624950289726, 0.03147996589541435, -0.00030840077670291066, 0.0026337755843997, -0.012395401485264301, -0.0252789668738842, -0.013681779615581036, -0.03950168564915657, 0.02240275964140892, -0.012698855251073837, -0.02486996538937092, -0.004446248523890972, 0.003377565648406744, 0.010568086057901382, -0.01571359671652317, -0.0346992090344429, 0.005702940281480551, -0.008087686263024807, 0.012171110138297081, 0.02085910551249981, 0.0064681703224778175, -0.01779818721115589, -0.011702736839652061, 0.0327201671898365, 0.0051422119140625, 0.00018481368897482753, -0.01630730926990509, 0.015687208622694016, -0.02621571347117424, 0.024949127808213234, 0.017573896795511246, -0.01219090074300766, 0.0026717071887105703, -0.01063405442982912, 0.014724074862897396, -0.00545226177200675, 0.002613985212519765, 0.020938267931342125, 0.006656179204583168, -0.0033544767647981644, 0.004017455969005823, -2.1130399545654655e-05, -0.0031813106033951044, -0.03166467696428299, 0.007210311014205217, 0.015779564157128334, 0.007058584596961737, -0.014024813659489155, -0.01179509237408638, 0.002084591193124652, -0.014447009190917015, -0.018246769905090332, 0.026730265468358994, 0.010798974893987179, -0.006827696226537228, -0.0421140231192112, -0.01858980394899845, 0.0032835612073540688, 0.03731154650449753, -0.01719128154218197, -0.02889401838183403, 0.009862227365374565, -0.002638723235577345, 0.021439624950289726, 0.0027805545832961798, 0.014526170678436756, 0.02799685299396515, -0.032825715839862823, 0.0235374104231596, -0.0007549222209490836, -0.013490471988916397, -0.020991042256355286, -0.025938648730516434, 0.014117169193923473, -0.014117169193923473, 0.010574682615697384, 0.025608807802200317, -0.013028695248067379, -0.028577372431755066, 0.009466418996453285, -0.0121381264179945, 0.014064393937587738, -0.04469997063279152, -0.008114073425531387, 0.02810240164399147, -0.013312358409166336, -0.005307131912559271, -0.0030081444419920444, -0.16729505360126495, 0.0009738537482917309, -0.011089233681559563, -0.04520132765173912, 0.042984798550605774, -0.009618145413696766, 0.02508106268942356, 0.014856011606752872, -0.02508106268942356, 0.006511049345135689, 0.019157130271196365, 0.016637150198221207, -0.03393397852778435, -0.005323623772710562, 0.031136933714151382, -0.0017432065214961767, -0.005201582796871662, 0.008265799842774868, -0.0016615709755569696, 0.018154414370656013, 0.01184786669909954, -0.00555121386423707, 0.012527338229119778, -0.006906857714056969, 0.013985232450067997, 0.004215360153466463, -0.009611548855900764, 0.022877730429172516, 0.007388424593955278, 0.004835460335016251, -0.008226219564676285, -0.024025574326515198, 0.02175627276301384, 0.02398599311709404, -9.920980664901435e-05, -0.004667241591960192, -0.01720447465777397, -0.017705831676721573, -0.026756651699543, 0.06116560101509094, 0.005257655866444111, 0.0126394834369421, -0.012171110138297081, 0.003773374017328024, 0.009294901974499226, 0.0009078856674022973, -0.02200695127248764, -0.0003659166977740824, -0.006801309064030647, -0.0011676349677145481, 0.026637909933924675, -0.0341978520154953, -0.004261537920683622, 0.004967396147549152, -0.0018141221953555942, 0.007632506545633078, -0.011755511164665222, -0.003967979922890663, 0.01893283799290657, -0.029764797538518906, 0.021083397790789604, -0.009750082157552242, -0.0044231596402823925, 0.002041711937636137, -0.010389972478151321, -0.010449343360960484, 0.005076243542134762, -0.0029190874192863703, -0.045623522251844406, 0.024751223623752594, 0.008173445239663124, -0.021584754809737206, -0.007705071475356817, -0.018405094742774963, -0.0020977850072085857, -0.019196711480617523, -0.0050828405655920506, 0.028682921081781387, 0.011333315633237362, 0.002663461258634925, -0.015674015507102013, -0.0055776010267436504, -0.023854056373238564, 0.006111942697316408, -0.026835814118385315, -0.0015617943136021495, 0.004861847497522831, 0.016980184242129326, -0.008932078257203102, -0.020357748493552208, 0.036546315997838974, -0.0232867319136858, 0.007045390550047159, 0.01097708847373724, 0.0031994518358260393, 0.005224671680480242, 0.020700782537460327, 0.0062339832074940205, -0.0033247910905629396, 0.01258670911192894, -0.006682566367089748, 0.002167051425203681, 0.0042450460605323315, 0.017560701817274094, 0.03472559526562691, 0.032984040677547455, 0.0029998982790857553, 0.01877451501786709, 0.030160605907440186, -0.011537817306816578, -0.049238573759794235, 0.03527972847223282, 0.022983279079198837, 0.015528885647654533, 0.012646080926060677, 0.052563365548849106, 0.0030576204881072044, -0.0011849516304209828, -0.003427041694521904, 0.000459302740637213, 0.054990991950035095, -0.023603377863764763, -0.02021261863410473, 0.016769085079431534, -0.001911425031721592, -0.03498946875333786, -0.11293735355138779, -0.058896299451589584, -0.006906857714056969, 0.00627026567235589, 0.000757395988330245, 0.004479232709854841, -0.008496688678860664, 0.0005714484723284841, -0.010324004106223583, 0.043538931757211685, 0.01134650968015194, -0.03871006891131401, -0.03126886859536171, -0.005633674096316099, 0.02611016482114792, -0.009796259924769402, -0.020648008212447166, -0.016346890479326248, -0.02046329714357853, 0.016637150198221207, 0.0025117346085608006, -0.008661609143018723, -0.020186232402920723, -0.013444294221699238, -0.024540124461054802, -0.01857661083340645, -0.025595614686608315, 0.010119503363966942, 0.01868215948343277, 0.008180041797459126, 0.007922765798866749, -0.010317407548427582, 0.02006748877465725, -0.02844543568789959, 0.003265419974923134, -0.004815669730305672, -0.012632886879146099, -0.033432621508836746, 0.009077207185328007, -0.003087306162342429, -0.0029273335821926594, -0.0005928881000727415, 0.002025220077484846, -0.0018850378692150116, -0.013523455709218979, -0.00306586641818285, -0.00012523627083282918, 0.012718645855784416, 0.0252789668738842, -0.017626671120524406, -0.03630882874131203, -0.015674015507102013, -0.009987566620111465, -0.012111739255487919, -0.0019971835426986217, -0.008351558819413185, 0.00591073976829648, -0.010027147829532623, -0.010271229781210423, -0.01774541288614273, -0.0028481718618422747, 0.01808844693005085, -0.017521122470498085, 0.02290411666035652, 0.01738918572664261, 0.020648008212447166, -0.008635221049189568, -0.0028778575360774994, -0.0037271964829415083, -0.02815517596900463, -0.005653464235365391, 0.02968563511967659, -0.008298784494400024, 0.013589424081146717, -0.02407834865152836, 0.0027805545832961798, -0.01948697119951248, -0.011689543724060059, 0.027495495975017548, -0.0002121286088367924, -0.023115213960409164, -0.02884124405682087, 0.010521908290684223, -0.030318928882479668, 0.044779133051633835, 0.012309643439948559, -0.015436530113220215, 0.0015601450577378273, 0.004792580846697092, -0.0341978520154953, 0.007573135197162628, 0.002483698073774576, -0.0036414379719644785, -0.010205261409282684, -0.01600385643541813, 0.004090020898729563, -0.010667038150131702, -0.023801282048225403, 0.0035919619258493185, 0.016940603032708168, 0.0016302361618727446, -0.010264633223414421, -0.054832667112350464, 0.020977849140763283, -0.003270367393270135, 0.016426051035523415, 0.009637936018407345, -0.0059074414893984795, 0.009242127649486065, -0.014803236350417137, 0.005719432607293129, -0.00018677212938200682, -0.022178467363119125, 0.008681398816406727, 0.019289067015051842, -0.008153654634952545, -0.03324791043996811, -0.020186232402920723, 0.03232435882091522, -0.017164893448352814, 0.006210894789546728, 0.0028696113731712103, 0.007942556403577328, -0.012949533760547638, -0.003346230834722519, 0.012052368372678757, -0.024170704185962677, -0.0006720498204231262, -0.016980184242129326, -0.010271229781210423, 0.0011214573169127107, -0.015489304438233376, 0.007441199384629726, -0.007078374736011028, 0.006174612324684858, 0.039422523230314255, -0.018471062183380127, -0.007104761898517609, -0.00270798965357244, 0.017455153167247772, 0.004766193684190512, 0.015515691600739956, -0.03018699213862419, -0.023774895817041397, 0.006619896739721298, -0.02567477524280548, -0.0013399765593931079, -0.007922765798866749, 0.005109227728098631, -0.013589424081146717, -0.0030213380232453346, 0.018853677436709404, 0.009703904390335083, 0.007837007753551006, -0.026783039793372154, -0.012395401485264301, -0.016887828707695007, -0.013061679899692535, 0.030899448320269585, -0.0033363355323672295, -0.0008880952373147011, -0.00994138978421688, 0.014605332165956497, 0.010937507264316082, 0.00567325484007597, -0.025463677942752838, 0.006547331809997559, -0.008160251192748547, 0.0006823572912253439, 0.0003352003113832325, -0.001886687008664012, 0.0016525003593415022, 0.009433435276150703, -0.015067108906805515, 0.01986958459019661, 0.011689543724060059, -0.0012773069320246577, -0.023972800001502037, 0.014908785931766033, -0.011043055914342403, -0.02592545561492443, 0.018919644877314568, 0.016637150198221207, -0.005350010935217142, -0.023009665310382843, 0.0045023211278021336, 0.017560701817274094, 0.012652677483856678, 0.0011189834913238883, 0.006906857714056969, -0.013312358409166336, 0.01763986423611641, -0.007355440873652697, 0.0010934208985418081, 0.0026799531187862158, 0.013167228549718857, 0.021122979000210762, 0.0017712429398670793, 0.025054676458239555, 0.016966989263892174, 0.007995330728590488, 0.025331741198897362, 0.013464084826409817, -0.009928195737302303, 0.014974753372371197, -0.015001141466200352, -0.0225478895008564, 0.020054295659065247, -0.017560701817274094, -0.015067108906805515, -5.684592906618491e-05, 0.013747747987508774, 0.0017547508468851447, 0.004334102850407362, 0.021584754809737206, 0.009209143929183483, -0.01853702962398529, 0.02973840944468975, -0.0008163549937307835, -0.0060888538137078285, -0.01942100189626217, 0.026440005749464035, 0.02655874751508236, 0.005854667164385319, 0.014539364725351334, -0.013945652171969414, 0.016518406569957733, -0.01112881489098072, -0.014235910959541798, -0.02720523625612259, -0.0054588583298027515, -0.0013581177918240428, -0.004644152708351612, 0.026624716818332672, -0.0026156343519687653, -0.004235150758177042, 0.00029190874192863703, -0.01898561231791973, -0.00984243769198656, 0.031743839383125305, 0.007197117432951927, 0.06612639874219894, 0.020991042256355286, 0.013345342129468918, 0.01947377622127533, -0.0061878059059381485, 0.018695352599024773, 0.006200999487191439, -0.0005046558217145503, -0.014328266493976116, -0.018800903111696243, -0.0005702115595340729, 0.004960799589753151, 0.0015560220927000046, -0.0019889376126229763, -0.000720288953743875, 0.013497068546712399, -0.015119883231818676, 0.012758226133883, -0.027284396812319756, 0.0038525357376784086, 0.03227158263325691, -0.01799609139561653, 0.025661582127213478, -0.018207190558314323, -0.01169614028185606, 0.008463704027235508, 0.01194681879132986, 0.023009665310382843, -0.015700403600931168, -0.018708547577261925, 0.0065176463685929775, 0.0050498563796281815, -0.03472559526562691, 0.0007161659304983914, 0.02022581361234188, 0.0030510236974805593, 0.0015832338249310851, 0.01043615024536848, 0.02690178155899048, 0.011465252377092838, 0.00492121884599328, -0.0002228484081570059, -0.007526957895606756, -0.02060842700302601, 0.009083804674446583, 0.011834673583507538, -0.021043816581368446, 0.00624387850984931, 0.007856798358261585]" +29,"Thank you, Satya, and good afternoon, everyone. Our first quarter revenue was $50.1 billion, up 11% and 16% in constant currency. Earnings per share was $2.35, increased 4% and 11% in constant currency when adjusted for the net tax benefit for the first quarter of fiscal year 2022. Driven by strong execution in a dynamic environment, we delivered a solid start to our fiscal year, in line with our expectations even as we saw many of the macro trends from the end of the fourth quarter continued to weaken through Q1.","[0.013616200536489487, -0.01455166470259428, -0.018631327897310257, -0.02502366527915001, 0.009075301699340343, -0.008977857418358326, -0.015876905992627144, -0.011212577112019062, -0.011043674312531948, -0.00908829364925623, 0.0364571176469326, 0.02790801413357258, -0.002830753568559885, -0.017293093726038933, 0.018241550773382187, -0.0010759461438283324, 0.008263266645371914, -0.018254542723298073, 0.010822799988090992, 0.0018741764361038804, -0.02436104603111744, 0.006697663571685553, -0.03819812089204788, 0.0028388737700879574, -0.011972641572356224, 0.013090001419186592, 0.01600683107972145, -0.0001436286693206057, 0.013434304855763912, -0.01676039956510067, -0.022970842197537422, -0.01570800133049488, -0.030610466375947, 0.022503109648823738, -0.029986822977662086, -0.009562522172927856, -0.004716298542916775, 0.016227703541517258, 0.023750394582748413, 0.00409915205091238, 0.0182285588234663, 0.015954861417412758, 0.008354214020073414, 0.002320795552805066, -0.020671159029006958, 0.010939733125269413, -0.018189581111073494, -0.008705013431608677, -8.130499190883711e-05, 0.012102567590773106, 0.008237281814217567, 0.021723555400967598, -0.04568183049559593, -0.020086493343114853, -0.018059654161334038, 0.010179668664932251, -0.003233522642403841, 0.0316498689353466, -0.0007377336733043194, 0.0003493779804557562, -0.02388032153248787, 0.008750487118959427, -0.047682687640190125, 0.015669023618102074, -0.035937413573265076, -0.015227277763187885, -0.007659112568944693, 0.0009232836309820414, -0.00954953022301197, 0.03216957300901413, 0.016955288127064705, 0.019410880282521248, 0.0040504299104213715, -0.008756984025239944, 0.009692448191344738, -0.012018115259706974, -0.010101713240146637, -0.001500640413723886, -0.0015396180097013712, 0.004349258728325367, 0.008146333508193493, -0.00673664128407836, -0.01131002139300108, -0.005599792115390301, 0.005320452153682709, -0.012641758657991886, -0.013551237061619759, 0.005823913961648941, -0.02589416690170765, 0.012563803233206272, 0.04136830195784569, 0.010257624089717865, 0.026089055463671684, 0.026868609711527824, -0.020866047590970993, 0.024023238569498062, -0.023295655846595764, 0.0185014009475708, 0.004339514300227165, -0.025816211476922035, 0.004979397635906935, -0.027856042608618736, -0.019202999770641327, -0.007548675872385502, -0.022685006260871887, 0.019865620881319046, 0.014603634364902973, 0.007139410357922316, 0.008886909112334251, -0.008568591438233852, -0.003456020262092352, -0.021541660651564598, 0.011238561943173409, -0.0010020510526373982, 0.013928021304309368, 0.0006707407883368433, 0.008828442543745041, 0.019969560205936432, 0.006181209348142147, -0.009049315936863422, 0.022775953635573387, -0.0015209412667900324, 0.028791507706046104, -0.0044921766966581345, 0.02775210328400135, 0.0005205143243074417, 0.0009143512579612434, -0.026439854875206947, -0.009413108229637146, -0.009504055604338646, -0.0013106241822242737, -0.0019602521788328886, 0.03159790113568306, 0.014590642414987087, -0.021424727514386177, 0.022749967873096466, -0.033442843705415726, 0.0042290776036679745, -0.021138891577720642, -0.0127197140827775, -0.008880413137376308, 0.004605861846357584, 0.0023094271309673786, 0.0017020250670611858, -0.008113851770758629, 0.03331291675567627, 0.01577296480536461, -0.006476789712905884, 0.027674147859215736, -0.007659112568944693, 0.005382167175412178, 0.013057520613074303, 0.008334726095199585, 0.023295655846595764, 0.009335152804851532, -0.008750487118959427, -0.008438666351139545, 0.03102622739970684, -0.0029070847667753696, 0.0036151790991425514, -0.026063069701194763, 0.008354214020073414, -0.011641331948339939, 0.0026732187252491713, 0.0028746032621711493, 0.027232401072978973, 0.017500974237918854, 0.00597657635807991, -0.0234905444085598, -0.01673441380262375, -0.009328655898571014, -0.012667743489146233, 0.01952781341969967, 0.014278820715844631, -0.009874343872070312, 0.030168717727065086, 0.01925496943295002, -0.008347718045115471, -0.03193570673465729, -0.021827496588230133, 0.012979565188288689, -0.02541344240307808, -0.0015501745510846376, 0.0163706224411726, 0.020099487155675888, -0.024283090606331825, 0.034560203552246094, 0.006434564013034105, -0.012641758657991886, -0.002291562268510461, -0.007340794894844294, 0.013655178248882294, 0.005580303259193897, -0.01955379918217659, -0.6402732133865356, -0.01282365433871746, -0.0039010155014693737, 0.00038937071803957224, 0.004713050089776516, -0.02718042954802513, 0.038639865815639496, -0.002778783207759261, -0.036716967821121216, 0.010420030914247036, 0.0026423614472150803, 0.005352933891117573, -0.003686638083308935, -0.01838446967303753, -0.005021623335778713, -0.020866047590970993, -0.008458155207335949, -0.008984353393316269, -0.03674295172095299, 0.008692020550370216, -0.003358576213940978, 0.01705922745168209, -0.0043297698721289635, 0.01368116308003664, 0.005684243980795145, -0.003595690242946148, 0.0030808602459728718, -0.03598938509821892, -0.017319079488515854, 0.016214711591601372, -0.029155299067497253, 0.01048499345779419, 0.02468585968017578, 0.01082929689437151, 0.03526180237531662, -0.004946916364133358, -0.028427716344594955, 0.017371049150824547, 0.012732706032693386, 0.06361155956983566, -0.04682517796754837, -0.0018173339776694775, -0.008795961737632751, 0.0008067566086538136, -0.009854855015873909, 0.021619616076350212, 0.0056485142558813095, -0.005336693022400141, 0.006454052869230509, -0.01808563992381096, 0.0006569362012669444, 0.008334726095199585, -0.003836052492260933, 0.0032578837126493454, 0.023555506020784378, 0.013941014185547829, 0.018449431285262108, -0.015759972855448723, -0.007503202185034752, -0.008341222070157528, 0.0025952633004635572, -0.006213690619915724, 0.0055640628561377525, -0.02697254903614521, -0.013284889981150627, 0.023659447208046913, 0.0059603359550237656, 0.005521837156265974, 0.033001095056533813, 0.0006082141189835966, -0.0019261466804891825, 0.014733560383319855, 0.00408615916967392, -0.01847541704773903, 0.027700131759047508, 0.02772611752152443, 0.029960837215185165, -0.041160423308610916, -0.009029827080667019, 8.917157538235188e-05, 0.009770403616130352, -0.03352079913020134, -0.004371995572000742, -0.02102195844054222, -0.007054958492517471, 0.008854428306221962, -0.0043135290034115314, -0.0024019989650696516, 0.011420457623898983, 0.016500547528266907, 0.0004147467843722552, 0.01320043858140707, 0.01007572840899229, -0.03559960797429085, 0.009367633610963821, 0.0325593501329422, -0.010614919476211071, -0.0029785437509417534, -0.0016825362108647823, -0.002887595910578966, -0.02550438977777958, 0.0009760658722370863, 0.021515674889087677, 0.00857508834451437, 0.040147002786397934, 0.024919725954532623, -0.0026017597410827875, -0.0091597530990839, 0.027466267347335815, -0.020736122503876686, 0.002233095932751894, -0.01145943533629179, -0.008919390849769115, -0.002158388728275895, -0.0184104535728693, -0.03469012677669525, 0.021671585738658905, 0.019241977483034134, -0.007392765022814274, -0.00920522678643465, 0.0016955287428572774, -0.00910128653049469, 0.017371049150824547, -0.029233254492282867, -0.002783655421808362, 0.010140690952539444, 0.003660653019323945, 0.0038847746327519417, -0.0018205820815637708, -0.0030110252555459738, 0.001893665292300284, 0.0057816882617771626, 0.034196410328149796, 0.007256343495100737, 0.0049664052203297615, -0.01877424493432045, -0.016266681253910065, -0.0209050253033638, 0.022775953635573387, -0.036716967821121216, -0.00995879527181387, -0.003205913584679365, 0.0021356516517698765, 0.004946916364133358, -0.025764241814613342, -0.02925924025475979, -0.018358483910560608, -0.006749633699655533, -0.01678638346493244, 0.012596284039318562, -0.02573825605213642, 0.019839635118842125, -0.005898620933294296, -0.0031945451628416777, 0.023958275094628334, -0.005476363003253937, 6.57748241792433e-05, -0.0332869328558445, -0.033806633204221725, -0.0229448564350605, 0.0027365575078874826, -0.005177534185349941, 0.004115392453968525, 0.006002561654895544, -0.027414295822381973, 0.011543887667357922, -0.04012101888656616, 0.020567217841744423, -0.012141545303165913, -0.013408319093286991, 0.007113425061106682, -0.0036054346710443497, 0.02129480242729187, 0.00721736578270793, 0.01323291938751936, -0.007529187016189098, -0.009822373278439045, -0.024114185944199562, -0.006528760306537151, -0.038795776665210724, 0.007516194600611925, 0.00260987994261086, 0.004225829150527716, -0.003179928520694375, 0.03198767825961113, 0.009926313534379005, -0.0049729011952877045, 0.017046235501766205, 0.00775655684992671, 0.009822373278439045, 0.0032660041470080614, 0.030116748064756393, -0.022516101598739624, -0.0050508566200733185, -0.0062624127604067326, -0.014473709277808666, -0.019319932907819748, -0.0063468641601502895, 0.010134194977581501, -0.006951018236577511, 0.002142147859558463, 0.017280101776123047, -0.014187872409820557, 0.02174954116344452, -0.0060610282234847546, -0.03294912725687027, 0.004177107010036707, -0.01772184856235981, 0.008328229188919067, 0.043836887925863266, 0.03643113002181053, -0.025569353252649307, -0.008763480000197887, -0.010640904307365417, -0.02408820204436779, 0.0018287025159224868, 0.03549566864967346, -0.001779980375431478, -0.008276259526610374, 0.00780852697789669, -0.010686378926038742, -0.013044527731835842, -0.009023331105709076, -0.01141396164894104, -0.0002222945331595838, -0.004004955757409334, -0.021619616076350212, 0.03154592961072922, 0.014239843003451824, 0.004378492012619972, -0.018488408997654915, 0.01763090118765831, 0.010744845494627953, 0.009932810440659523, 0.007496705744415522, 0.021931437775492668, 0.02237318456172943, -0.025426434352993965, 0.03505392000079155, 0.0010459008626639843, -0.016929302364587784, 0.0005611160886473954, 0.018345491960644722, -0.0380941778421402, -0.01781279593706131, 0.006327375303953886, 0.017487982288002968, 0.002830753568559885, -0.0011417210334911942, 0.014408745802938938, -0.001818958087824285, 0.01952781341969967, 0.0006748009473085403, -0.012232492677867413, 0.019605768844485283, -0.00657098600640893, -0.019904598593711853, 0.01943686604499817, 0.021151883527636528, 0.022061362862586975, 0.027050504460930824, 0.014616627246141434, 0.026920579373836517, -0.012576796114444733, -0.0066651818342506886, 0.02069714479148388, 0.005996065214276314, -0.003952985629439354, 0.0019082819344475865, 0.01616274192929268, 0.00027771590976044536, 0.004937171936035156, 0.00039566398481838405, 0.0060675241984426975, -0.02351652830839157, 0.0035437201149761677, -0.0014348655240610242, -0.0185014009475708, 0.0007478840998373926, 0.01455166470259428, 0.007490209303796291, -0.031130168586969376, -0.0015932123642414808, 0.022412162274122238, 0.012336432933807373, 0.02078809216618538, 0.027076490223407745, -0.03580748662352562, 0.009672959335148335, 0.025751249864697456, -0.020437292754650116, 0.011056666262447834, -0.02360747754573822, -0.01356422994285822, 0.014473709277808666, -0.006103253923356533, 0.03598938509821892, -0.0061227427795529366, -0.004612357821315527, -0.01228446327149868, 0.019034096971154213, 0.0015388060128316283, 0.005096330773085356, 0.009841862134635448, 0.03721068426966667, -0.011946656741201878, -0.022035377100110054, -0.0210869200527668, 0.007360283751040697, -0.02150268293917179, 0.013798096217215061, -0.02310076728463173, -0.046695251017808914, 0.025062642991542816, 0.03674295172095299, -0.007795534562319517, 0.004320025444030762, -0.012934090569615364, 0.024906732141971588, -0.006554745137691498, -0.014382760971784592, -0.0034365314058959484, -0.024322068318724632, 0.014954433776438236, 0.07920262962579727, 0.016123764216899872, 0.005034616217017174, 0.006304638460278511, -0.0008843059185892344, 0.026335913687944412, -0.00527822645381093, -0.00866603571921587, -0.002830753568559885, -0.025751249864697456, -0.015396180562675, -0.004563635680824518, -0.0029639271087944508, -0.025660300627350807, 0.008022904396057129, 0.006181209348142147, 0.0027722869999706745, -0.014330791309475899, 0.010082224383950233, 0.021125897765159607, 0.0027544221375137568, 0.023269670084118843, 0.03965328633785248, 0.021229838952422142, 0.02232121303677559, 0.006093509495258331, 0.018306514248251915, 0.02660875767469406, 0.007457728032022715, 0.0013414815766736865, -0.0019358911085873842, 0.0017816044855862856, -0.009672959335148335, 0.016981272026896477, 0.0020447038114070892, 0.013252408243715763, -0.0038198118563741446, -0.018345491960644722, -0.0011441571405157447, 0.011050170287489891, 0.0021307794377207756, -0.008867420256137848, 0.011089147999882698, -0.003158815437927842, 0.012349425815045834, -0.007873489521443844, -0.003028889885172248, 0.004781261086463928, 0.006691167131066322, 0.0006609963602386415, 0.006181209348142147, -0.008672531694173813, -0.02598511427640915, 0.01034857239574194, -0.01501939631998539, 0.030350614339113235, -0.004667576402425766, -0.04258960485458374, -0.014447723515331745, -0.026244966313242912, -0.019332924857735634, -0.014629620127379894, 0.016448577865958214, 0.0009443965391255915, -0.03892570361495018, -0.003184800734743476, -0.016032816842198372, -0.007795534562319517, -0.02129480242729187, 0.018943149596452713, -0.018553372472524643, -0.02415316365659237, -0.031286079436540604, -0.0007336734561249614, 0.02514059841632843, 0.0050508566200733185, -0.00662945257499814, 0.010257624089717865, 0.004722794517874718, -0.0014291813131421804, -0.01673441380262375, -0.024620896205306053, -0.024413015693426132, -0.029337195679545403, -0.020853055641055107, 0.007990422658622265, 0.01607179455459118, -0.003670397447422147, -0.033832620829343796, -0.008373702876269817, -0.0076980902813375, -0.02054123394191265, 0.013759118504822254, -0.02580321952700615, -0.00059968774439767, -0.012109063565731049, 0.004651335533708334, 0.001867680111899972, 0.010842288844287395, 0.013798096217215061, -0.00022290355991572142, -0.011290532536804676, 0.007340794894844294, -0.018579356372356415, 0.03505392000079155, 0.020619189366698265, 0.023685432970523834, -0.005671251565217972, -0.017487982288002968, -0.005456874147057533, 0.00959500391036272, 0.000818125088699162, -0.010634408332407475, -0.010634408332407475, 3.890154403052293e-05, -0.017436012625694275, 0.01742301881313324, -0.004716298542916775, 0.002147020073607564, -0.005304211750626564, 0.03229949623346329, -0.008217792958021164, 0.028037939220666885, -0.007360283751040697, 0.0016159493243321776, -0.007977430708706379, -0.00037942329072393477, -0.012934090569615364, -0.03489800915122032, 0.006632700562477112, 0.0004851908306591213, 0.016032816842198372, -0.005823913961648941, -0.010472001507878304, -0.007431742735207081, -0.024906732141971588, -0.029571060091257095, -0.01318744570016861, -0.007236854638904333, -0.00851662177592516, -0.03211760148406029, -0.018670305609703064, -0.011985634453594685, -0.03713272884488106, 0.012245485559105873, -0.02850567176938057, -0.006951018236577511, -0.008191807195544243, -0.011465932242572308, 0.01976167969405651, -0.028193850070238113, 0.002012222306802869, -0.0190470889210701, -0.001452730386517942, -0.013115987181663513, -0.01266124751418829, 0.006996492389589548, -0.017461996525526047, 0.021996399387717247, 0.00021640727936755866, 0.024620896205306053, 0.0026650982908904552, 0.0017572434153407812, 0.029623031616210938, -0.007802031002938747, -0.0049046906642615795, 0.013193941675126553, -0.016058800742030144, -0.021645599976181984, 0.0026261205784976482, -0.020320359617471695, 0.00018565147183835506, -0.0058498987928032875, -0.004778013098984957, 0.007899475283920765, 0.006421571597456932, -0.016708428040146828, 0.015201292000710964, -0.026686713099479675, -0.010036750696599483, 0.0029834159649908543, 0.015604062005877495, -0.021346772089600563, 0.015227277763187885, -0.019021105021238327, -0.017760826274752617, 0.018059654161334038, 0.010426527820527554, 0.02712845988571644, -0.012882120907306671, 0.03926350921392441, 0.010290105827152729, 0.017799803987145424, -0.002548165386542678, 0.024555934593081474, -0.016812369227409363, -0.016994265839457512, -0.023919299244880676, -0.008094362914562225, 0.005261985585093498, 0.0016874084249138832, 0.054204948246479034, -0.0018254542956128716, 0.038224104791879654, -0.00020351623243186623, 0.03027265891432762, -0.008191807195544243, -0.018904171884059906, 0.008217792958021164, -0.008880413137376308, 0.008107355795800686, -0.018969133496284485, -0.0037191195879131556, 0.0018904170719906688, -0.025335486978292465, 0.017098205164074898, -0.009361137636005878, 0.007737067993730307, -0.00780852697789669, -0.022009393200278282, 0.010679882019758224, -0.004121888894587755, 0.02493271790444851, -0.01712419092655182, 0.0275702066719532, 0.028583627194166183, -0.005398407578468323, -0.0282977893948555, -0.012109063565731049, 0.0029152052011340857, -0.0020576962269842625, 0.02012547105550766, 0.03520983085036278, -0.015266255475580692, -0.013161460869014263, -0.005365926306694746, 0.031909722834825516, -0.016357630491256714, -0.009718433022499084, 0.009231212548911572, 0.011361991986632347, -0.004365499131381512, -0.022451139986515045, -0.004596117418259382, -0.004294040147215128, 0.014356776140630245, 0.003233522642403841, 0.020255398005247116, 0.003930248785763979, -0.01730608567595482, -0.011387976817786694, 0.029519090428948402, 0.013395327143371105, 0.028843477368354797, -0.009120775386691093, 0.009452085942029953, -0.016383614391088486, 0.015084358863532543, -0.007600646000355482, -0.015422165393829346, -0.019241977483034134, 0.027284370735287666, -0.021190861240029335, 0.029025373980402946, -0.005668003112077713, -0.005382167175412178, -0.009296175092458725, -0.01099170371890068, 0.0011051794281229377, 0.018436439335346222, -0.036483101546764374, -0.004245318006724119, 0.042277783155441284, -0.007301817182451487, -0.004346010275185108, -0.0023808861151337624, -0.02475082129240036, -0.008302244357764721, -0.031857751309871674, 0.012362418696284294, 0.01955379918217659, -0.008555599488317966, -0.018618334084749222, 0.0036574050318449736, 0.007581157144159079, -0.02949310466647148, -0.0033131020609289408, -0.009166249074041843, 0.014681589789688587, -0.01678638346493244, -0.0009614492300897837, 0.009711937047541142, 0.014733560383319855, 0.0416281558573246, -0.006473541725426912, 0.008789464831352234, -0.013219927437603474, 0.005158045329153538, -0.011245058849453926, 0.037288639694452286, 0.021671585738658905, 0.00554132554680109, -0.03915956988930702, 0.013044527731835842, -0.0137851033359766, -0.011875197291374207, 0.005879132077097893, -0.014863485470414162, -0.024490971118211746, 0.0118362195789814, 0.0164615698158741, 0.0024458488915115595, 0.02378937229514122, 0.004943667910993099, 0.008802457712590694, 0.02054123394191265, -0.00404068548232317, -0.00022452764096669853, -0.02679065428674221, 0.0162796750664711, 0.002190870000049472, 0.003702878952026367, 0.013382334262132645, -0.010186164639890194, 0.025244539603590965, 0.003777586156502366, -0.01330437883734703, 0.014629620127379894, -0.015448151156306267, -0.009965291246771812, 0.00044783722842112184, 0.03027265891432762, -0.027596192434430122, -0.006645692978054285, -0.009419604204595089, 0.004160866606980562, -0.007041966076940298, 0.020073501393198967, -0.0013674666406586766, -0.014681589789688587, 0.017877759411931038, 0.002850242191925645, 0.021463705226778984, 0.0051450529135763645, 0.014356776140630245, -0.039601314812898636, 0.005193775054067373, 0.003037010319530964, -0.017591923475265503, -0.012921098619699478, 0.03289715573191643, 0.029804926365613937, 0.027206415310502052, -0.03157191351056099, -0.0183195061981678, -0.02580321952700615, -0.05254190415143967, -0.016136756166815758, -0.013213430531322956, 0.025569353252649307, 0.03445626422762871, 0.025283517315983772, -0.000989870517514646, 0.04103049635887146, 0.003283869009464979, -0.0014860237715765834, -0.04685116186738014, 0.02051524817943573, 0.009952299296855927, -0.012115559540688992, -0.023477550595998764, 0.00683408509939909, -0.041524212807416916, -0.012290959246456623, 0.020567217841744423, -0.022840915247797966, 0.017773818224668503, 0.022697998210787773, 0.0032919892109930515, -0.01325890514999628, 0.006434564013034105, 0.023360617458820343, 0.026842623949050903, 0.020931009203195572, 0.016617480665445328, -0.028817491605877876, 0.008568591438233852, 0.01407094020396471, 0.0038717822171747684, -0.029207268729805946, 0.009796388447284698, 0.020982980728149414, -0.004138129763305187, 0.002739805495366454, -0.024529948830604553, -0.0049111866392195225, 0.010413534939289093, -0.024464985355734825, 0.012323440983891487, 0.015669023618102074, -0.010608423501253128, 0.02507563680410385, 0.029337195679545403, -0.02907734364271164, -0.008860924281179905, 0.021034950390458107, -0.01416188757866621, -0.011290532536804676, -0.0023825103417038918, -0.012862632051110268, 0.03022068925201893, -0.0033390873577445745, -0.0027203166391700506, 0.013031534850597382, -0.014343783259391785, -0.020762106403708458, 0.0009785019792616367, -0.01687733270227909, -0.005395159590989351, -0.007145906798541546, -0.05137257277965546, 0.005453626159578562, -0.0035112386103719473, 0.000792139966506511, 0.0029639271087944508, 0.0024896988179534674, 0.0010791943641379476, -0.030168717727065086, -0.024594910442829132, 0.009036323986947536, -0.02204837091267109, -0.034378308802843094, -0.013382334262132645, 0.0061682164669036865, -0.01715017668902874, 0.019332924857735634, 0.2093360871076584, 0.016747405752539635, 0.02454294078052044, 0.04799450561404228, 0.004222581163048744, -0.017734840512275696, 0.005197023041546345, -0.008880413137376308, -0.0137851033359766, 0.007184884510934353, -0.024945709854364395, 0.026504816487431526, -0.0051840306259691715, -0.005158045329153538, 0.017461996525526047, -0.0002576180559117347, -0.05773892626166344, 0.006233179476112127, -0.049605585634708405, 0.018254542723298073, 0.007931956090033054, -0.009458581916987896, -0.0031831765081733465, -0.028245819732546806, 0.02339959517121315, -0.00737327616661787, -0.010770830325782299, -0.007477216888219118, 0.02772611752152443, 0.022983834147453308, -0.028817491605877876, 0.016617480665445328, 0.004336265847086906, -0.0030207696836441755, -0.012667743489146233, -0.006369601469486952, 0.019813649356365204, 0.007418750319629908, -0.004706554114818573, 0.012005123309791088, 0.006512519437819719, 0.005645266268402338, -0.021515674889087677, -0.024516956880688667, -0.009471574798226357, 0.0066651818342506886, -0.005908365361392498, -0.003865285776555538, -0.010355068370699883, 0.02406221628189087, -0.03193570673465729, 0.026413869112730026, 0.019215991720557213, 0.018124617636203766, -0.008224288932979107, 0.00808137096464634, 0.017916737124323845, 0.005333445034921169, 0.00031628756551072, -0.011556879617273808, 0.017708856612443924, 0.01591588370501995, -0.00958201102912426, -0.013499267399311066, -0.01781279593706131, -0.013733133673667908, -0.0006955078570172191, 0.01291460171341896, 0.013733133673667908, -0.012628765776753426, 0.017189154401421547, -0.007022477220743895, -0.004433710128068924, 0.018371475860476494, -0.008782968856394291, -0.01179074589163065, 0.03697681799530983, -0.0300647784024477, 0.017072221264243126, 0.002858362626284361, 0.01395400706678629, -0.012784676626324654, -0.020684150978922844, -0.025296509265899658, -0.016695436090230942, -0.018072647973895073, 0.00548935541883111, 0.0006423195591196418, -0.010855281725525856, 0.013538245111703873, 0.017319079488515854, 0.023828350007534027, -0.0039334967732429504, -0.024607904255390167, 0.013499267399311066, 0.013629192486405373, -0.003098724875599146, 0.008412680588662624, -0.015928875654935837, 0.006064276210963726, 0.006239675916731358, 0.044772353023290634, 0.010368061251938343, -0.0018725523259490728, 0.0057264696806669235, -0.010465504601597786, 0.007002988364547491, 0.020619189366698265, 0.0001305345940636471, -0.028661582618951797, -0.004206340294331312, 0.001248097512871027, 0.019086066633462906, -0.01277818065136671, 0.00968595128506422, -0.007405757904052734, 0.0024166156072169542, -0.026089055463671684, -0.0023321639746427536, -0.013603207655251026, 0.015149322338402271, -0.011654323898255825, -0.009263693355023861, 0.013733133673667908, -0.0042128367349505424, 0.0005205143243074417, 0.010939733125269413, -0.016045808792114258, -0.0030776120256632566, -0.02679065428674221, 0.02630992978811264, -0.012336432933807373, 0.0057654473930597305, -0.039965108036994934, 0.015902889892458916, 0.013460289686918259, 0.015578076243400574, 0.00997178815305233, -0.033208977431058884, 0.000641507504042238, -0.011699797585606575, 0.024075208231806755, 0.006281901616603136, -0.006356608588248491, 0.007802031002938747, -0.028427716344594955, 0.021723555400967598, -0.013863058760762215, -0.020502256229519844, -0.0016037687892094254, -0.04232975095510483, 0.008074874058365822, 0.0003380095004104078, 0.0005217323778197169, 0.03585945814847946, -0.024581918492913246, -0.00824377778917551, -0.022594057023525238, 0.003952985629439354, 0.01820257306098938, -0.041913989931344986, -0.03370269387960434, 0.028219833970069885, -0.018072647973895073, -0.01976167969405651, -0.01491545606404543, -0.16287469863891602, 0.010699370875954628, 0.001479527447372675, 0.0018481912557035685, -0.005560814402997494, 0.0011587736662477255, 0.016695436090230942, -0.0032351468689739704, -0.006002561654895544, -0.013330363668501377, 0.017371049150824547, 0.020294375717639923, -0.021827496588230133, -0.008315237239003181, 0.0014779034536331892, -0.008984353393316269, -0.028063924983143806, -0.0007267711916938424, 0.04118640720844269, 0.031104182824492455, 0.017591923475265503, -0.03258533403277397, 0.007061454933136702, -0.020112479105591774, 0.01976167969405651, 0.01829352043569088, -0.007496705744415522, 0.023750394582748413, -0.014863485470414162, -0.0051515488885343075, -0.017137182876467705, 0.008406184613704681, 0.022581065073609352, 0.0030564991757273674, -0.0024588415399193764, 0.005684243980795145, -0.014382760971784592, -0.007633127737790346, -0.0038068194407969713, 0.03003879263997078, 0.04279748350381851, -0.006886055693030357, 0.017345063388347626, 0.017072221264243126, -0.009309167042374611, 0.014473709277808666, 0.008451658301055431, 0.013538245111703873, 0.006532008294016123, 0.010699370875954628, 0.014616627246141434, -0.049241792410612106, 0.02946712076663971, -0.007685097865760326, 0.018995119258761406, 0.01715017668902874, -0.00587263610213995, 0.009919817559421062, 0.040354885160923004, -0.02223026566207409, -0.01474655233323574, -0.019982554018497467, 0.0002456405491102487, -0.013590214774012566, 0.01925496943295002, -0.0163706224411726, -0.013824081048369408, -0.005482859443873167, -0.02012547105550766, 0.03482005372643471, 0.010140690952539444, -0.017189154401421547, 0.018280528485774994, -0.006749633699655533, -0.023035803809762, -0.001692280638962984, -0.006233179476112127, 0.0002748738043010235, -0.0023354121949523687, 0.005076841916888952, -0.005671251565217972, 0.016032816842198372, 0.00803589727729559, 0.022581065073609352, -0.019034096971154213, -0.0002531518694013357, 0.0035112386103719473, 0.01368116308003664, 0.00673664128407836, -0.020593203604221344, -0.019410880282521248, -0.024309074506163597, 0.013434304855763912, -0.006320879328995943, 0.00949106365442276, 0.0022883142810314894, 0.0031880487222224474, 0.03105221316218376, -0.002749549923464656, 0.004297288600355387, -0.01087477058172226, -0.004667576402425766, -0.02712845988571644, 0.012563803233206272, 0.0163706224411726, 0.024490971118211746, -0.02078809216618538, 0.020658167079091072, 0.006470293737947941, -0.01772184856235981, -0.04375893250107765, 0.012440374121069908, -0.000471386214485392, 0.009672959335148335, -0.004495424684137106, 0.02054123394191265, -0.03507990390062332, -0.004427214153110981, 0.01870928332209587, 0.007197876926511526, 0.06849676370620728, -0.010322586633265018, -0.014135902747511864, 0.007815022952854633, -0.0007633127388544381, -0.021099913865327835, -0.09957496076822281, -0.021008964627981186, -0.006938025821000338, 0.022100340574979782, 0.048670120537281036, 0.017617907375097275, -0.00964047759771347, 0.032455407083034515, -0.02189246006309986, 0.03370269387960434, 0.01799469254910946, -0.026426861062645912, 0.012485847808420658, 0.006551497150212526, 0.030142733827233315, 0.010549956932663918, 0.0038620377890765667, 0.0033715686295181513, 0.0022883142810314894, 0.011595857329666615, 0.015344209969043732, -0.015084358863532543, 0.021281808614730835, -0.010173172689974308, -0.036301206797361374, -0.0046708243899047375, -0.030350614339113235, 0.010985207743942738, -0.007256343495100737, 0.022412162274122238, -0.0015258134808391333, -0.0016240696422755718, 0.02069714479148388, -0.016292667016386986, -0.011667316779494286, 0.018618334084749222, -0.03544369712471962, -0.0018481912557035685, -0.003507990622892976, -0.024607904255390167, 0.011485421098768711, -0.0012026235926896334, 0.010835792869329453, -0.007600646000355482, -0.004859216511249542, -0.017046235501766205, 0.010199157521128654, 0.008178815245628357, -0.0030142732430249453, -0.015201292000710964, -0.036924850195646286, 0.0007864557555876672, -0.02733634039759636, -0.0069055440835654736, 0.001369902747683227, -0.009867846965789795, -0.0022379679139703512, -0.011797241866588593, -0.007119921501725912, -0.02694656513631344, -0.019891604781150818, -0.0022233515046536922, -0.02117786929011345, 0.009445589035749435, 0.0015420541167259216, 0.00911427941173315, 0.00522625632584095, -0.014356776140630245, 0.03258533403277397, 0.007841008715331554, 0.0007698090048506856, 0.026868609711527824, -0.022685006260871887, 0.021697571501135826, -0.022788945585489273, -0.004501921124756336, -0.022762959823012352, -0.03889971598982811, 0.03081834688782692, -0.014291813597083092, -0.022295229136943817, -0.03541771322488785, -0.013343356549739838, -0.004716298542916775, 0.01666945219039917, 0.004141377750784159, 0.007529187016189098, -0.020229412242770195, 0.011134621687233448, -0.0020869295112788677, -0.015097351744771004, 0.019319932907819748, -0.0013341732556000352, 0.0051450529135763645, -0.012232492677867413, -0.0037158713676035404, -0.01550012081861496, -0.006873062811791897, -0.0016305659664794803, 0.009439093060791492, -0.007951444946229458, -0.016773391515016556, -0.05992167443037033, 0.0059181097894907, 0.005937598645687103, -0.009010338224470615, 0.024672865867614746, 0.007509698159992695, 0.025972122326493263, -0.010783822275698185, -0.0044304621405899525, 0.007711082696914673, -0.044616442173719406, 0.0017783562652766705, -0.014395753853023052, -0.012518329545855522, -0.019618762657046318, -0.019501829519867897, 0.015188300050795078, 0.003384561277925968, 0.0002941596321761608, 0.010764334350824356, 0.017682870849967003, -0.002988288179039955, 0.013102994300425053, 0.012024612165987492, -0.03118213824927807, 0.015266255475580692, -0.01744900457561016, 0.005453626159578562, -0.006080517079681158, -0.02649182453751564, 0.013180949725210667, -0.010757837444543839, -0.020580211654305458, 0.04490227997303009, 0.008477644063532352, -0.02168457768857479, 0.006931529380381107, 0.026842623949050903, 0.010939733125269413, -0.012394899502396584, -0.01877424493432045, -0.0189561415463686, 0.0114269545301795, -0.025335486978292465, -0.005869387648999691, 0.013733133673667908, 0.00819830410182476, -0.0039107599295675755, 0.02931120991706848, 0.012596284039318562, 0.012531321495771408, 0.013447296805679798, -0.0009695696062408388, -0.011693301610648632, -0.015279247425496578, -0.025946136564016342, 0.0036833900958299637, -0.002447473118081689, 0.021931437775492668, -0.025127606466412544, 0.04100451245903969, 0.007535683456808329, 0.009887335821986198, -0.021125897765159607, 0.008432169444859028, 0.01126454770565033, -0.008510124869644642, 0.003865285776555538, -0.014798522926867008, -0.0026813391596078873, 0.013590214774012566, -0.009471574798226357, 0.002765790792182088, -0.0005460934480652213, 0.003624923527240753, -0.014616627246141434, 0.0005144240567460656, -0.01696828007698059, -0.02580321952700615, 0.02493271790444851, 0.013837073929607868, -0.017293093726038933, -0.017007257789373398, 0.01416188757866621, 0.007009484805166721, 0.03144199028611183, 0.00997178815305233, -0.004482432268559933, 0.006229931488633156, 0.02339959517121315, 0.0018822967540472746, 0.002468585968017578, -0.008718006312847137, 0.000654500094242394, 0.010848785750567913, 0.013012045994400978, 0.03372867777943611, 0.022775953635573387, -0.005304211750626564, 0.02507563680410385, 0.0017832284793257713, 0.0047942535020411015, -0.01687733270227909, -0.03214358910918236, -0.033001095056533813, -0.017734840512275696, -0.03469012677669525, -0.02949310466647148, -0.008399688638746738, 0.022892886772751808, 0.018943149596452713, 0.030506525188684464, 0.020931009203195572, 0.024737829342484474, 0.004326521418988705, 0.016110770404338837, 0.007204372901469469, -0.009237708523869514, -0.013966999016702175, 0.05147651210427284, -0.00025619700318202376, 0.008698517456650734, 0.025205561891198158, -0.018618334084749222, 0.04776064306497574, 0.007204372901469469, 0.01190767902880907, 0.030012808740139008, 0.001836822833865881, 0.00034267871524207294, -3.585641388781369e-05, -0.008237281814217567, -0.006860070396214724, -0.01426582783460617, -0.02271099016070366, -0.019891604781150818, -0.01060192659497261, 0.029233254492282867, 0.007724075578153133, 0.05831059813499451, 0.019722701981663704, 0.0017442508833482862, 0.011680308729410172, 0.018241550773382187, 0.01666945219039917, -0.0026683465112000704, 0.00479100551456213, -0.01973569393157959, -0.0316498689353466, 0.0005785748362541199, -0.014408745802938938, -0.007067951373755932, -0.007360283751040697, -0.009263693355023861, 0.007529187016189098, 0.020892033353447914, 0.022516101598739624, -0.028453700244426727, 0.009361137636005878, 0.011920671910047531, 0.0017474989872425795, 0.018007684499025345, 0.014239843003451824, -0.017254116013646126, -0.020528240129351616, 0.019384896382689476, 0.013460289686918259, -0.019800657406449318, -0.06802903115749359, -0.008815450593829155, 0.017046235501766205, -0.029233254492282867, -0.016981272026896477, 0.009296175092458725, -0.0041121444664895535, -0.0004673260555136949, -0.005352933891117573, 0.022672012448310852, -0.013902036473155022, 0.0188651941716671, 0.025959130376577377, -0.0044467030093073845, -0.010290105827152729, -0.0003528291417751461, -0.012310448102653027, 0.00038997974479570985, 0.004209588747471571, -0.008555599488317966]" +30,"In our consumer business, PC market demand further deteriorated in September, which impacted our Windows OEM and Surface businesses. And reductions in customer advertising spend, which also weakened later in the quarter, impacted search and news advertising and LinkedIn Marketing Solutions. As you heard from Satya, in our commercial business, we saw strong overall demand for our Microsoft cloud offerings with a growth of 31% in constant currency as well as share gains across many businesses. Commercial bookings declined 3% and increased 16% in constant currency on a flat expiry base.","[0.0031513250432908535, -0.020826727151870728, 0.004483809228986502, -0.015110370703041553, -0.0039274971932172775, 0.006659089587628841, -0.026889530941843987, -0.017788663506507874, -0.007761720102280378, -0.039281632751226425, 0.029101453721523285, 0.0500481054186821, 0.004054083023220301, 0.01268524955958128, -0.00675569474697113, 0.015296918340027332, 0.006352618336677551, -0.027955517172813416, 0.017508842051029205, -0.03237936645746231, -0.004813598934561014, 0.00289815291762352, -0.007415274158120155, 0.009713809005916119, -0.025064026936888695, 0.012918434105813503, 0.03091363236308098, -0.02089335210621357, 0.014670650474727154, -0.0030413949862122536, -0.009840395301580429, -0.01289844699203968, -0.03253926336765289, 0.0074086119420826435, -0.022012637928128242, 0.0013391465181484818, -0.004263949114829302, 0.011659236624836922, 0.011086268350481987, -0.014430803246796131, 0.01798853650689125, 0.020959975197911263, -0.006639102473855019, 0.02431783638894558, -0.01737559400498867, 0.0157899372279644, 0.008634497411549091, 0.011452700942754745, -0.004287267569452524, 0.013684612698853016, -0.009227452799677849, 0.032859060913324356, -0.042079851031303406, -0.006595796439796686, 0.01632293127477169, 0.008014892227947712, 0.00150320865213871, 0.014484102837741375, -0.0037842548917979, -0.01905452273786068, -0.007808357011526823, 0.019547542557120323, -0.023025326430797577, 0.0002660804311744869, -0.04309253767132759, -0.007328663021326065, -0.017415568232536316, -0.014350853860378265, 0.0048635671846568584, 0.00029439572244882584, 0.033765148371458054, 0.033152204006910324, 0.00956723652780056, 0.007828344590961933, 0.017948562279343605, -0.012598637491464615, -0.004114044830203056, -0.003464458743110299, -0.0024167930241674185, 0.001990398159250617, 0.0014432468451559544, -0.03200627118349075, -0.026183312758803368, -0.0010260128183290362, 0.015483465977013111, 0.005263312254101038, -0.03464458882808685, 0.005419879220426083, -0.016216332092881203, -0.002198598813265562, 0.0157899372279644, 0.015097045339643955, 0.003271248657256365, 0.009114191867411137, -0.0051000830717384815, 0.016616078093647957, -0.012112281285226345, 0.034724537283182144, -0.004247293341904879, -0.0023351784329861403, -0.003256258089095354, -0.003269582986831665, -0.03400499373674393, -0.007295350544154644, -0.04018772020936012, 0.024197911843657494, 0.008121490478515625, -0.00684896856546402, 0.04255954548716545, -0.02149296924471855, -0.019267721101641655, -0.016895899549126625, 0.015803262591362, -0.0044771465472877026, 0.004184000194072723, 0.004313917364925146, -0.024077989161014557, 0.0028881593607366085, 0.004800274036824703, 0.0016464507207274437, 0.01650947891175747, 0.007795032113790512, 0.006652426905930042, -0.007428599055856466, -0.007608484476804733, 0.012518689036369324, -0.01825503259897232, -0.01966746523976326, 0.011645911261439323, -0.010166853666305542, -0.009880369529128075, -0.000639592413790524, 0.016629401594400406, -0.004936853889375925, -0.0010634888894855976, 0.03853544220328331, -0.019067848101258278, 0.015283592976629734, -0.03789585083723068, -0.035150930285453796, -0.017948562279343605, 0.021879389882087708, 0.007288688328117132, -0.004084064159542322, 0.019347669556736946, 0.02835526317358017, 0.02123979665338993, -0.00684896856546402, 0.024357810616493225, -0.006855630781501532, 0.017402242869138718, -0.024157937616109848, 0.016389554366469383, -0.00592622347176075, 0.023931415751576424, -0.014683974906802177, 0.008841032162308693, 0.021039925515651703, -0.005619751755148172, -0.021093223243951797, -0.018041836097836494, 0.009773771278560162, -0.0068822805769741535, 0.0040607452392578125, 0.003016411093994975, 0.021359721198678017, 0.03171312436461449, 0.007215401623398066, -0.016536127775907516, -0.018401606008410454, 0.008654484525322914, -0.013398128561675549, -0.0011734188301488757, 0.005619751755148172, 0.023105274885892868, 0.024451084434986115, 0.007708420976996422, 0.0068689556792378426, -0.01685592532157898, -0.023651594296097755, 0.0062993187457323074, -0.0147106247022748, 0.018135109916329384, 0.00956057384610176, 0.009667172096669674, -0.009060892276465893, 0.029954243451356888, -0.0029381276108324528, 0.015376866795122623, -0.013358153402805328, -0.009280752390623093, 0.010126879438757896, -0.017935236915946007, -0.03229941427707672, -0.6472675204277039, -0.004843580070883036, -0.004953509662300348, -0.0010643217246979475, -0.004154019523411989, 0.000348319677868858, 0.03118012845516205, 0.0009643853991292417, -0.023238522931933403, 0.01721569523215294, 0.019294369965791702, 0.01641620509326458, -0.012452064082026482, 0.0036210257094353437, 0.0147106247022748, -0.021559594199061394, 0.01748219132423401, 0.0026183314621448517, -0.008741095662117004, -0.006592465564608574, -0.010746484622359276, 0.007641796488314867, 0.013091656379401684, -0.011339440010488033, -0.010380051098763943, 0.009200803004205227, -0.0020303726196289062, 0.0011201194720342755, -0.011732523329555988, 0.025237249210476875, -0.015203644521534443, 0.0232651736587286, 0.0069089303724467754, 0.0038775289431214333, 0.05287297070026398, -0.0070754908956587315, -0.022065937519073486, 0.021213147789239883, 0.027529122307896614, 0.04277274012565613, -0.03371185064315796, -0.004403860308229923, -0.001712242141366005, -0.01640287972986698, 0.02213256247341633, 0.01614970713853836, 0.017229020595550537, -0.0038408855907619, 0.01027345284819603, 0.0024800861719995737, 0.030247390270233154, 0.0003578969044610858, -0.010893058031797409, -0.0003283324185758829, 0.021532943472266197, -0.0009210796561092138, 0.003740949323400855, -0.024011364206671715, -0.009480624459683895, -0.00445382809266448, 0.0012133934069424868, 0.0019404300255700946, -0.01737559400498867, -0.026929505169391632, -0.026263263076543808, 0.027062753215432167, -0.02309194952249527, 0.0028182039968669415, 0.029208052903413773, 0.007908293046057224, -0.005110076628625393, 0.026996128261089325, 0.02511732652783394, -0.015043745748698711, -0.010859745554625988, 0.017242344096302986, 0.02466428093612194, -0.016016459092497826, -0.01808181032538414, 0.017508842051029205, 0.0028298632241785526, -0.04466486722230911, -0.0007220398401841521, -0.011919070966541767, -0.00034727869206108153, -0.00673570716753602, -0.012172242626547813, -0.010300102643668652, -0.0036243568174540997, 0.0005717189633287489, 0.008541223593056202, 0.01982736401259899, -0.012378777377307415, -0.02651643380522728, 0.006409248802810907, 0.03451133891940117, -0.00684896856546402, -0.004960172343999147, 0.014484102837741375, 0.014044382609426975, -0.00322461174800992, -0.017255669459700584, 0.029554499313235283, 0.006492529064416885, 0.03651006519794464, 0.04407857730984688, 0.010326752439141273, 0.0162296574562788, 0.02704942785203457, -0.018481554463505745, 0.027262626215815544, -0.03443139046430588, -0.004297261592000723, -0.0201871357858181, -0.0022585606202483177, -0.030620485544204712, 0.020840052515268326, -0.005869592539966106, -0.010693185031414032, -0.010973007418215275, -0.007448586635291576, 0.009234115481376648, 0.010253465734422207, -0.01913447305560112, -0.00197374215349555, 0.026143338531255722, 0.010826434008777142, 0.005243325140327215, 0.001990398159250617, -0.014270905405282974, -0.001349140191450715, -0.04231969639658928, 0.04160015657544136, -0.009840395301580429, 0.02827531285583973, 0.008574535138905048, 0.006692401599138975, -0.019547542557120323, 0.021546268835663795, -0.038748640567064285, -0.030567185953259468, -0.0058762552216649055, -0.011466026306152344, 0.01067319791764021, -0.008881007321178913, -0.010846421122550964, -0.010546611621975899, 0.0031679810490459204, -0.03240601345896721, -0.002295203972607851, -0.015550090000033379, -0.007035516202449799, 0.007381962146610022, 0.026130015030503273, 0.014230931177735329, 0.003577719908207655, -0.01255200058221817, -0.03256591409444809, -0.018494879826903343, -0.01737559400498867, -0.010626561008393764, 0.018628127872943878, 0.0004409689863678068, 0.004200656432658434, -0.011426051147282124, -0.02044030651450157, -0.041840001940727234, 0.02827531285583973, -0.003427815390750766, -0.01008690521121025, 0.02843521162867546, -0.00943398755043745, 0.007961592637002468, 0.008001567795872688, -0.0037775926757603884, 0.007788369897753, -0.031153479591012, -0.006935580167919397, 0.0021769460290670395, -0.002726595615968108, 0.028675058856606483, 0.010526624508202076, 0.005553127732127905, -0.0006412580260075629, 0.020000586286187172, 0.012112281285226345, 0.020120510831475258, 0.03091363236308098, -0.0053765736520290375, 0.0013591338647529483, 0.016789300367236137, 0.03187302127480507, -0.03395169600844383, -0.016043109819293022, 0.005579777527600527, -0.004197325091809034, -0.012811834923923016, -0.01008690521121025, 0.0021752803586423397, -0.02615666389465332, 0.011059618555009365, 0.018934600055217743, 0.003352863248437643, 0.02835526317358017, 0.010739821940660477, -0.018814675509929657, -0.010166853666305542, -0.019973937422037125, 0.020773427560925484, 0.04426512494683266, 0.0157899372279644, -0.04136030748486519, -0.009427325800061226, -0.02378484234213829, -0.016029784455895424, 0.023651594296097755, 0.006835643667727709, 0.003511095652356744, -0.012885121628642082, 0.0011167882476001978, 0.0037842548917979, -0.02423788607120514, 0.011386076919734478, -0.019094498828053474, 0.009160828776657581, 0.005413217004388571, 0.006679076701402664, 0.0197474155575037, 0.02571694366633892, -0.017308969050645828, -0.0066057899966835976, 0.01581658609211445, 0.016269631683826447, 0.0023884777911007404, -0.002306863199919462, 0.023505020886659622, 0.03579052537679672, -0.02405133843421936, 0.04764963313937187, -0.019734090194106102, 0.0012583647621795535, 0.02854181081056595, 0.0027782295364886522, -0.02090667560696602, -0.014417478814721107, 0.005623083095997572, 0.02098662592470646, -0.0052666435949504375, -0.020067211240530014, -0.0011476019863039255, -0.022172536700963974, 0.008920981548726559, 0.012965071015059948, -0.004726987332105637, 0.01684259995818138, -0.01456405222415924, -0.001628129044547677, 0.005769656505435705, 0.03976132720708847, 0.015776611864566803, -0.004350560717284679, -0.00498349079862237, 0.03325880318880081, -0.018668102100491524, 0.0010801450116559863, 0.00799490511417389, -0.006725713610649109, 0.004593739286065102, 0.007182089611887932, -0.0007807524525560439, 0.018228383734822273, -0.009573898278176785, 0.013378140516579151, -0.00393082806840539, -0.024824179708957672, -0.000961054174695164, 0.019174447283148766, -0.012718561105430126, -0.019174447283148766, 0.036296866834163666, 0.008001567795872688, -0.034991033375263214, -0.0016947533003985882, 0.027955517172813416, -0.0077817076817154884, 0.009500611573457718, 0.0021069906651973724, -0.0022185861598700285, -0.010653210803866386, 0.015843236818909645, -0.030487237498164177, 0.014164306223392487, -0.02465095743536949, -0.0030513887759298086, 0.011612599715590477, 0.00111345702316612, 0.027529122307896614, -0.015736637637019157, 0.009733797051012516, -0.007581834681332111, 0.0005742174107581377, 0.0007037181640043855, -0.022718854248523712, 0.0038375542499125004, 0.04485141485929489, -0.013724586926400661, -0.02607671543955803, -0.010006955824792385, -0.022105911746621132, -0.005869592539966106, 0.014630676247179508, -0.008967618457973003, -0.035763874650001526, 0.028248663991689682, 0.01109959278255701, 0.002351834438741207, -0.0005354920867830515, -0.0013433105777949095, 0.007635134272277355, -0.003016411093994975, -0.01421760581433773, 0.001987067051231861, -0.022518981248140335, 0.017242344096302986, 0.06912928074598312, 0.030966931954026222, -0.024717580527067184, 0.023651594296097755, 0.012498700991272926, 0.005343261640518904, -0.01956086792051792, -0.015416841953992844, 0.0011076274095103145, 0.001100132241845131, -0.02194601483643055, -0.01079312153160572, -0.013977758586406708, -0.015590064227581024, 0.016922548413276672, 0.004710331559181213, 0.0011742516653612256, -0.006572477985173464, 0.0030547198839485645, 0.0058562676422297955, 0.011579287238419056, -0.0016739332349970937, 0.01684259995818138, 0.014683974906802177, 0.008101503364741802, 0.036456767469644547, 0.02395806461572647, 0.03205956891179085, -0.008221426978707314, -0.011466026306152344, -0.019440943375229836, 0.01958751678466797, -0.021186498925089836, 0.031286727637052536, 0.0005750501877628267, 0.013251555152237415, -0.008108166046440601, -0.008481261320412159, -0.006422573700547218, 0.023051975294947624, 0.015496790409088135, -0.015216968953609467, 0.029208052903413773, -0.020573554560542107, 0.006595796439796686, -0.005283299833536148, 0.007008866872638464, 0.000960221397690475, -0.005499828141182661, -0.03264586254954338, 0.005746338050812483, -0.012145592831075191, -0.029261352494359016, 0.015003771521151066, -0.023584969341754913, 0.031100180000066757, -0.0067990003153681755, 0.0015548424562439322, -0.020866701379418373, -0.029261352494359016, -0.006789006758481264, -0.018548179417848587, 0.0064525543712079525, -0.009387350641191006, -0.02755577303469181, -0.0008457110379822552, -0.015829911455512047, -0.004853573627769947, -0.028461862355470657, 0.019640816375613213, 0.01338480319827795, 0.0018188408575952053, -0.03144662454724312, -0.0028715033549815416, 0.023411747068166733, 0.0018354968633502722, 0.01720236986875534, 0.004583745263516903, 0.013924458995461464, 0.0059595354832708836, -0.013264879584312439, -0.01172586064785719, -0.000403909245505929, -0.02915475331246853, -0.02115984819829464, 0.0023634936660528183, -0.018414931371808052, 0.015523440204560757, -0.028994854539632797, -0.008321363478899002, 0.0022052612621337175, -0.020320383831858635, -0.019374320283532143, 0.006948905065655708, 0.019893988966941833, 0.01101964432746172, 0.005409885663539171, 0.021293096244335175, 0.006096114870160818, -0.005809630732983351, 0.003172977827489376, -0.011779160238802433, -0.018401606008410454, -0.02361162006855011, -0.0037309555336833, -0.0010984665714204311, 0.020520256832242012, -0.006835643667727709, 0.0035977072548121214, -0.00306304800324142, 0.019281046465039253, -0.015176994726061821, -0.021359721198678017, -0.004397197626531124, -0.0021103217732161283, -0.0060228281654417515, 0.02511732652783394, -0.005989516153931618, 0.017695389688014984, 0.011972370557487011, 0.013184931129217148, -0.02766237035393715, 0.026663007214665413, -0.02755577303469181, 0.006082789972424507, -0.009247439913451672, 0.004124038387089968, -0.04413187503814697, -0.044984664767980576, -0.007028853986412287, -0.020040562376379967, 0.006519178859889507, -0.007042178884148598, -0.019627491012215614, -0.026889530941843987, -0.01483054831624031, -0.0046004015021026134, 0.003161318600177765, -0.020933326333761215, -0.013831185176968575, -0.030620485544204712, 0.010966344736516476, -0.011492676101624966, -0.04335903376340866, 0.023145249113440514, -0.0333654023706913, -0.012418752536177635, -0.005013471469283104, 0.011186204850673676, 0.03693646192550659, -0.017308969050645828, -0.0005779649945907295, -0.0017030813032761216, -3.526398359099403e-05, -0.019414294511079788, -0.02158624306321144, 0.03824229538440704, -0.024291185662150383, 0.026636358350515366, 0.026529759168624878, 0.03986792638897896, -0.0072420514188706875, 0.008128153160214424, 0.019374320283532143, 0.0016456178855150938, -0.012958408333361149, 0.014230931177735329, -0.018215058371424675, -0.020520256832242012, 0.0006991378031671047, -0.016269631683826447, -0.0046836817637085915, 0.027422523126006126, -0.0005092587671242654, 0.013644637539982796, 0.021213147789239883, -0.01850820519030094, -0.003827560693025589, -0.039095085114240646, -0.010446676053106785, -0.011532650329172611, -0.0018321657553315163, -0.02862175926566124, 0.026489784941077232, -0.02880830690264702, -0.03712300956249237, -0.0020786751993000507, 0.02458433248102665, 0.006742369849234819, -0.017308969050645828, 0.015869885683059692, 0.0009760446264408529, -0.0006304315757006407, -0.0053499238565564156, 0.003740949323400855, -0.006529172416776419, -0.013578013516962528, -0.04088061302900314, -0.014550726860761642, -0.0029697739519178867, -0.017695389688014984, 0.01756214164197445, 0.015869885683059692, 0.01338480319827795, -0.013065007515251637, 0.033232156187295914, -0.008687797002494335, -0.02862175926566124, 0.0081148287281394, -0.030407289043068886, 0.001653946004807949, -0.01948091760277748, -0.02009386010468006, 0.007535197772085667, -0.010293439961969852, 0.008574535138905048, -0.021652868017554283, 0.008401312865316868, -0.008348013274371624, -0.009887032210826874, 0.01861480437219143, 0.00023526673612650484, 0.03938823193311691, -0.019467594102025032, 0.0412537083029747, -0.0022035955917090178, -0.009447312913835049, -0.02142634429037571, -0.02711605280637741, 0.0005713026039302349, -0.005299955606460571, 0.035417430102825165, 0.04469151794910431, 0.00228187907487154, -0.0024884140584617853, -0.006509185303002596, -0.004180668853223324, 0.013817860744893551, -0.00715543981641531, 0.01496379729360342, -0.004700338002294302, -0.015616714023053646, -0.021479643881320953, -0.043678831309080124, -0.014430803246796131, 0.02107989974319935, -0.027875568717718124, -0.001390780322253704, -0.0025683632120490074, -0.025064026936888695, -0.01400440838187933, 0.006828981451690197, 0.010413363575935364, 0.01339146587997675, 0.006459217052906752, -0.007515210658311844, -0.01850820519030094, 0.009867045097053051, 0.005942879244685173, -0.008847694844007492, -0.007668446283787489, -0.004830255173146725, -0.04450497031211853, 0.006052809301763773, 0.0007636799709871411, 0.012325478717684746, -0.014057707972824574, 0.004733650013804436, -0.004650369752198458, 0.022532306611537933, -0.023984715342521667, -0.0033095574472099543, 0.02651643380522728, -0.01772203855216503, 0.013884484767913818, -0.027089402079582214, -0.006325968541204929, -0.012885121628642082, -0.012605300173163414, -0.011126242578029633, 0.028914906084537506, 0.0024667612742632627, -0.004953509662300348, 0.020120510831475258, 0.007068828213959932, -0.017322294414043427, 0.008374663069844246, 0.0036676626186817884, 0.004460490774363279, -0.01285847183316946, -0.013158281333744526, 0.0035377454478293657, 0.010200166143476963, 0.025676969438791275, -0.00044305098708719015, 0.0038342231418937445, -0.0046004015021026134, 0.01825503259897232, -0.004267280455678701, 0.021306421607732773, 0.012345465831458569, 0.020067211240530014, -0.03131337836384773, 0.025770243257284164, -0.008354675956070423, -0.01694919914007187, 0.0077550578862428665, -0.02133307047188282, -0.03754940256476402, 0.006968892179429531, 0.004417184740304947, -0.00786165613681078, -0.0015623376239091158, 0.0031679810490459204, 0.01860147900879383, 0.01614970713853836, -0.00726203853264451, -0.003386175259947777, -0.015949836000800133, 0.025263899937272072, 0.005323274061083794, -0.017628764733672142, 0.01702914759516716, -0.008268063887953758, 0.020959975197911263, -0.013977758586406708, -0.006096114870160818, 0.00965384766459465, -0.012671924196183681, -0.008847694844007492, 0.001434918842278421, 0.018215058371424675, 0.00498349079862237, -0.0033595256973057985, -0.015030421316623688, -0.01268524955958128, 0.002058688085526228, 0.01061323657631874, 0.020480280742049217, 0.016909223049879074, 0.01456405222415924, -0.006625777576118708, 0.027502473443746567, 0.017428893595933914, -0.015923185274004936, -0.03624356910586357, -0.010320089757442474, -0.01833498105406761, -0.02010718546807766, 0.001349973026663065, -0.00601616594940424, 0.022972026839852333, 0.011219516396522522, -0.005776318721473217, -0.03784254938364029, 0.004620388615876436, -0.04629049822688103, -0.022452358156442642, 0.006282662972807884, 0.018121784552931786, 0.034111592918634415, 0.008447949774563313, -0.009407337754964828, 0.031739771366119385, -0.002911477815359831, 0.012938421219587326, -0.03240601345896721, 0.01203233189880848, 0.001778866397216916, -0.025503747165203094, 0.0005442365072667599, -0.006412580143660307, 0.0007890804554335773, -0.00518003199249506, 0.004530446138232946, 0.002073678420856595, -0.0014665654161944985, 0.026303237304091454, 0.028301963582634926, -0.020840052515268326, 0.017602115869522095, 0.004267280455678701, 0.00872777123004198, -0.011479350738227367, 0.021293096244335175, -0.03848214074969292, 0.00996698159724474, 0.016989173367619514, 0.017308969050645828, -0.007934942841529846, 0.01616303250193596, 0.014550726860761642, -0.004866898525506258, 6.6103704739362e-05, -0.011945720762014389, -0.005909567233175039, -0.011419389396905899, 0.004853573627769947, 0.005513153038918972, -0.014270905405282974, 0.012505363672971725, 0.03232606500387192, 0.020000586286187172, -0.036829862743616104, -0.004064076580107212, 0.011472688987851143, -0.0006862293230369687, -0.00478028692305088, 0.01790858618915081, -0.02397138997912407, -0.0019121147925034165, -0.002879831474274397, 0.013504726812243462, -0.005313280504196882, -0.006156076677143574, -0.021746141836047173, 0.010140204802155495, -0.005526477936655283, 0.00316964671947062, -0.020746778696775436, -0.017082447186112404, 0.021839415654540062, -0.0180018600076437, 0.014257580041885376, 0.007028853986412287, 0.006732376292347908, -0.0034444716293364763, -0.019614167511463165, -0.03810904547572136, 0.02307862602174282, 0.0015656688483431935, -0.016429530456662178, 0.013857834972441196, 0.020560231059789658, 0.010300102643668652, 0.012838484719395638, 0.21085229516029358, 0.01677597500383854, 0.022518981248140335, 0.03792249783873558, 0.017748689278960228, 0.010479987598955631, 0.006192720029503107, 0.003421153174713254, 0.00592622347176075, 0.010113555006682873, -0.006509185303002596, 0.008814382366836071, -0.00425728689879179, -0.005026796367019415, 0.013844510540366173, 0.009880369529128075, -0.033578600734472275, -0.00010670283518265933, -0.028568459674715996, 0.029900943860411644, 0.01351805217564106, -0.009693821892142296, 0.014177631586790085, -0.00786165613681078, 0.015070395544171333, -0.0072420514188706875, -0.0259034913033247, -0.0011842453386634588, 0.04189330339431763, 0.012818497605621815, 0.001628961879760027, 0.02624993771314621, -0.0027049428317695856, -0.004184000194072723, 0.002240238944068551, -0.004207318648695946, -0.002070347312837839, -0.006505853962153196, -0.017242344096302986, 0.017402242869138718, 0.022492332383990288, 0.012225542217493057, -0.009420663118362427, -0.014164306223392487, -0.002851516008377075, 0.027156027033925056, -0.007168764714151621, 7.000746700214222e-05, 0.00996698159724474, -0.00509342085570097, -0.02266555465757847, 0.019254395738244057, 0.034298140555620193, 0.007775045000016689, -0.007175426930189133, 0.0147106247022748, -0.0068822805769741535, 0.015856562182307243, -0.014071032404899597, -0.012045656330883503, -0.011166216805577278, 0.004403860308229923, 0.004270611796528101, 0.004746974911540747, -0.0027099396102130413, -0.008361337706446648, -0.012938421219587326, -0.01267858687788248, -0.0116259241476655, -0.012205555103719234, 0.008954293094575405, 0.0018937931163236499, -0.01938764378428459, 0.010859745554625988, -0.01225219201296568, -0.023465046659111977, 0.02403801493346691, 0.008321363478899002, 0.03994787484407425, 0.031926319003105164, 0.018188409507274628, 0.009294076822698116, -0.018188409507274628, -0.013178268447518349, -0.01852153055369854, -0.01113956794142723, 0.011392739601433277, 0.002828197553753853, 0.003757605329155922, 0.008674471639096737, 0.015110370703041553, 0.006365943234413862, -0.0188679751008749, -0.00996698159724474, 0.023385096341371536, 0.004117376171052456, -0.0004713662783615291, -0.001978738931939006, -0.016536127775907516, -0.020760102197527885, -0.014111007563769817, 0.056390728801488876, 0.03848214074969292, -0.009280752390623093, 0.010719834826886654, 0.004223974887281656, -0.004630382638424635, 0.018748052418231964, -0.005463185254484415, -0.014417478814721107, 0.012958408333361149, -0.013178268447518349, 0.033578600734472275, -0.012785185128450394, -0.027369225397706032, 0.0042739431373775005, 0.003844216698780656, -0.018574828281998634, 0.008587860502302647, -0.003604369703680277, 0.008021554909646511, -0.006592465564608574, 0.010973007418215275, 0.026756281033158302, -0.031286727637052536, 0.00539656076580286, -0.013404790312051773, -0.004597070161253214, -0.014244255609810352, -0.03938823193311691, 0.03064713627099991, -0.011659236624836922, -0.010479987598955631, -0.012811834923923016, -0.0003691397432703525, 0.01237211562693119, 0.026982804760336876, -0.0006250183214433491, -0.013671287335455418, 0.0029414587188512087, -0.005243325140327215, 0.01745554246008396, 0.0049335225485265255, 0.013138293288648129, 0.008567873388528824, -0.01676265150308609, 0.005056777503341436, 0.0147106247022748, -0.008221426978707314, -0.02345172129571438, -0.0201738104224205, 0.004380541853606701, -0.007521872874349356, 0.009907019324600697, 0.014604026451706886, -0.009893694892525673, -0.026183312758803368, -0.014604026451706886, -0.0032645862083882093, 0.015097045339643955, -0.04154685512185097, -0.02097330056130886, 0.016429530456662178, -0.011585949920117855, -0.007641796488314867, -0.015510115772485733, -0.16885238885879517, 0.023251848295331, -0.021293096244335175, -0.013278204947710037, 0.010313427075743675, -0.000417025905335322, -0.011186204850673676, 0.0010751481167972088, -0.013977758586406708, 0.0037309555336833, 0.021466320380568504, 0.017748689278960228, -0.03088698349893093, -0.012971732765436172, 0.01790858618915081, -0.006455885712057352, -0.010959682054817677, 0.010246803052723408, 0.02361162006855011, 0.014697300270199776, 0.04458491876721382, -0.0023718217853456736, -0.011212853714823723, -0.017615441232919693, 0.0052666435949504375, -0.004707000218331814, -0.019867338240146637, 0.007022191304713488, 0.0020137166138738394, -0.020347032696008682, -0.0020303726196289062, -0.004027433227747679, 0.02219918556511402, 0.021612893790006638, -0.005299955606460571, -0.003427815390750766, -0.006815656553953886, -0.02307862602174282, -0.026902854442596436, 0.03842884302139282, 0.010733160190284252, 0.01684259995818138, 0.0076018222607672215, 0.038135696202516556, 0.0008702786872163415, 0.0197474155575037, 0.011819134466350079, -0.003980796318501234, -0.004943516105413437, -0.0036010383628308773, 0.0316331721842289, -0.04045422002673149, 0.01772203855216503, 0.005593102425336838, 0.004493802785873413, 0.03539077937602997, -0.0037076370790600777, -0.002325184876099229, 0.00913417898118496, -0.02597011625766754, -0.0035011020954698324, -0.018907949328422546, -0.020333707332611084, -0.029554499313235283, -0.00860118493437767, -0.02414461225271225, 0.0055564590729773045, 0.009727134369313717, -0.03381844609975815, 0.018894625827670097, 0.016975848004221916, -0.02107989974319935, 0.006699064280837774, -0.010433350689709187, 0.001139273983426392, 0.0005442365072667599, 0.009900357574224472, 0.026090038940310478, 0.0076018222607672215, 0.009573898278176785, -0.0023568314500153065, 0.011945720762014389, -0.020347032696008682, 0.027249300852417946, -0.03205956891179085, 0.007095478009432554, 0.02054690569639206, 0.009174153208732605, -0.004647038411349058, -0.01982736401259899, 0.0027882230933755636, -0.019174447283148766, 0.012258853763341904, 0.0039907898753881454, 0.010286777280271053, 0.022865427657961845, 0.017615441232919693, 0.01660275273025036, -0.02114652283489704, 0.0033645224757492542, 0.0006937245489098132, -0.01440415345132351, -0.049461811780929565, 0.033152204006910324, 0.022185862064361572, 0.030433937907218933, -0.021386370062828064, 0.008534560911357403, 0.00912751629948616, -0.01581658609211445, -0.02309194952249527, 0.02571694366633892, 0.024784205481410027, 0.007721745874732733, -0.008354675956070423, 0.0368831604719162, 0.012532013468444347, -0.010340076871216297, 0.0026366529054939747, -0.020333707332611084, 0.05058109760284424, -0.033578600734472275, -0.0050301277078688145, -0.0020653505343943834, -0.013025032356381416, -0.009420663118362427, -0.1265326887369156, -0.04255954548716545, -0.002495076507329941, 0.00673903850838542, 0.021293096244335175, 0.029980894178152084, -0.00122255424503237, 0.022892078384757042, -0.02414461225271225, 0.026276586577296257, 0.005466516129672527, 0.005583108402788639, -5.6318276620004326e-05, 0.004703668877482414, 0.028675058856606483, -0.01938764378428459, -0.002211923711001873, -0.0002311027201358229, -0.01861480437219143, 0.023505020886659622, 0.0072553763166069984, -0.027449173852801323, 0.005946210585534573, -0.025317199528217316, -0.021199822425842285, -0.0027299269568175077, -0.025503747165203094, -0.007968255318701267, 0.018468230962753296, 0.023038651794195175, 0.005566452629864216, -0.008667808957397938, 0.017055796459317207, -0.009314063936471939, -0.02029373310506344, 0.005353255197405815, -0.031206779181957245, -0.001097633852623403, -0.0011342770885676146, -0.020840052515268326, 0.025397147983312607, 0.017841963097453117, 0.003910840954631567, -0.039734676480293274, -0.0013333169044926763, 0.008674471639096737, -0.02131974697113037, 0.016736000776290894, 0.008934305980801582, -0.005666388664394617, 0.00036893156357109547, 0.014777249656617641, -0.009160828776657581, -0.0223857332020998, -0.00434722937643528, -0.00018425757298246026, 0.004880223423242569, 0.01982736401259899, -0.044211823493242264, -0.03280575945973396, -0.006699064280837774, 0.002963111735880375, -0.03746945410966873, 0.01773536391556263, -0.0016098073683679104, 0.012811834923923016, -0.016962522640824318, -0.021293096244335175, 0.006349286995828152, -0.024197911843657494, -0.0029864301905035973, 0.00445715943351388, -0.026543084532022476, 0.012845147401094437, -0.021399695426225662, 0.011486013419926167, -0.01912114769220352, -0.04056081920862198, 0.027928868308663368, -0.0051833633333444595, -0.0077817076817154884, -0.022425707429647446, -0.004097388591617346, -0.008980942890048027, 0.012058981694281101, 0.04026767238974571, -0.011152892373502254, 0.008801057934761047, 0.008048204705119133, -0.011492676101624966, 0.008687797002494335, 0.018055159598588943, 0.0111995292827487, 0.0024101308081299067, 0.005786312278360128, 0.0019104491220787168, -0.0241312887519598, -0.030353989452123642, 0.017402242869138718, 0.012012344785034657, -0.005566452629864216, 0.004580414388328791, -0.05415215715765953, 0.007735070306807756, -0.00728202611207962, 0.030620485544204712, 0.002323519205674529, 0.018041836097836494, 0.007881644181907177, -0.015749963000416756, -0.011392739601433277, 0.001196737284772098, -0.0447448194026947, 0.024957427754998207, -0.011259490624070168, -0.002141968347132206, -0.03200627118349075, -0.013937784358859062, 0.027982167899608612, -0.0051833633333444595, 0.010839758440852165, 0.015203644521534443, 0.011006318964064121, -0.04002782329916954, -0.011026306077837944, 0.009513936936855316, -0.019867338240146637, -0.0009485621703788638, -0.02915475331246853, -0.014737274497747421, -0.007521872874349356, -0.015350216999650002, 0.014510752633213997, -0.014537402428686619, -0.010566599667072296, 0.022172536700963974, -0.013278204947710037, -0.018921274691820145, 0.0007561847451142967, 0.03714965656399727, 0.003356194356456399, 0.007068828213959932, -0.025077352300286293, -0.01897457428276539, 0.033152204006910324, -0.03184637054800987, -0.004820261616259813, -0.00996031891554594, -0.006515847519040108, -0.013751236721873283, -0.001030176761560142, 0.010973007418215275, 0.03571057692170143, -0.004154019523411989, -0.006935580167919397, -0.015843236818909645, 0.0029930926393717527, -0.028035467490553856, 0.010346739552915096, -0.00028356927214190364, 0.006186057813465595, 0.006712388712912798, 0.023998038843274117, 0.01079312153160572, 0.014377503655850887, -0.014604026451706886, 0.03381844609975815, 0.0029697739519178867, -0.01465732604265213, -0.007182089611887932, 0.007202076725661755, 0.028115415945649147, 0.01756214164197445, -0.011705873534083366, 0.022265810519456863, -0.005726350471377373, 0.0028265321161597967, -0.012671924196183681, 0.016203006729483604, -0.004077401477843523, -0.012225542217493057, 0.00331455422565341, -0.007022191304713488, 0.004437172319740057, -0.006705726496875286, 0.011585949920117855, 0.006289325188845396, 0.0013116641202941537, -0.00633929343894124, -0.006512516178190708, 0.0015298583311960101, 0.012418752536177635, 0.01772203855216503, -0.0014415812911465764, 0.006412580143660307, -0.012392102740705013, 0.009900357574224472, 0.014430803246796131, 0.01057992409914732, 0.016016459092497826, -0.013091656379401684, 0.018907949328422546, 0.02589016780257225, 0.005526477936655283, -0.012725223787128925, -0.015856562182307243, -0.028834957629442215, 0.023278499022126198, -0.01676265150308609, -0.01369793713092804, -0.007335325237363577, 0.025170626118779182, 0.008741095662117004, 0.01475059986114502, 0.025570370256900787, 0.01308499462902546, -0.011086268350481987, 0.015083720907568932, -0.027609070762991905, -0.0052799684926867485, -0.017841963097453117, 0.028195364400744438, 0.005786312278360128, 0.013364816084504128, 0.018295006826519966, 0.005369910970330238, 0.0315798744559288, -0.008714446797966957, 0.009427325800061226, -0.02088002674281597, -0.007581834681332111, -0.012931758537888527, -0.00842129997909069, 0.0007357810973189771, 0.007608484476804733, -0.002558369655162096, -0.015683338046073914, -0.027089402079582214, -0.016616078093647957, 0.02992759458720684, 0.02072012796998024, 0.054631851613521576, 0.02134639583528042, -0.018228383734822273, 0.008361337706446648, 0.016789300367236137, 0.02002723701298237, -0.0010943026281893253, -0.003311223117634654, -0.019787389785051346, -0.02695615403354168, 0.013264879584312439, 0.004160681739449501, 0.019814038649201393, -0.019440943375229836, -0.00882104504853487, 0.0007357810973189771, -0.00675569474697113, 0.008028216660022736, -9.14521369850263e-05, 0.007941605523228645, 0.00316964671947062, -0.02353166975080967, -0.01369793713092804, 0.004707000218331814, -0.018987899646162987, -0.011252828873693943, 0.012591974809765816, -0.010946357622742653, -0.02992759458720684, -0.04005447402596474, 0.01640287972986698, 0.02362494356930256, -0.031153479591012, -0.016549453139305115, 0.0021786116994917393, 0.002463430166244507, 0.00891431886702776, -0.007708420976996422, 0.006425905041396618, -0.010220153257250786, 0.002601675223559141, 0.012485376559197903, -0.006289325188845396, -0.01809513568878174, -0.018121784552931786, -0.024531032890081406, -0.01632293127477169, 0.0036776561755687, 0.00300641730427742]" +31,"Excluding the FX impact, growth was driven by strong renewal execution, and we continue to see growth in the number of large long-term Azure and Microsoft 365 contracts across all deal sizes. More than half of the $10 million plus Microsoft 365 bookings came from E5. Commercial remaining performance obligation increased 31% and 34% in constant currency to $180 billion. Roughly 45% will be recognized in revenue in the next 12 months, up 23% year over year.","[0.0074600949883461, -0.03487594425678253, -0.020448653027415276, -0.01637224294245243, -0.007020481862127781, 0.0032421438954770565, -0.040577586740255356, -0.013228346593677998, -0.014054285362362862, -0.027362562716007233, 0.05368603765964508, 0.03159882873296738, -0.008925470523536205, 0.011270071379840374, -0.01417418010532856, 0.027868783101439476, 0.010570688173174858, -0.0003551038389559835, -0.0016610367456451058, -0.031039323657751083, -0.017464615404605865, -0.0006381878047250211, -0.03447629511356354, 0.016598710790276527, -0.009911268949508667, 0.009072008542716503, 0.00782643910497427, -0.017637794837355614, 0.024311916902661324, -0.009025382809340954, 0.0055850800126791, -0.024458453059196472, -0.015333158895373344, 0.020675119012594223, -0.02385898120701313, -0.004126364830881357, -0.0071670194156467915, 0.012875324115157127, 0.013494778424501419, 0.009904608130455017, 0.042842257767915726, 0.019183101132512093, -0.009385066106915474, 0.023685801774263382, -0.007193662691861391, 0.0066374861635267735, -0.002631015609949827, -0.015479696914553642, -0.012062706984579563, 0.006101291626691818, 0.003623474622145295, 0.03354378417134285, -0.012249208986759186, -0.017384685575962067, -0.0013979352079331875, 0.004912339150905609, 0.014973475597798824, 0.012089350260794163, -0.003128910204395652, -0.013348241336643696, -0.0014420630177482963, 0.0068139974027872086, -0.014347360469400883, -0.011603111401200294, -0.031119251623749733, -0.0002547755721025169, -0.013294954784214497, -0.012522301636636257, -0.006667459849268198, -0.005015581380575895, 0.02020886354148388, 0.0074134692549705505, 0.010737207718193531, -0.0014154197415336967, 0.029520660638809204, -0.02674976922571659, -0.0025743988808244467, -0.013541404157876968, 0.007779812905937433, 0.009018721990287304, 0.012355782091617584, -0.02395223267376423, -0.02457834780216217, 0.0034303113352507353, 0.0054385424591600895, 0.0014312391867861152, -0.024818137288093567, 0.00172348169144243, -0.02616361901164055, 0.009511620737612247, 0.022793253883719444, -0.002381235593929887, 0.004116373602300882, 0.02317957952618599, -0.00522539671510458, 0.009025382809340954, -0.022087208926677704, 0.025790613144636154, 0.006301115732640028, -0.022033922374248505, -0.009378405287861824, 0.0027292624581605196, -0.03492923080921173, -0.008818897418677807, -0.044414207339286804, 0.011110212653875351, 0.011576468124985695, 0.01574612781405449, 0.04113709554076195, -0.012515640817582607, -0.014707043766975403, -0.012315817177295685, 0.007639936171472073, 0.002009896095842123, -0.010191022418439388, 0.00976473093032837, 0.0019099840428680182, 0.005661678966134787, 0.0016885125078260899, -0.011876204051077366, 0.019542783498764038, -0.004049765877425671, 0.013021862134337425, -0.005721626337617636, -0.0035235625691711903, 0.013228346593677998, -0.007033803500235081, -0.03450293838977814, 0.024778172373771667, -0.002171420492231846, 0.0056650093756616116, -0.01378785353153944, 0.004246259108185768, 0.0028974474407732487, -0.009464995004236698, 0.03063967451453209, -0.02754906378686428, 0.0224602147936821, -0.023552585393190384, -0.02012893371284008, -0.013321598060429096, 0.01717153936624527, 0.007679901085793972, 0.010211004875600338, 0.021874064579606056, 0.007726526819169521, 0.028081927448511124, 0.002354592317715287, 0.009851321578025818, -0.01113685593008995, 0.003919880371540785, -0.03482265770435333, 0.027269311249256134, 0.037673477083444595, 0.023419369012117386, -0.009851321578025818, -0.008306016214191914, 0.022140495479106903, -0.014227466657757759, -0.03623474761843681, -0.017651116475462914, 0.01651878096163273, 0.00971144437789917, -0.0022713325452059507, 0.00046417443081736565, 0.0003353295905981213, 0.020528582856059074, -0.006254489999264479, 0.0008063729619607329, -0.008459215052425861, -0.008659038692712784, 0.0012389086186885834, -0.021261269226670265, 0.011836240068078041, 0.007986297830939293, 0.02525774948298931, 0.012455694377422333, -0.019969075918197632, -0.012782073579728603, -0.023752408102154732, 0.014400647021830082, -0.0005961415008641779, 0.017011679708957672, 0.0033320647198706865, 0.009678141213953495, 0.003666769713163376, 0.024032162502408028, -0.013341580517590046, 0.004605942405760288, -0.007926350459456444, -0.007313557434827089, 0.008246068842709064, -0.029680520296096802, -0.026456693187355995, -0.6458310484886169, -0.006540904752910137, 0.004905678331851959, -0.007153698243200779, 0.017771011218428612, -0.0034902587067335844, 0.010004520416259766, 0.012648857198655605, -0.031092610210180283, 0.013921069912612438, 0.012102671898901463, 0.008852201513946056, -0.017491258680820465, -0.009005400352180004, 0.025537503883242607, -0.0013987678103148937, 0.005401907954365015, -0.006387706380337477, -0.028668077662587166, 0.0021947333589196205, 0.0024178700987249613, 0.008266051299870014, -0.009464995004236698, 6.764873978681862e-05, 0.0034869282972067595, -0.004306206479668617, -0.01948949694633484, -0.0028524871449917555, -0.011256749741733074, 0.004456074442714453, -0.0016810190863907337, 0.016918430104851723, 0.0011756309540942311, 0.0038166376762092113, 0.04936984181404114, -0.01003116276115179, -0.005691652651876211, 0.00726693170145154, 0.0020798344630748034, 0.03969836235046387, -0.04031115397810936, 0.008032923564314842, -0.0015935961855575442, -0.006427670828998089, -0.002747579477727413, 0.019049884751439095, 0.020701762288808823, -0.006780693307518959, 0.016798535361886024, 0.0001244736777152866, 0.007520041894167662, 0.0016885125078260899, -0.016651997342705727, -0.02167424000799656, 0.0017001689411699772, -0.0033970074728131294, 0.002486143261194229, -0.011343340389430523, 0.005831529386341572, -0.01634559966623783, -0.010544044896960258, -0.00688726594671607, -0.015106691978871822, -0.037566907703876495, -0.026989556849002838, 0.008565787225961685, -0.006953874137252569, 0.030053524300456047, 0.03524894639849663, -0.004269571974873543, -0.0035968313459306955, 0.02765563689172268, 0.021261269226670265, -0.02380569465458393, 0.01381449680775404, 0.007560006808489561, 0.030000237748026848, -0.03191854804754257, -0.018237266689538956, 0.018490377813577652, 0.005421890411525965, -0.034636154770851135, 0.0057882340624928474, -0.005944762844592333, 0.0008475866634398699, -0.00020908664737362415, -0.015999238938093185, -0.03066631779074669, -0.003746699308976531, -0.002447843551635742, 0.010344220325350761, -0.009052026085555553, 0.008745629340410233, -0.03892570734024048, 0.021008159965276718, 0.0148802250623703, -0.027788853272795677, -0.004962295293807983, 0.020448653027415276, -0.00039132192614488304, -0.016985036432743073, -0.0027142756152898073, 0.03887242078781128, 0.015599590726196766, 0.03146561235189438, 0.017384685575962067, -0.008219425566494465, 0.007226966787129641, 0.0370873287320137, -0.010903728194534779, 0.005724956747144461, -0.01348145678639412, -0.015253229066729546, 0.009804695844650269, 0.006594190839678049, -0.030186740681529045, 0.019649356603622437, -0.016891786828637123, -0.030373243615031242, -0.015839379280805588, -0.001264719176106155, 0.015173300169408321, 0.020422009751200676, -0.03436972200870514, -0.0060346839018166065, 0.021341199055314064, -0.0007335204863920808, -0.0042862240225076675, 0.016172420233488083, -0.006570877972990274, 0.005298665724694729, -0.014054285362362862, 0.01942288875579834, -0.00024145396309904754, 0.03500916063785553, 0.008978757075965405, 0.012036063708364964, -0.02465827763080597, 0.00655422592535615, -0.04313533380627632, -0.0370340421795845, 0.010304256342351437, 0.00485905259847641, -0.011882864870131016, -0.010310917161405087, -0.018317196518182755, -0.008306016214191914, 0.019116492941975594, -0.010930371470749378, 0.0036800913512706757, 0.009258510544896126, 0.006680781487375498, -0.0046592289581894875, 0.011403287760913372, -0.005804886110126972, 0.0027775531634688377, -0.0029490687884390354, -0.02607036754488945, -0.030826177448034286, -0.023685801774263382, -0.02464495599269867, 0.00974474847316742, -0.0004812427214346826, -0.00354354502633214, -0.012655518017709255, -0.013088470324873924, -0.04313533380627632, 0.020701762288808823, 0.005095511209219694, -0.008312677033245564, 0.01795751415193081, -0.01453386340290308, 0.022140495479106903, 0.0071670194156467915, 0.010557366535067558, 0.025084568187594414, -0.01646549440920353, -0.0004404453211463988, 0.015120013616979122, -0.012815376743674278, 0.02612365409731865, 0.015133335255086422, -0.0010607321746647358, -0.0010457454482093453, 0.027469133958220482, -0.007020481862127781, 0.0033170778769999743, 0.017531223595142365, -0.0009724766132421792, 0.0065608867444098, -0.01710493117570877, 0.037540264427661896, -0.024977995082736015, -8.638223516754806e-05, -0.009205223992466927, -0.017704403027892113, -0.02757570706307888, -0.006141256541013718, -0.0028741348069161177, -0.004013131372630596, 0.026656517758965492, 0.019835859537124634, 0.006973856594413519, 0.0222470685839653, -0.001592763583175838, -0.010191022418439388, -0.013261650688946247, -0.015852700918912888, 0.022033922374248505, 0.029387444257736206, 0.011669719591736794, -0.028774650767445564, -0.008219425566494465, -0.00710041169077158, -0.03047981671988964, 0.0017451293533667922, 0.028508219867944717, 0.01378785353153944, -0.01042415015399456, -0.01789090596139431, 0.021754169836640358, -0.027149416506290436, 0.015253229066729546, -0.015879344195127487, -0.0005936436937190592, -0.007959654554724693, 0.006354402285069227, 0.01862359419465065, 0.022753288969397545, -0.0016843494959175587, 0.0066341557539999485, 0.030080167576670647, 0.01646549440920353, -0.0067540500313043594, -0.002154768444597721, 0.004895687103271484, 0.030026881024241447, -0.02842829003930092, 0.025537503883242607, -0.010910389013588428, 0.022180460393428802, 0.009818017482757568, 0.016558745875954628, -0.008099531754851341, -0.0003692580503411591, -0.010677260346710682, 0.011729666963219643, 0.0024461783468723297, -0.006757380440831184, 0.018370483070611954, -0.02379237301647663, 0.013534743338823318, 0.008485857397317886, -0.017611151561141014, -0.002692627953365445, 0.009937912225723267, 0.011363322846591473, 0.017291434109210968, 0.02002236247062683, 0.030399886891245842, -0.005651687737554312, 0.012189261615276337, 0.027082808315753937, -0.02612365409731865, 0.015080048702657223, 0.016931751742959023, -0.021394485607743263, 0.015586269088089466, -0.014280753210186958, 8.940041152527556e-05, 0.004785784054547548, -0.0057882340624928474, 0.004412779118865728, 0.009524942375719547, -0.013987678103148937, 0.004446083214133978, 0.007353521883487701, -0.011270071379840374, -0.010883745737373829, 0.012995218858122826, -0.00501891179010272, -0.029733806848526, 0.009358422830700874, 0.00670742429792881, -0.007180341053754091, 0.012049385346472263, 0.007972976192831993, -0.0008113685762509704, -0.008199443109333515, 0.023299474269151688, -0.01420082338154316, 0.02016889862716198, -0.04425434768199921, 0.002344601321965456, 0.011043604463338852, 0.009298475459218025, 0.029414087533950806, -0.003936531953513622, -0.026470014825463295, -0.01786426268517971, 0.01449389848858118, -0.012508979998528957, -0.02380569465458393, 0.01625235006213188, 0.022806575521826744, -0.013354902155697346, -0.02615029737353325, -0.024058805778622627, -0.006251159589737654, -0.002825843868777156, 0.005335299763828516, -0.006411018781363964, -0.03506244719028473, 0.024271951988339424, 0.003436972154304385, 0.0010565692791715264, 0.004073078744113445, -0.027136094868183136, 0.004915669560432434, 0.011669719591736794, -0.013128434307873249, 0.01344815269112587, -0.029280871152877808, 0.007220305968075991, 0.06479625403881073, 0.01854366436600685, -0.014733687043190002, 0.024311916902661324, -0.0009141946793533862, -0.008119514212012291, -0.007933011278510094, -0.012282513082027435, 0.006587530020624399, 0.007180341053754091, -0.011436591856181622, 0.0011356662726029754, 0.006580869201570749, -0.003330399515107274, 0.0014245783677324653, -0.003736708080396056, 0.01043081097304821, -0.01047077588737011, -0.006204534322023392, 0.010277613066136837, 0.009771391749382019, 0.012615553103387356, 0.013055166229605675, 0.04369484260678291, 0.02535100094974041, 0.01374788861721754, 0.02379237301647663, 0.04087066277861595, 0.00045668103848583996, 0.003050645813345909, -0.013075148686766624, 0.008192782290279865, -0.0011106882011517882, 0.033170778304338455, -0.0016135785263031721, 0.01783761940896511, 0.004182981792837381, -0.020755048841238022, 0.008685681968927383, 0.01574612781405449, -0.003756690537557006, -0.023392725735902786, 0.0032787781674414873, -0.011862882412970066, 0.012642196379601955, -0.031092610210180283, -0.026603231206536293, 0.025164498016238213, -0.01418750174343586, -0.007147037424147129, -0.001713490579277277, -0.015546305105090141, -0.03213169425725937, 0.0038765850476920605, -0.013321598060429096, 0.022966435179114342, -0.006071318406611681, -0.017744367942214012, -0.00971810519695282, -0.03900563716888428, -0.030346600338816643, -0.032478056848049164, -0.013667959719896317, -0.013288293965160847, -0.024205343797802925, 0.009991198778152466, -0.018490377813577652, 0.0034336417447775602, -0.037780050188302994, 0.009664819575846195, -0.013514760881662369, -0.014946832321584225, -0.032424770295619965, 0.02008896879851818, 0.039138853549957275, -0.003222161438316107, 0.017384685575962067, 0.0054418728686869144, 0.0037899946328252554, -0.0017451293533667922, -0.01047077588737011, 0.012042724527418613, -0.027136094868183136, -0.03218498080968857, -0.028001999482512474, 0.013707924634218216, 0.007686561904847622, -0.021221306174993515, -0.015066727064549923, 0.004882365465164185, -0.008958774618804455, -0.02308632992208004, -0.007946332916617393, -0.01076385099440813, 0.022753288969397545, -0.014254109933972359, -0.0031305754091590643, 0.011936151422560215, 0.01930299587547779, -0.009418369270861149, 0.01651878096163273, -0.01075719017535448, 0.0015419749543070793, -0.012728787027299404, 0.014973475597798824, 0.006667459849268198, 0.02896115370094776, -0.009791374206542969, -0.01928967423737049, -0.021261269226670265, -0.0006494278786703944, -0.011323357932269573, -0.008052906021475792, 0.004119704011827707, 0.0010574018815532327, 0.006524252705276012, 0.018210623413324356, -0.01049741916358471, 0.016918430104851723, 0.010524062439799309, 0.02016889862716198, -0.030000237748026848, 0.02821514382958412, -0.017584508284926414, -0.007133715786039829, -0.01010443177074194, 0.024445131421089172, -0.01154316496104002, -0.02469824254512787, 0.014347360469400883, -0.00011718842870322987, 0.002154768444597721, -0.001079049427062273, -0.009558246470987797, -0.012129315175116062, -0.029600590467453003, -0.014294074848294258, 0.006241168361157179, -0.015945952385663986, 0.007133715786039829, -0.030106810852885246, 0.013734566979110241, 0.013601351529359818, -0.005818207748234272, 0.039085566997528076, -0.027176059782505035, -0.01650545932352543, 0.0021664248779416084, -0.001678521279245615, 0.027309276163578033, -0.009371744468808174, -0.006117943674325943, -0.008059566840529442, 0.002802531234920025, -0.01710493117570877, 0.00485905259847641, 0.025937151163816452, -0.04100387915968895, 0.03215833753347397, 0.01642552949488163, 0.05283345654606819, 0.006077979225665331, 0.013634655624628067, 0.02600375935435295, -0.0067540500313043594, -0.011729666963219643, 0.007906368002295494, -0.013334919698536396, -5.5576041631866246e-05, -0.00690724840387702, -0.03151889890432358, 0.003503580344840884, -0.007380165159702301, -0.029227586463093758, 0.008805575780570507, 0.009664819575846195, -0.02684301882982254, -0.006427670828998089, -0.04561315104365349, -0.01384114008396864, 0.0035568666644394398, -0.012848680838942528, -0.009931251406669617, 0.006757380440831184, -0.03362371399998665, -0.028748007491230965, 0.004162999335676432, 0.022633394226431847, 0.028827937319874763, -0.01715821772813797, 0.029440730810165405, 0.017517901957035065, 0.0068206582218408585, -0.015959274023771286, 0.013734566979110241, -0.013374884612858295, 0.000496229506097734, -0.020395366474986076, -0.015972595661878586, 0.01567952148616314, -0.0071670194156467915, 0.02456502616405487, 0.021780813112854958, 0.005661678966134787, -0.011023622006177902, -0.0025560816284269094, -0.015972595661878586, -0.02383233793079853, -0.02607036754488945, -0.040737446397542953, 0.020648475736379623, -0.024418488144874573, -0.002354592317715287, -0.005718295928090811, -0.030080167576670647, 0.013261650688946247, -0.009105311706662178, 0.012575588189065456, -0.005521802231669426, -0.009984537959098816, 0.03210505098104477, -0.008399267680943012, 0.05134143680334091, -0.023992197588086128, 0.01858362928032875, 0.01798415742814541, 0.01410757191479206, -0.02307300828397274, -0.012875324115157127, 0.004259580746293068, -0.010264291428029537, 0.031119251623749733, 0.02152770198881626, -0.0010199348907917738, -0.006470966152846813, -0.017411328852176666, -0.01453386340290308, -0.011103551834821701, -0.019969075918197632, 0.019196422770619392, -0.0006681613740511239, 0.0009125294745899737, -0.017278112471103668, -0.025750648230314255, -0.020328758284449577, 0.04396127164363861, -0.01416085846722126, 0.014680400490760803, 0.0131084518507123, -0.030160097405314445, -0.025883864611387253, 0.016865143552422523, -0.01005780603736639, 0.0038998976815491915, -0.0068139974027872086, -0.01566619984805584, -0.009644837118685246, -0.0018616933375597, 0.002164759673178196, -0.015093370340764523, -0.01374788861721754, 0.009225206449627876, -0.01726479083299637, 0.026336798444390297, 0.02020886354148388, 0.006324428599327803, -0.005471846088767052, 0.0037666817661374807, 0.0024212005082517862, 0.01926303096115589, -0.032371483743190765, 0.0007293574744835496, 0.04622594267129898, 0.009278493002057076, 0.006833979859948158, -0.019209744408726692, -0.024365201592445374, -0.02680305577814579, -0.016558745875954628, 0.0061479173600673676, 0.03570188209414482, -0.0021181341726332903, -0.019809216260910034, 0.02459166944026947, 0.015173300169408321, -0.017651116475462914, 0.015040083788335323, 0.016625354066491127, 0.022100530564785004, -0.01625235006213188, -0.0068672834895551205, 0.021860742941498756, 0.022140495479106903, 0.04691866785287857, -0.015985917299985886, 0.008459215052425861, 0.010310917161405087, 0.0007077098707668483, -0.01342817023396492, 0.021980635821819305, 0.02307300828397274, -0.011090230196714401, -0.013048505410552025, 0.011776292696595192, -0.034689441323280334, -0.014040963724255562, 0.01725146919488907, -0.008659038692712784, -0.03367700055241585, 0.006251159589737654, 0.011756310239434242, -0.0075999717228114605, -0.010164379142224789, 0.01119014248251915, 0.013627994805574417, -0.0015186622040346265, -0.0023013059981167316, -0.002664319472387433, -0.012975236400961876, 0.01951614022254944, 0.01148987840861082, -0.002747579477727413, 0.020568547770380974, -0.02022218517959118, 0.015532983466982841, 0.015173300169408321, -0.021834099665284157, -0.005242048762738705, -0.00726027088239789, -0.005768252070993185, -0.010357541963458061, 0.028668077662587166, -0.018490377813577652, -0.004432761576026678, -0.015506340190768242, -0.01651878096163273, -0.0016560411313548684, 0.0008875514613464475, 0.03367700055241585, 0.004436091985553503, 0.001237243413925171, -0.003337060334160924, 0.028801294043660164, 0.022620072588324547, -0.008732307702302933, -0.021181341260671616, -0.00539857754483819, -0.016905108466744423, -0.02842829003930092, -0.011303375475108624, 0.01120346412062645, 0.02619026042521, 0.016558745875954628, -0.033170778304338455, -0.022100530564785004, -0.015453053638339043, -0.043534982949495316, -0.016598710790276527, -0.012442372739315033, 0.02989366464316845, 0.034689441323280334, 0.006704093888401985, -0.01936960406601429, 0.0223936066031456, -0.014027642086148262, 0.0053686038590967655, -0.04009800776839256, 0.021301234140992165, 0.016665318980813026, -0.014973475597798824, 0.007513381075114012, 0.007992958649992943, -0.03873920813202858, -0.014453933574259281, 0.019009919837117195, 0.00018202714272774756, 0.03226491063833237, 0.00036176462890580297, 0.020701762288808823, -0.011829579249024391, 0.009964555501937866, 3.673846731544472e-05, -0.0007489235722459853, 0.007779812905937433, 0.01412089355289936, -0.0224468931555748, 0.014733687043190002, 0.007127054966986179, 0.002754240296781063, -0.008885505609214306, 0.004689202643930912, 0.008246068842709064, 0.0002335442550247535, -0.006967195775359869, 0.0032871041912585497, 0.008092870935797691, -0.012302495539188385, -0.011689702048897743, 0.01717153936624527, -0.0020298785530030727, 0.01003782358020544, 0.02896115370094776, 0.01562623493373394, -0.0297604501247406, 0.007540024351328611, 0.024271951988339424, -0.017757689580321312, -0.02397887594997883, 0.021327877417206764, -0.014760330319404602, 0.012648857198655605, -0.02303304336965084, 0.003405333496630192, 0.006107952445745468, -0.01786426268517971, -0.018170660361647606, 0.013627994805574417, -0.013254989869892597, 0.00542522082105279, -0.005728287156671286, -0.03229155391454697, 0.0222603902220726, -0.010137735866010189, 0.017451293766498566, -0.009911268949508667, -0.003185527166351676, -0.0029823726508766413, -0.024271951988339424, -0.03639460355043411, 0.022007279098033905, -0.025883864611387253, -0.030080167576670647, 0.010317577980458736, 0.012002759613096714, 0.01045745424926281, 0.013561386615037918, 0.2085629403591156, 0.024924710392951965, 0.006730737164616585, 0.03634132072329521, 0.009658158756792545, 0.021887384355068207, 0.015839379280805588, -0.003746699308976531, 0.008912148885428905, 0.017331399023532867, -0.014080928638577461, 0.01345481351017952, -0.004259580746293068, -0.009245188906788826, 0.0001862942153820768, -0.017691081389784813, -0.04342840984463692, 0.022899826988577843, -0.012362442910671234, 0.030293313786387444, 0.027895426377654076, 0.002396222436800599, 0.018117373809218407, -0.0148802250623703, -0.003030663589015603, -0.024818137288093567, -0.005904798395931721, 0.012675500474870205, 0.001382115762680769, 0.018756810575723648, 0.008119514212012291, 0.010177700780332088, -0.005708304699510336, 0.012249208986759186, -0.0060346839018166065, -0.013061827048659325, -0.014427290298044682, -0.008652377873659134, 0.007666579447686672, 0.022726645693182945, 0.030080167576670647, 0.011649737134575844, 0.00013227931049186736, 0.005335299763828516, 0.00706710759550333, 0.012728787027299404, -0.009531603194773197, -0.004499369766563177, -0.0006053001270629466, 0.009311797097325325, -0.02765563689172268, 0.017371363937854767, 0.013155077584087849, 0.0298403799533844, -0.002264671726152301, 0.0037034042179584503, 0.005911459214985371, 0.005132145714014769, 0.00034698599483817816, 0.0005132977967150509, -0.021181341260671616, 0.0017767681274563074, -0.01638556458055973, -0.0034835978876799345, -0.006480957381427288, -0.003763351356610656, -0.02754906378686428, -0.0004650070331990719, -0.023725764825940132, -0.010670599527657032, 0.0011448247823864222, -0.006694103125482798, -0.012848680838942528, 0.012422390282154083, -0.023539263755083084, -0.019196422770619392, 0.026336798444390297, 0.016771892085671425, 0.02770892344415188, 0.03157218545675278, 0.0024811476469039917, -0.006137926131486893, -0.0032138354144990444, -0.02676309086382389, -0.024085449054837227, -0.003956514410674572, 0.027335919439792633, 0.009325118735432625, 0.0015619572950527072, 0.009571568109095097, 0.01012441422790289, -0.004282893612980843, -0.015413088724017143, -0.017344720661640167, 0.0036734305322170258, 0.0019099840428680182, 0.006980517413467169, 0.006161238998174667, -0.028161857277154922, -0.0009141946793533862, -0.03215833753347397, 0.06538239866495132, 0.01567952148616314, -0.007400147616863251, -0.005824868567287922, -0.024325238540768623, -0.014280753210186958, 0.024804815649986267, -0.0070471251383423805, -0.018503699451684952, 0.006371054332703352, -0.01718486100435257, 0.01854366436600685, -0.0034669458400458097, 0.00277921836823225, -0.012275852262973785, -0.022660037502646446, -0.007380165159702301, 0.014680400490760803, -0.0067540500313043594, 0.0071670194156467915, -0.031145894899964333, -0.003999809734523296, 0.02307300828397274, -0.02095487341284752, -0.003919880371540785, -0.0007672407664358616, -0.025870542973279953, -0.015266550704836845, -0.04047101363539696, 0.010137735866010189, -0.009518281556665897, 0.01873016729950905, -0.038366202265024185, -0.008379285223782063, 0.016825178638100624, 0.033170778304338455, -0.01629231497645378, -0.021767491474747658, -0.005831529386341572, -0.021008159965276718, 0.01795751415193081, 0.018090730533003807, 0.0046592289581894875, 0.006460974924266338, -0.0020981517154723406, 0.0036800913512706757, 0.016199063509702682, -0.005341960582882166, -0.02694959193468094, -0.025657396763563156, -0.010890406556427479, 0.0022346980404108763, 0.009238528087735176, 0.03522230312228203, -0.03066631779074669, -0.018237266689538956, -0.02297975681722164, 0.012995218858122826, 0.0112234465777874, -0.06399695575237274, -0.011263410560786724, 0.012648857198655605, -0.009538264013826847, -0.028907867148518562, -0.009551585651934147, -0.16891786456108093, 0.01413421519100666, -0.021461093798279762, -0.023419369012117386, 0.02676309086382389, 0.0037933250423520803, -0.016105812042951584, -0.009211884811520576, -0.023645836859941483, -0.005814877338707447, 0.024418488144874573, 0.014840260148048401, -0.018756810575723648, -0.02300640009343624, 0.006011371035128832, 0.004735827911645174, -0.020302115008234978, 0.02324618771672249, 0.024764850735664368, 0.009671480394899845, 0.032451413571834564, -0.01647881604731083, 0.004229607526212931, -0.03349049761891365, 0.02078169211745262, -0.0008084544679149985, -0.02455170452594757, 0.005132145714014769, -0.002043199958279729, -0.015279872342944145, -0.011769631877541542, 0.004246259108185768, 0.016905108466744423, 0.014760330319404602, -0.0074600949883461, 0.004612603224813938, -0.014067607000470161, 0.003746699308976531, -0.013594690710306168, 0.037620190531015396, 0.032398127019405365, -0.004892356693744659, 0.013681281358003616, 0.027255989611148834, -0.004209625069051981, 0.01870352402329445, 0.01079049427062273, -0.0018217285396531224, 0.0014637105632573366, 0.012009420432150364, 0.0450003556907177, -0.027469133958220482, 0.015559625811874866, 0.006960534956306219, -0.004572638310492039, 0.020288793370127678, 0.021048124879598618, 0.003953184001147747, -0.001082379836589098, -0.03929871320724487, 0.003153888275846839, -0.013934391550719738, -0.005242048762738705, -0.027029521763324738, -0.01083045918494463, -0.01794419251382351, 0.013175060041248798, 0.01082379836589098, -0.03354378417134285, 0.018210623413324356, 0.020595191046595573, -0.01638556458055973, -0.007313557434827089, 0.019622713327407837, 0.01948949694633484, -0.013681281358003616, 0.007992958649992943, 0.031652115285396576, 0.017398007214069366, 0.01723814755678177, 0.004905678331851959, 0.02315293624997139, -0.019209744408726692, 0.015413088724017143, -0.027735566720366478, 0.008965435437858105, 0.010324237868189812, 0.028001999482512474, 0.018290553241968155, 0.0014428956201300025, -0.0057416087947785854, -0.03277112916111946, 0.016891786828637123, 0.018463734537363052, -0.01410757191479206, 0.022939791902899742, 0.01377453189343214, 0.015080048702657223, -0.01113685593008995, 0.02834836021065712, 0.0013288293266668916, 0.010717225261032581, -0.012848680838942528, 0.009658158756792545, 0.022060565650463104, 0.02680305577814579, 0.016052525490522385, 0.016052525490522385, 0.01380117516964674, -0.027109451591968536, -0.04979613423347473, 0.01376121025532484, 0.025497538968920708, 0.0111968033015728, -0.0031971833668649197, 0.024884745478630066, -0.0031838619615882635, -0.011303375475108624, -0.0015386445447802544, -0.0068606226705014706, 0.06191878765821457, 0.009864643216133118, -0.0149201899766922, -0.010910389013588428, -0.011443252675235271, -0.007786473724991083, -0.104601189494133, -0.018197301775217056, -0.0223403200507164, -0.004945643246173859, 0.022886505350470543, 0.015319837257266045, -0.012115993537008762, 0.026536623015999794, -0.012295834720134735, 0.022646715864539146, -0.0016701953718438745, -0.003230487462133169, 0.00813949666917324, -0.005318647716194391, 0.02749577723443508, -0.012322477996349335, -0.012162619270384312, -0.005215405486524105, -0.01781097613275051, 0.03367700055241585, 0.012742108665406704, -0.0039898185059428215, 0.004819088149815798, -0.029440730810165405, -0.024471774697303772, -0.013894426636397839, -0.038366202265024185, -0.0026859671343117952, -0.00521873589605093, 0.02545757405459881, 0.024471774697303772, -0.008945452980697155, 0.02158098854124546, -0.008019601926207542, -0.005974736530333757, 0.00690058758482337, -0.0298137366771698, 0.009171919897198677, -0.019915789365768433, -0.027948712930083275, 0.010570688173174858, 0.03141232952475548, 0.008226086385548115, -0.021234627813100815, -0.010324237868189812, -0.003337060334160924, -0.01005114521831274, -0.003720056265592575, 0.003182196756824851, -0.0022963103838264942, -0.02156766690313816, -0.01384114008396864, -0.007380165159702301, -0.019929111003875732, -0.0022863191552460194, -0.001430406584404409, 0.0019466184312477708, 0.006397697143256664, -0.028774650767445564, -0.020648475736379623, 0.0029557296074926853, 0.0005599234136752784, -0.035408806055784225, 0.02826843038201332, 0.026563266292214394, 0.014014321379363537, -0.014334038831293583, -0.03269119933247566, -0.005152128171175718, -0.01448057685047388, -0.011569807305932045, 0.01709160953760147, -0.018477056175470352, 0.004189642611891031, -0.021207984536886215, 0.01714489609003067, -0.0017767681274563074, -0.04686538130044937, 0.021314555779099464, -0.00692057004198432, -0.013608012348413467, -0.04012465104460716, -0.0004849894321523607, -0.002512786304578185, 0.03881913796067238, 0.02757570706307888, -0.015293193981051445, -0.0011364987585693598, 0.03269119933247566, -0.02094155177474022, -0.007699883542954922, 0.0028341698925942183, 0.01858362928032875, -0.006457644514739513, 0.013281633146107197, 0.0013996004126966, -0.018064087256789207, -0.016865143552422523, -0.0013921069912612438, 0.021461093798279762, -0.003047315403819084, 0.012249208986759186, -0.05573756620287895, 0.034716084599494934, -0.0023396057076752186, 0.04004472494125366, 0.028454933315515518, -0.0032970954198390245, 0.007187001872807741, -0.02381901629269123, -0.011290053837001324, 0.02164759673178196, -0.03143896907567978, 0.012329138815402985, -0.006101291626691818, -0.018170660361647606, -0.01951614022254944, -0.017411328852176666, 0.015999238938093185, -0.0030972715467214584, 0.013548064976930618, 0.023739086464047432, 0.003929871134459972, -0.02301972173154354, 0.009917929768562317, 0.0027592359110713005, -0.015373123809695244, 0.011902847327291965, -0.02770892344415188, 0.0034802674781531096, -0.005608392879366875, -0.016132455319166183, 0.008925470523536205, -0.015279872342944145, -0.00539857754483819, 0.03961843252182007, -0.017691081389784813, -0.014826938509941101, 0.018450412899255753, 0.025830578058958054, 0.012748769484460354, -0.023525942116975784, -0.006507600657641888, -0.030399886891245842, 0.0223536416888237, -0.017664438113570213, 0.005292004905641079, -0.018117373809218407, 0.00971810519695282, -0.009345101192593575, -0.0035135713405907154, 0.021021481603384018, 0.014747008681297302, -0.008425910957157612, -0.00519209261983633, -0.021074768155813217, 0.014267431572079659, -0.005721626337617636, 0.0024445131421089172, -0.015253229066729546, 0.0066374861635267735, -0.007353521883487701, 0.026296833530068398, 0.018770132213830948, 0.010530723258852959, -0.011343340389430523, 0.013161738403141499, -0.011929490603506565, -0.018170660361647606, 0.006460974924266338, -0.012255869805812836, -0.014773651957511902, -0.011476556770503521, -0.0005670005339197814, 0.009658158756792545, 0.018437091261148453, 0.008552465587854385, -0.004439422395080328, 0.020648475736379623, 0.002764231525361538, -0.024178700521588326, 0.026643196120858192, 0.03335728123784065, -0.024152057245373726, 0.005768252070993185, 0.02079501375555992, -0.023286152631044388, -0.003385351039469242, -0.010943692177534103, -0.009917929768562317, -0.0111435167491436, 5.984311428619549e-05, 0.015319837257266045, -0.011683041229844093, 0.003160549094900489, -0.00972476601600647, 0.023485977202653885, 0.013514760881662369, 0.00815947912633419, 0.0036034921649843454, 0.01003782358020544, 0.016012560576200485, -0.0038632634095847607, -0.0035568666644394398, -0.011882864870131016, -0.014067607000470161, -0.00354354502633214, 0.017424650490283966, -0.01416085846722126, -0.006947213318198919, 0.005175440572202206, 0.0297071635723114, 0.008059566840529442, 0.014440611936151981, 0.013581369072198868, 0.016225706785917282, -0.011736327782273293, 0.01943621039390564, 0.003996479324996471, -0.011656397953629494, -0.009631515480577946, 0.0447072833776474, 0.020328758284449577, 0.021767491474747658, 0.026536623015999794, -0.022193782031536102, 0.03330399468541145, 0.023432690650224686, 0.0028325046878308058, 0.004219616297632456, 0.00034490448888391256, 0.0022247068118304014, -0.010657277889549732, -0.017464615404605865, 0.006587530020624399, -0.007659918628633022, -0.0062678116373717785, -0.0262169037014246, -0.02002236247062683, 0.022220425307750702, 0.029440730810165405, 0.07214977592229843, 0.027069486677646637, -0.018903346732258797, 0.0148802250623703, -0.004043105058372021, 0.031705401837825775, -0.009491638280451298, 0.013321598060429096, -0.007919689640402794, -0.03279777243733406, 0.003983157686889172, 0.002223041607066989, 0.0009849655907601118, -0.011096891015768051, -0.02464495599269867, -0.0046592289581894875, 0.013667959719896317, 0.01782429777085781, 0.0004346171335782856, -0.002647667657583952, 0.013095130212605, -0.019649356603622437, -0.00041921401862055063, -0.009231867268681526, -0.007746509276330471, -0.01523990835994482, 0.01458714995533228, 0.01115017756819725, -0.0022113851737231016, -0.006833979859948158, 0.010270952247083187, 0.0044727264903485775, -0.025111211463809013, -0.011030282825231552, 0.006833979859948158, -0.005891476757824421, -0.008012941107153893, -0.018876703456044197, -0.0019566097762435675, -0.019795894622802734, -0.014400647021830082, 0.013168399222195148, -0.0002880795509554446, 0.001541142351925373, -0.0004658396355807781, -0.005568427965044975, -0.0020598520059138536, 0.010524062439799309, -0.015146656893193722]" +32,"The remaining portion, which we recognized beyond the next 12 months, increased 38% year over year, and our annuity mix increased one point year over year to 96%. FX impacted company results in line with expectations. With the stronger US dollar, FX decreased total company revenue by five points, and at the segment level, FX decreased productivity and business processes and intelligent cloud revenue growth by six points and more personal computing revenue growth by three points. Additionally, FX decreased COGS and operating expense growth by three points.","[-0.0007288618362508714, -0.011567361652851105, -0.009921626187860966, -0.01981627382338047, 0.006593058817088604, 0.0005910146282985806, -0.015135370194911957, -0.012909580022096634, -0.0143125019967556, -0.02341800555586815, 0.03909296169877052, 0.03858035430312157, 0.0056386673822999, -0.0035612634383141994, -0.0057263500057160854, 0.02190716750919819, 0.014433909207582474, -0.015998706221580505, 0.021232685074210167, -0.030621470883488655, -0.017819806933403015, 0.02776166796684265, -0.024874886497855186, 0.00040806145989336073, -0.011317803524434566, 0.005122688598930836, 0.004556124098598957, -0.020908933132886887, 0.012963538989424706, 6.734278576914221e-05, 0.0028294508811086416, -0.018642675131559372, -0.035504717379808426, 0.02468603104352951, -0.024780459702014923, 0.0028159611392766237, -0.004647179041057825, 0.006980885751545429, 0.0012520067393779755, -0.016389906406402588, 0.04135921970009804, 0.005722977686673403, -0.013590807095170021, 0.012828642502427101, -0.01618756167590618, 0.008431022055447102, -0.015229797922074795, -0.0068864584900438786, -0.004313310608267784, 0.014231564477086067, -0.006343500688672066, 0.050127483904361725, -0.02409248799085617, -0.022999826818704605, 0.008181462995707989, 0.000575417245272547, -0.01203275378793478, -0.005132806021720171, -0.014339481480419636, -0.01981627382338047, -0.01857522688806057, 0.019330646842718124, -0.015162349678575993, -0.0014585667522624135, -0.03720441088080406, -0.010420742444694042, 3.4251024771947414e-05, -9.010654321173206e-05, 0.0063367560505867004, 0.009247144684195518, 0.03474929928779602, 0.03706951439380646, 0.0011187965283170342, 0.011978795751929283, 0.029407404363155365, 0.001920586684718728, -0.0024955824483186007, -0.003094184910878539, 0.007169740740209818, 0.02498280256986618, 0.017496056854724884, -0.023863162845373154, -0.011351527646183968, -0.011223375797271729, 0.012268822640180588, -0.0038378010503947735, -0.019735336303710938, -0.0007499393541365862, -0.024011550471186638, 0.0167271476238966, 0.012606063857674599, 0.00501814391463995, 0.00913922768086195, 0.020045597106218338, -0.00048478375538252294, 0.008370318450033665, -0.01885850913822651, 0.014541826210916042, -0.0006403360748663545, -0.0451093390583992, -0.01036003977060318, -0.006023121997714043, -0.034830234944820404, -0.014325992204248905, -0.04176390916109085, 0.00017504909192211926, 0.0009299417142756283, -0.006812265608459711, 0.0014332736609503627, -0.012343015521764755, -0.013638020493090153, -0.004984419792890549, 0.014703702181577682, -0.0019762315787374973, -0.011810175143182278, -0.013806641101837158, -0.00729789212346077, 0.001514211529865861, 0.01860220544040203, 0.011391996406018734, 0.015310735441744328, 0.014986984431743622, 0.025427961722016335, -0.005561101716011763, 0.02281097136437893, 0.004832661710679531, 0.00942250993102789, -0.010946838185191154, 0.00808029156178236, -0.009705792181193829, -0.01583683118224144, -0.007142761722207069, 0.026439683511853218, 0.012369995005428791, -0.00731812696903944, 0.027006248012185097, -0.025279575958848, 0.017846787348389626, -0.024011550471186638, -0.003787214867770672, 0.0035342841874808073, 0.01674063690006733, 0.004802309907972813, 0.011931581422686577, 0.0420067235827446, 0.02832823246717453, 0.03596336767077446, -0.021165236830711365, 0.018710123375058174, -0.014110158197581768, -0.00911899283528328, -0.020895443856716156, 0.03294168785214424, 0.023687798529863358, 0.023040296509861946, -0.0002778021735139191, 0.0069336723536252975, 0.02464556321501732, -0.0064615351147949696, -0.0006078766891732812, -0.037285350263118744, 0.006947161629796028, -0.0019897210877388716, 0.0018396489322185516, -0.0011786568211391568, -0.0021263037342578173, 0.015445631928741932, -0.013455910608172417, -0.008646856062114239, 0.007196720223873854, 0.01509490143507719, -0.008046567440032959, -0.0008388866554014385, 0.02250071056187153, 0.007662112358957529, 0.028867818415164948, 0.0008435237105004489, -0.01798168383538723, -0.02438925951719284, -0.0280044823884964, 0.02104382961988449, -0.01647084392607212, 0.024254363030195236, -0.016592251136898994, 0.022662585601210594, -0.0026321648620069027, 0.0317276194691658, -0.0041716694831848145, 0.025198636576533318, -0.014420419000089169, -0.005581336561590433, 0.006346873007714748, -0.0062760524451732635, -0.01203275378793478, -0.6522508263587952, -0.013401951640844345, -0.0029660335276275873, -0.0019526246469467878, 0.017536524683237076, 0.0071562509983778, 0.01799517311155796, -0.006711093243211508, -0.026385724544525146, 0.019559970125555992, 0.011911347508430481, 0.011897857300937176, 0.010805197060108185, -0.021178726106882095, 0.006404203828424215, -0.009355061687529087, 0.0012545359786599874, -0.006626782938838005, -0.019559970125555992, 0.0005910146282985806, 0.013597551733255386, 0.01674063690006733, 0.005594825837761164, 0.0023606859613209963, 0.018453819677233696, -0.003814194118604064, 0.0026507133152335882, -0.013496379368007183, -0.007844222709536552, -0.0077497949823737144, -0.02677692472934723, 0.015310735441744328, -0.002733337227255106, -0.011823664419353008, 0.04629642516374588, -0.008316359482705593, 0.0010150950402021408, 0.012383484281599522, 0.005588081199675798, 0.049560919404029846, -0.031808558851480484, 0.007048333995044231, -0.00957764033228159, -0.007513726595789194, -0.022608628496527672, 0.024874886497855186, -0.007041589356958866, -0.0037770976778119802, 0.03447950631380081, -0.02008606679737568, 0.01249140128493309, -0.003763608168810606, -0.0026439684443175793, -0.013705468736588955, -0.02161039412021637, 0.014379950240254402, 0.016538292169570923, -0.020787527784705162, -0.0010800139280036092, -0.015715423971414566, -0.007985863834619522, -0.031161056831479073, -0.017792828381061554, -0.015728913247585297, -0.025063741952180862, 0.016862044110894203, -0.013138904236257076, 0.028220316395163536, 0.02287841960787773, 0.01113569363951683, -0.022338835522532463, 0.01052865944802761, -0.005655529443174601, -0.007243933621793985, 0.020328879356384277, 0.006532355677336454, 0.017590483650565147, -0.010953583754599094, -0.017860276624560356, 0.007075313478708267, -0.0038310561794787645, -0.02859802544116974, -0.0008523762808181345, 0.003527539549395442, 0.002733337227255106, 0.015162349678575993, -0.022918889299035072, -0.01219462975859642, -0.019600439816713333, 0.00609731487929821, 0.0062423283234238625, -0.0045864759013056755, 0.0023219033610075712, -0.03814868628978729, 0.02465905249118805, 0.019735336303710938, -0.011452700011432171, 0.018089599907398224, 0.016025686636567116, -0.008565917611122131, -0.007716070860624313, 0.007702581584453583, 0.030891263857483864, 0.009550661779940128, 0.020962892100214958, 0.025670774281024933, 0.003723139176145196, 0.0010083501692861319, 0.049857690930366516, -0.027532344684004784, -0.0058039152063429356, -0.020045597106218338, -0.002517502987757325, -0.0114324651658535, -0.003085753880441189, -0.02919156849384308, 0.02258164808154106, -0.023512432351708412, -0.01800866238772869, -0.017914235591888428, -0.0030469712801277637, 0.009793474338948727, 0.02341800555586815, -0.035504717379808426, -0.007992608472704887, 0.01707787811756134, 0.01796819269657135, -0.0013498065527528524, -0.002227475866675377, -0.01216090563684702, 0.005513888318091631, 0.0044009932316839695, 0.026911821216344833, -0.007466512732207775, 0.02594056725502014, -0.005088964477181435, 0.00975300557911396, -0.02070658840239048, 0.00931459292769432, -0.04872456192970276, -0.032132308930158615, -0.01017792895436287, 0.0021010106429457664, -0.0077363052405416965, -0.020801017060875893, -0.019330646842718124, -0.007925160229206085, 0.00869406946003437, 0.0055307503789663315, 0.007837478071451187, 0.013793151825666428, -0.014123647473752499, -0.010454466566443443, 0.022608628496527672, 0.01189111266285181, 0.007466512732207775, 0.025117699056863785, -0.03922785818576813, -0.010488190688192844, -0.02250071056187153, -0.003105988260358572, 0.012788173742592335, 0.01096032839268446, 0.004927088972181082, -0.012761194258928299, -1.1197450476174708e-05, -0.044677671045064926, 0.03302262723445892, 0.015013962984085083, -0.009024565108120441, 0.009962094947695732, -0.016052665188908577, 0.013152393512427807, -0.009409019723534584, -0.013725703582167625, 0.015162349678575993, -0.010757983662188053, 0.0001536553754704073, 0.018669653683900833, -0.025077231228351593, 0.018130069598555565, 0.010764728300273418, -0.021758779883384705, -0.013948282226920128, 0.01616058312356472, 0.005065357778221369, 0.016862044110894203, 0.01767142117023468, -0.01617407239973545, -0.007385574746876955, -0.005105826538056135, 0.01768491044640541, -0.0015698561910539865, -0.010117226280272007, -0.014258543960750103, -0.02347196452319622, -0.028571046888828278, -0.010258867405354977, -0.00623895600438118, 0.0050552403554320335, 0.008505214937031269, 0.013422186486423016, 0.00404014578089118, 0.030864283442497253, 0.015580528415739536, -0.024483686313033104, 0.008882923983037472, -0.033346377313137054, 0.016659699380397797, 0.03361617028713226, 0.025724733248353004, -0.03310356289148331, 0.007527216337621212, -0.028517087921500206, -0.03472232073545456, -0.0008544840384274721, 0.01521630771458149, 0.0058612460270524025, 0.0058039152063429356, 0.012106946669518948, -0.015944747254252434, -0.01800866238772869, 0.021178726106882095, 0.003139712382107973, -0.002569775329902768, -0.013260310515761375, -0.01802215166389942, 0.010292591527104378, 0.00989464670419693, -0.009125737473368645, -0.009233654476702213, 0.017576994374394417, 0.02496931329369545, 0.011904602870345116, -0.006198487244546413, 0.025212127715349197, 0.011048010550439358, -0.01980278454720974, 0.039416711777448654, -0.003021678188815713, 0.005982652772217989, -0.006660507060587406, 0.02532004378736019, -0.016389906406402588, 0.011945071630179882, -0.0032999019604176283, 0.02859802544116974, -5.536151547858026e-06, -0.002208927646279335, 0.013799896463751793, -0.008788497187197208, 0.001920586684718728, 0.021475497633218765, -0.0171048566699028, 0.011729237623512745, 0.007419298868626356, 0.00822193268686533, -0.00587473576888442, 0.02585962973535061, 0.0409005731344223, 0.008599641732871532, 0.005554357077926397, 0.028759900480508804, 0.0012815153459087014, 0.0033083329908549786, 0.019613929092884064, -0.010333060286939144, 0.0020352485589683056, 0.006987630855292082, 0.009496702812612057, -0.0035814980510622263, -0.0051597850397229195, -0.00037707743467763066, 0.0085524283349514, 0.006545845419168472, 0.018467308953404427, 0.020908933132886887, -0.02892177738249302, 0.005520632956176996, 0.0280044823884964, -0.0027653751894831657, -0.04688996821641922, 0.004997909534722567, 0.01477114949375391, 0.0015766010619699955, 0.007722815964370966, 0.01736116036772728, 0.0017469077138230205, 0.0034364843741059303, 0.03340033441781998, -0.01920923963189125, 0.007668857462704182, -0.012221609242260456, 0.0019256453961133957, 0.01644386537373066, 0.019398095086216927, 0.02072007954120636, -0.01261955313384533, -0.003949090372771025, -0.0037770976778119802, 0.0032139054965227842, -0.0026894959155470133, -0.02471301145851612, 0.007486747112125158, 0.03167366236448288, -0.006724582985043526, -0.03563961386680603, -0.016349436715245247, -0.011796685867011547, -0.004637062083929777, 0.022932378575205803, -0.025522388517856598, -0.044650692492723465, 0.04567590355873108, 0.036125242710113525, 0.004444834776222706, -0.025414472445845604, -0.033292416483163834, 0.04030703008174896, 0.02005908638238907, -0.005800542887300253, -0.019613929092884064, -0.025050250813364983, 0.003972697537392378, 0.060433562844991684, 0.03677274286746979, -0.012639787979424, 0.003648946061730385, 0.0013835306745022535, 0.006785286124795675, -0.0016069527482613921, -0.027653751894831657, 0.010117226280272007, -0.022055553272366524, -0.010865900665521622, 0.010731004178524017, 0.00971928145736456, -0.013037731871008873, -0.0031565744429826736, 0.010886135511100292, -0.0033319396898150444, -0.029002714902162552, 0.0016440491890534759, 0.00884919986128807, 0.0011542068095877767, -0.0010791707318276167, 0.01537818368524313, 0.02432181127369404, -0.001586718251928687, 0.016835063695907593, 0.01643037423491478, 0.02650713175535202, -0.004778703209012747, 0.001475428813137114, -0.004289703909307718, 0.0037737253587692976, -0.0014071374898776412, 0.02867896296083927, -0.009732771664857864, 0.008930138312280178, 0.014528336934745312, -0.03617919981479645, 0.004009793978184462, -0.02645317278802395, 0.005264329724013805, -0.025522388517856598, 0.0158638097345829, -0.002281434368342161, 0.026749946177005768, -0.0011542068095877767, 0.006771796382963657, 0.023296598345041275, -0.009746260941028595, -0.010090246796607971, -0.004664041101932526, -0.01156061701476574, -0.031538765877485275, 0.010731004178524017, -0.0036658081226050854, 0.013354738242924213, -0.001841335091739893, -0.010629831813275814, -0.008302870206534863, -0.017199283465743065, -0.034020859748125076, -0.013638020493090153, 0.004360524471849203, -0.012740960344672203, -0.018966427072882652, 0.006448045372962952, -0.011304314248263836, 0.011021031066775322, -0.024820927530527115, 0.019384605810046196, 0.0027569441590458155, -0.014433909207582474, -0.028193335980176926, 0.011722492054104805, 0.02737046778202057, 0.014730680733919144, 0.002372489543631673, 0.00609731487929821, -0.01235650572925806, 0.007675602100789547, -0.010548894293606281, 0.0023235895205289125, -0.019060853868722916, -0.013105180114507675, -0.02313472330570221, 0.023512432351708412, 0.0005201940075494349, -0.006508748512715101, -0.032402101904153824, 0.003554518800228834, -0.017523035407066345, -0.02889479696750641, 0.010751239024102688, -0.012100202031433582, 0.02438925951719284, -0.013813385739922523, 0.011459444649517536, 0.010521914809942245, 0.01357057224959135, -0.005962418392300606, 0.021866697818040848, -0.006673996802419424, 0.0005771034047938883, -0.017172304913401604, 0.016201050952076912, 0.011216631159186363, 0.008194953203201294, -0.02317519299685955, -0.0031818675342947245, -0.013004007749259472, 0.001961055677384138, -0.0029272506944835186, -0.023539412766695023, -0.014541826210916042, -0.005901715252548456, -0.01402921974658966, 0.013988750986754894, 0.0053452677093446255, 0.012902835384011269, 0.007621643599122763, 0.04133224114775658, -0.03356220945715904, 0.021124767139554024, 0.001527701155282557, 0.0021145001519471407, -0.017536524683237076, 0.00942250993102789, -0.0019222729606553912, -0.030864283442497253, -0.006286169867962599, -0.0007039902848191559, 0.01281515322625637, -0.00533515028655529, -0.0024230757262557745, -0.005463302135467529, -0.027329999953508377, -0.018723612651228905, -0.017212774604558945, -0.01891246810555458, -0.007453022990375757, -0.029704175889492035, -0.006913437973707914, 0.007196720223873854, -0.03291470929980278, 0.021691331639885902, -0.022311855107545853, -0.0011525206500664353, 0.0011794999008998275, 0.010157695040106773, 0.013907813467085361, -0.007614898961037397, -0.022932378575205803, -0.009004331193864346, -0.0063232663087546825, -0.02066612057387829, -0.020868465304374695, 0.026008015498518944, -0.017185794189572334, 0.019074343144893646, 0.03809472918510437, 0.02894875593483448, 8.404674736084417e-05, 0.0020824624225497246, 0.020895443856716156, -0.013105180114507675, 0.0010774845723062754, 0.015634486451745033, 0.009510192088782787, -0.02227138727903366, 0.01981627382338047, -0.0141910957172513, 0.004512282554060221, 0.0035309118684381247, -0.020908933132886887, 0.005689253564924002, 0.0086738346144557, -0.012383484281599522, 0.0022443379275500774, -0.027006248012185097, 0.0018919212743639946, -0.0020032108295708895, -0.002274689730256796, 0.003396015614271164, 0.010434232652187347, -0.03313054144382477, -0.004394248593598604, 0.021475497633218765, 0.011209886521100998, 0.02251419983804226, -0.02379571460187435, 0.02623733878135681, 0.018710123375058174, -0.01186413411051035, -0.00539922621101141, 0.01981627382338047, -0.00017083357670344412, -0.022473732009530067, -0.020220961421728134, -0.009867668151855469, 0.001940821181051433, -0.012687001377344131, 0.025077231228351593, 0.02649364247918129, 0.014285523444414139, 0.008087036199867725, 0.002984581748023629, 0.010906369425356388, -0.016565270721912384, 0.010393763892352581, -0.022311855107545853, -0.005672391504049301, -0.028759900480508804, -0.011479679495096207, 0.008316359482705593, 0.005948928650468588, 0.02956927940249443, -0.01857522688806057, 0.020962892100214958, -0.002111127832904458, -0.025967545807361603, 0.011041265912353992, 0.0024365652352571487, 0.05158436298370361, -0.024739990010857582, 0.01914179138839245, 0.009732771664857864, 0.006896575912833214, -0.019586948677897453, -0.012680256739258766, 0.018157048150897026, -0.014096667990088463, 0.030837304890155792, 0.04912924766540527, -0.0056218053214251995, -0.006373852491378784, -0.006313148885965347, 0.007540705613791943, -0.002465230645611882, -0.016295477747917175, 0.02283795177936554, 0.030297718942165375, 0.012700490653514862, -0.005375619512051344, -0.029029693454504013, -0.007392319850623608, 0.03105313889682293, -0.024497175589203835, 0.00549702625721693, 0.016362925991415977, -0.014960004948079586, -0.007925160229206085, 0.029002714902162552, -0.005358757451176643, -0.008950372226536274, -0.021488988772034645, 0.004050262738019228, -0.0017991800559684634, 6.70266235829331e-05, -0.007041589356958866, -0.002746826969087124, -0.018777571618556976, 0.025427961722016335, -0.02776166796684265, 0.02228487655520439, -0.007291147485375404, 0.002917133504524827, -0.019613929092884064, -0.0028024716302752495, -0.025050250813364983, 0.021799249574542046, -0.03375106677412987, -0.009355061687529087, 0.027923543006181717, -0.010724259540438652, 0.00709554785862565, -0.016646208241581917, -0.025468429550528526, -0.02258164808154106, -0.0053014266304671764, 0.0005851128953509033, 0.020922422409057617, 0.002751885447651148, -0.025090720504522324, 0.018345903605222702, -0.0022055553272366524, -0.008410787209868431, -0.009098758921027184, -0.013766172342002392, 0.030999179929494858, -0.020895443856716156, -0.005878108087927103, 0.014960004948079586, 0.04173693060874939, 0.03145782649517059, 0.012842131778597832, -0.006198487244546413, 0.00701460987329483, 0.0011348155094310641, -0.0100362878292799, 0.032995644956827164, 0.014555315487086773, -0.0027434544172137976, -0.026372235268354416, 0.010238632559776306, -0.022042062133550644, -0.015985216945409775, 0.03628711774945259, -0.0197623148560524, -0.04397621005773544, 0.005989397875964642, -0.002485465258359909, -0.006326638627797365, -0.006060218438506126, 0.005834267009049654, 0.017900744453072548, 0.007810498587787151, -0.026291297748684883, 0.002772119827568531, -0.009962094947695732, 0.027572812512516975, -0.00729789212346077, 0.010299336165189743, 0.0075069814920425415, -0.017523035407066345, 0.0005956516833975911, 0.0002129886852344498, 0.009220165200531483, -0.0024483685847371817, 0.0086738346144557, -0.007655367720872164, -0.011122203432023525, 0.030324699357151985, 0.012943304143846035, 0.0027383959386497736, -0.015755893662571907, -0.013867344707250595, -0.014204584993422031, 0.022622117772698402, 0.002654085634276271, -0.0037669804878532887, 0.011074990034103394, -0.00021688803099095821, 0.012579084374010563, 0.020180493593215942, -0.0041244556196033955, -0.03987535834312439, 0.0038175666704773903, -0.010845665819942951, -0.04653923958539963, -0.010650066658854485, 0.007877946831285954, 0.032779812812805176, 0.01951950043439865, -0.02556285820901394, -0.023310089483857155, -0.0011246983194723725, -0.0317276194691658, -0.02012653462588787, -0.014433909207582474, 0.02225789800286293, 0.02803146094083786, 0.0197623148560524, -0.011284079402685165, 0.03504607081413269, 0.01232278160750866, 0.015958238393068314, -0.03585544973611832, 0.003584870370104909, 0.023391027003526688, -0.027262551710009575, 0.0030250505078583956, 0.006569452118128538, -0.02281097136437893, -0.0019509383710101247, -0.0038310561794787645, -0.00793190486729145, 0.01984325237572193, -0.002824392169713974, 0.006589686498045921, -0.01854824833571911, 0.0007039902848191559, 0.01373244822025299, 0.0014762718928977847, 0.0063232663087546825, 0.0016971646109595895, -0.04114338383078575, 0.012848877348005772, -0.0006238956120796502, -0.00011065715807490051, -0.023323578760027885, 0.012565595097839832, -0.0053789918310940266, 0.003141398774459958, 0.0023219033610075712, -0.01203949935734272, -0.008801986463367939, 0.02768073044717312, -0.029407404363155365, 0.01477114949375391, 0.0007406652439385653, 0.017455587163567543, 0.019020384177565575, 0.027343489229679108, -0.011601085774600506, -0.011270590126514435, 0.005510515533387661, -0.024605093523859978, -0.016052665188908577, 0.019128302112221718, 0.00023923024127725512, 0.003036854090169072, -0.017307201400399208, 0.014852087944746017, -0.00777677446603775, -0.005220488645136356, -0.007196720223873854, 0.014096667990088463, -0.0016415199497714639, 0.005824149586260319, -0.013766172342002392, -0.015526569448411465, 0.03350825235247612, -0.029461361467838287, -0.01651131361722946, 0.0020150141790509224, -0.015013962984085083, -0.0006133568240329623, -0.03437158837914467, -0.04508236050605774, 0.008640111424028873, -0.018521267920732498, -0.04017213359475136, -0.005722977686673403, 0.010508425533771515, -0.009631599299609661, 0.008545683696866035, 0.2045028656721115, 0.0237282682210207, 0.002655771793797612, 0.027356978505849838, 0.010312825441360474, 0.015027453191578388, 0.023283109068870544, 0.005854501388967037, -0.008801986463367939, 0.02380920574069023, -0.028166357427835464, 0.03175460174679756, -0.004137945361435413, -0.006245700642466545, 0.016241520643234253, -0.009786729700863361, -0.03493815287947655, 0.021421540528535843, -0.023566391319036484, 0.05112571641802788, 0.01203275378793478, -0.017199283465743065, -0.003055402310565114, -0.029083652421832085, 0.02228487655520439, -0.010002563707530499, -0.02040981687605381, -0.004013166297227144, 0.002025131369009614, 0.021232685074210167, -0.003952463157474995, -0.00138943234924227, 0.021462008357048035, -0.003330253530293703, -0.006727955304086208, -0.02989302948117256, -0.014406929723918438, -0.004053635057061911, -0.0023606859613209963, 0.02282446250319481, 0.0280044823884964, 0.0016752439551055431, -0.004788820166140795, -0.012639787979424, 0.002767061349004507, 0.01671365648508072, 0.0031498295720666647, -0.005736466962844133, -0.015971727669239044, 0.012680256739258766, -0.020787527784705162, 0.01705089770257473, -0.0031565744429826736, 0.01888548769056797, -0.0023117861710488796, 0.020477265119552612, 0.03412877395749092, 0.0063232663087546825, 0.0020419934298843145, -0.015108390711247921, -0.007763284724205732, 0.0112773347645998, -0.004427972715348005, 0.023377537727355957, -0.00868058018386364, -0.0023101000115275383, -0.019735336303710938, -0.0018868626793846488, 0.002043679589405656, -0.011742726899683475, -0.0034971877466887236, 0.0026574579533189535, -0.014960004948079586, 0.005932067055255175, -0.017550013959407806, -0.012693746015429497, 0.006680741440504789, 0.015445631928741932, 0.016848552972078323, 0.014433909207582474, 0.005544239655137062, -0.0027249061968177557, 0.0003294421767350286, -0.024213893339037895, -0.01978929340839386, -0.023566391319036484, 0.026115933433175087, -0.0009889588691294193, -0.0007153722108341753, -0.004687648266553879, 0.004981047473847866, 0.011655044741928577, -0.01613360270857811, -0.016578761860728264, 0.003598360111936927, 0.0031380262225866318, -0.003473580814898014, 0.009908136911690235, -0.024119466543197632, 0.0004413639835547656, -0.025090720504522324, 0.04416506364941597, -0.02250071056187153, 0.002197124296799302, 0.008950372226536274, -0.01980278454720974, -0.008134249597787857, 0.02197461575269699, 0.0026793787255883217, -0.01280840765684843, -0.006265935488045216, -0.013401951640844345, 0.018683144822716713, -0.0033268812112510204, 0.0007642721175216138, -0.01795470342040062, 0.006906692869961262, -0.0019425073405727744, -0.011162673123180866, -0.006087197456508875, 0.009092013351619244, -0.016835063695907593, 0.00011044638085877523, 0.01802215166389942, -0.011081734672188759, -0.0210708100348711, -0.0034027602523565292, -0.027181614190340042, -0.018184026703238487, -0.02773468941450119, 0.0167945958673954, -0.03081032633781433, 0.006134411320090294, -0.024739990010857582, -0.007614898961037397, 0.012046243995428085, 0.03045959584414959, 0.010292591527104378, -0.03188949450850487, 0.027208592742681503, -0.01676761545240879, 0.037042535841464996, 0.0240385290235281, 0.0018042386509478092, -0.0006942946347407997, -0.02227138727903366, 0.042789120227098465, 0.015270266681909561, -0.016012195497751236, 0.0008418374927714467, -0.01860220544040203, 0.005507143214344978, 0.00018326933786738664, 0.026628538966178894, 0.03078334592282772, -0.040657758712768555, -0.009995819069445133, -0.036395035684108734, 0.017806317657232285, 0.01401573047041893, -0.04786122217774391, -0.0280044823884964, 0.02316170185804367, -0.0010614655911922455, -0.011601085774600506, 0.003232453716918826, -0.17191191017627716, 0.028220316395163536, -0.012275567278265953, -0.005409343633800745, 0.026075463742017746, 0.003456718986853957, 0.012221609242260456, -0.013186117634177208, -0.002561344299465418, 0.0004632846394088119, 0.011425720527768135, 0.02894875593483448, -0.0056690191850066185, -0.02378222532570362, 0.01825147494673729, 0.013543592765927315, -0.048265911638736725, 0.025738222524523735, 0.03496513143181801, 0.03661086782813072, 0.025279575958848, 0.0018244730308651924, -0.00038002830115146935, -0.02039632759988308, 0.02316170185804367, 0.012120436877012253, -0.036368053406476974, 0.0007334988913498819, 0.0033386845607310534, -0.008714304305613041, -0.016376417130231857, -0.004910226911306381, 0.018089599907398224, 0.00709554785862565, 0.0033740948420017958, -0.016686677932739258, -0.02981209196150303, -0.006515493616461754, 0.0011719120666384697, 0.028840838000178337, 0.029407404363155365, 0.01249814685434103, 0.02159690484404564, 0.015148859471082687, -0.012255333364009857, 0.012140670791268349, 0.012761194258928299, -0.009746260941028595, 0.0009409020422026515, 0.014150626957416534, 0.030945220962166786, -0.04872456192970276, 0.017280222848057747, -0.005183392204344273, 0.0009164520306512713, 0.011344783008098602, -0.0004995380295440555, 0.002883409382775426, 0.023876653984189034, -0.021839719265699387, 0.014676722697913647, -0.011311058886349201, 0.007567685097455978, -0.03313054144382477, -0.003925483673810959, -0.03447950631380081, 0.007945395074784756, -0.0024399375542998314, -0.023849673569202423, 0.014447398483753204, 0.001357394503429532, -0.0010302708251401782, 0.0014720563776791096, 0.01083217654377222, 0.011695513501763344, -0.005183392204344273, 0.0030183056369423866, 0.020517734810709953, 0.009098758921027184, 0.009591130539774895, -0.004080614540725946, 0.010380273684859276, -0.014379950240254402, 0.011641554534435272, -0.021731801331043243, 0.01187762338668108, 0.03188949450850487, 0.027505364269018173, 0.00971928145736456, -0.0022072414867579937, -0.0017907490255311131, -0.028786880895495415, 0.01037352904677391, -0.011068245396018028, 0.001591776846908033, 0.030594490468502045, 0.0004986949497833848, 0.01922272890806198, 0.008721048943698406, 0.009928370825946331, -0.016497822478413582, 0.004836034029722214, -0.019290177151560783, 0.0016297164838761091, 0.017145326361060143, 0.01980278454720974, -0.006050101015716791, 0.022055553272366524, 0.010380273684859276, -0.02529306523501873, -0.019303666427731514, 0.01371221337467432, 0.004977675154805183, 0.007533960975706577, -0.00025672459742054343, 0.019303666427731514, 0.010016053915023804, -0.004637062083929777, 0.006512121297419071, 0.008721048943698406, 0.06313148885965347, -0.0005408500437624753, -0.007149506360292435, 0.006727955304086208, -0.01537818368524313, -0.012295802123844624, -0.11838503181934357, -0.011628065258264542, -0.025414472445845604, 0.00929435808211565, 0.023822695016860962, 0.019681377336382866, -0.005628549959510565, 0.027842605486512184, -0.02711416594684124, 0.04122432321310043, 0.00617488007992506, -0.011823664419353008, -0.006859479006379843, -0.0054363226518034935, 0.04659319669008255, -0.023593371734023094, -0.008410787209868431, 0.004606710281223059, -0.004293076228350401, 0.025131190195679665, -0.0013160824310034513, -0.018143558874726295, 0.0067009758204221725, -0.019964659586548805, -0.030351677909493446, -0.013644765131175518, -0.010919859632849693, 0.005247467663139105, -0.0056319222785532475, 0.0155535489320755, 0.03693461790680885, 0.003311705309897661, 0.01616058312356472, -0.013206352479755878, -0.023566391319036484, 0.005072102416306734, -0.01924970932304859, 0.0006588843534700572, 0.0008742969366721809, -0.026129422709345818, 0.01800866238772869, 0.005921949632465839, -0.015202818438410759, -0.017226263880729675, 0.002208927646279335, 0.0002455534995533526, -0.01171574741601944, 0.007635133340954781, -0.013739192858338356, -0.013975261710584164, -0.03439856693148613, -0.00769583648070693, -0.02437577024102211, -0.00213810708373785, 0.0155535489320755, 0.011520148254930973, 0.00531828822568059, -0.003224022686481476, -0.03836452215909958, -0.013631275855004787, -0.03108011744916439, -0.0004679216945078224, -0.05671042576432228, 0.00823542196303606, 0.0004742449673358351, 0.00901107583194971, -0.005304798949509859, -0.014096667990088463, 0.00036422014818526804, -0.0038512907922267914, -0.008572663180530071, 0.024915354326367378, -0.01065681129693985, 0.01357057224959135, -0.02803146094083786, 0.007412554230540991, -0.016902511939406395, -0.019870230928063393, 0.03267189487814903, -0.013132159598171711, -0.028166357427835464, -0.03561263531446457, -0.006330010946840048, -0.010258867405354977, 0.013988750986754894, 0.028193335980176926, 0.0037029047962278128, -0.015283755958080292, 0.028705943375825882, 0.005756701808422804, -0.0063333832658827305, 0.03161970525979996, 0.011655044741928577, -0.027950523421168327, -0.016295477747917175, 0.002864861162379384, -0.00346009130589664, -0.02623733878135681, -0.0035781254991889, -0.0010977190686389804, -0.018656164407730103, -0.0056386673822999, -0.05020841956138611, 0.01860220544040203, 2.343560481676832e-05, 0.01826496608555317, 0.0007663798751309514, 0.0013287289766594768, 0.016848552972078323, 0.0034971877466887236, -0.0015816596569493413, -7.706480573688168e-06, -0.017873765900731087, -0.002465230645611882, -0.03191647678613663, 0.004127828404307365, -0.009570895694196224, -0.018130069598555565, 0.011088479310274124, 0.014892556704580784, 0.00030414911452680826, 0.019047364592552185, 0.006630155257880688, -0.0009957036236301064, -0.006879713851958513, 0.007142761722207069, -0.0315927229821682, -0.0019307039910927415, -0.025670774281024933, -0.002197124296799302, 0.004434717353433371, -0.015175838954746723, 0.006036611273884773, -0.012740960344672203, -0.011223375797271729, 0.024186914786696434, -0.008107270114123821, -0.02166435308754444, 0.004714627284556627, 0.018656164407730103, 0.016308968886733055, -0.025198636576533318, -0.03175460174679756, -0.028786880895495415, 0.005733094643801451, -0.03572055324912071, 0.0009931743843480945, -0.02192065678536892, -0.008329849690198898, -0.004380758851766586, 0.00701460987329483, -0.0012140671024098992, 0.02621036022901535, -0.006191742140799761, -0.01235650572925806, -0.010164439678192139, -0.007628388237208128, -0.025954056531190872, 0.005935439374297857, -0.020544713363051414, -0.007567685097455978, 0.004026656039059162, 0.028544066473841667, 0.016281988471746445, -0.0024095859844237566, -0.03744722530245781, 0.015917768701910973, -0.014649743214249611, -0.03267189487814903, 0.014838597737252712, -0.0070820581167936325, -0.013246821239590645, -0.014609274454414845, -0.013948282226920128, 0.021178726106882095, 0.006825755350291729, 0.004475186113268137, -0.01707787811756134, 0.005142922978848219, 0.015445631928741932, -0.01051517017185688, 0.00032585900044068694, 0.01977580413222313, 0.001187087851576507, 0.0035410290583968163, 0.023229150101542473, -0.0007836634758859873, 0.008174718357622623, -0.010191419161856174, -0.010204908438026905, -0.008181462995707989, 0.013482890091836452, 0.009206675924360752, 0.008006097748875618, -0.004468441475182772, 0.009496702812612057, 0.005443067755550146, 0.01610662415623665, 0.017455587163567543, 0.0032155916560441256, -0.022783992812037468, 0.019978148862719536, 0.005766818765550852, -0.0016423630295321345, -0.01984325237572193, -0.014069688506424427, -0.024470197036862373, 0.00820169784128666, -0.02310774475336075, -0.04181786626577377, -0.005142922978848219, 0.02770770899951458, -0.002274689730256796, 0.036071281880140305, 0.006758307106792927, 0.013907813467085361, -0.01173598226159811, 0.007702581584453583, -0.011904602870345116, 0.01052865944802761, -0.006265935488045216, 0.016835063695907593, 0.012066477909684181, 0.01767142117023468, 0.011830409988760948, -0.006640272680670023, 0.034587424248456955, -0.0014669977826997638, 0.015486100688576698, -0.01647084392607212, -0.001920586684718728, -0.0017991800559684634, 0.012929814867675304, 0.00945623405277729, 0.00897735171020031, -0.0026001271326094866, -0.006734699942171574, -0.029704175889492035, -0.009024565108120441, 0.04257328808307648, 0.02592707797884941, 0.06350920349359512, 0.01448786724358797, -0.0048292893916368484, -0.00601637689396739, 0.004650551360100508, 0.019020384177565575, -0.013799896463751793, 0.0031886124052107334, -0.02283795177936554, -0.02046377584338188, 0.013132159598171711, -0.005827522370964289, -0.00616139080375433, -0.011236866004765034, -0.035801488906145096, 0.011223375797271729, 0.014042709954082966, 0.011209886521100998, 0.002504013478755951, 0.005223860964179039, 0.01235650572925806, -0.029946988448500633, 0.006785286124795675, 0.006353618111461401, -0.01924970932304859, -0.009105503559112549, 0.017037408426404, 0.011311058886349201, -0.025711243972182274, -0.030567511916160583, -0.016241520643234253, 0.00959787517786026, -0.01768491044640541, -0.012396974489092827, 0.008404042571783066, -0.00808029156178236, -0.005284564569592476, -0.011803430505096912, 0.0038007046096026897, -0.0063704801723361015, -0.016875533387064934, 0.02132711187005043, -0.004485303536057472, -0.013779661618173122, 0.013894323259592056, 0.0008970607304945588, 0.0037973320577293634, 0.006663879379630089, -0.022069042548537254]" +33,"Microsoft Cloud gross margin percentage increased roughly two points year over year to 73%. Excluding the impact of the change in accounting estimate for useful lives, Microsoft cloud gross margin percentage decreased roughly one point driven by sales mix shift to Azure and lower Azure margin, primarily due to higher energy costs. Company gross margin dollars increased 9% and 16% in constant currency, and gross margin percentage decreased slightly year over year to 69%, excluding the impact of the latest change in accounting estimate, gross margin percentage decreased roughly three points, driven by sales mix shift to cloud, the lower Azure margin noted earlier and Nuance. Operating expense increased 15% and 18% in constant currency, driven by investments in cloud engineering, LinkedIn, Nuance, and commercial sales.","[0.0037902547046542168, -0.025727001950144768, 0.02287133038043976, -0.020508911460638046, 0.004608015064150095, -0.005919027607887983, -0.016848459839820862, -0.03063356503844261, -0.020846400409936905, -0.0365266315639019, 0.03971979022026062, 0.05384238436818123, 0.0038291956298053265, 0.017471516504883766, -0.0007690842030569911, 0.023027094081044197, 0.022235294803977013, 0.0010416710283607244, -0.0004246999742463231, -0.02990666590631008, -0.03146430477499962, 0.012837540358304977, -0.03507283702492714, -0.00042551124352030456, -0.0034689914900809526, 0.001082234550267458, 0.02255980297923088, -0.0021076800767332315, 0.015329762361943722, -0.009371793828904629, 0.005033120512962341, -0.014018749818205833, -0.024013599380850792, 0.02323477901518345, -0.013811064884066582, 0.010578963905572891, -0.00160874892026186, 0.015342743135988712, 0.01774410344660282, -0.010968374088406563, 0.02632409706711769, 0.017614299431443214, 0.00019227105076424778, 0.024415988475084305, -0.007723292801529169, 0.017938807606697083, 0.003978469409048557, 0.013097146525979042, -0.013356753624975681, 0.004585299640893936, -0.004585299640893936, 0.049844443798065186, -0.01893829181790352, -0.0216252189129591, -0.01592685841023922, 0.003004944883286953, -0.007775214035063982, 0.01412259228527546, -0.002411095192655921, 0.0011236092541366816, -0.009852065704762936, 0.01862676441669464, -0.016926342621445656, -0.010708766989409924, -0.03743525594472885, -0.009358813986182213, -0.012214484624564648, -0.0012777505908161402, 0.013038735836744308, -0.01101380493491888, 0.03180179372429848, 0.02808942086994648, 0.015135057270526886, 0.003608530154451728, 0.015823014080524445, -0.00028617557836696506, -0.000786120886914432, -0.018860410898923874, 0.00671731773763895, -0.002265066606923938, 0.00868383701890707, -0.003825950436294079, 0.006444730795919895, -0.01934068277478218, 0.0028232205659151077, 0.00764541095122695, -0.013045225292444229, -0.003621510462835431, -0.016017720103263855, 0.007788194343447685, 0.027284640818834305, 0.004130987916141748, 0.007599979639053345, 0.018899351358413696, 0.008002369664609432, 0.01548552606254816, -0.01645905151963234, 0.018678685650229454, 0.008320387452840805, -0.041770681738853455, -0.019911816343665123, -0.012493561953306198, -0.048598334193229675, -0.00630519213154912, -0.04987040534615517, 0.0017620789585635066, 0.03128258138895035, -0.010189554654061794, 0.028712475672364235, -0.00324508105404675, 0.012960853055119514, -0.008975894190371037, 0.01334377285093069, -0.005331668071448803, 0.004449006170034409, 0.0020233080722391605, -0.002709642518311739, 0.018535902723670006, -0.012954363599419594, 0.004309467505663633, 0.0046339756809175014, 0.01774410344660282, 0.015186979435384274, -0.005247295834124088, 0.004913052543997765, 0.007243020925670862, -0.00031112213036976755, -0.01791284792125225, 0.009813125245273113, -0.006003399845212698, 0.018393119797110558, -0.0027745442930608988, 0.012461110949516296, 0.013577418401837349, -0.005464716348797083, 0.039667870849370956, -0.0055490885861217976, 0.011922427453100681, -0.02650582231581211, -0.014395179226994514, -0.006409035064280033, 0.021612240001559258, 0.01253250241279602, 0.011909447610378265, 0.006538838148117065, 0.024091482162475586, 0.028400948271155357, 0.00679519958794117, 0.030322037637233734, 0.0015681853983551264, 0.011883486993610859, -0.03385268524289131, 0.020807459950447083, 0.01412259228527546, 0.02881632000207901, -0.020976204425096512, 0.012058720923960209, 0.023883795365691185, -0.020534873008728027, -0.00047824380453675985, -0.01592685841023922, 0.031074896454811096, -0.001457852660678327, 0.014927372336387634, -0.0032256105914711952, 0.011117647401988506, 0.014615844935178757, -0.006603739690035582, -0.015070156194269657, -0.019587308168411255, 0.00804780051112175, -0.00815164390951395, -0.012285877019166946, 0.01521294005215168, 0.007132688071578741, 0.0365266315639019, 0.016562893986701965, -0.013330793008208275, -0.02628515660762787, -0.023377563804388046, 0.007035335525870323, -0.0022731791250407696, 0.011649840511381626, -0.019197899848222733, 0.0032515712082386017, -0.008184093981981277, 0.03076336719095707, -0.005623725242912769, -0.0019941022619605064, -0.003201272338628769, -0.0020411559380590916, 0.011922427453100681, -0.021534357219934464, -0.014706706628203392, -0.6409164667129517, -0.005370608996599913, -0.006632945500314236, 0.011156588792800903, 0.024195324629545212, 0.0010051638819277287, 0.028167303651571274, -0.007905017584562302, -0.039122696965932846, 0.02775193192064762, 0.006925002671778202, 0.015005254186689854, -0.0016233517089858651, -0.007535078097134829, 0.019236840307712555, -0.01950942724943161, 0.008456680923700333, 0.01126043125987053, -0.02204059064388275, -0.010332337580621243, -0.012629855424165726, 0.007048315834254026, 0.009709282778203487, -0.012824560515582561, -0.010306376963853836, 0.00613320292904973, 0.010416709817945957, 0.0033846194855868816, -0.007223550230264664, 0.009190069511532784, -0.013045225292444229, 0.00984557531774044, 0.0175623781979084, 0.008099721744656563, 0.04522344842553139, -0.019444525241851807, -0.0236501507461071, 0.008476151153445244, 0.003806479973718524, 0.005205109715461731, -0.03328154981136322, -0.006697847042232752, -0.006551818456500769, -0.007470176555216312, -0.01253250241279602, 0.009254970587790012, 0.012766148895025253, -0.00887205172330141, 0.024091482162475586, -0.0006976923905313015, -0.00497470935806632, -0.001131722005084157, 0.007145668379962444, -0.011046255938708782, 0.006632945500314236, 0.0001209806723636575, 0.010325848124921322, -0.021196868270635605, 0.0008469661115668714, -0.018393119797110558, -0.011941897682845592, -0.01591387763619423, -0.01752343773841858, -0.02310497686266899, -0.026791388168931007, 0.01643308997154236, -0.004539868328720331, 0.0012866746401414275, 0.014434120617806911, 0.009229009971022606, -0.004945503547787666, 0.003301869845017791, 0.001379159395582974, -0.011915937066078186, 0.011117647401988506, 0.02037910930812359, 0.016575872898101807, -0.02185886539518833, -0.013733183033764362, 0.009676831774413586, 0.01316853892058134, -0.022754507139325142, 0.008378799073398113, -0.011234470643103123, -0.012837540358304977, 0.0015779206296429038, 0.0027128877118229866, -0.017043165862560272, -0.006704337429255247, -0.016783559694886208, 0.012195014394819736, 0.025337591767311096, -0.015018234960734844, -0.027803853154182434, 0.012519522570073605, 0.014291336759924889, -0.03294406086206436, -0.01233779825270176, 0.007015865296125412, -0.015887916088104248, -0.01571917161345482, -0.008852580562233925, 0.040524572134017944, 0.02236509881913662, 0.04096590355038643, 0.025727001950144768, 0.0015454698586836457, 0.004348408430814743, 0.04722241684794426, -0.029387453570961952, 0.003397599793970585, -0.013051715679466724, 0.006808179896324873, 3.212123192497529e-05, -0.007281961850821972, -0.026427939534187317, 0.022235294803977013, -0.011292882263660431, -0.027829814702272415, -0.007846605964004993, -0.017250850796699524, 0.0068341405130922794, 0.027154836803674698, -0.019963737577199936, -0.01751045696437359, 0.013888946734368801, 0.01028041634708643, -0.008054290898144245, 0.009566498920321465, -0.023883795365691185, 0.0036636963486671448, -0.004449006170034409, 0.032632533460855484, -0.00047662126598879695, 0.03525456041097641, 0.01626434549689293, 0.0071651386097073555, -0.01789986714720726, -0.003774029202759266, -0.041770681738853455, -0.021923767402768135, -0.005685382056981325, -0.0037934996653348207, -0.0035501185338944197, -0.022144433110952377, -0.010754198767244816, -0.033229630440473557, 0.008443701080977917, -0.01135778333991766, -0.0013239930849522352, 0.0002326317480765283, -0.013090657070279121, 0.0019502936629578471, 0.0022520862985402346, 0.004939013160765171, 0.008930463343858719, -0.006473936606198549, -0.035332441329956055, -0.022598743438720703, -0.026739466935396194, 0.010806120000779629, 0.024961162358522415, 0.014992274343967438, 0.00541279511526227, -0.025454415008425713, -0.02109302580356598, -0.043769653886556625, 0.030503761023283005, -0.0027453384827822447, -0.009378284215927124, 0.008521582931280136, -0.01181209459900856, 0.021521376445889473, -0.005000669974833727, -0.0001477525947848335, -0.00821654498577118, -0.011773154139518738, -0.01235726848244667, 0.012558463029563427, -0.04132935032248497, 0.02881632000207901, 0.03003646992146969, -0.0013377846917137504, -0.0025636139325797558, 0.023182857781648636, -0.0030893171206116676, 0.036786239594221115, 0.018574843183159828, -0.01930174231529236, 0.0033911096397787333, -0.0019275781232863665, 0.0152908219024539, -0.010520552285015583, -0.002810240024700761, -0.002229370642453432, -0.009598949924111366, -0.01209117192775011, -0.009332853369414806, -0.00724951084703207, -0.018120532855391502, 0.004903317429125309, 0.03346327692270279, -0.0003399222332518548, 0.01774410344660282, 0.006866591516882181, -0.015797054395079613, 0.0007122952956706285, -0.021430514752864838, 0.007126197684556246, 0.026012569665908813, 0.02022334560751915, -0.019626250490546227, -0.008197074756026268, -0.027336562052369118, -0.009592459537088871, 0.0016679716063663363, 0.02489626221358776, -0.002506825141608715, -0.0039005873259156942, 0.014641805551946163, 0.015654271468520164, -0.007405275013297796, 0.013012775219976902, -0.009131657890975475, -0.008210054598748684, 0.0020606264006346464, -0.013084166683256626, 0.02324775978922844, 0.01988585665822029, -0.021183889359235764, -0.005854126065969467, 0.024467911571264267, 0.015693211928009987, -0.008560523390769958, 0.008281446993350983, 0.012986813671886921, 0.004659936297684908, -0.02379293367266655, 0.03574781119823456, -0.0012972211698070168, 0.01458988431841135, 0.008333368226885796, 0.013220460154116154, -0.028738437220454216, 0.010170083492994308, -0.0023267229553312063, 0.03291810303926468, -0.003689657198265195, -0.008391779847443104, -0.0030925620812922716, -0.018341198563575745, 0.0029757393058389425, 0.0024841094855219126, -0.025649121031165123, 0.0075805094093084335, -0.013019264675676823, 0.005205109715461731, 0.007333883084356785, 0.01412259228527546, 0.022274235263466835, 5.5977645388338715e-05, 0.009086227044463158, 0.02899804338812828, -0.008807149715721607, 0.011390234343707561, -0.004173174034804106, -0.01627732627093792, -0.0036150203086435795, -0.00613320292904973, 0.0003597983450163156, -0.010351808741688728, -0.009585969150066376, 0.019262799993157387, 0.010234985500574112, -0.015096116811037064, 0.006246780976653099, 0.007879056967794895, -0.02145647630095482, -0.017601318657398224, 0.04135531187057495, -0.01001431979238987, -0.03592953830957413, 0.009345833212137222, 0.02184588462114334, 0.01073472760617733, 0.017679201439023018, -0.0077557433396577835, -0.010137633420526981, 0.012772638350725174, 0.022832389920949936, -0.0250520259141922, 0.01510909665375948, -0.013642320409417152, -0.0025798394344747066, -0.0008461548713967204, 0.008573504164814949, 0.01002730056643486, -0.028686515986919403, -0.013123107142746449, -0.013901926577091217, 0.015654271468520164, 0.0005788413109257817, -0.026947151869535446, 0.02575296349823475, 0.027440404519438744, -0.006415524985641241, -0.039434224367141724, -0.010708766989409924, 0.0010222005657851696, -0.023546308279037476, 0.00921603012830019, -0.02666158601641655, -0.017951788380742073, 0.025129906833171844, 0.01738065294921398, 0.0069509632885456085, 0.0008794169407337904, -0.030919130891561508, 0.00452364282682538, 0.02237807773053646, -0.008145153522491455, -0.013188009150326252, -0.03707180544734001, -0.006629700306802988, 0.05669805407524109, 0.031594108790159225, -0.017640260979533195, 0.022767487913370132, 0.019405584782361984, 0.004792984575033188, -0.005036365706473589, -0.01736767403781414, 0.0013572551542893052, -0.002969249151647091, -0.01046863105148077, -0.001083045732229948, 0.00482543557882309, -0.019288761541247368, 0.023143917322158813, -0.0011073838686570525, 0.0180556308478117, -0.01697826385498047, -0.01253250241279602, 0.019418565556406975, 0.014875451102852821, 0.02001565881073475, 0.02130071073770523, 0.02847883105278015, 0.01717296801507473, 0.02506500482559204, 0.008274956606328487, 0.016017720103263855, -0.00643499568104744, -0.016757598146796227, -0.008430720306932926, 0.004939013160765171, -0.004208870232105255, 0.02936149202287197, -0.016588853672146797, 0.024597713723778725, -0.010689296759665012, -0.008722777478396893, 0.008794169872999191, 0.015628309920430183, 0.010403729975223541, -0.009397754445672035, 0.009774183854460716, -0.013188009150326252, 0.0007455573650076985, -0.0361112616956234, -0.005558823700994253, 0.032476771622896194, -0.005792469717562199, -0.0036636963486671448, 0.007736273109912872, -0.005221335217356682, -0.02435108833014965, 0.0020427785348147154, -0.01858782395720482, 0.01823735423386097, -0.015563408844172955, -0.006344133522361517, 0.0015381684061139822, -0.032840218394994736, -0.04164087772369385, -0.014992274343967438, 0.005049346014857292, -0.018886370584368706, -0.028530752286314964, -0.005484187044203281, -0.008080251514911652, 0.008541053161025047, -0.06178634241223335, 0.01048161182552576, 0.007982899434864521, -0.02076851762831211, -0.03226908668875694, 0.0033197179436683655, 0.020106522366404533, 0.009248481132090092, 0.007015865296125412, 0.007366333622485399, -0.0051791490986943245, 0.024260224774479866, -0.006201349664479494, 0.000402187230065465, -0.01466776616871357, -0.030140312388539314, -0.007385804317891598, -0.005360873881727457, -0.0046339756809175014, 0.01305820606648922, -0.028686515986919403, 0.0002969249035231769, -0.01935366354882717, -0.01396682858467102, 0.00039265479426831007, 0.005347893573343754, 0.0263111162930727, 0.009780674241483212, 0.0014805682003498077, 0.00796991866081953, 0.012318327091634274, -0.003942773211747408, 0.00885907094925642, -0.02002863958477974, -0.02681734971702099, -0.019639229401946068, 0.0017977749230340123, 0.013940867967903614, 0.009683321230113506, -0.014680746011435986, 0.007807665038853884, -0.0004115168412681669, 0.02165118046104908, -0.004955238662660122, -0.014200474135577679, -0.01573215238749981, -0.014550942927598953, -0.010475121438503265, 0.037149686366319656, 0.00022898102179169655, 0.010267436504364014, 0.005062326323240995, 0.02577892318367958, -0.03979767486453056, 0.024805398657917976, 0.007716802414506674, -0.004994179587811232, -0.0006810613558627665, -0.00957298930734396, -0.008346348069608212, -0.05425775423645973, 0.010384258814156055, 0.00465669110417366, 0.0077946847304701805, 0.010442670434713364, -0.016965283080935478, -0.004445760976523161, -0.0411476269364357, 0.009942928329110146, 0.004199134651571512, -0.027258681133389473, -0.008391779847443104, -0.028530752286314964, 0.015277841128408909, 0.01413557305932045, -0.011682291515171528, 0.019366642460227013, -0.022832389920949936, -0.004302977584302425, -0.011682291515171528, 0.012149583548307419, 0.026453901082277298, 0.011818584986031055, -0.002054136246442795, -0.02969898097217083, 0.000623866799287498, -0.02577892318367958, 0.012117132544517517, 0.037824664264917374, -0.03637086600065231, 0.03112681768834591, 0.010611414909362793, 0.04462635517120361, -0.013032245449721813, 0.015667250379920006, 0.025545276701450348, -0.02558421902358532, -0.012675286270678043, 0.0018853920046240091, -0.0008246562210842967, -0.025000104680657387, 0.012233955785632133, -0.022507881745696068, 0.011766663752496243, -0.003259683959186077, -0.0015195091255009174, 0.0002902319247368723, 0.00993643794208765, -0.003277531825006008, 0.0028232205659151077, -0.055192336440086365, -0.03304790332913399, -0.00016803435573820025, 0.0003380968701094389, -0.009222520515322685, 0.021209849044680595, -0.03097105212509632, -0.02684330940246582, 0.016588853672146797, 0.013473575934767723, 0.043587926775217056, -0.01359039917588234, 0.021002164110541344, -0.005295972339808941, -0.0005881709512323141, -0.00869032647460699, 0.013136087916791439, -0.023130936548113823, 0.013291851617395878, -0.02111898735165596, -0.011403214186429977, -0.01296734344214201, -0.02361120842397213, 0.0347093865275383, 0.002016817918047309, 0.009637890383601189, -0.009066755883395672, 0.023689091205596924, -0.026544762775301933, -0.033904604613780975, 0.016952302306890488, -0.03525456041097641, -0.00026792200515046716, -0.02915380708873272, -0.004221850540488958, 0.005623725242912769, -0.008923972956836224, 0.0241434033960104, 0.011150098405778408, 0.017653239890933037, -0.020703617483377457, -0.002542520873248577, 0.014888431876897812, 0.00652910303324461, 0.03925250098109245, -0.01984691619873047, 0.019275780767202377, 0.01590089686214924, -0.016913361847400665, -0.021183889359235764, -0.015641290694475174, 0.0120003093034029, -0.019730092957615852, 0.0319056361913681, 0.038759246468544006, -0.002672324189916253, 0.01475862879306078, -0.024831360206007957, -0.01827629655599594, 0.016030700877308846, -0.00190161750651896, -0.004312712699174881, 0.01878252811729908, 0.008346348069608212, -0.023481406271457672, -0.04301679506897926, -0.011065726168453693, 0.04239373654127121, -0.002643118379637599, -0.002427320694550872, 0.011403214186429977, -0.03416421264410019, -0.011176059022545815, 0.016212424263358116, 0.02377995289862156, -0.0009946173522621393, -0.010254455730319023, 0.010715257376432419, -9.958341979654506e-05, -0.0005622102762572467, -0.005500412080436945, -0.013259400613605976, -0.031048934906721115, 0.012882971204817295, -0.03707180544734001, 0.03455362096428871, 0.0036020400002598763, 0.005367363803088665, -0.000467697303975001, -0.0006039906875230372, -0.013291851617395878, 0.017484497278928757, -0.00913814827799797, -0.0030714692547917366, 0.035150717943906784, 0.009099206887185574, 0.03538436442613602, -0.008541053161025047, -0.012545483186841011, -0.022598743438720703, -0.010137633420526981, -0.010403729975223541, 0.014330277219414711, 0.0027323581743985415, -0.039979398250579834, 0.018354177474975586, 0.006847120821475983, -0.0047507984563708305, 0.01682250015437603, 0.010163594037294388, 0.009443185292184353, -0.016783559694886208, -0.01181209459900856, 0.023585248738527298, -0.019457506015896797, 0.017614299431443214, -0.000836419640108943, -0.0019438035087659955, -0.024221284314990044, 0.020275266841053963, -0.008826619945466518, 0.01878252811729908, 0.022300196811556816, -0.009865046478807926, -0.026739466935396194, 0.0204310305416584, -0.008248995989561081, -0.023572267964482307, 0.026791388168931007, -0.022442979738116264, -0.030010508373379707, -0.000467697303975001, 0.0074182553216814995, -0.011954878456890583, 0.008398269303143024, -7.894673763075843e-05, -0.012571443803608418, 0.013772123493254185, -0.01451200246810913, -0.017263831570744514, -0.00751560740172863, 0.023351602256298065, 0.012162563391029835, -0.008164623752236366, 0.0019681416451931, -0.00764541095122695, 0.00851509254425764, -0.018120532855391502, -0.0008932085474953055, 0.006892552133649588, -0.01090347208082676, -0.02754424698650837, -0.0032061401288956404, 0.028712475672364235, -0.018756568431854248, 0.009222520515322685, -0.008722777478396893, 0.0015073401154950261, -0.01349953655153513, -0.0025360307190567255, 0.010254455730319023, 0.0015073401154950261, 0.007437725551426411, -0.01198083907365799, 0.022845370694994926, 0.011072216555476189, -0.02307901531457901, -0.03411228954792023, -0.01930174231529236, -0.020690636709332466, -0.02668754570186138, -0.010974863544106483, 0.0013978186761960387, 0.004689142107963562, -0.0036020400002598763, -0.028946122154593468, -0.029750902205705643, -0.006509632337838411, -0.03278829902410507, -0.023715052753686905, -0.016342228278517723, 0.018224375322461128, 0.023935716599225998, 0.016575872898101807, -0.00658426946029067, 0.02076851762831211, 0.001606315141543746, 0.0221833735704422, -0.03740929439663887, 0.022222314029932022, 0.011078706942498684, -0.021443495526909828, -0.0040725767612457275, -0.014641805551946163, -0.009735243394970894, -0.002514937659725547, 0.0019064850639551878, -0.008287936449050903, 0.006126713007688522, 0.010832080617547035, 0.011312352493405342, -0.03021819330751896, -0.011753682978451252, 0.003524157917127013, -0.007651900872588158, 0.0016777068376541138, 0.020846400409936905, -0.03917461633682251, -0.009170599281787872, 0.023728031665086746, 0.011325332336127758, -0.02380591444671154, 0.02072957716882229, 0.02001565881073475, -0.009611929766833782, 0.0015049063367769122, -0.01260389480739832, 0.0011365895625203848, -0.010935923084616661, -0.007567528635263443, 0.028504790738224983, 0.01879550889134407, 0.01334377285093069, 0.031048934906721115, 0.032139282673597336, -0.033930566161870956, -0.00473457295447588, 0.023182857781648636, -0.02005460113286972, -0.010306376963853836, 0.020625734701752663, -0.0120003093034029, 0.00760647002607584, 0.0005885765422135592, 0.011610900051891804, -0.002657721284776926, -0.00849562231451273, -0.018185433000326157, 0.015161018818616867, -0.0022877820301800966, -0.009332853369414806, -0.003129880642518401, -0.029075926169753075, 0.026713507249951363, -0.012272896245121956, -0.007197589613497257, 0.017627280205488205, -0.0012866746401414275, -0.0004871677956543863, -0.03278829902410507, -0.050727106630802155, 0.008852580562233925, 0.001328860642388463, -0.03979767486453056, 0.015589369460940361, 0.00452364282682538, -0.010695787146687508, 0.020080560818314552, 0.19304338097572327, 0.027440404519438744, 0.012564953416585922, 0.02413042262196541, 0.0170042235404253, 0.003165576606988907, 0.006538838148117065, 0.00885907094925642, -0.0016614814521744847, 0.019094057381153107, 0.0009637890616431832, 0.02842690981924534, -0.012305347248911858, -0.0008761718636378646, 0.020288245752453804, -0.005970948841422796, -0.040005359798669815, -6.145372026367113e-05, -0.01825033500790596, 0.04405521973967552, 0.006496652029454708, 0.002933553187176585, 0.0028848769143223763, -0.016679715365171432, 0.009683321230113506, -0.014966313727200031, -0.014966313727200031, 0.01020253449678421, 0.016679715365171432, 0.019029155373573303, 0.0015633177245035768, 0.03452766314148903, -0.007431235630065203, -0.0005293538561090827, -0.0061461832374334335, -0.016705676913261414, -0.013655301183462143, 0.008554033935070038, -0.007853096351027489, 0.015381683595478535, 0.026609664782881737, 0.0031704441644251347, 0.01643308997154236, 0.0006364415166899562, 0.010617905296385288, 0.020002679899334908, -0.006392809562385082, 0.012863500975072384, 0.008547543548047543, 0.0008737380849197507, -0.0125260129570961, 0.03143834322690964, 0.025298651307821274, 0.014330277219414711, -0.004994179587811232, 0.019392604008316994, 0.01207819115370512, -0.004046616144478321, -0.0075869993306696415, -0.008969403803348541, -0.01296734344214201, 0.007840115576982498, -0.017250850796699524, 0.004277016967535019, -0.013473575934767723, -0.026181314140558243, -0.015161018818616867, 0.0005828976863995194, -0.02629813551902771, -0.0013978186761960387, -0.006207840051501989, 0.007230040617287159, -0.011065726168453693, 0.017834965139627457, -0.009086227044463158, -0.012298856861889362, 0.04309467598795891, 0.012389719486236572, 0.02523374930024147, 0.014070671051740646, 0.010514062829315662, 0.007074276451021433, -0.0047605340369045734, -0.036215104162693024, -0.019197899848222733, -0.025960648432374, 0.008573504164814949, 0.008171114139258862, 0.016381168738007545, 0.003994694910943508, 3.103108610957861e-05, 0.004387349355965853, -0.009177088737487793, -0.02005460113286972, 0.010754198767244816, 0.023572267964482307, 0.006749768275767565, 0.013538477942347527, -0.03185371682047844, 0.003280776785686612, -0.027050994336605072, 0.05241454765200615, 0.020132482051849365, -0.0007597545627504587, 0.004650201182812452, -0.016329247504472733, -0.008411250077188015, 0.02254682220518589, -0.01827629655599594, -0.002806995064020157, -0.008261975832283497, -0.0035955498460680246, 0.027596168220043182, -0.0012063588947057724, -0.00035229409695602953, 0.004283506888896227, 0.0001681357534835115, -0.010234985500574112, 0.010436180047690868, -0.0072040800005197525, 0.00868383701890707, -0.010676316916942596, 0.008203565143048763, 0.016420109197497368, -0.012681776657700539, 0.0016955548198893666, 0.002049268689006567, -0.007197589613497257, -0.002854048740118742, -0.04595034569501877, 0.012785619124770164, -0.032321006059646606, 0.005078551825135946, -0.022313177585601807, -0.00147651182487607, 0.018730606883764267, 0.021962707862257957, -0.01504419557750225, -0.013577418401837349, 0.005377099383622408, -0.006298702210187912, 0.013979809358716011, -0.0021466210018843412, -0.011565468274056911, 0.01173421274870634, -0.005114247556775808, 0.023585248738527298, 0.02239105850458145, -0.011396724730730057, -0.021209849044680595, -0.03743525594472885, 0.017121046781539917, 0.00017858085629995912, 0.011792624369263649, 0.034294016659259796, -0.01451200246810913, -0.03860348463058472, -0.013317812234163284, -0.011344803497195244, 0.021677140146493912, -0.05493273213505745, -0.02004162035882473, 0.025194808840751648, -0.024273205548524857, -0.0054679615423083305, 0.002852426143363118, -0.16199444234371185, 0.018003709614276886, -0.017783043906092644, 0.0024646390229463577, 0.033748842775821686, 0.018224375322461128, -0.008359328843653202, -0.015472546219825745, -0.008339857682585716, -0.013252911157906055, 0.002493844833225012, 0.03439785912632942, -0.019548367708921432, -0.01715998910367489, -0.0019486711826175451, 0.018003709614276886, -0.022429998964071274, 0.01697826385498047, 0.027336562052369118, 0.014070671051740646, 0.03566993027925491, 0.0017150252824649215, -0.0008303350768983364, -0.009144638665020466, 0.004436025861650705, -0.005500412080436945, -0.01989883743226528, 0.027648089453577995, 0.01054651290178299, -0.008716287091374397, -0.009183579124510288, -0.009955908171832561, 0.016913361847400665, 0.006743278354406357, 0.012759658508002758, -0.001867544138804078, -0.006723807659000158, -0.011163078248500824, -0.023351602256298065, 0.009728753007948399, 0.010358298197388649, -0.0064901621080935, 0.014810550026595592, 0.0282711461186409, 0.009319872595369816, 0.02288431115448475, 0.021690120920538902, -0.012415680103003979, 0.008554033935070038, 0.015978779643774033, 0.026453901082277298, -0.053790461272001266, 0.019937777891755104, 0.00885907094925642, -0.004130987916141748, 0.016744617372751236, 0.010942413471639156, 0.019236840307712555, -0.0006546950899064541, -0.03930442035198212, 0.021144947037100792, -0.025480376556515694, -0.006808179896324873, -0.01324642077088356, -0.004289997275918722, -0.016147522255778313, -0.003965489100664854, -0.001083045732229948, -0.023689091205596924, 0.013188009150326252, 0.024961162358522415, -0.005149943754076958, -0.010351808741688728, -0.00850211177021265, -0.0013093901798129082, 0.012298856861889362, -0.008274956606328487, 0.027700010687112808, 0.01735469326376915, 0.01521294005215168, -0.0025490110274404287, -0.0006048019859008491, -0.022274235263466835, 0.009741732850670815, -0.023027094081044197, -0.005493922159075737, 0.009813125245273113, 0.004247811157256365, -0.013979809358716011, 0.0069963946007192135, -0.0016712166834622622, -0.022819409146904945, 0.0092030493542552, 0.0027810344472527504, -0.0001687442127149552, 0.007892036810517311, 0.025467395782470703, 0.0003788632166106254, -0.008534562774002552, 0.00478649465367198, -0.018509941175580025, -0.002391624730080366, -0.04148511588573456, 0.0012818069662898779, 0.022637685760855675, 0.025623159483075142, -0.008521582931280136, -0.0034040899481624365, 0.01010518241673708, -0.029309570789337158, -0.033021945506334305, 0.013019264675676823, 0.033696919679641724, 0.013194499537348747, -0.024403009563684464, 0.024649634957313538, 0.012370248325169086, -0.01751045696437359, -0.0021401308476924896, 0.0031266354490071535, 0.058982592076063156, -0.025454415008425713, -0.007074276451021433, -0.02573998272418976, -0.0075415680184960365, -0.016614815220236778, -0.11246152967214584, -0.03403440862894058, -0.016186464577913284, 0.014732667244970798, 0.001065197866410017, 0.01359039917588234, -0.022689606994390488, 0.037123724818229675, -0.018860410898923874, 0.03686412051320076, 0.0034981973003596067, 0.012941382825374603, -0.014382199384272099, 0.013486556708812714, 0.04031688719987869, -0.033696919679641724, -0.0037480685859918594, -0.0032385908998548985, -0.014031730592250824, 0.019911816343665123, 0.010059750638902187, 0.0025798394344747066, 0.020106522366404533, -0.03938230127096176, -0.02146945521235466, -0.00815164390951395, -0.03473534807562828, -0.016510972753167152, 0.008430720306932926, 0.023053055629134178, 0.04203028976917267, -0.015667250379920006, 0.01591387763619423, -0.009079736657440662, -0.019107036292552948, 0.0008279012981802225, -0.011007314547896385, -0.00011246233771089464, -0.009728753007948399, -0.02718079835176468, 0.010708766989409924, 0.010948902927339077, 0.01682250015437603, -0.027154836803674698, 0.0017993974033743143, -1.697329389571678e-05, -0.007015865296125412, -0.00295302364975214, -0.014304316602647305, -0.012052230536937714, -5.369594873627648e-05, 0.006308437325060368, -0.00851509254425764, -0.015381683595478535, -0.002708020154386759, 0.0021709592547267675, 0.017121046781539917, 0.013330793008208275, -0.02037910930812359, -0.031022973358631134, -0.026609664782881737, -0.0025636139325797558, -0.030711445957422256, 0.04148511588573456, 0.02342948503792286, 0.02324775978922844, -0.012668795883655548, -0.015991758555173874, -0.021417533978819847, -0.025804884731769562, 0.00505259120836854, 0.014849490486085415, -0.010234985500574112, 0.01503121480345726, -0.02109302580356598, 0.01091645285487175, -0.00984557531774044, -0.03990151733160019, 0.01988585665822029, -0.01387596596032381, 0.0005666722427122295, -0.02899804338812828, -0.0050980220548808575, -0.006571289151906967, 0.033021945506334305, 0.01271422766149044, -0.005798959638923407, -0.0102155152708292, 0.03380076214671135, -0.020288245752453804, 0.005938498303294182, 0.02902400493621826, 0.024818379431962967, -0.027258681133389473, 0.0014894921332597733, 0.0038129701279103756, -0.03146430477499962, -0.027855774387717247, -0.0076324306428432465, -0.009787164628505707, -0.006697847042232752, 0.014161533676087856, -0.04452251270413399, 0.014421139843761921, 0.010254455730319023, 0.023364583030343056, 0.026259195059537888, 0.009345833212137222, -0.003858401207253337, -0.011377253569662571, -0.007716802414506674, 0.022663645446300507, -0.04091398045420647, 0.019094057381153107, -0.017834965139627457, -0.008573504164814949, -0.025142887607216835, -0.02468857541680336, 0.012688267044723034, 0.003301869845017791, -0.0037967448588460684, -0.002930308226495981, 0.0027599413879215717, -0.017627280205488205, -0.008657876402139664, -0.003443030873313546, -0.014550942927598953, 0.01770516112446785, -0.02933553233742714, 0.021871846169233322, -0.0059839291498064995, -0.026363037526607513, 0.004698877222836018, -0.0013742918381467462, 0.013772123493254185, 0.04561285674571991, -0.013382714241743088, -0.03325558826327324, -0.0003243052924517542, 0.01984691619873047, 0.009696302004158497, -0.016199443489313126, -0.03507283702492714, -0.025882765650749207, 0.029283611103892326, -0.011591428890824318, 0.0042056250385940075, -0.016394149512052536, -0.012207994237542152, -0.002578216837719083, -0.001739363418892026, 0.015563408844172955, 0.0633959025144577, -0.015096116811037064, -0.005967704113572836, -0.03798042610287666, 0.01155897881835699, -0.013707222416996956, 0.017095087096095085, -0.005821675527840853, 0.0007244643056765199, 0.007612959947437048, 0.04164087772369385, 0.024454930797219276, 0.00698341429233551, -0.03125661984086037, 0.02019738405942917, 0.005036365706473589, -0.028712475672364235, 0.02252086251974106, -0.014291336759924889, -0.01715998910367489, 0.01065684575587511, -0.022780468687415123, 0.017484497278928757, 0.022287216037511826, -0.005766509100794792, -0.008274956606328487, 0.017445554956793785, -0.0074182553216814995, -0.006425260566174984, 0.029387453570961952, 0.02593468688428402, 0.005007159896194935, 0.008112702518701553, 0.016757598146796227, 0.006762748584151268, 0.015472546219825745, -0.003329453058540821, -0.017406614497303963, 0.002510070102289319, -0.0002460177056491375, 0.011494076810777187, 0.0023559287656098604, -0.0007179741514846683, 0.005766509100794792, -0.0004640465776901692, 0.01592685841023922, 0.0216252189129591, 0.009508087299764156, -0.0032580613624304533, 0.02863459475338459, 0.01251303218305111, 0.014083651825785637, -0.03164602816104889, -0.03286617994308472, -0.023870816454291344, 0.023014115169644356, -0.024610694497823715, -0.04327639937400818, 0.008982384577393532, 0.02323477901518345, 0.023338623344898224, 0.01949644647538662, 0.009962398558855057, 0.00904728565365076, -0.02024930529296398, 0.011494076810777187, -0.01521294005215168, -0.010591944679617882, -0.013888946734368801, 0.027336562052369118, 0.0074247452430427074, 0.023143917322158813, 0.024779438972473145, -0.019184919074177742, 0.032113321125507355, 0.0023802670184522867, 0.02109302580356598, -0.022988153621554375, -0.0008347971015609801, -0.0047151027247309685, 0.002200164832174778, 0.00957298930734396, 0.004939013160765171, -0.017640260979533195, -0.01882147043943405, -0.013213969767093658, -0.0035468735732138157, 0.01451200246810913, 0.010222004726529121, 0.0734686329960823, -0.000442953547462821, -0.013356753624975681, 0.01349953655153513, 0.021430514752864838, 0.03434593603014946, -0.00893695279955864, -0.0033002474810928106, 0.0034560111816972494, -0.021235810592770576, 0.0157451331615448, -0.0030325280968099833, 0.006603739690035582, -0.00044863243238069117, -0.024610694497823715, 0.012558463029563427, -0.009151128120720387, 0.017121046781539917, -0.008184093981981277, 0.006006645038723946, 0.010183064267039299, -0.015394664369523525, -0.006477181799709797, 0.0038648913614451885, -0.008664365857839584, -0.010987844318151474, 0.013259400613605976, 0.022274235263466835, -0.016017720103263855, -0.0347093865275383, 0.006181879434734583, 0.01934068277478218, -0.018458019942045212, -0.01608262211084366, 0.008274956606328487, 0.011377253569662571, 0.0026934172492474318, -0.02345544472336769, -0.009884516708552837, -0.013395694084465504, -0.027881735935807228, 0.026350056752562523, 0.007054806221276522, -0.008197074756026268, 0.013116617687046528, -0.015135057270526886, 0.0037837643176317215, 0.0038129701279103756, 0.007294942159205675]" +34,"At a total company level, headcount grew 22% year over year, as we continue to invest in key areas just mentioned, as well as customer deployment. Headcount growth included roughly six points from the Nuance and Xandr acquisitions, which closed last Q3 and Q4, respectively. Operating income increased 6% and 15% in constant currency, and operating margins decreased roughly two points year over year to 43%. Excluding the impact of the change in accounting estimate, operating margins declined roughly four points year over year driven by sales mix shift to cloud, unfavorable FX impact, Nuance, and the lower Azure margin noted earlier.","[0.0059113106690347195, -0.022045286372303963, 0.026569752022624016, -0.01289800088852644, -0.006996526382863522, 0.008321079425513744, -0.02225511707365513, -0.013953709043562412, -0.025127168744802475, -0.0072850426658988, 0.046162646263837814, 0.024248505011200905, -0.0023327218368649483, -0.01156689040362835, 0.006327692419290543, 0.010950514115393162, 0.015947096049785614, -0.013442248106002808, 0.00815059244632721, -0.024274732917547226, -0.03616948425769806, 0.007658802904188633, -0.031422074884176254, 0.00845878105610609, 0.0010802977485582232, 0.0031113887671381235, 0.01847817376255989, -0.0012729153968393803, 0.02472062222659588, -0.0238944161683321, 0.005399849731475115, -0.0007102261297404766, -0.00902925617992878, 0.01757328025996685, -0.020222386345267296, 0.0066686668433249, -0.0008077643578872085, -0.0044162701815366745, 0.016576586291193962, -0.003924480639398098, 0.028956569731235504, 0.010898057371377945, -0.0036031783092767, 0.0068391538225114346, -0.0050096963532269, 0.017665080726146698, -0.014517628587782383, 0.0015630711568519473, -0.0007573559414595366, 0.027199242264032364, 0.0038654659874737263, 0.05870000272989273, -0.022123973816633224, -0.00887188408523798, -0.003885137615725398, 0.0019720762502402067, -0.010924285277724266, 0.00966530479490757, -0.005924425087869167, -0.0047474089078605175, 0.006117862183600664, 0.01342257671058178, -0.00902925617992878, -4.446597449714318e-05, -0.040234945714473724, 0.003324497491121292, -0.007671917323023081, -0.004681836813688278, 0.005262148566544056, -0.017297878861427307, 0.022346917539834976, 0.02159939892590046, 0.0008188296342268586, 0.01881914772093296, 0.016458557918667793, -0.00888499803841114, -0.006416214630007744, -0.01509466115385294, 0.007560444995760918, 0.0014893027255311608, 0.010353810153901577, -0.0205764751881361, -0.012025894597172737, -0.0013688142644241452, 0.016655273735523224, 0.01921257935464382, -0.003367119235917926, -0.004314634017646313, -0.0202617309987545, 0.016799531877040863, 0.03168436139822006, 0.0001908758276840672, -0.0028491008561104536, 0.01786179654300213, 0.001793392701074481, -0.0007573559414595366, -0.019802726805210114, 0.011501318775117397, 0.0035441634245216846, -0.031002415344119072, -0.02670089527964592, -0.016629043966531754, -0.04639870673418045, -0.006983411964029074, -0.02474685199558735, 0.004344141110777855, 0.001459795399568975, 0.009632518514990807, 0.0323663093149662, 0.002103219972923398, 0.01021610852330923, 0.003013030858710408, 0.021245310083031654, 0.0025310770142823458, 0.0020376481115818024, -0.02125842310488224, 0.011357060633599758, 0.020510904490947723, -1.6047195458668284e-05, -0.006311299744993448, 0.026438606902956963, 0.027173012495040894, 0.00618015555664897, -0.016340527683496475, 0.019960099831223488, 0.01100952923297882, 0.017992941662669182, -0.01944863796234131, 0.004324469715356827, 0.001190950395539403, 0.007271928712725639, 0.0022901000920683146, 0.024956680834293365, 0.005862131714820862, -0.007107998710125685, 0.026989411562681198, 0.008229278959333897, 0.010937400162220001, -0.003070406150072813, -0.002629434922710061, -0.009586618281900883, 0.01068822667002678, 0.017074933275580406, 0.007252256851643324, 0.02128465287387371, 0.01944863796234131, 0.00867516826838255, -0.008773526176810265, 0.047998663038015366, -0.003083520568907261, 0.0122160529717803, -0.03176305070519447, 0.00960628967732191, 0.0013942234218120575, 0.020786305889487267, -0.020825648680329323, 0.0009983328636735678, 0.009868577122688293, -0.019855184480547905, -0.0069047254510223866, -0.02704186923801899, 0.03713994845747948, -0.004262176342308521, 0.004849045071750879, 0.015737267211079597, 0.017101163044571877, 0.027513986453413963, 0.001521269092336297, -0.014832373708486557, -0.006898168474435806, -0.006530965678393841, -0.002127809450030327, -0.0014270094688981771, 0.022320689633488655, 0.003155649872496724, 0.018609317019581795, 0.022858379408717155, 0.00014681968605145812, -0.03504164516925812, -0.004045788664370775, 0.0077309319749474525, -0.019579783082008362, 0.01254391297698021, -0.01021610852330923, 0.0007975187618285418, -0.010334137827157974, 0.016970019787549973, 0.009698090143501759, -0.007226028013974428, 0.00780961848795414, -0.012340639717876911, 0.023304268717765808, -0.015999553725123405, -0.002063876949250698, -0.6466967463493347, -0.012071794830262661, -0.017245421186089516, 0.005281819961965084, 0.018806032836437225, -0.009527603164315224, 0.01916012167930603, -0.016825759783387184, -0.030136864632368088, 0.0184257160872221, 0.0015868410700932145, 0.023081323131918907, 0.00845878105610609, -0.0066227661445736885, 0.003314661793410778, -0.026989411562681198, 0.005262148566544056, 0.007986662909388542, -0.003990052733570337, -0.012209495529532433, -0.00867516826838255, -0.002493373118340969, -0.004570364486426115, -0.0008122724248096347, 0.004147425293922424, 0.0036753073800355196, 0.011048872023820877, 0.00614409102126956, -0.01421599742025137, -0.0025851738173514605, -0.011737377382814884, -0.011435747146606445, 0.01108165830373764, 0.0012163595529273152, 0.04705442488193512, -0.0031163066159933805, -0.030766354873776436, 0.023343611508607864, -0.005508043337613344, 0.03234008327126503, -0.0340711809694767, 0.005137561820447445, 0.005298213101923466, -0.003980217035859823, -0.010596426203846931, -0.00037253060145303607, 5.058772876509465e-05, -0.008852212689816952, 0.0014507792657241225, -0.018806032836437225, -0.017874911427497864, -0.0033802336547523737, 0.019147006794810295, -0.003462198656052351, -4.100807927898131e-05, -0.011311160400509834, -0.008268621750175953, -0.027487758547067642, 0.009724318981170654, -0.02015681564807892, -0.003347447607666254, -0.001237670425325632, -0.01856997422873974, -0.027959875762462616, -0.014058624394237995, 0.020628932863473892, -0.0035638350527733564, 0.006258842069655657, 0.019710926339030266, 0.014845487661659718, -0.005140840541571379, 0.0133373336866498, 0.016078241169452667, -0.008694839663803577, 0.009527603164315224, 0.01140951830893755, 0.01786179654300213, -0.008366979658603668, 0.0036294071469455957, 0.015947096049785614, 0.004035952966660261, -0.031186016276478767, -0.008524352684617043, 0.01388813741505146, 0.019684696570038795, 0.009980049915611744, -0.012491455301642418, -0.006898168474435806, -0.0024540298618376255, -0.016143811866641045, 0.0038326801732182503, 0.025743544101715088, -0.0065899803303182125, -0.03616948425769806, 0.014478284865617752, 0.026714010164141655, -0.010714455507695675, -0.005058875307440758, 0.010052178986370564, -0.03053029626607895, -0.025809116661548615, -0.02525831200182438, 0.03207779303193092, 0.0053900135681033134, 0.025861574336886406, 0.030031949281692505, -0.005937539506703615, 5.040843097958714e-05, 0.03168436139822006, -0.019369952380657196, 0.004419548902660608, -0.010124308057129383, -0.00827517919242382, -0.0033835123758763075, -0.009370231069624424, -0.027671359479427338, 0.03438592702150345, -0.006478508003056049, -0.026858268305659294, -0.028300849720835686, 0.0021409238688647747, -0.0003206877736374736, 0.01986829936504364, -0.019199464470148087, -0.007875190116465092, 0.01725853607058525, 0.009462031535804272, 0.00477691600099206, -0.0028343473095446825, -0.023763272911310196, 0.012393097393214703, -0.021887915208935738, 0.03616948425769806, -0.000800387526396662, 0.02740907296538353, 0.004524464253336191, 0.016432328149676323, -0.009278429672122002, 0.00694406870752573, -0.03834647312760353, -0.023055095225572586, 0.002916312078014016, -0.014793029986321926, 0.01108165830373764, -0.022150201722979546, -0.020642047747969627, -0.011920979246497154, 0.024051789194345474, -0.011920979246497154, -0.006658830679953098, -0.01613069884479046, 0.00047949483268894255, -0.01241276878863573, 0.0072588142938911915, 0.01596021093428135, 0.01759951002895832, 0.0025917310267686844, -0.046897053718566895, -0.022373147308826447, -0.021074822172522545, 0.01615692675113678, 0.02740907296538353, -0.007691588718444109, -0.007986662909388542, -0.02074696309864521, -0.01342257671058178, -0.03624816983938217, 0.023081323131918907, 0.0075735594145953655, -0.009816119447350502, 0.013265203684568405, -0.013297989964485168, 0.020996136590838432, -0.017297878861427307, -0.003462198656052351, -0.005140840541571379, -0.020458446815609932, -0.0008712871931493282, 0.021507596597075462, -0.03160567581653595, 0.026582865044474602, 0.027173012495040894, -0.00845878105610609, -0.009586618281900883, 0.026858268305659294, -0.0053244419395923615, 0.02877296879887581, 0.0060457331128418446, -0.013468476943671703, 0.005580172408372164, -0.009350558742880821, 0.002747464459389448, -0.010281681083142757, -0.011134115979075432, -0.010701341554522514, -0.011101329699158669, -0.011789835058152676, -0.015776610001921654, -0.006262120790779591, -0.009901363402605057, 0.012635713443160057, 0.035303935408592224, 0.0019032256677746773, 0.03582850843667984, -0.004308076575398445, -0.011861964128911495, 0.01745525188744068, -0.01742902211844921, 0.019999442622065544, 0.0018638825276866555, 0.017927369102835655, -0.02375015802681446, 0.004672001115977764, -0.03441215679049492, -0.032812200486660004, 0.006294906605035067, 0.02037975937128067, 0.003773665288463235, -0.009475145488977432, 0.004717901349067688, 0.012504569254815578, -0.02270100638270378, 0.030110636726021767, 0.00922597199678421, -0.012904558330774307, -0.013324218802154064, -0.012799642980098724, 0.026766467839479446, 0.015750380232930183, -0.0013417658628895879, -0.0046883937902748585, 0.021074822172522545, 0.010301352478563786, -0.012648827396333218, -0.0012065237388014793, 0.00557689368724823, 0.016340527683496475, -0.031159786507487297, 0.036038339138031006, 0.001949126017279923, 0.01547497883439064, 0.005170347634702921, 0.024877995252609253, -0.02567797340452671, 0.008963684551417828, 0.005980161018669605, 0.0368514321744442, -0.003475313074886799, -0.0009475145488977432, -0.01527826301753521, 0.0009434163221158087, 0.008026005700230598, 0.016314299777150154, -0.023291153833270073, 0.011035758070647717, -0.00895712710916996, 0.008596481755375862, 0.01567169465124607, 0.028982799500226974, 0.01901586353778839, 0.006239170208573341, 0.020642047747969627, 0.03834647312760353, -0.004524464253336191, -0.00041617691749706864, -0.0002577796985860914, -0.012760300189256668, -0.009035813622176647, -0.0054818144999444485, -0.003501541679725051, -0.009035813622176647, -0.0014688115334138274, 0.01079969946295023, 0.01992075704038143, -0.002376982942223549, 0.006170319858938456, 0.0038589087780565023, -0.019514210522174835, -0.020248616114258766, 0.03092372789978981, 0.006957183126360178, -0.04191358759999275, 0.012976687401533127, 0.030740126967430115, -0.0006540801259689033, 0.013966823928058147, 0.008071905933320522, -0.012570141814649105, -0.010983300395309925, 0.01353404950350523, -0.02594025991857052, -0.008163707330822945, -0.020707620307803154, 0.00834730826318264, 0.0037015362177044153, 0.011540661565959454, 0.01998632773756981, -0.02060270495712757, -0.00940957386046648, -0.02213708870112896, 0.01776999607682228, 1.1052457921323366e-05, -0.021874800324440002, 0.005842460319399834, 0.0417824424803257, -0.017822453752160072, -0.04768391698598862, -0.01769131049513817, -0.019973214715719223, -0.030818812549114227, 0.014307797886431217, -0.021520711481571198, -0.032523684203624725, 0.018897833302617073, 0.0217436570674181, 0.006245727650821209, -0.012694728560745716, -0.021507596597075462, 0.04002511501312256, 0.018832262605428696, 0.003898252034559846, -0.012045565992593765, -0.024248505011200905, 0.007835847325623035, 0.06892922520637512, 0.030845042318105698, -0.024510791525244713, 0.018268343061208725, 0.0032900723163038492, -0.009462031535804272, -0.014727458357810974, -0.009868577122688293, 0.013193074613809586, -0.024733737111091614, -0.0184257160872221, 0.013442248106002808, 0.013940595090389252, -0.025153396651148796, -0.0025392735842615366, 0.01196032203733921, 0.004121196456253529, -0.014648771844804287, -0.014019281603395939, 0.02653040736913681, 0.01156689040362835, 0.0012335721403360367, 0.03241876885294914, 0.032497454434633255, 0.039159566164016724, 0.021022364497184753, 0.01930437982082367, 0.022910837084054947, 0.006396543234586716, -0.016602816060185432, -0.008983355946838856, -0.00580967403948307, -0.003750715171918273, 0.03611702471971512, -0.01584218069911003, 0.0065801446326076984, -0.004537578672170639, -0.022740349173545837, 0.01353404950350523, -0.004370369948446751, 0.009881692007184029, -0.019422410055994987, 0.011370174586772919, -0.022910837084054947, 0.010235779918730259, -0.010989857837557793, -0.006845710799098015, 0.027959875762462616, 0.0026933676563203335, -0.02037975937128067, -0.0009147286182269454, -0.00914072897285223, -0.024156704545021057, 0.004908059723675251, -0.019907642155885696, 0.02594025991857052, -0.010596426203846931, -0.005757216829806566, -0.00436381297186017, -0.026714010164141655, -0.03231385350227356, -0.0238944161683321, -0.0024605870712548494, -0.02948114648461342, -0.018465058878064156, -0.008563695475459099, -0.021507596597075462, 0.015081547200679779, -0.04857569560408592, 0.032838430255651474, 0.0027458250988274813, -0.02650417946279049, -0.02182234264910221, 0.01703559048473835, 0.02709432691335678, 0.009075157344341278, 0.004029395990073681, 0.012675056234002113, -0.0008409601869061589, 0.025887802243232727, 0.002250756835564971, -0.00265402439981699, -0.02296329475939274, -0.01779622584581375, -0.020445331931114197, -0.00104341353289783, -0.007075212430208921, 0.02306821011006832, -0.006721124053001404, -0.0040687392465770245, -0.017324106767773628, -0.004888388328254223, 0.0017392957815900445, -0.007711260579526424, 0.020838763564825058, -0.004193325527012348, 0.006199827417731285, 0.0041343108750879765, 0.021166622638702393, 0.021009251475334167, -0.002350754104554653, -0.010602983646094799, -0.03331054747104645, -0.016511015594005585, 0.01998632773756981, 0.0004188407910987735, 0.023199353367090225, -0.007580116391181946, -0.0026917282957583666, -0.01054396852850914, 0.014163539744913578, 0.006885054055601358, -0.021953485906124115, -0.006655552424490452, -0.005252312868833542, -0.02953360229730606, 0.02911394275724888, 0.017507709562778473, 0.008052234537899494, 0.004714622627943754, 0.03866121917963028, -0.01864865981042385, 0.015973325818777084, 0.0025786166079342365, -0.010071850381791592, 0.009180071763694286, -0.004055624827742577, 0.0032474505715072155, -0.05555254966020584, 0.017835568636655807, -0.0028982798103243113, 0.01632741466164589, 0.005898196250200272, -0.0012122612679377198, -0.006727681495249271, -0.032864656299352646, -0.01698313280940056, -0.006930954288691282, -0.018556859344244003, -0.013042259030044079, -0.030740126967430115, 0.007560444995760918, 0.01476680114865303, -0.020274844020605087, 0.021691199392080307, -0.016602816060185432, 0.0007983383839018643, -0.009671861305832863, 0.013756993226706982, 0.0233567263931036, -0.02196660079061985, -0.011593119241297245, -0.015225805342197418, -0.016970019787549973, -0.03380889445543289, 0.002495012478902936, 0.018635546788573265, -0.015370063483715057, 0.020419102162122726, 0.015370063483715057, 0.03234008327126503, -0.0014696312136948109, 0.00291959079913795, 0.017979826778173447, -0.012852100655436516, -0.00902925617992878, 0.01717984862625599, -0.004242504946887493, -0.023592785000801086, 0.008248950354754925, -0.025441914796829224, 0.019042091444134712, -0.012524241581559181, -0.019579783082008362, 0.0032458112109452486, 0.00640637893229723, -0.019461752846837044, -0.01509466115385294, -0.03630062937736511, -0.02159939892590046, 0.0023376396857202053, -0.014465170912444592, -0.017310993745923042, 0.02145513892173767, -0.01655035838484764, -0.0024737014900892973, 0.04645116627216339, 0.019042091444134712, 0.040523461997509, -0.020091243088245392, 0.010321023873984814, 0.01691756211221218, -0.012675056234002113, 0.0026687781792134047, -0.005701480433344841, -0.02369770035147667, -0.014058624394237995, -0.03018932230770588, -0.0045506926253438, 0.0009319412638433278, -0.01054396852850914, 0.028012333437800407, 0.009324329905211926, 0.019147006794810295, -0.008825983852148056, 0.016065126284956932, -0.01087182853370905, -0.02472062222659588, 0.02018304355442524, -0.02706809900701046, -0.008714511059224606, -0.024877995252609253, -0.004865438211709261, 0.016655273735523224, -0.004672001115977764, 0.018373258411884308, -0.01615692675113678, -0.0015524157788604498, -0.008950570598244667, -0.01745525188744068, -0.0009712844039313495, 2.994281385326758e-05, 0.03658914566040039, -0.026989411562681198, 0.029402459040284157, 0.008104692213237286, -0.002903197892010212, -0.011658691801130772, -0.03089749999344349, 0.007842404767870903, -0.022176431491971016, 0.03651045635342598, 0.03126470372080803, -0.005393292289227247, 0.021415796130895615, -0.034569527953863144, -5.94245721003972e-05, -0.014530742540955544, -0.019855184480547905, -0.004029395990073681, 0.016314299777150154, 0.0017737210728228092, -0.011658691801130772, -0.03420232608914375, -0.012930787168443203, 0.018727347254753113, -0.0067145670764148235, 0.0032490896992385387, 0.0012811118504032493, -0.018465058878064156, -0.010386595502495766, 0.023278038948774338, 0.01689133234322071, -0.000733995926566422, 0.007153898943215609, 0.01720607839524746, -0.005206412170082331, -0.0002553207450546324, -0.004875273909419775, -0.011698034591972828, -0.03661537170410156, 0.017638852819800377, -0.026582865044474602, 0.027540216222405434, 0.013494705781340599, 0.012806200422346592, -0.00011587791959755123, 0.010898057371377945, -0.017153620719909668, 0.02499602548778057, -0.017927369102835655, 0.0051769050769507885, 0.028353307396173477, 0.00130897993221879, 0.016248727217316628, -0.00854402408003807, -0.02780250459909439, -0.024392763152718544, -0.023120667785406113, 0.0005962948780506849, 0.02874673902988434, 0.0004774457192979753, -0.0309761855751276, 0.015422521159052849, 0.004075296223163605, -0.020051900297403336, -0.005327720195055008, -0.0028638546355068684, 0.006514572538435459, -0.02743530087172985, -0.017953598871827126, 0.030031949281692505, 0.0016868382226675749, 0.021389568224549294, -0.002336000557988882, 0.0016401181928813457, -0.016733959317207336, 0.025297654792666435, 0.0015024171443656087, 0.017140505835413933, 0.001950765261426568, -0.011953765526413918, -0.04857569560408592, 0.009888249449431896, -0.0032687613274902105, -0.024196047335863113, 0.04104803502559662, -0.016078241169452667, -0.02233380451798439, 0.010406267829239368, 0.02159939892590046, -0.004878552630543709, 0.006701452657580376, 0.006885054055601358, -0.017140505835413933, 0.01529137697070837, -0.0003708912990987301, 0.008216164074838161, -0.006380150094628334, 0.03291711583733559, 0.0028687724843621254, -0.002940901555120945, -0.002760578878223896, -0.013756993226706982, 0.016760189086198807, -0.01647167280316353, -0.01180294994264841, 0.002219610381871462, -0.028536910191178322, -0.02375015802681446, 0.00246550515294075, 0.022346917539834976, -0.009350558742880821, 0.004285126458853483, -0.009829234331846237, -0.009940706193447113, -0.005619515664875507, 0.013127502985298634, -0.0032376146409660578, -0.007901418954133987, 0.009940706193447113, -0.02182234264910221, 0.02528454177081585, -0.014897945336997509, -0.014491399750113487, -0.029350001364946365, -0.00530804879963398, -0.009389902465045452, -0.04083820432424545, -0.011245587840676308, 0.0013556999620050192, 0.015422521159052849, 0.0072916001081466675, -0.02845822274684906, -0.022268231958150864, -0.00867516826838255, -0.03582850843667984, -0.020786305889487267, -0.017979826778173447, 0.02128465287387371, 0.0454544723033905, 0.007304714526981115, -0.0111406734213233, 0.0072063566185534, 0.0035835066810250282, 0.0154880927875638, -0.033546604216098785, 0.012150481343269348, 0.01016365084797144, -0.022884607315063477, 0.010747241787612438, 0.004944124724715948, -0.0362219400703907, -0.005393292289227247, 0.000588098366279155, -0.011173458769917488, 0.0037998941261321306, 0.012189824134111404, -0.009763662703335285, -0.026399264112114906, -0.011527547612786293, 0.0070424266159534454, 0.005380177870392799, 0.005258869845420122, 0.009403016418218613, -0.03278597071766853, -0.004681836813688278, 0.023828843608498573, -0.004206439945846796, -0.026766467839479446, 0.023487869650125504, 0.019173236563801765, 0.011121001094579697, 0.0026753353886306286, -0.03131715953350067, -0.008819426409900188, 0.005104775540530682, -0.016458557918667793, 0.01717984862625599, 0.016314299777150154, -0.006911282893270254, 0.023278038948774338, 0.0202617309987545, -0.02516651153564453, -0.0030933564994484186, 0.010452168062329292, -0.022753464058041573, -0.01281275786459446, 0.016458557918667793, -0.023094438016414642, 0.009632518514990807, -0.008950570598244667, 0.008694839663803577, -0.0060129472985863686, -0.011107887141406536, -0.0036621929612010717, 0.02508782595396042, 0.0066457162611186504, 0.004616264719516039, -0.001532744150608778, -0.050726454704999924, 0.022582978010177612, -0.012137366458773613, -0.013822565786540508, 0.023448526859283447, 0.00013380774180404842, -0.021074822172522545, -0.02528454177081585, -0.025350112468004227, 0.022346917539834976, -0.008196492679417133, -0.03784812614321709, 0.014491399750113487, -0.0019032256677746773, -0.021782999858260155, 0.023828843608498573, 0.1949322670698166, 0.02182234264910221, -0.006153926718980074, 0.01952732540667057, -0.0063768713735044, 0.00028831162489950657, 0.011114444583654404, 0.003727765055373311, -0.007298157084733248, 0.0029851626604795456, 0.010137422010302544, 0.03024177998304367, -0.020537132397294044, -0.007403072435408831, 0.03304826095700264, -0.023435411974787712, -0.058175429701805115, 0.0014917616499587893, -0.02587468922138214, 0.03611702471971512, 0.0036031783092767, -0.0035933423787355423, 0.0032212217338383198, -0.010301352478563786, 0.02340918406844139, -0.010642326436936855, -0.046923283487558365, 0.0038425158709287643, 0.012386539950966835, 0.02298952266573906, -0.017192963510751724, 0.0288254264742136, 0.004999860655516386, 0.00960628967732191, 0.0009663664968684316, -0.020471559837460518, 0.003055652603507042, 0.013796336948871613, -0.016511015594005585, 0.01596021093428135, 0.029245086014270782, 0.003855630289763212, 0.006819481961429119, 0.005298213101923466, 0.008406323380768299, 0.021297767758369446, 0.012688171118497849, 0.005757216829806566, -0.00663915928453207, 0.02006501518189907, -0.021520711481571198, 0.03296957165002823, 0.01856997422873974, 0.020851878449320793, -0.00014733195712324232, 0.028956569731235504, 0.013442248106002808, 2.4717548512853682e-05, -0.0033638407476246357, -0.003750715171918273, -0.004619543440639973, 0.014150424860417843, -0.0005044941208325326, 9.605265222489834e-05, -0.009363673627376556, 0.001931093749590218, 0.00029589340556412935, -0.0013065210077911615, 0.004835930652916431, -0.0017442136304453015, -0.011173458769917488, -0.006642438005656004, -0.013442248106002808, 0.009271873161196709, -0.01527826301753521, -0.012419326230883598, 0.04506104066967964, -0.0014220915036275983, 0.017324106767773628, 0.015907753258943558, 0.02809102088212967, 0.013520934619009495, 0.004609707742929459, -0.03834647312760353, -0.022071516141295433, -0.029009027406573296, 0.00827517919242382, 0.00250484817661345, 0.0034031837712973356, 0.009547274559736252, -0.0025261591654270887, 0.0005372801097109914, -0.016707731410861015, -0.029009027406573296, 0.013927481137216091, 0.00833419431000948, -0.0013114388566464186, 0.0038523515686392784, -0.019776498898863792, -0.001474549062550068, -0.015107776038348675, 0.0625818595290184, 0.020445331931114197, 0.0050523183308541775, 0.005776888225227594, -0.011776721104979515, -0.003596621099859476, 0.018268343061208725, -0.014124196954071522, -0.008930898271501064, -0.023225583136081696, -0.01028823759406805, 0.019658468663692474, 0.0036753073800355196, -0.004737572744488716, -0.003226139582693577, 0.003586785402148962, -0.020196158438920975, 0.013055373914539814, 0.001385207287967205, 0.015068432316184044, -0.00534411333501339, -0.005386735312640667, 0.022937064990401268, -0.00746864452958107, -0.009403016418218613, 0.010937400162220001, -0.014963516965508461, -0.019737154245376587, -0.029690975323319435, 0.017245421186089516, -0.023396069183945656, 0.01407173927873373, -0.03026800975203514, 0.0031425354536622763, -0.0010212829802185297, 0.03171059116721153, -0.008268621750175953, -0.014137310907244682, -0.0005077727255411446, -0.009330887347459793, 0.02630746364593506, 0.0022999357897788286, -0.007186684757471085, 0.020301073789596558, -0.030110636726021767, 0.021127279847860336, 0.016117583960294724, -0.0050293682143092155, -0.02423539012670517, -0.04579544439911842, 0.01759951002895832, 0.0012860296992585063, 0.024681279435753822, 0.036326855421066284, -0.014897945336997509, -0.02851068042218685, -0.010970186442136765, -0.011363618075847626, 0.028300849720835686, -0.06085076183080673, -0.022346917539834976, 0.03312694653868675, -0.009094828739762306, -0.008537466637790203, 0.0001682330184848979, -0.16482163965702057, 0.014675000682473183, -0.005776888225227594, -0.005114611703902483, 0.021127279847860336, 0.01308160275220871, 0.003622849937528372, -0.013940595090389252, -0.007639131508767605, 0.01353404950350523, 0.008380094543099403, 0.03826778754591942, -0.03711371868848801, -0.01460942905396223, 0.009560389444231987, 0.016340527683496475, -0.0004790850216522813, -5.404562398325652e-05, 0.016812646761536598, 0.027513986453413963, 0.029297543689608574, -0.00012284494005143642, 0.0032999080140143633, -0.0028081184718757868, -0.0043834843672811985, -0.016629043966531754, -0.01122591644525528, 0.014897945336997509, 0.006445722188800573, 0.0006651454023085535, -0.017245421186089516, -0.009619403630495071, 0.010491510853171349, 0.0016491343267261982, 0.0075407736003398895, 0.012222610414028168, -0.005416242405772209, -0.007239142432808876, -0.008098134770989418, 0.016681501641869545, 0.028563138097524643, 0.009980049915611744, 0.009344002231955528, 0.008353865705430508, -0.0018688003765419126, 0.006242448929697275, 0.029035257175564766, -0.025441914796829224, 0.005989997182041407, 0.015422521159052849, 0.007035869639366865, -0.07207667827606201, 0.01664215885102749, -0.006721124053001404, 0.008412879891693592, 0.01683887466788292, 0.012111137621104717, 0.02106170728802681, 0.02491733804345131, -0.03763829544186592, 0.016366757452487946, -0.004524464253336191, -0.005360506474971771, -0.007226028013974428, -0.006983411964029074, -0.01833391562104225, -0.009081713855266571, -0.0015056957490742207, -0.03902842104434967, 0.02357967011630535, 0.012838986702263355, 0.0025884525384753942, -0.002529437653720379, -0.01603889651596546, -0.00902925617992878, -0.005108054261654615, 0.016065126284956932, 0.009770219214260578, 0.019396180287003517, 0.03380889445543289, -0.0008663692860864103, 0.011022643186151981, -0.013809450902044773, 0.0238944161683321, -0.025153396651148796, 0.008858769200742245, 0.02316001057624817, 0.012950458563864231, -0.01421599742025137, -0.009704647585749626, 0.004252340644598007, -0.030792584642767906, 0.011809507384896278, 0.010878385044634342, 0.015802837908267975, -0.005101497285068035, 0.00788174755871296, 0.002906476380303502, 0.01686510443687439, 0.009462031535804272, -0.012242281809449196, -0.00746864452958107, -0.032864656299352646, 0.010570197366178036, 0.038818590342998505, 0.01740279421210289, -0.0024376369547098875, 0.01239965483546257, 0.0191863514482975, -0.019147006794810295, -0.03522524610161781, 0.022976409643888474, 0.015737267211079597, -0.000631949573289603, -0.019461752846837044, 0.029009027406573296, -0.01822900027036667, -0.02145513892173767, 0.0063506425358355045, -0.002188463695347309, 0.06546702980995178, 0.002498290967196226, -0.03409741073846817, -0.02506159618496895, -0.009206300601363182, -0.013520934619009495, -0.11351814866065979, -0.028353307396173477, -0.007586673833429813, 0.023514099419116974, 0.004868716932833195, 0.023278038948774338, -0.022858379408717155, 0.027854962274432182, -0.025664858520030975, 0.048313409090042114, 0.011868521571159363, 0.0022376426495611668, -0.012150481343269348, 0.012865215539932251, 0.044169262051582336, 0.0003088028752245009, -0.014504513703286648, -0.004986746236681938, 0.00915384292602539, 0.015409406274557114, 0.0007003903156146407, -0.017481479793787003, 0.0222813468426466, -0.03443838283419609, -0.0149504030123353, -0.0007540773367509246, -0.03829401358962059, -0.012793086469173431, 0.016419215127825737, 0.016851989552378654, 0.027697589248418808, -0.0057965596206486225, 0.025100938975811005, -0.009258758276700974, -0.027881190180778503, 0.010530853644013405, -0.01879291981458664, 0.011271816678345203, -0.005190019495785236, -0.0312909297645092, 0.02601894736289978, 0.007888305000960827, 0.0015942178433761, -0.01916012167930603, -0.01354716345667839, 0.0016401181928813457, -0.0012401293497532606, 0.011488204821944237, -0.011796392500400543, -0.019632238894701004, -0.019265037029981613, 0.0002987621701322496, -0.014399598352611065, -0.013324218802154064, -0.005626072641462088, -0.019684696570038795, 0.02372392825782299, 0.007553888019174337, -0.01598643884062767, -0.026517294347286224, -0.03053029626607895, 0.0140323955565691, -0.029586059972643852, 0.02709432691335678, 0.0015999553725123405, 0.007875190116465092, -0.015448749996721745, -0.014202882535755634, -0.003044177545234561, -0.009488260373473167, -0.005645744502544403, 0.021901028230786324, -0.0067801387049257755, 0.02040598914027214, -0.02233380451798439, 0.017192963510751724, -0.01984206959605217, -0.022910837084054947, 0.038084182888269424, -0.01839948631823063, -0.016484785825014114, -0.028012333437800407, 0.005989997182041407, -0.004458892159163952, 0.016812646761536598, 0.0065801446326076984, 0.004344141110777855, -0.022884607315063477, 0.02474685199558735, -0.0035277705173939466, -0.018438830971717834, 0.02392064407467842, -0.001049970742315054, -0.030740126967430115, -0.006819481961429119, 0.0005479355459101498, -0.0014860241208225489, -0.01254391297698021, -0.022976409643888474, -0.02040598914027214, -0.008891555480659008, -0.00027745129773393273, -0.049782220274209976, 0.019776498898863792, 0.006514572538435459, 0.009639075957238674, -0.0036720288917422295, -0.008904669433832169, 0.01062921155244112, -0.009973492473363876, -0.014675000682473183, 0.0238944161683321, -0.04710688441991806, 0.014675000682473183, -0.02040598914027214, -0.010550525970757008, -0.009173515252768993, -0.013330776244401932, 0.021166622638702393, -0.005914589390158653, 0.0024278012569993734, 0.009042371064424515, 0.024733737111091614, 0.0020491231698542833, 0.009016142226755619, -0.0036589144729077816, -0.0035343277268111706, -0.007239142432808876, -0.02567797340452671, 0.007842404767870903, 0.009875134564936161, -0.015081547200679779, 0.011468532495200634, -0.013140616938471794, 0.009475145488977432, 0.041310325264930725, -0.022399375215172768, -0.03058275394141674, -0.0008844015537761152, 0.012091466225683689, -0.008747297339141369, -0.005681809037923813, -0.034281011670827866, -0.024300962686538696, 0.016655273735523224, 0.0022556749172508717, -0.011121001094579697, 0.0042031616903841496, 0.004124475177377462, 0.002534355502575636, 0.008766968734562397, 0.012130809016525745, 0.04603150486946106, -0.006819481961429119, -0.007803061045706272, -0.028379537165164948, -0.00914072897285223, -0.011547219008207321, 0.02601894736289978, -0.0007958794594742358, 0.022071516141295433, 0.004521185532212257, 0.031736820936203, 0.01567169465124607, -0.0008225180790759623, -0.038372702896595, 0.01955355331301689, -0.003924480639398098, -0.006911282893270254, 0.026936953887343407, -0.01759951002895832, -0.012170152738690376, 0.01323897484689951, -0.026123862713575363, 0.009199743159115314, -0.006252284627407789, -0.008445666171610355, -0.0032736791763454676, 0.0027113999240100384, 0.01148164737969637, -0.011527547612786293, 0.022268231958150864, 0.002747464459389448, -0.013219303451478481, 0.01228818204253912, 0.02250429056584835, 0.006917839869856834, 0.019999442622065544, -0.016025783494114876, -0.006596537306904793, -0.009816119447350502, 0.010111193172633648, 0.008163707330822945, -0.0015466782497242093, 0.004885109607130289, -0.001542579964734614, -0.005380177870392799, 0.00584573857486248, 0.02103547938168049, 0.011147229932248592, -0.009757105261087418, 0.025179626420140266, -0.007239142432808876, 0.021323995664715767, -0.017324106767773628, -0.04280536621809006, -0.023343611508607864, 0.0127537427470088, -0.021389568224549294, -0.039474308490753174, 0.010419381782412529, 0.02911394275724888, 0.014045510441064835, 0.01867488957941532, 0.029664747416973114, 0.013402905315160751, -0.006455557886511087, 0.010563639923930168, -0.002795004053041339, -0.009435802698135376, -0.031422074884176254, 0.02570420131087303, 0.024366533383727074, 0.0022605927661061287, 0.027225470170378685, -0.014530742540955544, 0.03134338930249214, -0.0065801446326076984, 0.02911394275724888, -0.009442360140383244, -0.010353810153901577, 0.010327581316232681, -0.01601266860961914, 0.015356949530541897, 0.0007130948943085968, -0.007180127780884504, -0.006606373470276594, -0.009842348285019398, -0.009907920844852924, 0.012419326230883598, 0.00854402408003807, 0.06426050513982773, -0.003303186735138297, -0.01584218069911003, 0.011816063895821571, 0.004993303678929806, 0.028195936232805252, -0.007599788252264261, -0.005485093221068382, -0.0025474699214100838, -0.013940595090389252, 0.003331054700538516, -0.004045788664370775, 0.012340639717876911, -0.01630118489265442, -0.007330943364650011, 0.008163707330822945, 0.003026145277544856, 0.014347141608595848, -0.00451462808996439, 0.0009630878921598196, 0.010596426203846931, -0.0033736764453351498, -0.019828954711556435, -0.0021786277648061514, -0.024930452927947044, -0.012747185304760933, -5.9988084103679284e-05, 0.010530853644013405, -0.031815506517887115, -0.0323663093149662, 0.0012425882741808891, 0.02035353146493435, -0.016458557918667793, -0.00519985519349575, -0.0023376396857202053, 0.00588180311024189, -0.0021376453805714846, 0.00048031448386609554, 0.006891611032187939, -0.012294739484786987, -0.015383177436888218, 0.03719240427017212, -0.006271956488490105, -0.011455418542027473, 0.006773581728339195, -0.0030081127770245075, 0.0052096908912062645, 0.0008135019452311099, 0.005829345900565386]" +35,"Now to our segment results. Revenue from productivity and business processes was $16.5 billion and grew 9% and 15% in constant currency, ahead of expectations, with better-than-expected results in Office commercial and LinkedIn. Office commercial revenue grew 7% and 13% in constant currency. Office 365 commercial revenue increased 11% and 17% in constant currency, slightly better than expected, with the strong renewal execution noted earlier.","[0.004361174069344997, -0.015732089057564735, 0.0016694602090865374, -0.02025921456515789, 0.00827096402645111, -0.015825022011995316, -0.02493237517774105, -0.010800046846270561, -0.013548183254897594, -0.025967905297875404, 0.02600773237645626, 0.03109245002269745, -0.002548996824771166, 0.0036509069614112377, 0.006233093794435263, 0.015944506973028183, 0.003028593258932233, -0.01763056218624115, 0.01392655074596405, -0.020803531631827354, -0.0296320877969265, -0.00599412526935339, -0.028410693630576134, -0.0013143265387043357, -0.010680561885237694, 0.00460014259442687, 0.025503244251012802, -0.014338106848299503, 0.02465357817709446, -0.010746941901743412, -0.01232678908854723, -0.01496207993477583, -0.021772680804133415, 0.010109692811965942, -0.015838297083973885, -0.0073748319409787655, -0.01266532763838768, -0.001532551134005189, 0.025211172178387642, 0.005260624922811985, 0.02339235693216324, 0.006342621054500341, -0.01505501288920641, 0.010853150859475136, -0.00660150358453393, 0.013753961771726608, 0.0016030800761654973, -0.013123351149260998, 0.001858643488958478, 0.004736221861094236, -0.011483761481940746, 0.03632320463657379, -0.04062463715672493, -0.009598566219210625, 0.007912511005997658, 0.0014296619920060039, -0.005320366937667131, 0.020498182624578476, -0.009565375745296478, -0.01115849893540144, -0.019024543464183807, -0.0016171857714653015, -0.033853862434625626, 0.0014811065047979355, -0.0339069664478302, -0.011483761481940746, -0.009273303672671318, 0.007461125962436199, 0.009512271732091904, 0.00014904412091709673, 0.03175625205039978, 0.02611394226551056, 0.005443170201033354, 0.004736221861094236, 0.010169435292482376, -0.015227600932121277, 0.0026933737099170685, -0.01076021883636713, 0.00121724558994174, 0.004951957613229752, 0.005572611466050148, -0.025211172178387642, -0.013966378755867481, -0.005400023423135281, 0.006382449064403772, -0.005260624922811985, -0.01638261415064335, -0.0022486266680061817, -0.03642941266298294, 0.0029323420021682978, 0.028171725571155548, 0.00949899572879076, -0.011895318515598774, 0.02992415986955166, -0.00848338007926941, 0.005492955446243286, -0.018772300332784653, 0.032207638025283813, -0.0021573540288954973, -0.02251613885164261, -0.004251647274941206, -0.011908594518899918, -0.03417249023914337, -0.01062745787203312, -0.02688395045697689, 0.008211221545934677, 0.014231898821890354, 0.004935362376272678, 0.03536733239889145, -0.012054630555212498, -0.019356444478034973, -0.008098375052213669, 0.00335883442312479, 0.00969813670963049, -0.010308833792805672, -0.008436913602054119, -0.001996382372453809, -0.0029356610029935837, -0.003046847879886627, -0.02260906994342804, 0.005974211264401674, -0.00735491793602705, 0.04001393914222717, -0.009618480689823627, 0.022728554904460907, 0.013189731165766716, 0.00866924412548542, -0.007607162464410067, 0.009412702172994614, -0.0035281036980450153, -0.01232678908854723, -0.0003229808062314987, 0.007036293391138315, 0.024613751098513603, -0.009425978176295757, 0.03207487612962723, -0.003538060700520873, 0.022728554904460907, -0.02891518361866474, -0.02270200289785862, -0.007494315970689058, 0.011974974535405636, -0.006023996509611607, 0.0001432358694728464, 0.008655968122184277, 0.030136577785015106, 0.0294196717441082, -0.003398662433028221, 0.025954628363251686, -0.0042715612798929214, 0.012678603641688824, -0.01802884228527546, 0.021493883803486824, 0.032393500208854675, 0.011025738902390003, -0.018958164379000664, -0.008589588105678558, 0.03313696011900902, -0.00776647450402379, -0.013475165702402592, -0.023113559931516647, 0.007680180482566357, -0.02191871777176857, 0.0068238768726587296, -0.007600524462759495, 0.017311936244368553, 0.017006589099764824, 0.008144841529428959, -0.016488824039697647, -0.006412320304661989, -0.01432483084499836, -0.009903915226459503, -0.024480991065502167, 0.01959541253745556, 0.00818466953933239, 0.013979654759168625, 0.004351217299699783, -0.01597105897963047, -0.01654192805290222, -0.02202492579817772, 0.013488441705703735, -0.021799232810735703, 0.016913656145334244, 0.009824258275330067, 0.03011002577841282, -0.005273900926113129, 0.043996747583150864, 0.003372110426425934, 0.013017143122851849, -0.009731326252222061, -0.006621417589485645, 0.010096416808664799, 0.0024660215713083744, -0.023830465972423553, -0.6499941945075989, -0.004878939129412174, 0.0030119982548058033, -0.0023116879165172577, 0.007866044528782368, -0.004686437081545591, 0.01286446861922741, -0.01286446861922741, -0.03149073198437691, 0.013422061689198017, 0.024494266137480736, 0.001823793980292976, -0.0016412485856562853, -0.0008571333601139486, 0.011536865495145321, -0.02446771413087845, 0.015798470005393028, -0.006435553077608347, -0.022967522963881493, 0.01723228022456169, -0.004789325874298811, 0.00333726080134511, 0.010255729779601097, 0.0017557543469592929, -0.003972850739955902, -0.019170580431818962, 0.011364277452230453, -0.014656731858849525, -0.017179176211357117, 0.0034285334404557943, -0.005718647968024015, 0.01638261415064335, 0.002273519290611148, 0.007613800466060638, 0.04617401584982872, 0.007600524462759495, -0.013176455162465572, 0.009067525155842304, 0.009751240722835064, 0.03149073198437691, -0.029764847829937935, 4.981102392775938e-05, -0.009080801159143448, -0.0016536948969587684, -0.014762939885258675, 0.006468743085861206, 0.031119003891944885, 0.001065401011146605, 0.012525930069386959, -0.022144410759210587, -0.002978808246552944, -0.0031879055313766003, -0.0024195555597543716, 0.00250750919803977, 0.011875404044985771, -0.01368758175522089, 0.007275261916220188, -0.018148327246308327, 0.009346322156488895, -0.015466568991541862, -0.00278962473385036, -0.007467763964086771, 0.004052506759762764, -0.02774689346551895, -0.03300419822335243, 0.02104249969124794, -0.02336580492556095, -0.0012197347823530436, 0.027136195451021194, 0.012094458565115929, -0.010919530875980854, 0.016037438064813614, 0.020020246505737305, -0.004799283109605312, 0.009372874163091183, 0.021308019757270813, 0.019608689472079277, -0.017112797126173973, -0.008343981578946114, 0.01003667525947094, 0.015479844994843006, -0.03050830587744713, 0.0021490566432476044, -0.004225094802677631, -0.009419339708983898, -0.0053436001762747765, -0.02213113382458687, -0.014789491891860962, 0.013740685768425465, -0.001342538045719266, 0.024600474163889885, 0.00788595899939537, 0.005097993649542332, -0.026034286245703697, 0.007003103382885456, 0.03441145643591881, -0.010720389895141125, 0.003340579802170396, -0.006462105084210634, 0.010561077855527401, -0.017365040257573128, -0.01324283517897129, 0.03167659416794777, 0.008423637598752975, 0.02756102755665779, 0.03303075209259987, 0.006163394544273615, 0.01300386618822813, 0.047395408153533936, -0.015997610986232758, 0.005084717646241188, -0.01143729593604803, -0.013468527235090733, -0.010727028362452984, -0.013329129666090012, -0.03332282230257988, 0.0487230122089386, -0.010899616405367851, -0.01334904320538044, -0.009684860706329346, -0.019462652504444122, 0.006654607597738504, 0.011211602948606014, -0.03714631870388985, -0.011802386492490768, 0.015466568991541862, 0.030216233804821968, -0.009917191229760647, 0.01761728525161743, -0.006584908347576857, 0.002542358823120594, -0.016794171184301376, 0.01654192805290222, -0.0012977314181625843, 0.020139729604125023, 0.007169053424149752, 0.00403923075646162, -0.03438490629196167, 0.011968336999416351, -0.03138452395796776, -0.020697323605418205, -0.0096516702324152, -0.0036874159704893827, -0.004732903093099594, -0.013196368701756, -0.012174115516245365, -0.01222721952944994, 0.013674305751919746, -0.02523772418498993, 0.006764134857803583, -0.006462105084210634, -0.014138966798782349, -0.0076934564858675, 0.0018636219901964068, 0.01256575807929039, 0.0007982210372574627, -0.008012081496417522, -0.02278165891766548, -0.023511840030550957, -0.013913274742662907, -0.022263893857598305, -0.012300237081944942, 0.008496656082570553, 0.007832854986190796, -0.012698518112301826, 0.000404503894969821, -0.04327984154224396, 0.022277170792222023, 0.012618862092494965, -0.013289300724864006, -0.009279941208660603, -0.009897276759147644, 0.0035546557046473026, -0.011032377369701862, 0.023432184010744095, 0.0027016710955649614, -0.01764383725821972, -0.01644899509847164, 0.005731923971325159, -0.024786338210105896, 0.004022635519504547, 0.015453292988240719, -0.014922251924872398, -0.013700857758522034, 0.026830846443772316, 0.005887917242944241, 0.022529413923621178, 0.01626313105225563, -0.002997062634676695, 0.0040325927548110485, 0.0018287724815309048, 0.034942496567964554, -0.006326025817543268, -0.02055128663778305, 0.00847674161195755, 0.004533762577921152, -0.031145555898547173, -0.00708939740434289, 0.0004787666548509151, -0.02677774243056774, 0.006923446897417307, 0.029844503849744797, -0.006647969596087933, 0.020046798512339592, 0.0034185764379799366, -0.02085663564503193, -0.0069898273795843124, -0.02572893723845482, 0.015904678031802177, 0.03292454406619072, 0.036562174558639526, -0.023166663944721222, -0.018081946298480034, -0.0062164985574781895, -0.03475663438439369, 0.01192850898951292, 0.01586485095322132, 0.01636933907866478, -0.00426160404458642, 0.010740304365754128, -0.00127283891197294, -0.022184237837791443, 0.00216897064819932, -0.014577075839042664, -0.0037903052289038897, -0.009260027669370174, -0.00611029053106904, 0.020670771598815918, 0.012300237081944942, -0.01388672273606062, -0.009153819642961025, 0.039774972945451736, 0.023644600063562393, -0.005078079644590616, 0.008662606589496136, 0.007202243432402611, 0.027985861524939537, -0.022555965930223465, 0.02843724563717842, 0.003677458968013525, 0.006671202834695578, 0.007720008492469788, 0.02699015848338604, -0.029472775757312775, 0.006876980885863304, 0.0038765992503613234, 0.03478318452835083, -0.004311389289796352, -0.01850677840411663, 0.008888298645615578, -0.008875022642314434, 0.018241258338093758, 0.005463084205985069, -0.018068669363856316, 0.01379378978163004, 0.0014711495023220778, 0.003304070793092251, 0.0003401981375645846, 0.041739821434020996, 0.02891518361866474, -0.0027000117115676403, 0.007713370490819216, 0.04325329139828682, -0.007042931392788887, -0.00856967456638813, 0.03273867815732956, -0.0069898273795843124, 0.016329510137438774, 0.008536484092473984, 0.005595844704657793, 0.029764847829937935, -0.0064156390726566315, -0.005114588886499405, 0.014882423914968967, -0.0270698145031929, 0.012970676645636559, 0.010600905865430832, -0.019117476418614388, -0.010215901769697666, 0.017564181238412857, 0.006017358507961035, -0.023007351905107498, -0.0008119118865579367, 0.020020246505737305, 0.001954894745722413, 0.012532567605376244, 0.02152043767273426, -0.0147098358720541, -0.004776049870997667, 0.00969813670963049, -0.032605916261672974, 0.023923397064208984, -0.01655520312488079, 0.0011757579632103443, 0.02952587977051735, 0.0022137772757560015, 0.01578519307076931, -0.011297897435724735, -0.014470867812633514, -0.01143729593604803, 0.013149903155863285, -0.0075739724561572075, -0.013521631248295307, 0.004152076784521341, 0.03810219094157219, 0.00033521963632665575, -0.03388041630387306, -0.01752435229718685, -0.013913274742662907, -0.019436100497841835, 0.013966378755867481, -0.01036857534199953, -0.03937669098377228, 0.034942496567964554, 0.017882805317640305, 0.0009766175644472241, -0.003677458968013525, -0.006030634511262178, 0.008921489119529724, 0.011231517419219017, -0.017803149297833443, 0.0035247846972197294, -0.02551652118563652, 0.029340015724301338, 0.07376159727573395, 0.026724638417363167, 0.0022403292823582888, 0.030322441831231117, 0.004122206009924412, -0.003816857235506177, -0.008788729086518288, -0.002504190197214484, 0.01120496541261673, -0.0034949136897921562, -0.008370533585548401, -0.005881279241293669, 0.006545080337673426, -0.011676263995468616, 0.0026319720782339573, 0.00038106340798549354, 0.010985910892486572, -0.014245174825191498, 0.013189731165766716, 0.009764516726136208, 0.007202243432402611, 0.0003223584790248424, 0.020484907552599907, 0.025357207283377647, 0.014829319901764393, 0.021175259724259377, 0.030747273936867714, 0.04317363351583481, -0.004722945857793093, -0.010043312795460224, -0.026844123378396034, 0.01956886053085327, 0.00224198866635561, 0.026963606476783752, -0.003262583166360855, 0.004327984061092138, 0.010282281786203384, -0.019887486472725868, 0.011775834485888481, 0.020139729604125023, 0.02015300653874874, -0.005931064020842314, 0.016024162992835045, -0.00901442114263773, -0.0009791068732738495, -0.01898471638560295, -0.012685242109000683, 0.02170630171895027, 0.005097993649542332, -0.004128844011574984, -0.004052506759762764, -0.007653628475964069, -0.02270200289785862, 0.002449426567181945, -0.010899616405367851, 0.027428267523646355, -0.011523589491844177, -0.016794171184301376, -0.006272921804338694, -0.033561792224645615, -0.023166663944721222, -0.027122918516397476, 0.023631324991583824, -0.02259579487144947, -0.03242005407810211, -0.0005206690984778106, -0.021095603704452515, -0.0037571152206510305, -0.03457076847553253, 0.01686055213212967, -0.0009558738092891872, -0.0129640381783247, -0.021958544850349426, 0.012525930069386959, 0.03449111431837082, -0.004732903093099594, 0.01577191799879074, -0.0008836854249238968, -0.00542989419773221, 0.002860983368009329, -0.004215138033032417, -0.015041736885905266, -0.033455584198236465, -0.01388672273606062, -0.0292072556912899, 0.0292072556912899, 0.003028593258932233, -0.006462105084210634, -0.011337725445628166, -0.028224829584360123, -0.010448231361806393, -0.027932757511734962, -0.02064421959221363, -0.008324068039655685, 0.028224829584360123, -0.010879702866077423, 0.007368193939328194, 0.0147098358720541, 0.011729368008673191, 0.004626694601029158, 0.015028460882604122, 0.00034082046477124095, -0.005184287670999765, -0.0035579747054725885, 0.00569541472941637, 0.0206574946641922, 0.007680180482566357, -0.011065566912293434, -0.014231898821890354, 0.00075839291093871, 0.022011648863554, -0.007793026976287365, -0.004915448371320963, 0.007461125962436199, -0.008516570553183556, -0.0040325927548110485, 0.015931230038404465, -0.001222224091179669, 0.034225594252347946, -0.010249091312289238, 0.002100931014865637, -0.013249472714960575, 0.02394994907081127, -0.02376408502459526, -1.7476642824476585e-05, -0.00689689489081502, 0.015466568991541862, -0.03281833603978157, -0.043784331530332565, 0.01168953999876976, -0.007388107944279909, 0.021387675777077675, -0.026352910324931145, 0.004035911522805691, -0.02240993082523346, -0.03937669098377228, 4.172094486420974e-05, -0.0052805389277637005, -0.026618430390954018, 0.0023913439363241196, -0.03855357691645622, 0.010561077855527401, 0.012253771536052227, -0.024228746071457863, 0.016820723190903664, -0.028304485604166985, -0.008450189605355263, -0.0009177052415907383, 0.012067906558513641, 0.02493237517774105, 0.0030319122597575188, 0.0029738296288996935, -0.016329510137438774, -0.00501833762973547, -0.017550906166434288, 0.0006318558007478714, 0.027826549485325813, -0.026538774371147156, 0.02843724563717842, 0.003942979499697685, 0.029154151678085327, 0.007242071907967329, -0.00195987313054502, 0.0321279801428318, -0.0013259430415928364, -0.0030003816355019808, 0.016581755131483078, -0.031411074101924896, -0.027720341458916664, 0.00554937869310379, -0.01918385550379753, 0.016010886058211327, 0.0030850162729620934, -0.000833485450129956, 0.0007828706293366849, 0.012585671618580818, -0.007368193939328194, 0.000997361377812922, -0.035022154450416565, -0.01666141115128994, 0.002198841655626893, -0.018374018371105194, -0.023007351905107498, 0.001989744370803237, -0.03223418816924095, -0.02336580492556095, 0.016488824039697647, 0.013548183254897594, 0.024865994229912758, 0.0028709403704851866, 0.021361123770475388, 0.017165901139378548, 0.007295175921171904, -0.011895318515598774, 0.0063658542931079865, -0.00326424278318882, -0.005907831247895956, -0.04325329139828682, -0.014258450828492641, 0.020617667585611343, -0.01804211735725403, 0.022569242864847183, 0.006518528331071138, 0.02406943403184414, -0.0022967522963881493, 0.014085862785577774, 0.0006310260505415499, -0.022967522963881493, -0.003820176236331463, -0.019648516550660133, 0.003056804882362485, -0.024666855111718178, -0.01939627341926098, -0.007507592439651489, -0.007567334454506636, 0.021467331796884537, -0.009552099741995335, 0.010534525848925114, -0.011065566912293434, -0.026644982397556305, 0.026552049443125725, -0.0041852667927742004, 0.02337907999753952, -0.018759023398160934, 0.033561792224645615, 0.011125309392809868, 0.004965233616530895, -0.022861314937472343, -0.020312318578362465, 0.017192453145980835, -0.014683283865451813, 0.04099636524915695, 0.04609435796737671, -0.0010189348831772804, -0.010846512392163277, -0.009253389202058315, -0.009326407685875893, -0.00577175198122859, -0.019542308524250984, 0.011344363912940025, 0.0032028411515057087, 0.0006227285484783351, -0.013554821722209454, -0.018161602318286896, -0.014537247829139233, 0.021361123770475388, -0.007580610457807779, 0.010043312795460224, 0.008051909506320953, -0.013315853662788868, -0.019409548491239548, 0.03409283235669136, 0.004311389289796352, 0.014497419819235802, -0.018971439450979233, 0.0020445077680051327, -0.012831278145313263, 0.013368957675993443, -0.0011940124677494168, -0.012419721111655235, -0.0017590733477845788, 0.004049187526106834, -0.024480991065502167, 0.01647554710507393, 0.004706351086497307, -0.003926384262740612, -0.01735176518559456, 0.006797324866056442, -0.012977314181625843, 0.016993312165141106, -0.026379462331533432, -0.005838131997734308, 0.03419904038310051, 0.005446489434689283, 0.012167477048933506, -0.024095986038446426, -0.030641065910458565, -0.011981613002717495, -0.01655520312488079, 0.0029439586214721203, 0.03393352031707764, 0.005496274214237928, -0.011191689409315586, 0.021679749712347984, 0.019993694499135017, -0.015333808958530426, 0.006143480539321899, -0.008284240029752254, 0.01899799145758152, -0.01655520312488079, 0.0022469672840088606, 0.019714897498488426, 0.027348611503839493, 0.050979938358068466, -0.026339633390307426, -0.006608141586184502, 0.009479082189500332, 0.010262367315590382, -0.011915232986211777, 0.02668481133878231, 0.011662987992167473, -0.005393385421484709, -0.021493883803486824, 0.01644899509847164, -0.019529033452272415, -0.020869910717010498, 0.025078412145376205, -0.012008165009319782, -0.03642941266298294, 0.02923380769789219, 0.0027332017198204994, -0.008297516033053398, 0.0008795366738922894, -0.002743158722296357, 0.003046847879886627, 0.006963275372982025, -0.013753961771726608, -0.004570271819829941, -0.017842978239059448, 0.02446771413087845, 0.01056771632283926, 0.0025324018206447363, 0.01744469627737999, -0.019051095470786095, 0.022914418950676918, 0.009996847249567509, -0.014285002835094929, 0.005403342191129923, -0.009784430265426636, -0.03196866810321808, -0.004779369104653597, 0.03634975850582123, 0.005569292698055506, -0.008383809588849545, -0.018347466364502907, -0.0009699795627966523, 0.0062629650346934795, 0.012884382158517838, 0.009392787702381611, -0.00024415439111180604, 0.002786305733025074, -0.012698518112301826, 0.026737915351986885, 0.013342405669391155, -0.009664946235716343, -0.03430524840950966, -0.013508355244994164, -0.007613800466060638, -0.021161984652280807, -0.020484907552599907, 0.03470353037118912, 0.016834000125527382, 0.01368758175522089, -0.03664182871580124, -0.03146417811512947, -0.020391974598169327, -0.05751173943281174, -0.03130486607551575, -0.02416236512362957, 0.020484907552599907, 0.021785957738757133, 0.010507973842322826, -0.019064372405409813, 0.037279076874256134, -0.004165352787822485, 0.013368957675993443, -0.044660549610853195, 0.001424683490768075, 0.015028460882604122, -0.0005936872330494225, 0.003126503899693489, -0.004191904794424772, -0.006647969596087933, -0.00042607742943800986, 0.015400188975036144, -0.011337725445628166, 0.03029588982462883, 0.012054630555212498, 0.002685076091438532, -0.014842595905065536, 0.01256575807929039, 0.013129988685250282, 0.013873446732759476, 0.012917572632431984, 0.026751190423965454, -0.04474020376801491, 0.005409980192780495, 0.013110075145959854, 0.015293980948626995, -0.006339301820844412, 0.0010189348831772804, 0.0006849599303677678, 0.00596425449475646, -0.0002555634710006416, 0.0030717402696609497, 0.008755538612604141, -0.00047295840340666473, 0.006843790877610445, 0.016687963157892227, 0.0011201646411791444, 0.012897658161818981, 0.030375545844435692, 0.03879254683852196, -0.035898372530937195, -0.005539421457797289, 0.026379462331533432, -0.02758757956326008, -0.018148327246308327, 0.015652433037757874, -0.025569625198841095, 0.016714515164494514, -0.017842978239059448, 0.0045835478231310844, 0.003370450809597969, -0.018851956352591515, -0.01763056218624115, 0.011085481382906437, 0.009625118225812912, -0.023989778012037277, -0.020046798512339592, -0.03895185887813568, 0.026246702298521996, -0.015705537050962448, 0.00742793595418334, -0.017192453145980835, 0.0010156158823519945, -0.004195224028080702, -0.027348611503839493, -0.05437859892845154, 0.027879653498530388, -0.009538823738694191, -0.03467697650194168, 0.01752435229718685, -0.0024212151765823364, -0.01236661709845066, 0.015798470005393028, 0.20434458553791046, 0.012605586089193821, 0.015718813985586166, 0.032101429998874664, 0.00803863350301981, 0.010826598852872849, 0.0034849566873162985, -0.007341641932725906, 0.004424235317856073, 0.02055128663778305, -0.013143264688551426, 0.01715262420475483, 0.0015599329490214586, -0.008363896049559116, 0.01782970130443573, -0.009226837195456028, -0.05405997484922409, 0.013129988685250282, -0.011623159982264042, 0.030906585976481438, 0.016422443091869354, -0.0031812675297260284, 0.00973796471953392, -0.01436465885490179, 0.01647554710507393, -0.010056588798761368, -0.02007335051894188, 0.011125309392809868, 0.025596177205443382, 0.02611394226551056, -0.006153437774628401, 0.00716241542249918, 0.0004974360927008092, 0.011404105462133884, 0.012320151552557945, -0.008430276066064835, -0.0029074496123939753, -0.010342023335397243, -0.018971439450979233, 0.017763322219252586, 0.02677774243056774, 0.0037338819820433855, -0.005131183657795191, -0.018732471391558647, -0.001475298311561346, 0.01203471701592207, -0.004394364543259144, 2.41276193264639e-05, 0.013607925735414028, 0.0067110308445990086, -0.027056539431214333, 0.03380075842142105, 0.025556348264217377, 0.018546607345342636, -0.015665709972381592, 0.01703314110636711, 0.007832854986190796, 0.006053867284208536, 0.01286446861922741, -0.011118670925498009, -0.0018320914823561907, 0.011669626459479332, -0.008828557096421719, -0.014762939885258675, -0.004361174069344997, -0.03218108415603638, -0.00618330854922533, -0.00848338007926941, -0.012194029055535793, -0.007188967429101467, 0.003972850739955902, 0.01256575807929039, -0.017112797126173973, 0.007142501417547464, -0.02025921456515789, -0.02434823103249073, 0.0325528122484684, 0.015280704945325851, 0.022542690858244896, 0.02387029305100441, 0.008118289522826672, -0.003949617501348257, -0.01496207993477583, -0.013820341788232327, -0.022728554904460907, 0.0025290828198194504, 0.011576693505048752, 0.011131946928799152, 0.005954297259449959, 0.008582950569689274, 0.0021490566432476044, 0.0125192916020751, -0.03207487612962723, -0.011510313488543034, 0.003438490442931652, 0.012652051635086536, -0.019608689472079277, 0.00406910153105855, -0.023126835003495216, -0.006843790877610445, -0.03135797008872032, 0.06558356434106827, 0.03865978494286537, -0.007633714471012354, -0.006362535059452057, -0.024680130183696747, -0.0015267429407685995, 0.01421862281858921, 0.004875620361417532, -0.0140327587723732, -0.010746941901743412, -0.013355681672692299, 0.01744469627737999, -0.017497800290584564, 0.004377769306302071, 0.005642310716211796, 0.013415423221886158, -0.029499327763915062, 0.013634477742016315, -0.002709968714043498, 0.010580992326140404, -0.005765113979578018, -0.005051527637988329, 0.011457209475338459, -0.02299407497048378, 0.01898471638560295, 0.010873064398765564, -0.0035148276947438717, -0.014656731858849525, -0.018865231424570084, 0.02543686330318451, 0.009704774245619774, 0.004075739532709122, -0.031012794002890587, -0.003026933642104268, 0.01626313105225563, 0.00856967456638813, 0.008045271039009094, -0.02190544083714485, -0.0009907233761623502, -0.016302958130836487, 0.011603246442973614, 0.006322707049548626, -0.013149903155863285, 0.016050714999437332, 0.004364493303000927, 0.017657114192843437, 0.01179574802517891, -0.020524734631180763, -0.01320300716906786, -0.0321279801428318, -0.008085099048912525, -0.01115849893540144, 0.0016744387103244662, 0.027295507490634918, -0.023458736017346382, -0.020418526604771614, -0.018188154324889183, 0.012764898128807545, 0.01017607282847166, -0.0642559602856636, -0.0170596931129694, 0.022861314937472343, -0.02239665389060974, -0.01553294900804758, -0.015161220915615559, -0.16812758147716522, 0.02502530813217163, -0.016130371019244194, -0.0004152906476520002, 0.014922251924872398, 0.003136460902169347, -0.017404869198799133, -0.0023150069173425436, 0.00199804175645113, -0.014377934858202934, 0.013807065784931183, 0.02278165891766548, -0.03587181866168976, -0.008987869136035442, 0.00735491793602705, 0.014908975921571255, -0.008702434599399567, 0.019316617399454117, 0.034438010305166245, 0.010753580369055271, 0.028888631612062454, -0.009538823738694191, -0.008397085592150688, -0.01553294900804758, -0.004460744559764862, -0.00871571060270071, -0.031623490154743195, 0.007321727927774191, -0.004547038581222296, -0.005808261223137379, -0.013594649732112885, 0.012486102059483528, 0.014404486864805222, 0.00716241542249918, -0.00433794129639864, 0.0030850162729620934, -0.0025340612046420574, -0.008881661109626293, -0.0032177765388041735, 0.02222406677901745, 0.0368276946246624, 0.005327004939317703, 0.006465424317866564, 0.02173285372555256, 0.0028643023688346148, 0.012127649039030075, 0.030216233804821968, 0.004948638379573822, 0.015957782045006752, 0.016143646091222763, 0.02660515531897545, -0.05366169288754463, 0.028516901656985283, -0.0005762624787166715, -0.00027734445757232606, 0.02846379764378071, 0.007746560499072075, 0.020896462723612785, 0.0022287126630544662, -0.02047163061797619, 0.011570055969059467, -0.021945269778370857, -0.00591778801754117, -0.03088003396987915, -0.000779551628511399, -0.020418526604771614, 0.009313131682574749, -0.002444448182359338, -0.026923779398202896, 0.025795316323637962, 0.006701073609292507, -0.011563417501747608, 0.005257306154817343, 0.0034617234487086535, 0.004493934568017721, 0.00023710151435807347, 0.013846893794834614, 0.024480991065502167, 0.01578519307076931, 0.01597105897963047, 0.012167477048933506, 0.010448231361806393, -0.005194244906306267, 0.032579366117715836, -0.020378699526190758, 0.017165901139378548, 0.028676213696599007, 0.035606298595666885, -0.004872301127761602, -0.011742644011974335, 0.0008811961743049324, -0.02766723558306694, 0.017670389264822006, 0.007381469942629337, -0.001652865088544786, 0.028490349650382996, 0.008682520128786564, 0.025012031197547913, -0.019515756517648697, 0.018267810344696045, -0.01567898504436016, 0.007082759402692318, -0.03117210790514946, 0.029977263882756233, 0.028676213696599007, 0.026658259332180023, -0.00618330854922533, -0.0009650010615587234, 0.002177268033847213, -0.025211172178387642, -0.04118223115801811, 0.01109875738620758, 0.02748137153685093, 0.02758757956326008, -0.018971439450979233, 0.022635623812675476, -0.01505501288920641, -0.0120745450258255, -0.005559335462749004, -0.0013807066716253757, 0.05735242739319801, 0.004381088074296713, -0.03207487612962723, -0.015546225011348724, -0.023896845057606697, -0.001220564590767026, -0.10525232553482056, -0.025503244251012802, -0.02542358823120594, 0.022011648863554, 0.027534475550055504, 0.0050813984125852585, -0.0147098358720541, 0.020723875612020493, -0.008841833099722862, 0.03528767451643944, 0.019077647477388382, -0.0003501551691442728, -0.0055925254710018635, 0.0071358634158968925, 0.027122918516397476, -0.00901442114263773, -0.005522826686501503, 0.010481421835720539, -0.008802005089819431, 0.027029987424612045, 0.0033853864297270775, -0.009751240722835064, 0.015267428942024708, -0.030720721930265427, -0.04460744559764862, 0.00014085033035371453, -0.03135797008872032, 0.005214158911257982, 0.007401383947581053, 0.02875586971640587, 0.026565326377749443, -0.003096632892265916, 0.03011002577841282, -0.008403724059462547, -0.0012114372802898288, 0.014152242802083492, -0.029074495658278465, -0.0027630727272480726, -0.012705155648291111, -0.028888631612062454, 0.016873827204108238, 0.007288537919521332, 0.0011268026428297162, -0.04386398568749428, -0.0042815180495381355, -0.015944506973028183, 0.0034949136897921562, -0.002366451546549797, -0.007474401965737343, -0.023007351905107498, -0.021573541685938835, 0.0030634428840130568, -0.018188154324889183, -0.020232662558555603, 0.0060638245195150375, -0.020006969571113586, -0.003856685245409608, 0.005509550217539072, -0.016435720026493073, -0.02651222236454487, -0.013953102752566338, 0.0028692809864878654, -0.03927048295736313, 0.03518146649003029, 0.000859622610732913, 0.01037521380931139, -0.018161602318286896, -0.02231699787080288, -0.0015732089523226023, -0.012605586089193821, -0.008264325559139252, 0.0022818169090896845, -0.028994839638471603, -0.0021905440371483564, -0.017803149297833443, 0.011596607975661755, -0.012320151552557945, -0.041155677288770676, 0.027215851470828056, -0.012731708586215973, -0.02193199284374714, -0.03613733872771263, 0.0066147795878350735, 0.006963275372982025, 0.021082328632473946, 0.018480226397514343, -0.015506397001445293, -0.009213561192154884, 0.03048175387084484, -0.01713934913277626, -0.002366451546549797, 0.008085099048912525, 0.00920028518885374, -0.0045204865746200085, 0.006767453625798225, 0.0017009907169267535, -0.023246319964528084, -0.027295507490634918, -0.0006517698639072478, 0.00501501839607954, -0.013110075145959854, 0.012486102059483528, -0.05735242739319801, 0.014537247829139233, 0.011165137402713299, 0.010786770842969418, 0.0031447585206478834, 0.008841833099722862, 0.009791068732738495, -0.01256575807929039, 0.008290877565741539, -0.001749116345308721, -0.03143762797117233, 0.016807448118925095, -0.001067060511559248, -0.005662224721163511, -0.017962461337447166, -0.011536865495145321, 0.03557974845170975, 0.007321727927774191, 0.001534210634417832, 0.007554058451205492, 0.012081182561814785, -0.003465042682364583, 0.005131183657795191, 0.00011471315519884229, -0.018586434423923492, 0.0033123681787401438, -0.027109643444418907, 0.007520868442952633, -0.004108930006623268, -0.01830763928592205, 0.014723111875355244, -0.01607726700603962, -0.015174496918916702, 0.03207487612962723, -0.007819578982889652, -0.03077382594347, -0.004550357814878225, 0.03788977488875389, 0.012426359578967094, -0.010899616405367851, -0.034145936369895935, -0.02287459187209606, 0.019130751490592957, -0.02337907999753952, -0.00022818168508820236, -0.010647372342646122, -0.009459167718887329, -0.007726646494120359, 0.007666904479265213, 0.01105229090899229, 0.022449757903814316, -0.0026220150757580996, -0.008436913602054119, -0.014046034775674343, 0.0007206392474472523, -0.02193199284374714, 0.015373636968433857, -0.00633266381919384, 0.021414227783679962, -0.007388107944279909, 0.04006704315543175, 0.002706649713218212, 0.012771536596119404, -0.0012371595948934555, 0.007096035405993462, 5.51331004317035e-06, -0.014696559868752956, 0.007912511005997658, -0.020617667585611343, 0.020511459559202194, 0.008974593132734299, -0.00025950479903258383, 0.008928126655519009, 0.015426740981638432, 0.005051527637988329, -0.008456828072667122, -0.005987487267702818, 0.006983189377933741, -0.006392406299710274, 0.015174496918916702, 0.011974974535405636, -0.01041504181921482, -0.004533762577921152, 0.01615692302584648, -0.004278199281543493, 0.02327287197113037, -0.017696941271424294, -0.01218075305223465, -0.0036675019655376673, 0.007972253486514091, 0.010514612309634686, 0.010886340402066708, -0.013163179159164429, -0.010561077855527401, 0.012479463592171669, 0.008742262609302998, -0.0038898754864931107, -0.0048258351162076, -0.011404105462133884, 0.02182578481733799, 0.009187009185552597, 0.006830514874309301, -0.03178280591964722, -0.03271212428808212, -0.023073730990290642, 0.005642310716211796, -0.02124164067208767, -0.031623490154743195, -0.01052124984562397, 0.026937054470181465, 0.011676263995468616, 0.02377736195921898, -0.006073781289160252, 0.00871571060270071, 0.009897276759147644, -0.014444315806031227, -0.004152076784521341, -0.00611360976472497, -0.0177367702126503, 0.041925687342882156, 0.01781642623245716, 0.0085298465564847, 0.013780513778328896, -0.021493883803486824, 0.03565940260887146, 0.025556348264217377, 0.01052788831293583, -0.011948422528803349, -0.012625499628484249, -0.0007023846847005188, -0.017975738272070885, -0.017670389264822006, -0.009253389202058315, -0.009260027669370174, -0.006276241037994623, -0.01349507924169302, -0.009810982272028923, 0.021400952711701393, 0.015944506973028183, 0.06807945668697357, 0.016741067171096802, -0.005798303987830877, 0.01782970130443573, 0.00648201908916235, 0.02222406677901745, 0.0019416186260059476, 0.011643074452877045, -0.01890506036579609, -0.034915946424007416, 0.004251647274941206, 0.0037239249795675278, 0.004371131304651499, -0.012512654066085815, -0.021215088665485382, 0.0007588078151457012, 0.00818466953933239, 0.01392655074596405, -0.008928126655519009, 0.007202243432402611, 0.008835194632411003, -0.025397036224603653, -0.0002470585168339312, 0.0027282231021672487, -0.01861298643052578, -0.018559882417321205, 0.02025921456515789, -0.006133523769676685, -0.01696676015853882, -0.026074113324284554, 0.007188967429101467, -0.0005397534114308655, -0.018931612372398376, -0.003118206514045596, 0.007773112505674362, -0.013574735261499882, 0.005914469249546528, -0.010388489812612534, -0.006485338322818279, -0.015134668909013271, 0.003471680684015155, 0.018440399318933487, -0.013355681672692299, -0.01832091435790062, -0.005307090934365988, -0.02542358823120594, -0.009804344736039639, 0.006541761569678783, 0.00396621273830533]" +36,"Growth was driven by installed base expansion across all workloads and customer segments, as well as higher ARPU from E5. Demand for security, compliance, and voice value in Microsoft 365 drove strong E5 momentum again this quarter. Paid Office 365 commercial seats grew 14% year over year, driven by our small and medium business and frontline worker offerings, although we saw a continued impact of new deal moderation outside of E5. Office consumer revenue grew 7% and 11% in constant currency, driven by continued momentum in Microsoft 365 subscriptions, which grew 13% to $61.3 million.","[0.006413091905415058, -0.04080691561102867, -0.024118071421980858, -0.035477250814437866, -0.005016747396439314, -0.005844459868967533, -0.03300084173679352, -0.01600244827568531, -0.008943336084485054, -0.02118406444787979, 0.04051082208752632, 0.010060411877930164, -0.00865397322922945, 0.003028217703104019, -0.02791343629360199, 0.024400705471634865, 0.00014752046263311058, 0.003152711084112525, 0.010558385401964188, -0.031385794281959534, -0.011379368603229523, -0.005487803369760513, -0.019730519503355026, 0.003872753819450736, -0.010046953335404396, 0.012240728363394737, -0.0012844689190387726, -0.009340369142591953, 0.02409115433692932, -0.00867416150867939, 0.006436644587665796, -0.02985149621963501, -0.011937906965613365, 0.004861971829086542, -0.036446280777454376, 0.004858606960624456, -0.006668807938694954, 0.014333563856780529, 0.04217970743775368, 0.007765695918351412, 0.020026613026857376, 0.00389967137016356, -0.008539573289453983, 0.027267416939139366, -0.02257031574845314, 0.02033616416156292, 0.0007019576733000576, -0.012173434719443321, -0.010874666273593903, 0.005726695992052555, -0.010874666273593903, 0.028694044798612595, -0.03507348895072937, -0.01218689326196909, -0.002619408303871751, -0.002720348769798875, -0.00421931641176343, 0.025248605757951736, -0.006857230793684721, -0.0010901583591476083, -0.013021335937082767, 0.010565115138888359, -0.026136882603168488, -0.0034588973503559828, -0.0322471521794796, -0.0018421657150611281, -0.018842242658138275, -0.00021092376846354455, 0.010450715199112892, -0.01722719334065914, 0.018465397879481316, 0.028263363987207413, 0.007536896970123053, 0.01562560349702835, 0.014320104382932186, -0.01835772767663002, 0.006722643040120602, -0.009697025641798973, 0.0034488034434616566, -0.004320257343351841, 0.00201039994135499, -0.02130519412457943, -0.011843695305287838, -0.010026765055954456, 0.0036002143751829863, 0.0049931942485272884, -0.020874513313174248, 0.008014682680368423, -0.010793913155794144, 0.01675613783299923, 0.021991590037941933, -0.014024012722074986, 0.0034185212571173906, 0.020995642989873886, -0.0021231169812381268, 0.016863808035850525, -0.0158274844288826, 0.02142632193863392, 0.005467615090310574, -0.024696797132492065, -0.0011221228633075953, -0.005773801822215319, -0.03493890166282654, -0.008997171185910702, -0.020188117399811745, 0.005921847652643919, 0.001005199970677495, 0.01010751724243164, 0.045329052954912186, -0.022422268986701965, -0.014468151144683361, -0.01687726564705372, 0.009091381914913654, -0.006971629802137613, -6.939665036043152e-05, 0.0002773763262666762, 0.007698402274399996, 0.008034870959818363, -0.0069177947007119656, -0.011937906965613365, 0.012859830632805824, -0.013182840310037136, 0.026217635720968246, -0.011843695305287838, -0.013243405148386955, 0.010706431232392788, 0.006524126511067152, -0.01526221726089716, 0.02539665251970291, -0.0007057429174892604, 0.00205750553868711, -0.007509979885071516, 0.006584690883755684, 0.009804695844650269, 0.00507394690066576, 0.0198785662651062, -0.026621397584676743, 0.011204404756426811, -0.02126481756567955, -0.02872096188366413, -0.01425281073898077, 0.0129069359973073, 0.011022712104022503, 0.009562438353896141, 0.011513955891132355, 0.012812725268304348, 0.02939389832317829, 0.0028263365384191275, 0.005639214068651199, -0.0060126944445073605, 0.012032117694616318, -0.032731667160987854, 0.01391634251922369, 0.02421228215098381, 0.010248834267258644, -0.00779934274032712, -0.01410476490855217, 0.01819622330367565, -0.021776249632239342, -0.03119737096130848, -0.014387398026883602, 0.022583773359656334, 0.0005110117490403354, -0.007281180936843157, 0.0014400857035070658, 0.019138336181640625, 0.031008947640657425, 0.007617649622261524, -0.005989141296595335, -0.0037314370274543762, -0.006032882258296013, 0.0060295178554952145, -0.012785808183252811, 0.006258316338062286, 0.013956718146800995, 0.021197523921728134, 0.007671484723687172, -0.01090831309556961, -0.010309399105608463, -0.010046953335404396, 0.013182840310037136, -0.015289134345948696, 0.011783131398260593, 0.013243405148386955, 0.008963524363934994, -0.0011826872359961271, 0.03246249258518219, -4.237401662976481e-05, 0.015289134345948696, -0.011231322772800922, -0.003364686155691743, 0.0042967041954398155, -0.015760190784931183, -0.024104611948132515, -0.6430050134658813, -0.018465397879481316, 0.0008214040426537395, 0.005841095466166735, 0.011480309069156647, -0.008236751891672611, 0.02209925837814808, 0.0017933777999132872, -0.027805767953395844, -0.006736102048307657, 0.01313573494553566, 0.012476257048547268, -0.010706431232392788, 0.004861971829086542, 0.0007658866816200316, -0.012563738040626049, 0.008048329502344131, -0.011924448423087597, -0.021453239023685455, 0.006712548900395632, -0.019394051283597946, 0.004858606960624456, -0.012267646379768848, 0.019084500148892403, 0.008647243492305279, -0.011554332450032234, -0.007691672537475824, -0.0012861513532698154, -0.01465657353401184, 0.003724707756191492, -0.006601514294743538, 0.01802125945687294, 0.006863960064947605, 0.02063225582242012, 0.04960893467068672, 0.010289210826158524, -0.022597232833504677, 0.0022997630294412374, 0.012011930346488953, 0.042798809707164764, -0.02316250093281269, 0.0013181158574298024, 0.0053330278024077415, -0.017779001966118813, 0.000637608056422323, 0.018075093626976013, 0.026123423129320145, -0.023418216034770012, 0.014454691670835018, 0.001646172720938921, 0.013849048875272274, -0.002575667342171073, -0.017065688967704773, -0.012301293201744556, 0.018048176541924477, 0.011170757934451103, 0.006312151439487934, -0.021547451615333557, 0.005921847652643919, -0.021951213479042053, -0.006860595196485519, 0.009091381914913654, -0.0203765407204628, -0.03230098634958267, -0.03292008861899376, 0.013889424502849579, -0.012516632676124573, 0.0037314370274543762, 0.035100407898426056, -0.003802095539867878, 0.013068441301584244, 0.02298753708600998, 0.013418368995189667, -0.02872096188366413, 0.017415616661310196, 0.02316250093281269, 0.010632408782839775, -0.021372487768530846, -0.010215187445282936, 0.02047075144946575, 0.0017832836601883173, -0.03222023695707321, 0.001273533795028925, 0.004824960138648748, -0.013593332841992378, -0.011150570586323738, -0.034508220851421356, -0.023566262796521187, 0.0006935459678061306, 0.005639214068651199, 0.03598868474364281, 0.001288674888201058, 0.005481074098497629, -0.028074942529201508, 0.023647014051675797, 0.020053530111908913, -0.013102088123559952, 0.015504473820328712, 0.002545385155826807, 0.005201804917305708, -0.014010553248226643, -0.015141088515520096, 0.040483903139829636, 0.025463946163654327, 0.03523499518632889, 0.03162804991006851, -0.006678902078419924, -0.00197338848374784, 0.02433341182768345, -0.014535444788634777, 0.01387596596032381, -0.00938747450709343, -0.004996559116989374, 0.0006048023351468146, 0.005501261912286282, -0.032193318009376526, 0.040860749781131744, -0.004542326554656029, -0.02033616416156292, -0.02189737744629383, 0.00021786343131680042, 0.005676225759088993, 0.014750784263014793, -0.028101859614253044, -0.005151334684342146, 0.013216487132012844, 0.024642962962388992, 0.008694348856806755, 0.009326910600066185, -0.005541638471186161, 0.005464250687509775, -0.023229794576764107, 0.02702515944838524, 0.010013306513428688, 0.036903880536556244, 0.003977058921009302, 0.013526038266718388, -0.03173572197556496, 0.02383543737232685, -0.023014454171061516, -0.0328393392264843, -0.003697790205478668, 0.0011675461428239942, -0.006551044061779976, 0.0015166322700679302, -0.02799418941140175, -0.014454691670835018, 0.001901047769933939, -0.010417068377137184, 0.0023418215569108725, -0.004165481775999069, 0.0007402309565804899, -0.009454768151044846, 0.01168219093233347, 0.005107593722641468, 0.001003517652861774, -0.012651219964027405, -0.01831735111773014, -0.026083048433065414, -0.007287910208106041, -0.026796361431479454, 0.002447809325531125, -0.005110958591103554, -0.0004210063780192286, -0.017657874152064323, -0.0016486962558701634, -0.05192383751273155, 0.014696949161589146, 0.010800642892718315, -0.015235299244523048, 0.0034050624817609787, -0.009569168090820312, 0.011325533501803875, 0.0030820525716990232, 0.016998395323753357, 0.01625816337764263, -0.02349896915256977, 0.01726756989955902, 0.009131758473813534, -0.015975531190633774, 0.013997094705700874, 0.026123423129320145, -0.0007107899873517454, 0.006100176367908716, 0.027940355241298676, -0.0005030205938965082, 0.021547451615333557, 0.031170453876256943, -0.009804695844650269, 0.008936606347560883, 0.014495068229734898, 0.03178955614566803, -0.01995931938290596, -0.009831612929701805, -0.0017765543889254332, -0.01784629561007023, -0.021587826311588287, -0.006937982980161905, 0.009394204244017601, -0.010437256656587124, 0.01742907427251339, 0.03119737096130848, 0.001931329956278205, 0.017065688967704773, 0.009952741675078869, -0.016513880342245102, -0.020363081246614456, -0.026755984872579575, 0.016783054918050766, 0.03765757009387016, 0.016917642205953598, -0.018963372334837914, -0.008916418999433517, -0.005497897509485483, -0.018640361726284027, 0.015894778072834015, 0.013741378672420979, 0.013283781707286835, -0.029151640832424164, -0.004475032910704613, 0.0027910072822123766, -0.017455991357564926, 0.029420817270874977, -0.00019683413847815245, 0.0010809054365381598, 0.004239504691213369, 0.005915118381381035, 0.024979431182146072, 0.022839490324258804, -0.011884071864187717, -0.000629196350928396, 0.031977977603673935, 0.020874513313174248, -0.005942035932093859, 0.009400933049619198, -0.007086029276251793, 0.045329052954912186, -0.03275858610868454, 0.01843848079442978, -0.012785808183252811, 0.013714461587369442, 0.006527491379529238, 0.023970024660229683, -0.017455991357564926, 0.009461497887969017, -0.0006005964823998511, 0.0062313987873494625, -0.0062145753763616085, -0.017832837998867035, 0.012489715591073036, -0.006241492927074432, 0.009851801209151745, 0.018290434032678604, -0.006127093452960253, -0.003916495013982058, 0.002062552608549595, 0.005783895496279001, 0.009501873515546322, 0.03313542902469635, 0.024858301505446434, 0.0005879789241589606, 0.005575285293161869, 0.03181647136807442, -0.01126496959477663, 0.0018354363273829222, 0.012476257048547268, -0.020497668534517288, -0.0010363233741372824, -0.011238052509725094, -0.006157375872135162, 0.012388775125145912, -0.0008950065239332616, 0.012691596522927284, 0.005514720920473337, -0.024575667455792427, 0.00742249796167016, -0.0030938289128243923, -0.010026765055954456, -0.023000994697213173, 0.01238204538822174, 0.0021786342840641737, -0.03499273583292961, 0.0007196222431957722, 0.023095207288861275, -0.0037650838494300842, 0.021251358091831207, -0.006705819629132748, -0.016621550545096397, -0.00901062972843647, 0.01185042504221201, -0.03313542902469635, 0.031897224485874176, -0.035181161016225815, 0.0006800871924497187, 0.014279728755354881, -0.0010262293508276343, 0.01033631619066, -0.004892253782600164, -0.01616395264863968, -0.006372715812176466, 0.011325533501803875, -0.012657949700951576, -0.03566567599773407, 0.009481686167418957, 0.03814208507537842, -0.012220540083944798, -0.020645715296268463, -0.02100910060107708, -0.016581173986196518, -0.010269022546708584, 0.00011208611249458045, -0.012085952796041965, -0.03693079575896263, 0.02737508714199066, 0.007806072011590004, 0.0030046647880226374, -0.0040611764416098595, -0.023310545831918716, 0.026621397584676743, 0.008122352883219719, -0.02083413675427437, 0.0046634553000330925, -0.03098203055560589, 0.016567714512348175, 0.07057765871286392, 0.02963615581393242, 0.006436644587665796, 0.02829028107225895, 0.015491015277802944, -0.0097912373021245, -0.0194882620126009, -0.0005030205938965082, 0.004394280258566141, 0.0008966888999566436, -0.025625450536608696, 0.02130519412457943, 0.017577121034264565, -0.00993255339562893, 0.016621550545096397, 0.010013306513428688, 0.010854477994143963, -0.014952666126191616, 0.0037583545781672, 0.001610843581147492, 0.02079376019537449, 3.388344339327887e-05, 0.019649768248200417, 0.022301141172647476, 0.028774796053767204, 0.023821977898478508, 0.02939389832317829, 0.03434671834111214, -0.0075638145208358765, -0.0040611764416098595, -0.014871913008391857, 0.01899028941988945, 0.0023939742241054773, 0.020228493958711624, -0.007503250148147345, 0.009898906573653221, 0.0028229716699570417, -0.023041371256113052, -0.002076011383906007, 0.018721114844083786, 0.004222681280225515, -0.02775193192064762, 0.011729296296834946, -0.021291734650731087, 0.014495068229734898, -0.010982335545122623, -0.013068441301584244, 0.019797813147306442, -0.006127093452960253, -0.02156090922653675, -0.018007799983024597, -0.013485662639141083, -0.03065902180969715, 0.008876042440533638, -0.019299840554594994, 0.019676685333251953, -0.021843543276190758, -0.010699702426791191, -0.020578421652317047, -0.044952210038900375, -0.02118406444787979, -0.026284929364919662, 0.01237531565129757, -0.012166705913841724, -0.016904184594750404, -0.0012373633217066526, -0.019811272621154785, 0.004528867546468973, -0.02252993918955326, 0.018115470185875893, -0.003825648222118616, -0.022328058257699013, -0.008048329502344131, 0.019555555656552315, 0.03372761607170105, 0.000498394132591784, 0.019555555656552315, -0.00047610310139134526, 0.001236522221006453, -0.0024107976350933313, 0.011110194027423859, 0.004727384075522423, -0.026136882603168488, -0.021762790158391, -0.05216609686613083, 0.01886915974318981, -0.0012020341819152236, -0.02029578760266304, -0.009892177768051624, -0.020403457805514336, -0.013108817860484123, -0.026850195601582527, -2.9677583370357752e-05, -0.028667127713561058, 0.0274962168186903, -0.0030315823387354612, 0.003220004728063941, 0.006638525985181332, 0.011480309069156647, 0.004333715885877609, 0.004118375945836306, -0.015773648396134377, -0.006618337705731392, -0.00825021043419838, 0.013674085028469563, 0.001052305568009615, 0.026554103940725327, -0.0033966507762670517, -0.015423721633851528, -0.013371262699365616, -0.012281104922294617, -0.0036540492437779903, -0.010087328962981701, -0.009656649082899094, 0.004986464977264404, -0.014414316043257713, 0.034212131053209305, -0.010793913155794144, 0.019057583063840866, -0.003322627628222108, 0.020282328128814697, -0.029716908931732178, 0.036607787013053894, -0.033619944006204605, -0.01166200265288353, -0.012429150752723217, 0.021359028294682503, -0.014077846892178059, -0.034669727087020874, 0.001961612142622471, 0.0011835283366963267, 0.010087328962981701, -0.006574596744030714, -0.0029962530825287104, -0.01355968602001667, -0.024616044014692307, -0.009360557422041893, 0.008882771246135235, -0.021587826311588287, -0.000983329606242478, -0.033027760684490204, 0.014952666126191616, 0.025840790942311287, -0.020147740840911865, 0.015840942040085793, -0.023889271542429924, -0.004818230867385864, -0.0029525121208280325, -0.006951441988348961, 0.030847443267703056, -0.00829731673002243, 0.0062818690203130245, -0.005565191153436899, -0.009831612929701805, -0.03170880302786827, 0.007274451665580273, 0.013021335937082767, -0.022583773359656334, 0.04939359426498413, 0.018801866099238396, 0.03464280813932419, 0.021412862464785576, 0.007691672537475824, 0.015127629041671753, -0.0029390533454716206, -0.01659463346004486, -0.0022947159595787525, -0.021628202870488167, -0.0048821596428751945, 0.020282328128814697, -0.019178710877895355, 0.001909459475427866, -0.007153322920203209, 0.0034134741872549057, 0.0004925059620290995, 0.030847443267703056, -0.02698478288948536, 0.0021769520826637745, -0.04013397917151451, -0.0300668366253376, 0.0014451327733695507, -0.007153322920203209, -0.029447734355926514, 0.01671576127409935, -0.024642962962388992, -0.020174657925963402, 0.007711860816925764, 0.023970024660229683, 0.024777550250291824, -0.007274451665580273, 0.015342969447374344, 0.012092682532966137, 0.01713298261165619, -0.00545079167932272, 0.00065779616124928, -0.02458912692964077, -0.006466927006840706, -0.033323854207992554, -0.021776249632239342, 0.015329510904848576, 0.00489561865106225, 0.03663470223546028, 0.008923147805035114, 0.01768479123711586, -0.004559149965643883, 0.00666207866743207, -0.017415616661310196, -0.03676928952336311, -0.01590823568403721, -0.03999939188361168, 0.013478932902216911, -0.025760037824511528, -0.009279804304242134, -0.008512656204402447, -0.04161443933844566, 0.0016335551626980305, -0.01429318729788065, 0.006103540770709515, -0.004905712325125933, 0.0011818460188806057, 0.026002295315265656, -0.00267829024232924, 0.04223354160785675, -0.013701002113521099, 0.02122444100677967, -0.0034134741872549057, 0.009562438353896141, -0.022799113765358925, -0.036150187253952026, -0.0014888736186549067, -0.012314751744270325, 0.031762637197971344, 0.01966322585940361, 0.0052993809804320335, 0.0026412787847220898, -0.010645867325365543, -0.011365910060703754, -0.00993255339562893, -0.02880171500146389, 0.01220708154141903, 0.01187061332166195, -0.005955494474619627, -0.02029578760266304, -0.023552803322672844, -0.01578710786998272, 0.02134556882083416, -0.003339451039209962, -0.002033952856436372, 0.02514093555510044, -0.027725014835596085, -0.03281242027878761, 0.021143687888979912, 0.011783131398260593, 0.004222681280225515, -0.016190869733691216, -0.0037348016630858183, -0.006244857795536518, -0.01742907427251339, 0.006847136653959751, -0.01877494901418686, -0.021843543276190758, -0.001637761015444994, -0.016984935849905014, 0.014696949161589146, 0.026917489245533943, 0.011150570586323738, -0.013862507417798042, 0.01317611150443554, 0.005380133166909218, 0.023095207288861275, -0.03386220335960388, 0.0035160970874130726, 0.01625816337764263, 0.007186969742178917, 0.015531391836702824, -0.014966124668717384, -0.021507075056433678, -0.016285082325339317, -0.01944788731634617, 0.00040965055814012885, 0.026836737990379333, -0.0067663840018212795, -0.011036170646548271, 0.019420968368649483, 0.010652597062289715, -0.013532768003642559, -0.002690066583454609, 0.006985088810324669, 0.02955540455877781, -0.0075167091563344, -0.007664755452424288, 0.012328210286796093, 0.008606867864727974, 0.05418490618467331, -0.012536820955574512, 0.003083735005930066, 0.0013568097492679954, 0.009259616956114769, -0.004192398861050606, 0.010746807791292667, 0.018801866099238396, 0.002597537823021412, -0.021614745259284973, 0.018290434032678604, -0.02257031574845314, -0.00314766401425004, 0.02605612948536873, -0.008425174281001091, -0.029017053544521332, -0.0036910607013851404, -0.007900283671915531, -0.0008558920817449689, -0.00772531982511282, 0.012065764516592026, 0.011042900383472443, 0.01596207171678543, 0.011574520729482174, -0.0008882771944627166, -0.004660090431571007, 0.028774796053767204, 0.00886258389800787, -0.0022089164704084396, 0.01027575135231018, -0.006527491379529238, 0.01526221726089716, 0.008068517781794071, -0.006423186045140028, 0.0009202416986227036, -0.03512732312083244, -0.02201850712299347, -0.014414316043257713, 0.018128929659724236, -0.013263593427836895, 0.0006216258043423295, -0.011278428137302399, -0.011513955891132355, 0.00534648634493351, 0.013425097800791264, 0.02004007063806057, 0.014602738432586193, 0.0001477307523600757, -0.011722566559910774, 0.027698097750544548, 0.0036540492437779903, -0.008431904017925262, -0.025625450536608696, -0.019232546910643578, 0.0017244017217308283, -0.028317200019955635, -0.01667538471519947, 0.018855702131986618, 0.020726466551423073, 0.011910988949239254, -0.04592123627662659, -0.0173079464584589, -0.01954209804534912, -0.06293309479951859, -0.018263516947627068, -0.021372487768530846, 0.028371034190058708, 0.03954179212450981, 0.00974413100630045, -0.020161200314760208, 0.029986083507537842, 0.0017496368382126093, -0.003724707756191492, -0.048989832401275635, 0.011776401661336422, -0.004350539296865463, -0.03658086806535721, -0.0046129850670695305, -0.006951441988348961, -0.014508526772260666, -0.014696949161589146, 0.007012006361037493, -0.014185517095029354, 0.01920562982559204, 0.004888888914138079, 0.008243481628596783, -0.014589279890060425, 0.02100910060107708, 0.018169306218624115, 0.011197675950825214, 0.0005694731371477246, 0.03254324570298195, -0.03886885568499565, 0.00656786747276783, 0.02421228215098381, 0.006769748870283365, -0.016365833580493927, -0.003201498882845044, 0.016446586698293686, 0.002050776267424226, -0.00380546017549932, -0.0023249981459230185, -0.002646325621753931, 0.00198348262347281, -0.004064540844410658, 0.011271699331700802, -0.011729296296834946, -0.0007578955846838653, 0.031601134687662125, 0.02496597170829773, -0.022301141172647476, -0.005837730597704649, 0.03765757009387016, -0.024656420573592186, -0.010888124816119671, 0.023472052067518234, -0.036015599966049194, -0.0005597996641881764, -0.027334710583090782, 0.003771813353523612, 0.010248834267258644, -0.013660626485943794, -0.010558385401964188, 0.01107654720544815, -0.007247534114867449, -0.006971629802137613, -0.01978435553610325, -0.036150187253952026, 0.009212510660290718, 0.005703143309801817, 0.007038923446089029, -0.014710408635437489, -0.0007465397357009351, 0.004266422241926193, -0.005750248674303293, -0.03625785931944847, 0.025288982316851616, -0.00013416686851996928, -0.019097959622740746, 0.024602586403489113, 0.014198975637555122, 0.00480140745639801, 0.0158274844288826, 0.20844903588294983, 0.028909383341670036, 0.015100711956620216, 0.033027760684490204, 0.01907104253768921, 0.01802125945687294, -9.925824269885197e-05, -0.008620326407253742, 0.012839642353355885, 0.019636308774352074, -0.008203105069696903, 0.01355968602001667, -0.0052421810105443, -0.0059958710335195065, 0.017779001966118813, -0.01950172148644924, -0.0498511902987957, 0.013001147657632828, -0.01970360241830349, 0.04382167384028435, 0.01429318729788065, -0.004276516381651163, -0.0047643957659602165, -0.012099411338567734, 0.018425021320581436, -0.011796589940786362, -0.03028217703104019, 0.0055786496959626675, 0.026473350822925568, 0.008371339179575443, 0.00371124898083508, 0.011796589940786362, 0.0010666055604815483, -0.0013837271835654974, -0.0023350922856479883, -0.017455991357564926, -0.017079146578907967, -0.009474956430494785, -0.011958095245063305, 0.02925931103527546, 0.03337768837809563, 0.01671576127409935, 0.008492467924952507, -0.01166200265288353, -0.007112946826964617, 0.008956794627010822, -0.011345721781253815, 0.016190869733691216, 0.0032889808062464, -0.00505375862121582, -0.02458912692964077, 0.0150334183126688, 0.011581250466406345, 0.020188117399811745, -0.015100711956620216, 0.01679651439189911, -0.004064540844410658, 0.0035867555998265743, -0.010565115138888359, 0.007260993123054504, -0.012644491158425808, -0.0009000535937957466, -0.010760266333818436, -0.015639061108231544, -0.014750784263014793, -0.008687620051205158, -0.004283245652914047, -0.008828937076032162, -0.019892025738954544, -0.017146440222859383, 0.017913589254021645, 0.006826948374509811, -0.0101882703602314, 0.007153322920203209, -0.01687726564705372, -0.019313298165798187, 0.04266422241926193, 0.01391634251922369, 0.017913589254021645, 0.029205476865172386, 0.020309247076511383, -0.0002946203458122909, -0.005255640018731356, -0.028263363987207413, -0.020093906670808792, 0.0010985700646415353, 0.014010553248226643, 0.004236139822751284, -0.0029928884468972683, 0.0035228265915066004, -0.00649384455755353, 0.0035531087778508663, -0.005474344361573458, -0.013290510512888432, 0.011695649474859238, -0.006487115286290646, -0.005020111799240112, 0.009730672463774681, -0.01827697642147541, -0.0020642350427806377, -0.026755984872579575, 0.06438663601875305, 0.03886885568499565, -0.019044123589992523, 0.0017412251327186823, 0.007052382454276085, -0.0010026765521615744, 0.026217635720968246, -0.0027792309410870075, -0.025948461145162582, -0.0065779616124928, -0.026459893211722374, 0.026661774143576622, 0.003188040107488632, 0.003317580558359623, -0.006497208960354328, 0.004495220724493265, -0.007059111725538969, 0.020955266430974007, 0.0009421121212653816, 0.013943259604275227, -0.03329693526029587, -0.003228416433557868, 0.02555815689265728, -0.02025541104376316, 0.004252963233739138, -0.0062313987873494625, -0.008600138127803802, -0.0022593867033720016, -0.03060518577694893, 0.024858301505446434, -0.007254263386130333, 0.018922995775938034, -0.03262399882078171, -0.01831735111773014, 0.01391634251922369, 0.023000994697213173, -0.003177946200594306, -0.012429150752723217, 0.008182916790246964, -0.00843863282352686, 0.015154547058045864, 0.013081899844110012, 0.006133823189884424, 0.004518773406744003, -0.001991894328966737, 0.010309399105608463, 0.016608091071248055, -0.023175958544015884, -0.03633861243724823, -0.03539649769663811, 0.005743519403040409, -0.01608319953083992, 0.01559868548065424, 0.02547740377485752, -0.022422268986701965, -0.020013153553009033, -0.017442533746361732, 0.011991742067039013, 0.024791007861495018, -0.04134526476264, -0.0002798998320940882, 0.021776249632239342, -0.02273182012140751, -0.020901430398225784, -0.010046953335404396, -0.17108756303787231, 0.020739926025271416, -0.006271775346249342, -0.02316250093281269, 0.012294563464820385, 0.008620326407253742, -0.01126496959477663, -0.006076623219996691, -0.036230940371751785, 0.005793989636003971, 0.023014454171061516, 0.021332111209630966, -0.04180286079645157, -0.0022072342690080404, 0.017617497593164444, 0.017079146578907967, -0.016406210139393806, 0.015019959770143032, 0.02021503448486328, 0.015881318598985672, 0.034804314374923706, -0.004054446704685688, -0.010094058699905872, -0.027886519208550453, 0.012395503930747509, -0.012476257048547268, -0.02640605717897415, 0.017334863543510437, -0.0033798273652791977, -0.003127475967630744, -0.008357880637049675, 0.0006514873821288347, 0.029986083507537842, 0.01772516779601574, -0.011796589940786362, -0.00210461113601923, -0.008627055212855339, -0.001911141793243587, -0.015383345074951649, 0.03305467590689659, 0.029340064153075218, 0.006322245579212904, 0.007032194174826145, 0.03327001631259918, -0.00013395656424108893, 0.00993255339562893, 0.021776249632239342, -0.00995947141200304, 0.00097491784254089, 0.0014131682692095637, 0.029986083507537842, -0.048236142843961716, 0.008559761568903923, 5.593790774582885e-05, -0.005174887366592884, 0.010760266333818436, 0.006090082228183746, 0.02067263238132, 0.013902883976697922, -0.044144682586193085, 0.0055786496959626675, -0.009690296836197376, 0.01465657353401184, -0.02829028107225895, -0.012725243344902992, -0.02092834934592247, 0.004273151513189077, 0.015652520582079887, -0.026634857058525085, 0.021843543276190758, 0.01368754357099533, -0.020766843110322952, 0.0011397874914109707, -0.00958262663334608, 0.015692897140979767, -0.004670184571295977, 0.005686319898813963, 0.024723714217543602, 0.02395656518638134, 0.013970177620649338, 0.011796589940786362, 0.012644491158425808, -0.00019452092237770557, 0.03709230199456215, -0.03278550133109093, 0.010390151292085648, 0.004024164751172066, 0.036150187253952026, 0.017550203949213028, -0.015814024955034256, -0.00844536256045103, -0.027348170056939125, 0.007476333063095808, 0.006059799809008837, 0.007086029276251793, 0.024360328912734985, 0.004003976471722126, 0.01545063965022564, -0.026809820905327797, 0.013633708469569683, 0.015760190784931183, -0.015154547058045864, -0.02029578760266304, 0.018492314964532852, 0.03483123332262039, 0.024683337658643723, 0.007907012477517128, 0.009252887219190598, 0.02395656518638134, -0.018505774438381195, -0.046378836035728455, 0.010443986393511295, 0.0316549688577652, 0.010134435258805752, -0.008640514686703682, 0.026136882603168488, -0.023014454171061516, 0.00026412788429297507, -0.01277907844632864, -0.015840942040085793, 0.05386189743876457, 0.0019464710494503379, -0.025746578350663185, -0.01406438834965229, -0.0059958710335195065, -0.0005433968035504222, -0.11111539602279663, -0.006594785023480654, -0.00371124898083508, 0.01368754357099533, 0.009024088270962238, 0.012933854013681412, -0.01273870188742876, 0.030039919540286064, -0.01031612791121006, 0.0285863745957613, 0.00620111683383584, -0.010309399105608463, 0.009690296836197376, 0.012523362413048744, 0.01752328686416149, 0.0022223752457648516, -0.013438557274639606, 0.003088782075792551, -0.025410110130906105, 0.022704903036355972, -0.0019464710494503379, -0.003280569100752473, -0.0029138182289898396, -0.03162804991006851, -0.020524585619568825, -0.0047812191769480705, -0.030039919540286064, -0.003866024548187852, 0.0015326145803555846, 0.02051112800836563, 0.003105605486780405, -0.004421197809278965, 0.03308159485459328, -0.006204481236636639, -0.011318804696202278, 0.0049326298758387566, -0.01823659986257553, 0.005541638471186161, -0.017186816781759262, -0.03300084173679352, 0.014925748109817505, 0.026971325278282166, -0.004411103669553995, -0.03859968110918999, -0.006857230793684721, -0.009824884124100208, -0.01574673131108284, -0.0004260533896740526, 0.01705222949385643, -0.018963372334837914, -0.025544697418808937, -0.0035800260957330465, -0.027388546615839005, -0.01218689326196909, -0.011197675950825214, -0.0029239123687148094, 0.006325609982013702, 0.01147358026355505, -0.008761643432080746, -0.019219087436795235, -0.008108893409371376, 0.00037999925552867353, -0.030497515574097633, 0.022852949798107147, 0.015437180176377296, 0.0006683107931166887, -0.01259065605700016, -0.034292880445718765, -0.012624302878975868, -0.004316892474889755, -0.021964671090245247, -0.009091381914913654, -0.01536988653242588, 0.016863808035850525, -0.016904184594750404, 0.00388957723043859, -0.005296016111969948, -0.043929342180490494, 0.02193775400519371, -0.0005438174121081829, -0.020538045093417168, -0.036527033895254135, 0.0012911983067169785, -0.009528791531920433, 0.04336407780647278, 0.018599985167384148, -0.012085952796041965, -0.0014594326494261622, 0.029043972492218018, -0.03073977306485176, 0.006880783475935459, 0.012725243344902992, 0.01675613783299923, -0.005548367742449045, 0.012429150752723217, 0.001540185185149312, -0.017738625407218933, -0.027348170056939125, 0.01271851360797882, 0.014602738432586193, -0.006184293422847986, 0.010309399105608463, -0.0630945935845375, 0.028451787307858467, -0.002126481616869569, 0.02201850712299347, 0.0046129850670695305, 0.0011852107709273696, 0.011487038806080818, -0.024494916200637817, -0.004841783549636602, 0.014225893653929234, -0.029340064153075218, 0.0285863745957613, -0.004269786644726992, -0.013983636163175106, -0.03251632675528526, -0.012059035710990429, 0.029043972492218018, 0.0022291047498583794, 0.015504473820328712, 0.016473503783345222, 0.013795213773846626, -0.010578573681414127, 0.0006914430414326489, 0.007133134640753269, -0.01683688908815384, 0.008647243492305279, -0.021843543276190758, 0.010787184350192547, -0.01090831309556961, -0.01620432920753956, 0.005410415586084127, -0.007557085249572992, -0.013061711564660072, 0.030039919540286064, -0.008505926467478275, -0.009293263778090477, 0.0009454768151044846, 0.03539649769663811, 0.017671331763267517, -0.02567928470671177, -0.01768479123711586, -0.031008947640657425, 0.040349315851926804, -0.021708955988287926, 0.012785808183252811, -0.016944559291005135, 0.0023367744870483875, -0.015692897140979767, 0.0011481991969048977, 0.017953965812921524, 0.022503022104501724, 0.003835742361843586, -0.007483062334358692, -0.022516479715704918, 0.007812801748514175, 0.0011381051735952497, 0.00621121097356081, -0.0052320873364806175, 0.019272923469543457, -0.00627513974905014, 0.018976829946041107, 0.011574520729482174, 0.004996559116989374, 0.0030635467264801264, 0.01372792012989521, -0.015814024955034256, -0.005955494474619627, -0.01541026309132576, -0.005915118381381035, 0.0028700772672891617, 0.017994342371821404, -0.025786954909563065, 0.013943259604275227, 0.0072340755723416805, 0.013068441301584244, -0.0020894701592624187, 0.007792613469064236, 0.007994494400918484, -0.022597232833504677, 0.015531391836702824, 0.001557008596137166, -0.0229471605271101, 0.0026967960875481367, 0.02741546370089054, -0.0030063472222536802, 0.02702515944838524, -0.014521986246109009, -0.010020035319030285, -0.012166705913841724, -0.005410415586084127, 0.0013458745088428259, 0.0040443530306220055, 0.0006678902427665889, -0.010194999165832996, 0.018788408488035202, 0.017496367916464806, 0.012449339032173157, 0.013674085028469563, 0.008835665881633759, 0.01907104253768921, 0.007476333063095808, 0.0023199510760605335, -0.015652520582079887, -0.015060335397720337, -0.008357880637049675, 0.010968877002596855, -0.017415616661310196, -0.005481074098497629, -0.0028313833754509687, 0.012079223990440369, 0.008559761568903923, 0.011783131398260593, 0.005888200830668211, 0.012092682532966137, -0.009064464829862118, 0.01090831309556961, 0.01128515787422657, -0.006601514294743538, -0.023485509678721428, 0.038384340703487396, 0.01722719334065914, 0.013243405148386955, 0.020538045093417168, -0.011137111112475395, 0.03663470223546028, 0.02775193192064762, -0.007967577315866947, 0.0097912373021245, -0.009629731997847557, -0.021466698497533798, -0.0050941351801157, -0.006618337705731392, 0.006446738727390766, -0.02209925837814808, -0.008411715738475323, -0.005888200830668211, -0.01410476490855217, 0.0318433903157711, 0.023135581985116005, 0.06750906258821487, 0.024481456726789474, -0.011527415364980698, 0.008283857256174088, -0.003879483323544264, 0.016621550545096397, -0.0003776860248763114, 0.011164029128849506, -0.003105605486780405, -0.03388911858201027, 0.0020861055236309767, -0.004350539296865463, 0.0009959471644833684, 0.0041789403185248375, -0.019178710877895355, -0.0004824118805117905, -0.0073013692162930965, 0.014225893653929234, -0.0036002143751829863, 0.008007952943444252, 0.016473503783345222, -0.0363924466073513, -0.0031409345101565123, -0.014306645840406418, -0.02409115433692932, -0.008923147805035114, 0.005780531093478203, 0.007617649622261524, -0.018842242658138275, -0.027307793498039246, 0.010921771638095379, 0.017106065526604652, -0.028774796053767204, -0.0035127324517816305, 0.0004773648688569665, -0.015692897140979767, -0.006143916863948107, -0.03213948383927345, 0.014050929807126522, -0.01827697642147541, -0.013377992436289787, 0.030551351606845856, -0.014993041753768921, 0.0014535444788634777, -0.006170834414660931, -0.01541026309132576, -0.008330963551998138, 0.00022143841488286853, 0.0050941351801157]" +37,"Dynamics revenue grew 15% and 22% in constant currency, driven by Dynamics 365, which grew 24% and 32% in constant currency. LinkedIn revenue increased 17% and 21% in constant currency, ahead of expectations, driven by better-than-expected growth in talent solutions, partially offset by weakness in marketing solutions from the advertising trends noted earlier. Segment gross margin dollars increased 11% and 18% in constant currency, and gross margin percentage increased roughly 1 point year over year. Excluding the impact of the latest change in accounting estimate, gross margin percentage decreased slightly, driven by sales mix shift to cloud offerings.","[0.009237907826900482, -0.012844843789935112, 0.008122093044221401, -0.014816981740295887, 0.00670137582346797, 0.00102012709248811, -0.020940987393260002, -0.02021441049873829, -0.001255291630513966, -0.03121686354279518, 0.030256744474172592, 0.03726302087306976, 0.015193244442343712, 0.008991390466690063, 0.019020749256014824, 0.019397012889385223, 0.015841973945498466, -0.0045411065220832825, 0.01314974669367075, -0.023964067921042442, -0.022874202579259872, 0.008219403214752674, -0.02085016667842865, -0.005326068960130215, -0.01098947785794735, 0.006561899092048407, 0.02768777497112751, -0.008680000901222229, 0.029114980250597, -0.01197554636746645, -0.012851331382989883, -0.005819103680551052, -0.023938119411468506, 0.022095726802945137, -0.007311181630939245, 0.005978042259812355, -0.006561899092048407, -0.0002373944444116205, 0.029218776151537895, 0.010392646305263042, 0.01799575611948967, 0.01808657869696617, -0.019033722579479218, -0.0031220107339322567, -0.006412690971046686, 0.028751691803336143, -0.005296876188367605, -0.0014426122652366757, 0.006237534340471029, 0.004531375598162413, -0.0075512113980948925, 0.04437309876084328, -0.034590255469083786, -0.02513178065419197, 0.002716554794460535, -0.0022154112812131643, 0.009873663075268269, 0.014946728013455868, -0.011268431320786476, -0.009679043665528297, -0.021719463169574738, 0.008667025715112686, -0.02890738658607006, -0.011501974426209927, -0.03651049733161926, -0.009653095155954361, 0.0002461117401253432, 0.010042333044111729, 0.014946728013455868, 0.004550837446004152, 0.029478268697857857, 0.018047655001282692, 0.02051282674074173, 0.010223977267742157, 0.011281405575573444, -0.0155435586348176, -0.0019072646973654628, -0.007343617733567953, 0.002568968804553151, 0.004041584674268961, 0.002538154134526849, -0.015180270187556744, -0.009276831522583961, -0.008219403214752674, 0.003694514511153102, 0.004515157081186771, -0.025624815374612808, -0.0016396638238802552, -0.025702662765979767, -0.0016047946410253644, 0.020110614597797394, -0.0008040191023610532, -0.005569342523813248, 0.02274445630609989, 0.0077717793174088, 0.0005639892187900841, -0.009568760171532631, 0.013830913230776787, -0.013389776460826397, -0.03407127410173416, -0.01445369329303503, -0.0106586255133152, -0.028518149629235268, -0.010522392578423023, -0.037444666028022766, 0.0035615249071270227, 0.028466250747442245, 0.0033604188356548548, 0.032747864723205566, -0.014570464380085468, -0.009205471724271774, -0.016931839287281036, 0.025533992797136307, -0.0025478850584477186, -0.002770074876025319, 0.0031398506835103035, -0.006402960047125816, 0.0120209576562047, 0.01434989646077156, -0.014259074814617634, 0.007233333773910999, 0.004557324573397636, 0.024859314784407616, -0.02462577261030674, 0.013675217516720295, -0.0007468498079106212, 0.002862518886104226, -0.011644694954156876, 0.005968311335891485, 0.0005749365082010627, -0.005374724045395851, 0.00043829786591231823, 0.0010679708793759346, 0.012844843789935112, -0.0019023992354050279, 0.03580986708402634, -0.005300119984894991, 0.006386741995811462, -0.036640241742134094, -0.022809328511357307, -0.017840061336755753, 0.015322990715503693, -0.0020191706717014313, 0.011339792050421238, 0.016101466491818428, 0.031113067641854286, 0.023548880591988564, -0.00012011631770292297, 0.018735308200120926, -0.00971148069947958, 0.011579821817576885, -0.013766040094196796, 0.010360210202634335, 0.0027522349264472723, 0.02097991108894348, -0.02768777497112751, 0.007726368494331837, 0.033240899443626404, -0.007739342749118805, 0.0016550711588934064, -0.027246639132499695, 0.017476772889494896, -0.014713184908032417, 0.01665937341749668, -0.005822347477078438, 0.012585352174937725, 0.01466128695756197, -0.00409997021779418, -0.0169058907777071, -0.00033815024653449655, 0.0012861061841249466, -0.011307355016469955, -0.014985651709139347, 0.011469537392258644, 0.012416682206094265, 0.029711810871958733, 0.024911213666200638, -0.021589716896414757, -0.02592323161661625, -0.018112527206540108, 0.014700210653245449, -0.02030523307621479, 0.014791032299399376, 0.0015407325699925423, 0.014700210653245449, -0.004181061405688524, 0.03734086826443672, 0.010230463929474354, -0.003203101921826601, -0.012196114286780357, -0.010898655280470848, 0.013973633758723736, 0.004015635699033737, -0.018190374597907066, -0.6547496914863586, 0.0016380420420318842, -0.008991390466690063, 0.006857070606201887, 0.010561316274106503, -0.004472990054637194, 0.019565680995583534, -0.0004370815004222095, -0.03939085453748703, 0.020629597827792168, 0.00709061324596405, 0.008115606382489204, -0.0006973842391744256, -0.0016623693518340588, 0.0013388155493885279, -0.024612797424197197, 0.023795397952198982, 0.001978625077754259, -0.02327641472220421, 0.00680517265573144, -0.0037172199226915836, -0.00029821283533237875, 0.006172661203891039, -0.0048914202488958836, 0.0007764481124468148, -0.01669829711318016, -0.0005429054726846516, 0.007713393773883581, -0.004966024309396744, 0.02017548680305481, -0.027194740250706673, 0.01904669776558876, -0.0035193574149161577, -0.0013907138491049409, 0.04014338180422783, -0.008958954364061356, -0.012948640622198582, 0.02269255742430687, -0.0006231857696548104, 0.039831992238759995, -0.038819972425699234, 0.0005088471807539463, -0.008206428028643131, 0.0040123919025063515, -0.007252795621752739, 0.01449261698871851, 0.013350852765142918, -0.009205471724271774, 0.02408083900809288, -0.020370107144117355, -0.0038469659630209208, -0.00040241502574644983, 0.0009276831988245249, -0.003850209526717663, 0.007739342749118805, -0.014544514939188957, -0.003248512977734208, -0.014700210653245449, -0.0009082212927751243, -0.01807360351085663, 0.0017888715956360102, -0.006818146910518408, -0.016270136460661888, -0.00958822201937437, -0.009679043665528297, 0.013882811181247234, -0.007311181630939245, 0.006811659783124924, 0.02802511490881443, 0.01951378397643566, -0.010386159643530846, 0.006772736087441444, 0.01996789313852787, -0.005241734441369772, 0.010308311320841312, 0.004489208105951548, 0.0336301364004612, -0.019189419224858284, -0.01434989646077156, 0.0027457475662231445, 0.01067808736115694, -0.026481138542294502, 0.002272175159305334, -0.010314798913896084, 0.015154320746660233, 0.019487833604216576, -0.011132198385894299, -0.0169967133551836, -0.0051703741773962975, 0.007460389286279678, 0.013143260031938553, 0.027506129816174507, -0.005086039192974567, -0.027532080188393593, 0.01636095717549324, 0.03666619211435318, -0.02344508469104767, 0.011171122081577778, 0.009004365652799606, 0.0015293797478079796, -0.015413813292980194, -0.007453902158886194, 0.03741871565580368, 0.014207175932824612, 0.03754846379160881, 0.02646816335618496, 0.003782093059271574, 0.005397429224103689, 0.047045864164829254, -0.027635876089334488, 0.0008838939247652888, -0.02672765590250492, -0.002616001758724451, -0.0032825712114572525, -0.014972676523029804, -0.032903559505939484, 0.036640241742134094, -0.009964484721422195, -0.020019792020320892, -0.025689687579870224, -0.014414769597351551, 0.006811659783124924, 0.02265363372862339, -0.024521974846720695, -0.025949180126190186, 0.015413813292980194, 0.016931839287281036, 0.0029744247440248728, 0.008439971134066582, -0.012066368944942951, 0.008167504332959652, 0.003924813587218523, 0.02051282674074173, -0.0024667938705533743, 0.017723290249705315, 0.0036101797595620155, 0.0034285353031009436, -0.018177401274442673, -0.009134110994637012, -0.04024717956781387, -0.02030523307621479, -0.014933752827346325, 2.53663365583634e-05, -0.003652347018942237, -0.019773274660110474, -0.012754022143781185, -0.029348522424697876, 0.009445501491427422, -0.012066368944942951, 0.0025495069567114115, 0.0004046450194437057, -0.010321286506950855, -0.0028495443984866142, 0.011631719768047333, 0.010262900963425636, -0.0015220815548673272, -0.0012577243614941835, -0.025611840188503265, -0.015348940156400204, -0.02584538236260414, 0.00036734307650476694, 0.0038242603186517954, 0.008219403214752674, -0.004375680349767208, -0.026533037424087524, -0.011099761351943016, -0.049485087394714355, 0.022549837827682495, 0.00550771364942193, -0.016555577516555786, -0.001097163767553866, -0.008945980109274387, 0.01292269118130207, -0.0024116518907248974, 0.025611840188503265, -0.0035161138512194157, -0.02558589167892933, -0.010236951522529125, 0.01602361910045147, -0.028881438076496124, 0.016789119690656662, 0.007246308494359255, -0.00426864018663764, -0.011735516600310802, 0.03347444161772728, -0.004330269526690245, 0.013908760622143745, 0.012695636600255966, -0.016750195994973183, 0.0004232960054650903, -0.013389776460826397, 0.03760036081075668, -0.016425831243395805, -0.0024100299924612045, -0.004145381506532431, -0.007655008230358362, -0.008984903804957867, -0.008102631196379662, -0.012033931910991669, -0.018994798883795738, 0.009205471724271774, 0.02513178065419197, -0.0020807997789233923, 0.017295127734541893, 0.0034382662270218134, -0.01673722080886364, -0.024846339598298073, -0.02327641472220421, 0.026390315964818, 0.0223552193492651, 0.028077011927962303, -0.020447954535484314, 0.00025685635046102107, -0.027713723480701447, -0.02340616099536419, 0.013201645575463772, 0.020629597827792168, 0.007317668758332729, -0.012981077656149864, 0.01707456074655056, 0.014648311771452427, -0.015245143324136734, 0.012857818976044655, -0.011638207361102104, -0.00729820691049099, -0.011151660233736038, -0.009737430140376091, 0.021122632548213005, 0.012643737718462944, -0.023211540654301643, -0.008790284395217896, 0.02877764031291008, 0.025910256430506706, -0.007985860109329224, 0.0025559943169355392, 0.003788580186665058, 0.011806877329945564, -0.013273005373775959, 0.04746105149388313, -0.004914125893265009, 0.007414977997541428, 0.016166338697075844, 0.026623858138918877, -0.031113067641854286, 0.005073064472526312, 0.001994843129068613, 0.02748018130660057, -0.00832968670874834, -0.013545472174882889, 0.00975040439516306, -0.005793154239654541, 0.021914081647992134, -0.005802885163575411, -0.02760992757976055, 0.018722333014011383, 0.004401629790663719, -0.0013744956813752651, 0.012358296662569046, 0.021927056834101677, 0.02844030037522316, -0.005605022888630629, 0.009743916802108288, 0.03586176782846451, -0.016970762982964516, -9.219054481945932e-05, 0.01442774385213852, -0.01581602543592453, 0.010334260761737823, -0.00552717549726367, 0.004560568369925022, 0.010438057594001293, -0.010892168618738651, 0.011534410528838634, 0.009516861289739609, -0.013285980559885502, 0.0022121674846857786, 0.02088909037411213, -0.03134660795331001, -0.02295204997062683, 0.032877612859010696, 0.01212475448846817, -0.038482632488012314, -0.008063707500696182, 0.02844030037522316, -0.0018667191034182906, 0.0006248076097108424, -0.0025397760327905416, -0.008206428028643131, 0.008154530078172684, 0.020409030839800835, -0.020201437175273895, 0.013454649597406387, -0.0014872123720124364, -0.012118266895413399, 0.02072042040526867, 0.008478894829750061, 0.01850176602602005, -0.01333787851035595, -0.01107381284236908, -0.01799575611948967, 0.028829539194703102, 0.00828427542001009, -0.019851122051477432, 0.010853244923055172, 0.043023739010095596, -0.010282362811267376, -0.04299779236316681, -0.007557698525488377, -0.0030830870382487774, -0.021446997299790382, 0.018475815653800964, -0.018994798883795738, -0.03482379764318466, 0.02646816335618496, 0.023639703169465065, 0.009406577795743942, 0.010113692842423916, -0.017139432951807976, 0.011657669208943844, 0.0033571752719581127, -0.018449867144227028, 0.0004699234268628061, -0.03516113758087158, 0.00670137582346797, 0.061395760625600815, 0.024976085871458054, -0.009957998059689999, 0.01917644403874874, 0.006341330707073212, -0.004842765629291534, 0.007421465590596199, -0.02077231928706169, 0.0013785501942038536, -0.004018879029899836, 0.0012844844022765756, -0.006205097772181034, -0.002530045108869672, -0.015206219628453255, -0.006727324798703194, 0.004469746258109808, 0.002244604052975774, -0.022809328511357307, -0.0030944396276026964, 0.02218654938042164, 0.014168252237141132, 0.007440927438437939, 0.008777310140430927, 0.028959285467863083, 0.01466128695756197, 0.016244186088442802, 0.000573720142710954, 0.029114980250597, -0.01682804338634014, -0.009601196274161339, -0.025144755840301514, 0.015076473355293274, -0.0036815397907048464, 0.020201437175273895, -0.01950080879032612, 0.004294589161872864, 0.0026127579621970654, -0.005089282989501953, 0.021927056834101677, 0.012935666367411613, 0.01979922503232956, -0.018190374597907066, 0.013636293821036816, -0.006441883742809296, 0.014207175932824612, -0.021083708852529526, -0.004933587741106749, 0.01327949296683073, 0.006733812391757965, 0.009289806708693504, 0.009062751196324825, -0.0047908672131598, -0.025663739070296288, 0.000849024741910398, -0.01590684801340103, 0.02487228810787201, -0.008945980109274387, -0.02218654938042164, -0.008135068230330944, -0.03339659422636032, -0.02328938990831375, -0.02143402211368084, 0.012994051910936832, -0.02618272230029106, -0.030775727704167366, 0.008128580637276173, -0.0191634688526392, -0.0018878028495237231, -0.04195982217788696, 0.013311929069459438, -0.013545472174882889, -0.014297998510301113, -0.020733395591378212, 0.002139185555279255, 0.024846339598298073, -0.008167504332959652, 0.014920778572559357, 0.007226846646517515, 0.012273961678147316, 0.013843887485563755, -0.016789119690656662, -0.002277040621265769, -0.025988103821873665, -0.02701309695839882, -0.031865593045949936, 0.01212475448846817, -0.0044827209785580635, 0.020123589783906937, -0.023639703169465065, -0.006308894604444504, -0.009179522283375263, -0.024392228573560715, -0.013136772438883781, -0.013227594085037708, 0.03451240807771683, -0.007992347702383995, 0.014375845901668072, 0.009841226041316986, 0.021823260933160782, 0.010301824659109116, 0.017567595466971397, -0.031139016151428223, -0.017710315063595772, -0.008842183277010918, 0.00836861040443182, 0.012235037982463837, 0.004661121405661106, -0.0014758596662431955, 0.00495953718200326, -0.016970762982964516, 0.00855674222111702, -0.01117760967463255, -0.016879942268133163, 5.468586823553778e-05, -0.016283109784126282, -0.004839521832764149, 0.014907804317772388, -0.012792945839464664, 0.01724323071539402, -0.004187548998743296, 0.02030523307621479, -0.02295204997062683, 0.018307145684957504, -0.009108162485063076, -0.0069803292863070965, -0.005400673020631075, -0.0002971992071252316, -0.024690644815564156, -0.044321198016405106, 0.0018050898797810078, 0.001577223651111126, 0.012520479038357735, 0.005731524899601936, 0.0019380793673917651, -0.009121136739850044, -0.029140928760170937, -0.001290160813368857, -0.00729820691049099, -0.02075934410095215, -0.01732107810676098, -0.022977998480200768, 0.0026014053728431463, 0.01846284233033657, -0.0315542034804821, 0.026027027517557144, -0.025832409039139748, -0.021459972485899925, -0.014297998510301113, 0.016309060156345367, 0.032695967704057693, -0.010626189410686493, 0.0024343575350940228, -0.01577710174024105, -0.006565142422914505, -0.030230794101953506, 0.008757848292589188, 0.025391273200511932, -0.007577160373330116, 0.029426369816064835, 0.012689149007201195, 0.038197193294763565, -0.004022122826427221, 0.01197554636746645, 0.026195697486400604, -0.0044989390298724174, -0.010853244923055172, 0.0018310389714315534, -0.0034350226633250713, -0.03959845006465912, 0.012559402734041214, -0.02328938990831375, 0.003652347018942237, 0.006269970443099737, 9.79176111286506e-05, 0.006571630015969276, 0.00991907436400652, -0.012286936864256859, -0.010528880171477795, -0.032618120312690735, -0.026961198076605797, -0.001891046529635787, -0.0028836026322096586, -0.005102257709950209, 0.0064353966154158115, -0.03233267739415169, -0.016542602330446243, 0.006428909488022327, 0.012533454224467278, 0.03145040571689606, -0.024612797424197197, 0.025183679535984993, 0.0055206879042088985, 0.003212832845747471, -0.014842931181192398, 0.01069754920899868, -0.01611444167792797, -0.001112571102567017, -0.034460511058568954, -0.020019792020320892, 0.0023127207532525063, -0.031139016151428223, 0.041051603853702545, 0.00047843801439739764, 0.019656503573060036, -0.0067208376713097095, -0.00048533076187595725, -0.010548342019319534, -0.034045323729515076, 0.002873871708288789, -0.032280780375003815, 0.0012755644274875522, -0.03321494907140732, -0.024106787517666817, 0.005919656716287136, -0.015245143324136734, 0.020110614597797394, -0.010775396600365639, 0.016594501212239265, -0.008764335885643959, -0.017567595466971397, 0.011424126103520393, -0.005796398036181927, 0.035057343542575836, -0.010347235947847366, 0.028518149629235268, 0.022549837827682495, -0.012838357128202915, -0.023964067921042442, -0.014142302796244621, 0.015530584380030632, -0.03259216994047165, 0.0321250855922699, 0.027506129816174507, -0.008913543075323105, -0.0020029523875564337, -0.016620449721813202, -0.005309850908815861, -0.0108467573300004, 0.0010574291227385402, 0.0073241558857262135, 0.010412108153104782, 0.005858027376234531, -0.0077523174695670605, -0.019980868324637413, -0.009828251786530018, 0.02408083900809288, -0.009413065388798714, 0.012196114286780357, 0.012468581087887287, -0.02885548770427704, -0.009069238789379597, 0.03866427764296532, 0.022160599008202553, 0.007674470078200102, -0.03373393416404724, 0.008336174301803112, -0.016711272299289703, -0.0010014761937782168, -0.003593961475417018, -0.012371271848678589, -0.019604604691267014, 0.012799433432519436, -0.02701309695839882, 0.018942901864647865, 0.025015009567141533, 0.005981286056339741, -0.010963528417050838, -0.004894664045423269, -0.016542602330446243, 0.02445710264146328, -0.010918117128312588, 0.0041388943791389465, 0.05088634043931961, -0.0013931465800851583, 0.014038505963981152, -0.019059672951698303, -0.023626727983355522, -0.01451856642961502, -0.01769733987748623, -0.005825590807944536, 0.02701309695839882, -0.00043424329487606883, -0.017009686678647995, 0.033500391989946365, 0.014842931181192398, -0.019059672951698303, 0.018592586740851402, -0.003694514511153102, 0.002671143738552928, -0.02823270857334137, -0.005708819720894098, 0.020953962579369545, 0.01837201975286007, 0.026027027517557144, -0.011962572112679482, 0.005702332127839327, -0.011021913960576057, 0.013623319566249847, -0.0014158521080389619, 0.041259195655584335, 0.01715240813791752, -0.008271301165223122, -0.034668102860450745, 0.014648311771452427, -0.01639988087117672, -0.032073184847831726, 0.02526152692735195, -0.0036685653030872345, -0.031061168760061264, 0.014077429659664631, 0.008128580637276173, -0.010665113106369972, 0.014116354286670685, 0.0052547091618180275, -0.0072657703422009945, 0.010502930730581284, -0.010879193432629108, 0.004593004938215017, -0.015530584380030632, 0.019734350964426994, 0.00971148069947958, -0.003499895567074418, 0.009614171460270882, -0.0029857775662094355, 0.013649269007146358, 0.004943318665027618, -0.01304594986140728, -0.0015220815548673272, -0.00524497777223587, -0.03612125664949417, -0.01660747453570366, 0.034382663667201996, -0.01632203347980976, 0.01197554636746645, -0.014414769597351551, -0.0018375263316556811, -0.012183140031993389, 0.021680539473891258, 0.016724245622754097, -0.0031398506835103035, 0.006555411498993635, -0.012053393758833408, 0.02714284136891365, 0.018813155591487885, -0.002867384348064661, -0.027583979070186615, -0.015452736988663673, -0.002813864266499877, -0.03679593652486801, -0.0006531894905492663, 0.017723290249705315, 0.008997878059744835, 0.013097848743200302, -0.02760992757976055, -0.008809746243059635, 0.001483157859183848, -0.05599832907319069, -0.036354802548885345, -0.004709776025265455, 0.016127415001392365, 0.012754022143781185, 0.007136024534702301, -0.013376802206039429, 0.019137520343065262, 0.004378924146294594, 0.023263439536094666, -0.027376385405659676, 0.003001995850354433, 0.017437849193811417, -0.010113692842423916, 0.0005603401223197579, 0.001290160813368857, -0.005309850908815861, -0.0002511799393687397, 0.0057412562891840935, -0.012981077656149864, 0.02659790962934494, 0.008835695683956146, 0.01769733987748623, -0.016283109784126282, -0.004447040613740683, 0.00960768386721611, 0.00493034441024065, 0.0039540063589811325, 0.03007509931921959, -0.04974457621574402, 0.002468415768817067, 0.010587265715003014, 0.006766248494386673, -0.0223552193492651, 0.014012557454407215, 0.011527922935783863, -9.776556544238701e-05, 0.00184563547372818, -0.013441675342619419, -0.0004987107822671533, -0.00962714571505785, -0.0026776310987770557, 0.011391690000891685, 0.007161973509937525, 0.00973094254732132, 0.029348522424697876, 0.0533515140414238, -0.038534533232450485, 0.0035193574149161577, 0.03238457813858986, -0.009555785916745663, -0.0283624529838562, 0.016516653820872307, -0.015841973945498466, 0.042141467332839966, -0.014414769597351551, 0.01737297512590885, 0.008128580637276173, -0.0054558152332901955, -0.03054218553006649, 0.011878237128257751, 0.00738254189491272, -0.008167504332959652, -0.02177136205136776, -0.03939085453748703, 0.02492418698966503, -0.002286771545186639, -0.003642616095021367, -0.0012504260521382093, 0.005987773183733225, -0.0018277954077348113, -0.04260855168104172, -0.06295271217823029, 0.011190583929419518, -0.006244021467864513, -0.025806458666920662, 0.0006284567061811686, 0.012513992376625538, -0.018047655001282692, 0.01551760919392109, 0.19337329268455505, 0.009179522283375263, 0.011216533370316029, 0.02323749102652073, 0.006068864371627569, 0.010379672050476074, 0.003827504115179181, -0.005832078400999308, 0.002526801312342286, 0.008401047438383102, 0.007499312981963158, 0.020902063697576523, -0.007460389286279678, -0.008958954364061356, 0.016789119690656662, -0.006876532454043627, -0.05088634043931961, 0.008173991926014423, -0.020292257890105247, 0.015284067019820213, -0.007012765854597092, 0.019319163635373116, -0.0016704784939065576, -0.022459015250205994, 0.023354262113571167, -0.02290015108883381, -0.017684366554021835, -0.011248969472944736, 0.006399716716259718, 0.016516653820872307, -0.008031271398067474, 0.013097848743200302, -0.005653677508234978, 0.003157690865918994, 0.0025478850584477186, -0.023419134318828583, -0.012513992376625538, -0.00975689198821783, -0.008465919643640518, 0.013571420684456825, 0.03116496466100216, 0.0028495443984866142, 0.002523557748645544, -0.01820334978401661, 0.023691602051258087, 0.014090404845774174, -3.793547148234211e-05, 0.0023500225506722927, -0.006406203843653202, 0.012877280823886395, -0.010626189410686493, 0.029089029878377914, 0.0216935146600008, 0.014868879690766335, -0.02101883664727211, 0.01445369329303503, 0.021135607734322548, 0.007830165326595306, -0.007045202422887087, -0.0012212332803755999, -0.019773274660110474, 0.01074296049773693, 3.740331158041954e-05, -0.0005871002213098109, -0.011190583929419518, -0.02760992757976055, -0.007161973509937525, -0.013104336336255074, -0.01983814872801304, -0.01336382795125246, 0.013123798184096813, -0.006373767275363207, -0.008219403214752674, 0.02072042040526867, -0.01737297512590885, -0.012526966631412506, 0.032410524785518646, -0.0006264294497668743, 0.018514739349484444, 0.00874487403780222, 0.018268221989274025, -0.0014572086511179805, -0.012170165777206421, -0.03238457813858986, -0.01774923875927925, 0.001652638427913189, 0.007045202422887087, 0.003486921079456806, 0.0015820891130715609, 0.008381584659218788, 0.0029063080437481403, 0.009640119969844818, -0.0095817344263196, -0.012027445249259472, 0.01547868549823761, 0.007972885854542255, -0.013727116398513317, 0.004489208105951548, -0.027324486523866653, -0.011184096336364746, -0.03365608677268028, 0.0764462873339653, 0.029114980250597, 0.002285149646922946, -0.014272049069404602, -0.01707456074655056, -0.006266727112233639, 0.014038505963981152, -0.003827504115179181, -0.010425083339214325, -0.019539732486009598, -0.008050733245909214, 0.02844030037522316, -0.0029209046624600887, -0.0043821679428219795, 0.005173617973923683, 0.01996789313852787, -0.02021441049873829, 0.0014280157629400492, 0.016412856057286263, 0.015803050249814987, -0.0032176983077079058, 0.00830373726785183, 0.012260987423360348, -0.007246308494359255, 0.021875157952308655, 0.011988521553575993, -0.016685321927070618, -0.011553872376680374, -0.0330592542886734, 0.017930883914232254, -0.004615710582584143, -0.00014059184468351305, -0.024301407858729362, 0.005932631436735392, 0.009017339907586575, 0.02336723729968071, -0.0071489992551505566, -0.02201787941157818, -0.005952093284577131, -0.00864107720553875, 0.01316920854151249, 0.007804215885698795, -0.012773483991622925, 0.01572520285844803, -0.01598469540476799, 0.0155435586348176, 0.0062278034165501595, -0.023756474256515503, -0.017269179224967957, -0.025650763884186745, 0.010087743401527405, -0.00208728713914752, 0.01235181000083685, 0.027064993977546692, -0.031735848635435104, -0.02986750565469265, -0.019150495529174805, 0.006003991700708866, 0.015348940156400204, -0.05641351640224457, -0.01769733987748623, 0.019137520343065262, -0.017048610374331474, -0.009802302345633507, -0.014246099628508091, -0.16275325417518616, 0.030023200437426567, -0.010794858448207378, -0.0007111697341315448, 0.013013513758778572, 0.017943857237696648, -0.008770822547376156, 0.005468789488077164, 0.00010825673234649003, -0.015932796522974968, 0.015932796522974968, 0.03311115503311157, -0.029633963480591774, -0.014168252237141132, 0.00824535172432661, 0.0050114355981349945, -0.011930135078728199, 0.007661495357751846, 0.027116892859339714, 0.005601779092103243, 0.028154859319329262, -0.01090514287352562, 0.010373184457421303, -0.009367654100060463, 0.0026873620226979256, -0.00832319911569357, -0.012046907097101212, 0.009743916802108288, 0.0029906430281698704, -0.009140598587691784, -0.011099761351943016, -0.010859731584787369, 0.020577698945999146, -0.0069219437427818775, -0.017891960218548775, 0.009237907826900482, -0.0066948882304131985, -0.00609481381252408, -0.006013722624629736, 0.016957789659500122, 0.028544098138809204, -0.0017239986918866634, 0.0026873620226979256, 0.02592323161661625, 0.008712437003850937, 0.021122632548213005, 0.010464007034897804, -0.01716538332402706, 0.004177818074822426, 0.013934710063040257, 0.042011722922325134, -0.06393878161907196, 0.041129451245069504, 0.010405621491372585, 0.009640119969844818, 0.025819433853030205, 0.007706906646490097, 0.024677669629454613, 0.007518774829804897, -0.019734350964426994, 0.013675217516720295, -0.019111571833491325, -0.004190792329609394, -0.02877764031291008, 0.002473281230777502, -0.014687235467135906, -0.00018813155475072563, -0.000438703311374411, -0.01938403770327568, 0.022666608914732933, 0.016296084970235825, 0.0011368984123691916, -0.01933213882148266, -0.0043562185019254684, 0.0016445292858406901, 0.0019088865956291556, 0.002581943292170763, 0.010509418323636055, 0.018060628324747086, 0.00779124116525054, -0.0023435354232788086, 0.009283319115638733, -0.02092801406979561, 0.02680550329387188, -0.045073725283145905, 0.011060837656259537, 0.023639703169465065, 0.024911213666200638, 0.007836651988327503, 0.00021326982823666185, -0.0054233786650002, -0.030256744474172592, 0.024444127455353737, 0.002676009200513363, -0.018099553883075714, 0.012273961678147316, 0.021330226212739944, 0.005193079821765423, -0.007564186118543148, 0.0098606888204813, -0.011365740559995174, -0.010029357858002186, -0.018008731305599213, 0.019409986212849617, 0.00845294538885355, 0.031190915033221245, -0.00651324400678277, -0.0021910839714109898, 0.011858775280416012, -0.037574414163827896, -0.026286520063877106, 0.005154155660420656, 0.021291302517056465, 0.016711272299289703, -0.011527922935783863, 0.02458684891462326, -0.012546428479254246, -0.008952466771006584, 0.011599283665418625, -0.0002511799393687397, 0.0572957880795002, -0.0034674592316150665, -0.02017548680305481, -0.018151450902223587, -0.01207934319972992, -0.015673303976655006, -0.11210045963525772, -0.016438806429505348, -0.005105501040816307, 0.005160643253475428, 0.038119345903396606, 0.02290015108883381, -0.02252388745546341, 0.005789910908788443, -0.02541722171008587, 0.03679593652486801, 0.007862601429224014, 0.018138477578759193, -0.00654243677854538, 0.0016802094178274274, 0.05013381689786911, -0.021537819877266884, 0.005043871700763702, 0.004307563882321119, -0.01346762478351593, 0.016218237578868866, 0.011930135078728199, -0.007719880901277065, 0.01623121276497841, -0.03272191435098648, -0.027583979070186615, 0.009341704659163952, -0.03658834472298622, 0.005689357873052359, -0.00011626449122559279, 0.02417166158556938, 0.025157729163765907, 0.0028560315258800983, 0.0212264284491539, -0.023522932082414627, -0.017982780933380127, 0.004502182826399803, -0.03103521838784218, 0.009302780963480473, -0.0040967268869280815, -0.012981077656149864, 0.01908562146127224, 0.014804007485508919, 0.012345322407782078, -0.01824227347970009, -0.0040123919025063515, -0.020940987393260002, 0.006159686483442783, 0.006211584899574518, -0.006506756879389286, -0.009490912780165672, -0.015867924317717552, -0.006244021467864513, -0.004521644674241543, -0.02269255742430687, 0.002226764103397727, -0.010872706770896912, 0.0027279076166450977, -0.00021103981998749077, -0.013493573293089867, -0.02312071993947029, -0.031865593045949936, -0.008011809550225735, -0.03448646143078804, 0.03225483000278473, 0.026753604412078857, 0.01615336537361145, -0.026701705530285835, -0.00950388703495264, -0.0006033184472471476, -0.009854201227426529, -0.00033794750925153494, 0.02152484469115734, -0.01933213882148266, 0.014920778572559357, -0.025728611275553703, 0.019864097237586975, -0.02201787941157818, -0.03329279646277428, 0.03433076664805412, -0.006600822787731886, -0.004502182826399803, -0.03933895751833916, 0.009769866243004799, -0.0023743498604744673, 0.03619910776615143, 0.00668191397562623, -0.009121136739850044, -0.014025531709194183, 0.03516113758087158, -0.014544514939188957, -0.005335800349712372, 0.013830913230776787, 0.02973775938153267, -0.01316920854151249, 0.007285232190042734, -0.0008911921759136021, -0.02533937431871891, -0.02306882105767727, -0.00494980625808239, 0.008018296211957932, -0.02038308046758175, 0.0145574901252985, -0.04971862956881523, 0.009413065388798714, 0.0023581318091601133, 0.03074977733194828, 0.013415725901722908, -0.00847240723669529, 0.017982780933380127, -0.012695636600255966, 0.01361034531146288, 0.008394559845328331, -0.03375988453626633, 0.013895785436034203, -0.006954380311071873, -0.011268431320786476, -0.03204723820090294, -0.03814529627561569, 0.02932257391512394, 0.014401794411242008, -0.009367654100060463, 0.010957040823996067, 0.0007472552824765444, -0.0070646642707288265, -0.0039118388667702675, 0.004495695233345032, -0.009601196274161339, 0.009367654100060463, -0.012157190591096878, 0.015556533820927143, -0.003201480023562908, -0.02383432164788246, 0.018787207081913948, -0.01748974807560444, 0.010081256739795208, 0.035965561866760254, -0.013266518712043762, -0.03544658049941063, 0.012981077656149864, 0.02869979292154312, 0.013493573293089867, -0.0035323321353644133, -0.022173574194312096, -0.024508999660611153, 0.023899193853139877, -0.016283109784126282, 0.0038599404506385326, 0.0034804337192326784, -0.011878237128257751, -0.005446084309369326, -0.009821764193475246, 0.004378924146294594, 0.035420630127191544, -0.008465919643640518, -0.013020001351833344, -0.018942901864647865, 0.011599283665418625, -0.026325443759560585, 0.01573817804455757, -0.010957040823996067, 0.0262994933873415, -0.0016461510676890612, 0.03734086826443672, -0.0024165173526853323, 0.012520479038357735, -0.02201787941157818, 0.01231288630515337, 0.0019770031794905663, -0.032151032239198685, 0.031398508697748184, -0.011320330202579498, 0.0063283564522862434, 0.0018618536414578557, -0.007674470078200102, 0.012916204519569874, 0.01302648801356554, 0.002238116692751646, -0.0130070261657238, -6.0919755924260244e-05, 0.0017175113316625357, -8.610870281700045e-05, 0.01100893970578909, 0.008971928618848324, -0.005472033284604549, 0.010113692842423916, 0.016075516119599342, -0.010957040823996067, 0.027402333915233612, -0.00495953718200326, -0.01606254279613495, -0.00204998510889709, 0.007946936413645744, 0.008141554892063141, 0.008881106972694397, -0.008829208090901375, 0.00015914146206341684, -0.0009901233715936542, 0.010366697795689106, -0.009173034690320492, 0.011780927889049053, -0.0010355344275012612, 0.017528671771287918, 0.012066368944942951, 0.012812407687306404, -0.024054890498518944, -0.020460927858948708, -0.009698506444692612, 0.02077231928706169, -0.025053933262825012, -0.031528253108263016, 0.004388655070215464, 0.02009763941168785, 0.013753064908087254, 0.000994988833554089, 0.003486921079456806, 0.0017791406717151403, -0.0005384454852901399, 0.007557698525488377, -0.0038858896587044, -0.020577698945999146, -0.008991390466690063, 0.0386902280151844, 0.018307145684957504, 0.01422015018761158, 0.034045323729515076, -0.0068376087583601475, 0.020785292610526085, 0.016257161274552345, 0.016711272299289703, -0.007239821366965771, -0.0033312260638922453, -0.00014525458391290158, 0.009088700637221336, 0.0015674926107749343, 0.008290763013064861, -0.00534877460449934, -0.0243273563683033, -0.023224515840411186, -0.0012982699554413557, 0.0007241442799568176, 0.011962572112679482, 0.07317668944597244, 0.01748974807560444, -0.001286917133256793, 0.029504217207431793, 0.0002637490979395807, 0.03822314366698265, -0.00613373750820756, 0.01086621917784214, -0.007836651988327503, -0.029711810871958733, 0.007434439845383167, -0.0024197609163820744, -0.0026387071702629328, -0.008965441957116127, -0.029218776151537895, 0.022510914131999016, -0.0031398506835103035, 0.005929387640208006, 0.012546428479254246, 0.005131450481712818, 0.0018667191034182906, -0.018475815653800964, -0.010840269736945629, -0.0007975318003445864, -0.0069219437427818775, -0.014635337516665459, 0.009886637330055237, 0.017087534070014954, -0.020201437175273895, -0.036899734288454056, 0.005582317244261503, 0.013753064908087254, -0.0354984775185585, -0.011378715746104717, -0.015867924317717552, -0.003193370997905731, -0.00977635383605957, -0.029919404536485672, -0.015141346491873264, -0.014907804317772388, -0.012598326429724693, 0.025819433853030205, 0.0033214951399713755, -0.017256204038858414, -0.00043262148392386734, -0.006539193447679281, -0.008446457795798779, 0.003645859891548753, 0.010528880171477795]" +38,"Operating expense increased 13% and 16% in constant currency, and operating income increased 10% and 19% in constant currency, including four points due to the latest change in accounting estimate. Next, the Intelligent cloud segment. Revenue was $20.3 billion, increasing 20% and 26% in constant currency, in line with expectations. Overall, server products and cloud services revenue increased 22% and 28% in constant currency.","[0.012992024421691895, -0.02033192850649357, 0.013999462127685547, -0.010754726827144623, 0.01271726842969656, 0.00017448219296056777, -0.013168652541935444, -0.026127967983484268, -0.0004910441930405796, -0.03482856974005699, 0.027711084112524986, 0.03987884148955345, 0.0022749125491827726, -0.006908145733177662, 0.006829644087702036, 0.025395285338163376, 0.012161214835941792, 0.002054126700386405, 0.005226902198046446, -0.00753615889698267, -0.03757612779736519, 0.018042298033833504, -0.025748543441295624, -0.002821153262630105, -0.004575992468744516, -0.007137109059840441, 0.019664665684103966, -0.00904077384620905, 0.008465095423161983, -0.016105923801660538, -0.0013893158175051212, -0.006139483768492937, -0.02713540568947792, 0.0207898560911417, -0.017963794991374016, -0.004131149500608444, -0.00838659331202507, -0.010793977417051792, 0.010872479528188705, -0.002675598254427314, 0.036843445152044296, 0.0022307555191218853, -0.005141858477145433, 0.009498700499534607, -0.0016329979989677668, 0.02488502487540245, -0.0150068998336792, -0.009976251982152462, -0.0009273008326999843, 0.009459449909627438, -0.014365803450345993, 0.050345730036497116, -0.028993278741836548, -0.013391074724495411, -0.0040330225601792336, 0.013312572613358498, -0.0036797651555389166, 0.018160050734877586, -0.005688099190592766, -0.01503306720405817, 0.0008250850951299071, 0.0011006586719304323, -0.019991755485534668, 0.0004415718140080571, -0.03027547150850296, 0.0012838292168453336, -0.004052647855132818, 0.007928667590022087, 0.0004096805350854993, 0.010067837312817574, 0.0402451828122139, 0.03731445595622063, -0.011127609759569168, -0.004876915365457535, 0.017885293811559677, -0.017479702830314636, 0.00026555638760328293, -0.021247781813144684, 0.0039283535443246365, 0.010892105288803577, 0.002983062993735075, -0.006365175824612379, -0.014614392071962357, -0.009433282539248466, 0.005171296652406454, 0.0025758356787264347, -0.024636436253786087, 0.0030632000416517258, -0.03770696371793747, 0.015438659116625786, 0.02318415604531765, 0.002629805589094758, 0.0034246346913278103, 0.03053714521229267, -0.006473115645349026, 0.00988466665148735, -0.01346303429454565, 0.033310871571302414, 0.005446052644401789, -0.015281655825674534, -0.0136331208050251, -0.017649788409471512, -0.03354637324810028, -0.014326551929116249, -0.026075633242726326, -0.00904077384620905, 0.025055112317204475, 0.007850165478885174, 0.02980446256697178, -0.0071829017251729965, 0.007189443334937096, -0.00889685470610857, 0.01889273151755333, 0.0021816918160766363, -0.006064252927899361, -0.008805269375443459, -0.009021149016916752, 0.012174298986792564, -0.0033559459261596203, -0.020632851868867874, -0.002844049595296383, 0.008484721183776855, 0.03087731823325157, -0.010964064858853817, 0.030327806249260902, -0.006613764446228743, -0.0035620126873254776, -0.025761626660823822, 0.02243839018046856, -0.011618245393037796, -0.019664665684103966, -0.007385697681456804, 0.01628909446299076, 0.011513575911521912, -0.008340801112353802, 0.029882963746786118, -0.0034017383586615324, 0.020017921924591064, -0.01868339441716671, -0.013116318732500076, -0.009204319678246975, 0.01664235070347786, 0.004405905492603779, -0.001335345907136798, 0.004383009392768145, 0.024505600333213806, 0.018526390194892883, 0.012128505855798721, 0.016550766304135323, -0.0009313894552178681, 0.0062834033742547035, -0.007549242582172155, 0.016681602224707603, 0.017558204010128975, 0.024531768634915352, -0.02378600277006626, 0.0033003403805196285, 0.026572810485959053, -0.0023992068599909544, 0.00335921673104167, -0.022556142881512642, 0.019795501604676247, -0.026127967983484268, 0.004811497405171394, 0.00985195767134428, 0.014522806741297245, 0.017492786049842834, -0.0020999193657189608, -0.0007195984944701195, -0.003830226603895426, 0.003643785137683153, 0.004860560875386, -0.020279593765735626, 0.01609284058213234, 0.008295007981359959, 0.029281118884682655, 0.0150068998336792, -0.006257236003875732, -0.01889273151755333, -0.02201971411705017, 0.009963168762624264, -0.01703486032783985, 0.006895062047988176, 0.009603369049727917, 0.013659288175404072, -0.018918899819254875, 0.024662604555487633, 0.020946858450770378, 0.002368133282288909, 0.004288152791559696, -0.0061362129636108875, 0.007666995283216238, -0.0006271955207921565, -0.00831463374197483, -0.644760251045227, -0.002423738595098257, 0.003817143151536584, -0.003732099663466215, 0.021731875836849213, 7.13976623956114e-05, 0.02755408175289631, -0.007326821330934763, -0.03147916495800018, 0.01813388243317604, 0.025172865018248558, 0.01623675972223282, -0.00022896316659171134, -0.018173133954405785, 0.016079755499958992, -0.03396505117416382, 0.0039381664246320724, -0.002098283963277936, -0.03872748464345932, -0.0033853838685899973, 0.003692848840728402, 0.012893897481262684, 0.012207007966935635, -0.006538533605635166, 0.002960166661068797, -0.01725728064775467, 0.0012077806750312448, -0.022516891360282898, -0.01814696565270424, 0.004124607890844345, -0.010322967544198036, 0.014784478582441807, 0.019821668043732643, -0.000303785054711625, 0.0374976247549057, -0.01568724773824215, -0.005854915361851454, 0.016550766304135323, 0.0032267451751977205, 0.049613047391176224, -0.025892462581396103, -0.0032545479480177164, 0.004945604596287012, 0.0007028351537883282, -0.0238514207303524, 0.03179316967725754, 0.017231114208698273, -0.01129115466028452, 0.010224840603768826, -0.04034985229372978, 0.0033559459261596203, -0.009387489408254623, 0.005514741409569979, -0.014365803450345993, -0.0004366654611658305, -0.011264988221228123, 0.01601433753967285, -0.014535889960825443, 0.006574513856321573, -0.0049750423058867455, -0.003133524442091584, -0.024531768634915352, -0.018526390194892883, -0.018120799213647842, -0.019887086004018784, 0.015621829777956009, -0.018631059676408768, 0.0003479422302916646, 0.025526121258735657, 0.01418263278901577, -0.0028293305076658726, 0.013201361522078514, -0.0039545209147036076, -0.002271641744300723, 0.01957307942211628, 0.009119275957345963, 0.028391432017087936, -0.005527825094759464, -0.015281655825674534, -0.006558159366250038, 0.003588179824873805, -0.030981987714767456, -0.0003493732656352222, -0.01983475126326084, -0.018447889015078545, 0.02781575359404087, 0.0012805582955479622, -0.026271887123584747, -0.02577470988035202, -0.009629536420106888, 0.020148757845163345, 0.019546912983059883, 0.005076440516859293, -0.0361369289457798, -0.002994511043652892, 0.02243839018046856, -0.0067642261274158955, 0.0019674478098750114, -0.0011979680275544524, -0.0036307016853243113, -0.008537054993212223, -0.00824921578168869, 0.02366825006902218, 0.00913890078663826, 0.03558741882443428, 0.02462335303425789, 0.009433282539248466, 0.004281611181795597, 0.046603817492723465, -0.031191324815154076, -0.009112734347581863, -0.014836813323199749, -0.002371404320001602, -0.0033853838685899973, -0.02700456976890564, -0.02917644940316677, 0.04126570373773575, -0.007856707088649273, -0.02147020399570465, -0.012494847178459167, -0.008772560395300388, -0.0020786584354937077, 0.03213334456086159, -0.025827044621109962, -0.019612330943346024, -0.002065574750304222, 0.02271314524114132, -0.012121964246034622, 0.010283716954290867, -0.016249842941761017, 0.007078232709318399, -0.0010646787704899907, 0.02004409022629261, -0.006613764446228743, 0.024584101513028145, 0.01131732203066349, 0.014823729172348976, -0.02529061771929264, -0.005092795006930828, -0.030563311651349068, -0.028940944001078606, -0.008550139144062996, 0.01343686692416668, -0.003084460971876979, -0.018029212951660156, -0.009596827439963818, -0.015988171100616455, 0.01053884718567133, -0.01350228488445282, -0.011565910652279854, -0.018997400999069214, -0.02012259140610695, -0.006401156075298786, -0.008752934634685516, 0.02489810809493065, 0.006934313103556633, 0.02373366802930832, -0.0333893708884716, -0.026677479967474937, -0.025185948237776756, 2.9080365493427962e-05, 0.006724975071847439, 0.0023943004198372364, 0.0163545124232769, -0.01847405731678009, 0.0043470291420817375, -0.04338524863123894, 0.022529976442456245, -0.0021195446606725454, -0.012396720238029957, 0.0058222063817083836, -0.0008030065218918025, 0.02823442965745926, -0.0019347387133166194, 0.003418093081563711, -0.008661349304020405, -0.017885293811559677, -0.020763687789440155, 0.01583116687834263, -0.03048481047153473, 0.018774978816509247, 0.018317053094506264, -0.003279079683125019, -0.008569763973355293, 0.03320620208978653, -0.0018202571664005518, 0.019324490800499916, 0.01441813725978136, -0.0028538622427731752, -0.005511470604687929, 0.0013271686621010303, 0.0429665744304657, 0.013842458836734295, -0.013162110932171345, -0.011343489401042461, -0.0016763374442234635, -0.006633390206843615, -0.009119275957345963, 0.006244152784347534, -0.023563580587506294, 0.0007559873047284782, 0.02468877099454403, -0.012265884317457676, 0.030092302709817886, 0.008138004690408707, -0.02653356082737446, -0.007241778075695038, -0.018251635134220123, 0.030249305069446564, 0.022111300379037857, 0.035456582903862, -0.018356304615736008, -0.011716372333467007, -0.015765748918056488, -0.026154134422540665, 0.004965229891240597, 0.022202884778380394, 0.0021800564136356115, 0.004288152791559696, 0.00010783756442833692, 0.0011121068382635713, -0.011624787002801895, 0.020227260887622833, -0.012154673226177692, -0.00298142759129405, -0.013214445672929287, -0.00811837986111641, 0.016459180042147636, 0.02392992191016674, -0.011657495982944965, -0.012278967536985874, 0.023131821304559708, 0.016328344121575356, -0.003983959089964628, 0.01135657262057066, 0.001374596729874611, 0.018225468695163727, -0.022399138659238815, 0.033441707491874695, -0.0025169593282043934, 0.011873375624418259, 0.01656384952366352, 0.019808584824204445, -0.04733650013804436, 0.014980732463300228, 0.013273322023451328, 0.02298790216445923, 0.004402634687721729, -0.017741374671459198, 0.011036024428904057, -0.011945335194468498, 0.018029212951660156, -0.00678385142236948, -0.023890670388936996, 0.012292050756514072, 0.012252800166606903, 0.010748185217380524, 0.009943543002009392, 0.020410431548953056, 0.03592758998274803, 0.010067837312817574, 0.003889102954417467, 0.05400913953781128, 0.00711094168946147, -0.0012535733403638005, 0.019389908760786057, -0.02073752135038376, 0.002585648326203227, 0.007405322976410389, 0.013077067211270332, 0.011605161242187023, -0.010022045113146305, 0.0030157719738781452, 0.009171610698103905, -0.012730351649224758, 0.010578098706901073, 0.008890313096344471, -0.02618030272424221, -0.006545075681060553, 0.044693611562252045, 0.011134151369333267, -0.03705278038978577, -0.0034606147091835737, 0.01583116687834263, 0.01261259987950325, 0.012226632796227932, 0.015046151354908943, -0.012638766318559647, 0.011036024428904057, 0.02776341885328293, -0.030641812831163406, 0.005177838262170553, -0.010421094484627247, 0.0068688951432704926, 0.024466348811984062, -0.0027573707047849894, 0.029647458344697952, -0.023759834468364716, -0.012835021130740643, -0.006881978362798691, 0.005135316867381334, 0.006538533605635166, -0.017100278288125992, 0.012835021130740643, 0.050633568316698074, -0.01036221906542778, -0.04178904742002487, -0.0038825611118227243, 0.0008336712489835918, -0.009937001392245293, 0.019991755485534668, -0.035351913422346115, -0.03472390025854111, 0.02590554766356945, 0.032892193645238876, 0.004019938874989748, -0.009374406188726425, -0.030720315873622894, 0.019520744681358337, 0.026494309306144714, -0.008190339431166649, -0.006335738115012646, -0.04186755046248436, 0.008131463080644608, 0.054794155061244965, 0.02284398302435875, -0.004477865528315306, 0.024466348811984062, 0.018657227978110313, -0.0030370329041033983, -0.01115377712994814, -0.009348238818347454, 0.007372613996267319, -0.019808584824204445, -0.014653642661869526, 0.0022405681665986776, 0.02352432906627655, -0.017819875851273537, -0.005553991999477148, 0.006227798294275999, 0.003418093081563711, -0.022621560841798782, 0.0009322071564383805, 0.011578994803130627, -0.006757684517651796, 0.010120172053575516, 0.030563311651349068, 0.03082498349249363, 0.023537414148449898, 0.007248319685459137, 0.004297965671867132, 0.023092571645975113, -0.0020066986326128244, -0.016760103404521942, -0.013790124095976353, 0.0026608791667968035, -0.00845201127231121, 0.011768707074224949, -0.009348238818347454, 0.0064502195455133915, 0.01336490735411644, -0.027711084112524986, 0.00646003196015954, 0.004912895150482655, 0.00883143674582243, -0.013986378908157349, 0.00550819979980588, -0.0029585312586277723, -0.002009969437494874, -0.02700456976890564, -0.00958374422043562, 0.039852675050497055, 0.003846581093966961, 0.0163545124232769, -0.012148131616413593, -0.008334259502589703, -0.04212922230362892, 0.011938793584704399, -0.018303969874978065, 0.022857066243886948, -0.003486781846731901, -0.031400661915540695, 0.00015945649647619575, -0.02645505778491497, -0.033232368528842926, -0.019900169223546982, 0.010911730118095875, -0.011336947791278362, -0.044562775641679764, -0.009289362467825413, -0.002878393977880478, 0.00599883496761322, -0.04778134077787399, 0.013273322023451328, 0.002708307234570384, -0.015634912997484207, -0.033991217613220215, 0.01060426514595747, 0.026062550023198128, -0.0029339995235204697, -0.0034638855140656233, -0.000315437646349892, -0.007954834960401058, 0.014784478582441807, -0.019520744681358337, -0.013449950143694878, -0.015294739045202732, -0.014261133968830109, -0.014823729172348976, 0.0036961196456104517, 0.010525763966143131, 0.0015634912997484207, -0.014954566024243832, -0.0028342369478195906, -0.015569495037198067, -0.022346805781126022, -0.0037811631336808205, 0.00821650680154562, 0.03082498349249363, -0.0041900258511304855, 0.013593870215117931, 0.0025316784158349037, 0.00714365066960454, -0.00635536340996623, 0.017885293811559677, 0.000873330922331661, -0.01860489323735237, -0.004471323452889919, 0.03354637324810028, 0.01957307942211628, 7.134655606932938e-05, -0.03155766427516937, -0.00028088875114917755, -0.013763956725597382, 0.012082713656127453, 0.0008259028545580804, -0.02338040992617607, -0.015556411817669868, -0.015399408526718616, -0.001183248939923942, 0.02133936621248722, -0.008327717892825603, 0.024453265592455864, -0.0035129492171108723, 0.023341158404946327, -0.001936374232172966, 0.033441707491874695, -0.0020410430151969194, -0.005760059226304293, -0.0006231068982742727, 0.00913235917687416, -0.013005107641220093, -0.041422706097364426, 0.005949771497398615, -0.0050633568316698074, 0.012213549576699734, -0.012174298986792564, 0.010911730118095875, 0.0017957254312932491, -0.03286602720618248, 0.013698538765311241, -0.015451742336153984, -0.01793762855231762, -0.006211443804204464, -0.03932933136820793, -0.015281655825674534, 0.014732143841683865, -0.02535603567957878, 0.017505869269371033, -0.01887964829802513, -0.006015189457684755, -0.004490948747843504, 0.0211300291121006, 0.03393888473510742, 0.004742808640003204, -0.011559369042515755, -0.016341427341103554, 0.0017777354223653674, -0.029150281101465225, -0.0050110225565731525, 0.007189443334937096, -0.024597186595201492, 0.04178904742002487, 0.017087193205952644, 0.022281387820839882, 0.005259611178189516, 0.008491262793540955, 0.03566591814160347, -0.010414552874863148, -0.0004448427353054285, 0.011559369042515755, -0.020816022530198097, -0.027501747012138367, 0.0022814543917775154, -0.013489201664924622, 0.006276861764490604, -0.010813603177666664, -0.02237297222018242, 0.006548346485942602, 0.003918541129678488, -0.010107087902724743, 0.0088641457259655, -0.04008818045258522, -0.019874002784490585, 0.006142754573374987, -0.007366071920841932, -0.010231382213532925, 0.011742539703845978, -0.017963794991374016, -0.018709560856223106, 0.009511783719062805, -0.0010728560155257583, 0.045033782720565796, -0.026232637465000153, 0.03451456129550934, 0.014889147132635117, 0.01479756273329258, -0.003915270324796438, -0.004307778552174568, 0.0029977820813655853, -0.010303342714905739, -0.02256922610104084, -0.019599247723817825, -0.001323897740803659, -0.018186217173933983, 0.035770587623119354, 0.0015814813086763024, 0.016119007021188736, -0.00439936388283968, 0.018918899819254875, 0.0083473427221179, -0.02258230932056904, 0.008478178642690182, -0.022857066243886948, -0.00642732298001647, -0.0477028414607048, -0.017270363867282867, 0.005854915361851454, -0.0030190427787601948, 0.032159510999917984, 0.0024368222802877426, 0.005334841553121805, -0.022281387820839882, -0.01641993038356304, 0.024518683552742004, -0.00016231852350756526, 0.01936374232172966, -0.01814696565270424, 0.0374976247549057, 0.020711353048682213, 0.006244152784347534, -0.031950175762176514, -0.024217762053012848, 0.010879021137952805, -0.01868339441716671, 0.03108665533363819, 0.0429665744304657, 0.0006374170770868659, 0.003692848840728402, -0.015569495037198067, 0.004369925707578659, -0.007869791239500046, -0.018290886655449867, 0.010911730118095875, 0.015046151354908943, 0.011330406181514263, -0.01950766146183014, -0.025473788380622864, -0.002781902439892292, 0.02666439674794674, -0.009158526547253132, 0.018238551914691925, 0.002451541367918253, -0.01115377712994814, -0.01265185046941042, 0.021784210577607155, 0.007581951562315226, 0.013855542056262493, -0.011840666644275188, 0.00825575739145279, -0.0027328389696776867, 0.005220360122621059, -0.0010663141729310155, -0.010061295703053474, -0.015595662407577038, 0.008550139144062996, -0.02912411466240883, 0.009335155598819256, 0.01032951008528471, 0.011729455552995205, 0.006731517147272825, -0.004883457440882921, -0.021587954834103584, 0.020763687789440155, -0.030170803889632225, -0.009348238818347454, 0.03846581280231476, -0.008641724474728107, 0.010767810977995396, -0.013423783704638481, -0.01881423033773899, 0.001342705450952053, -0.002389394212514162, 0.002709942637011409, 0.010826686397194862, -0.011232278309762478, -0.012808853760361671, 0.008700599893927574, 0.011395824141800404, -0.013659288175404072, -0.012985482811927795, -0.008438928052783012, 0.01602742075920105, -0.015399408526718616, -0.019926337525248528, 0.012828479520976543, 0.014025629498064518, 0.038073305040597916, -0.01346303429454565, 0.004454968962818384, 0.0024090195074677467, 0.024086924269795418, -0.030563311651349068, 0.0327090248465538, 0.030772648751735687, -0.00968187116086483, -0.01759745553135872, 0.026494309306144714, -0.018290886655449867, -0.016799354925751686, 0.03652943670749664, -0.016603101044893265, -0.02823442965745926, 0.012298593297600746, -0.0005556445685215294, -0.004219464026391506, 0.007601577322930098, 0.002176785608753562, 0.0012077806750312448, 0.017087193205952644, -0.01759745553135872, -0.011794873513281345, -0.03150533139705658, 0.016380678862333298, -0.005439510568976402, -0.005308674648404121, 0.028679272159934044, -0.022268302738666534, 0.0049848551861941814, 0.007405322976410389, -0.011441616341471672, 0.01040146965533495, -0.006744600832462311, -0.04642064496874809, 0.0021408055908977985, 0.03469773381948471, -0.005151671357452869, 0.013201361522078514, 0.001813715323805809, -0.001970718614757061, 0.001242942875251174, -0.013934044167399406, 0.017702123150229454, 0.005118962377309799, -0.004160587675869465, -0.007326821330934763, 0.027658751234412193, 0.010028586722910404, -0.00904077384620905, -0.030249305069446564, -0.01874881237745285, -0.009655703790485859, -0.037471458315849304, -0.005040460731834173, 0.011036024428904057, 0.0242046769708395, 0.003105721902102232, -0.029830629006028175, -0.02713540568947792, -0.013777040876448154, -0.05610251799225807, -0.010859396308660507, -0.02203279919922352, 0.020881440490484238, 0.023471996188163757, 0.016877856105566025, -0.003318330505862832, 0.04233856126666069, -0.003470427356660366, 0.0286269374191761, -0.033049196004867554, 0.01800304651260376, 0.014719060622155666, -0.018225468695163727, -0.006463303230702877, 0.0031760463025420904, -0.02242530696094036, -0.004206380341202021, 0.011507034301757812, -0.005406801588833332, 0.03697428107261658, 0.013476117514073849, 0.010807061567902565, -0.03260435536503792, 0.0003794246877077967, 0.011408907361328602, -0.006064252927899361, 0.0150068998336792, 0.01343686692416668, -0.04717949405312538, -0.009878125041723251, 0.016472265124320984, 0.004742808640003204, -0.01356770284473896, 0.009740747511386871, 0.0070716910995543, 0.00032525035203434527, 0.0006644020322710276, -0.0163545124232769, 0.003732099663466215, 0.013620037585496902, -0.011618245393037796, 0.010002419352531433, 0.016132090240716934, 0.008635181933641434, 0.029228784143924713, 0.025146696716547012, -0.030327806249260902, -0.001640357542783022, 0.0282867643982172, -0.030563311651349068, -0.020070256665349007, 0.016328344121575356, -0.0021424409933388233, 0.012638766318559647, -0.0038204139564186335, -0.0011538107646629214, 0.007823998108506203, -0.03647710382938385, -0.008837978355586529, 0.01428730133920908, 0.002512053120881319, -0.022752396762371063, -0.015059234574437141, -0.043542250990867615, 0.02488502487540245, -0.010355676524341106, -0.0036699525080621243, -0.0019232905469834805, -0.0007895140442997217, -0.007614660542458296, -0.028208261355757713, -0.05050273239612579, 0.009080025367438793, -0.017898377031087875, -0.04202455282211304, -0.0023043507244437933, 0.0007613025372847915, -0.012076171115040779, 0.009668787010014057, 0.20713970065116882, 0.020711353048682213, 0.005308674648404121, 0.04487678036093712, -0.005845102481544018, 0.012697642669081688, 0.005580159369856119, -0.0011407271958887577, -0.005697912070900202, 0.021313199773430824, -0.018644142895936966, 0.022660812363028526, 0.006129670888185501, -0.006119858473539352, 0.01558257918804884, -0.006417510565370321, -0.05270078033208847, 0.01814696565270424, -0.017728291451931, 0.04207688942551613, 0.011297697201371193, -0.011565910652279854, -0.01114723552018404, -0.016956357285380363, 0.00968841277062893, -0.025670042261481285, -0.01753203757107258, 0.00746419932693243, 0.023236490786075592, 0.023916838690638542, -0.017571287229657173, 0.017976880073547363, -0.009910834021866322, -0.004340487532317638, -0.005210547242313623, -0.014535889960825443, -0.005256339907646179, 0.006554888561367989, -0.025473788380622864, 0.006253965198993683, 0.024584101513028145, 0.01623675972223282, 0.015281655825674534, -0.010676225647330284, -0.00407554442062974, 0.012043462134897709, 0.004942333325743675, 0.015713414177298546, -0.004418989177793264, 0.011402365751564503, -0.025002777576446533, 0.01970391534268856, 0.01032951008528471, 0.009740747511386871, 0.00031318890978582203, 0.01138928160071373, 0.019756250083446503, 0.002234026324003935, 0.006967022083699703, -0.024113092571496964, -0.008098754100501537, 0.0057273502461612225, -0.010133255273103714, -0.013724706135690212, 0.003676494350656867, -0.019010484218597412, -0.004510574508458376, 0.008066045120358467, -0.01053230557590723, 0.0017090465407818556, 0.007994085550308228, -0.003856393974274397, -0.028391432017087936, 0.007516533602029085, -0.021915046498179436, -0.013489201664924622, 0.040323685854673386, -0.0059007080271840096, 0.007058607414364815, -0.0007245048764161766, -0.0024221031926572323, 0.005194192752242088, -0.006535262800753117, -0.014208800159394741, -0.007614660542458296, -0.008406219072639942, 0.02365516684949398, -0.001903665135614574, -0.006986647378653288, 0.013090151362121105, 0.0011211017845198512, 0.015857335180044174, -0.010512679815292358, -0.015778832137584686, 0.003980688285082579, 0.01257989089936018, -0.019625414162874222, -0.00525306910276413, -0.026559727266430855, 0.001564309000968933, -0.015661081299185753, 0.06034160777926445, 0.018447889015078545, -0.008275383152067661, 0.000915034965146333, -0.01937682554125786, -0.002749193459749222, 0.010342593304812908, -7.947270933073014e-05, -0.01895814947783947, -0.013325655832886696, -0.014025629498064518, 0.010964064858853817, -0.010185590013861656, 0.0003454890684224665, 0.003771350486204028, 0.002072116592898965, -0.010270633734762669, -0.0001403421483701095, -0.009230486117303371, 0.008484721183776855, -0.006404426880180836, -0.00678385142236948, 0.001841517980210483, -0.01560874655842781, 0.008478178642690182, 0.012350927107036114, -0.01759745553135872, -0.006796935107558966, -0.025002777576446533, 0.02331499196588993, -0.02161412313580513, 0.008465095423161983, -0.0018447889015078545, 0.011369656771421432, 0.026638228446245193, 0.026127967983484268, 0.001233947928994894, -0.00977999810129404, 0.004752621054649353, -0.009021149016916752, 0.01356770284473896, 0.020070256665349007, 0.0011987857287749648, 0.010911730118095875, -0.006574513856321573, 0.024113092571496964, 0.02086835727095604, -0.012292050756514072, -0.0055703469552099705, -0.03168850392103195, -0.007850165478885174, -0.0003867842024192214, 0.011193027719855309, 0.028103593736886978, -0.01573958247900009, -0.03158383443951607, -0.02406075783073902, -0.0007326821214519441, 0.014705977402627468, -0.06505170464515686, -0.026088716462254524, 0.02365516684949398, -0.009119275957345963, -0.010008960962295532, -0.011749081313610077, -0.16474881768226624, 0.017963794991374016, -0.010277175344526768, -0.008085670880973339, 0.012586432509124279, 0.017623621970415115, 0.002391029614955187, -0.013489201664924622, -0.0026167219039052725, -0.021221615374088287, 0.00968187116086483, 0.028600770980119705, -0.039512500166893005, -0.005259611178189516, 0.01125190407037735, 0.005972667597234249, -0.020816022530198097, 0.017649788409471512, 0.020907608792185783, 0.0031138991471379995, 0.036450937390327454, -0.008981897495687008, -0.010689308866858482, -0.015700330957770348, -0.009701495990157127, 0.01042763702571392, -0.0327090248465538, 0.007405322976410389, -0.0019559995271265507, -0.007981001399457455, -0.011336947791278362, 0.004667577799409628, 0.018722645938396454, 0.009380947798490524, -0.002451541367918253, -0.0002755735185928643, -0.02270006202161312, -0.00818379782140255, -0.010224840603768826, 0.024178510531783104, 0.03553508222103119, 0.011421991512179375, 0.015399408526718616, 0.026742897927761078, 0.005275965668261051, 0.015190070495009422, 0.02339349314570427, -0.013947127386927605, 0.015805000439286232, 0.022883232682943344, 0.023014068603515625, -0.047493502497673035, 0.017479702830314636, -0.0034606147091835737, -0.004540012683719397, 0.011605161242187023, -0.008203423582017422, 0.004559637978672981, 0.010414552874863148, -0.026546644046902657, 0.00964916218072176, -0.023903753608465195, -0.018997400999069214, -0.023563580587506294, 0.006499283015727997, -0.015634912997484207, 0.026127967983484268, -0.0031874943524599075, -0.02106461115181446, 0.03163616731762886, 0.018513306975364685, -0.006384801585227251, -0.012089255265891552, 8.161923324223608e-05, -0.00960991159081459, 0.00671843346208334, 0.0029912402387708426, 0.006051169242709875, 0.01418263278901577, -0.008039877749979496, -0.009230486117303371, 0.0016297270776703954, -0.0255653727799654, 0.024584101513028145, -0.01876189559698105, 0.01032951008528471, 0.010983690619468689, 0.01950766146183014, 0.003728828625753522, -0.005652119405567646, -0.006626848131418228, -0.026703646406531334, 0.017061026766896248, -0.009596827439963818, 0.0019281969871371984, 0.021352451294660568, 0.015530244447290897, 0.016145173460245132, 0.004746079444885254, 0.013384532183408737, -0.012625683099031448, 0.011278071440756321, -0.02747558057308197, 0.012370552867650986, 0.025748543441295624, 0.03362487629055977, 0.0013337103882804513, 0.0029127385932952166, 0.005612868349999189, -0.01936374232172966, -0.04995322227478027, 0.0077585806138813496, 0.02086835727095604, 0.0224907249212265, -0.023576663807034492, 0.01984783634543419, -0.030301639810204506, -0.012246258556842804, 0.011415448971092701, 0.007228694390505552, 0.06253965198993683, -0.016276009380817413, -0.02344582788646221, -0.017204945906996727, -0.007595035247504711, -0.019049735739827156, -0.0947776660323143, -0.03053714521229267, -0.02201971411705017, 0.02413925901055336, 0.026141051203012466, 0.0076539115980267525, -0.020645935088396072, 0.019887086004018784, -0.03652943670749664, 0.023406578227877617, 0.006633390206843615, -0.005125503987073898, -0.012180840596556664, 0.0004493402084335685, 0.02407384105026722, -0.010578098706901073, -0.00711094168946147, 0.0066759116016328335, -0.012468679808080196, 0.029778294265270233, 0.010277175344526768, 0.007444573566317558, 0.010983690619468689, -0.039931174367666245, -0.034122053533792496, -0.022281387820839882, -0.04066385701298714, -0.0008246762445196509, 0.00820996519178152, 0.03158383443951607, 0.03236884996294975, 0.005720808170735836, 0.010898646898567677, -0.012383636087179184, -0.019900169223546982, 0.007712787948548794, -0.013220987282693386, 0.008530513383448124, 0.013476117514073849, -0.024858858436346054, 0.021352451294660568, 0.006303028669208288, -0.00646003196015954, -0.022673895582556725, -0.009760372340679169, -0.016760103404521942, 0.011749081313610077, 0.004618514329195023, -0.020096424967050552, -0.02127394825220108, -0.008438928052783012, -0.004350299946963787, 0.00022855430142953992, -0.0075034499168396, 0.003908728249371052, -0.0074184066615998745, 0.02536911889910698, -0.002641253639012575, -0.007647369522601366, -0.021627206355333328, -0.027998924255371094, 0.0002449088206049055, -0.03948633372783661, 0.03040630929172039, 0.011624787002801895, 0.012121964246034622, -0.01929832436144352, -0.006064252927899361, -0.009943543002009392, -0.015360157936811447, -0.0022994442842900753, 0.0012192288413643837, -0.02167954109609127, 0.006096961908042431, -0.030458642169833183, -0.0007551696035079658, -0.017335781827569008, -0.021640289574861526, 0.041893716901540756, -0.00593341700732708, -0.020004838705062866, -0.02946428768336773, -0.003915270324796438, -0.0016583475517109036, 0.027240075170993805, 0.009891209192574024, -0.000642323459032923, -0.03291836008429527, 0.025068195536732674, -0.004222734831273556, 0.004873644560575485, 0.016249842941761017, 0.011166860349476337, -0.017021775245666504, 0.009400573559105396, -0.008393135853111744, -0.02891477756202221, -0.027580248191952705, -0.00041949324076995254, -0.012259341776371002, -0.018330136314034462, 0.010054754093289375, -0.055474504828453064, 0.020017921924591064, -0.0009207589901052415, 0.0017532036872580647, 0.012226632796227932, 0.007712787948548794, 0.009498700499534607, -0.0032823504880070686, -0.0004086583503521979, 0.014234967529773712, -0.041344206780195236, 0.01847405731678009, -0.0031874943524599075, 0.0010409647366032004, -0.00825575739145279, -0.008687516674399376, 0.022320637479424477, 0.008007168769836426, -0.014522806741297245, 0.007195985410362482, 0.013868626207113266, -0.001972354017198086, 0.00675114244222641, 0.0005536001990549266, -0.02059360221028328, 0.010610807687044144, -0.024924276396632195, 0.018591808155179024, 0.011376198381185532, -0.021522536873817444, 0.00711094168946147, -0.017780626192688942, -0.016472265124320984, 0.046682316809892654, 0.001122737186960876, -0.03563975170254707, 0.002386123174801469, 0.029307285323739052, 0.024100009351968765, -0.004441885277628899, -0.01971699856221676, -0.03255201876163483, 0.017231114208698273, 0.006077336613088846, -0.016995608806610107, 0.0007964647375047207, -0.006603952031582594, -0.0029192804358899593, 0.01921982318162918, 0.011160318739712238, 0.03527341037988663, 0.005357738118618727, -0.010290258564054966, -0.018251635134220123, -0.005164755042642355, -0.03158383443951607, 0.023367326706647873, 0.008353884331882, 0.011984586715698242, 0.015805000439286232, 0.03825647383928299, -0.0010041670175269246, 0.014679810032248497, -0.016066672280430794, 0.007287570275366306, 0.008707142435014248, -0.0207898560911417, 0.018735729157924652, -0.011938793584704399, -0.006139483768492937, 0.020031007006764412, 0.0013369813095778227, 0.004088628105819225, 0.020004838705062866, -0.008020252920687199, 0.0005993928643874824, 0.009282820858061314, -0.002489156788215041, 0.008275383152067661, 0.02747558057308197, 0.017074109986424446, -0.00593014620244503, 0.004383009392768145, 0.018107715994119644, -0.003158056177198887, 0.018094632774591446, -0.0083473427221179, -0.008923022076487541, 5.596309347311035e-05, 0.0054820324294269085, 0.010453804396092892, 0.00889685470610857, -0.014104130677878857, 0.004562908783555031, 0.010440720245242119, -0.0024548121728003025, -0.008694058284163475, 0.01346303429454565, -0.007712787948548794, 0.01963849738240242, 0.01573958247900009, 0.005498386919498444, -0.038622815161943436, -0.02781575359404087, -0.010610807687044144, 0.0004015032609459013, -0.021221615374088287, -0.03438372537493706, -0.025277532637119293, 0.035692088305950165, 0.021391700953245163, 0.01937682554125786, 0.01492839865386486, 0.01118648611009121, 0.00017366447718814015, 0.002669056411832571, -0.015399408526718616, -0.0035783671773970127, -0.01662926748394966, 0.021430952474474907, 0.01792454533278942, 0.015229321084916592, 0.010741643607616425, -0.018251635134220123, 0.015569495037198067, 0.022896315902471542, 0.011958419345319271, -0.010996773838996887, -0.010316425934433937, 0.0057862261310219765, 0.00892956368625164, -0.005753517150878906, 0.010643516667187214, -0.013947127386927605, -0.03469773381948471, -0.024911193177103996, 0.0004098849603906274, 0.010937897488474846, 0.010964064858853817, 0.07311120629310608, 0.01131732203066349, -0.0070847743190824986, 0.016001254320144653, 0.02025342732667923, 0.02618030272424221, -0.005455865059047937, 0.004546554293483496, -0.006342279724776745, -0.007686620578169823, -0.0012789227766916156, -0.0023877588100731373, -0.009498700499534607, -0.012481763027608395, -0.03422672301530838, 0.02038426324725151, 0.0070847743190824986, 0.022137466818094254, -0.0009534680284559727, 0.00021690170979127288, 7.783725595800206e-05, -0.03027547150850296, 0.000829582626465708, 0.015360157936811447, -0.01274997740983963, -0.010551931336522102, 0.008595931343734264, 0.0014792656293138862, -0.017649788409471512, -0.05204659700393677, -0.00410825340077281, -0.0005993928643874824, -0.036791108548641205, -0.015543327666819096, 0.006280132569372654, -0.0037092033307999372, 0.00027046274044550955, -0.015778832137584686, 0.00041438243351876736, -0.034750066697597504, -0.011696746572852135, 0.022595394402742386, -0.0006390525377355516, -0.014104130677878857, 0.01281539537012577, -0.011467783711850643, 0.012095796875655651, 0.004343758337199688, 0.00720906862989068]" +39,"Azure and other cloud services revenue grew 35% and 42% in constant currency, about one point lower than expected, driven by the continued moderation in Azure consumption growth, as we help customers optimize current workloads while they prioritize new workloads. In our per-user business, the enterprise mobility and security installed base grew 18% to over 232 million seats, with continued impact from the new deal moderation noted earlier. In our on-premises server business, revenue was flat, and increased 4% in constant currency, slightly ahead of expectations, driven by hybrid demand, including better-than-expected annuity purchasing ahead of the SQL Server 2022 launch. Enterprise services revenue grew 5% and 10% in constant currency, driven by enterprise support services.","[0.017210062593221664, -0.03311038017272949, -0.001220519538037479, -0.013339763507246971, 0.008048389106988907, -0.0028650695458054543, -0.034341540187597275, -0.0317220501601696, -0.009194416925311089, -0.03486543893814087, 0.03609659895300865, 0.033293742686510086, 0.005841467529535294, 4.4382995838532224e-05, -0.0045153493992984295, 0.012174089439213276, 0.010464870370924473, -0.006830325350165367, 0.016109876334667206, -0.024321984499692917, -0.014708448201417923, 0.0016118062194436789, -0.037380151450634, 0.006064123939722776, -0.012481879442930222, 0.016646871343255043, 0.021990636363625526, -0.00598553940653801, 0.03127673640847206, -0.008506800048053265, 0.0017305020010098815, -0.017419621348381042, -0.011551960371434689, 0.01613607071340084, -0.023365870118141174, -0.004250125959515572, -0.011938335373997688, 0.021532224491238594, 0.018768660724163055, 0.003889945801347494, 0.02388976700603962, -0.0015856112586334348, -0.014394109137356281, 0.009253355674445629, -0.010838148184120655, 0.022383559495210648, -0.0022462145425379276, 0.0009397427784278989, -0.0044465879909694195, 0.0034511808771640062, 0.004954114556312561, 0.039659108966588974, -0.030621862038969994, -0.016489703208208084, -0.00995406974107027, 0.005681023467332125, -0.031198151409626007, 0.03187922015786171, -0.008408569730818272, 0.00969866942614317, -0.00586111331358552, 0.019593801349401474, -0.026954572647809982, -0.003189231501892209, -0.03586084768176079, -0.008834237232804298, -0.002568739466369152, 0.004390923772007227, 0.00021897316037211567, -0.004001274239271879, 0.025435268878936768, 0.025435268878936768, 0.020969033241271973, -0.00508836330845952, 0.012383649125695229, -0.027033157646656036, 0.0037949890829622746, -0.021086910739541054, -0.009967166930437088, 0.006001911126077175, 0.004007822833955288, -0.015206151641905308, -0.013647553510963917, -0.014472694136202335, 0.0045120748691260815, 0.014852520078420639, -0.029181141406297684, -0.011571606621146202, -0.020641596987843513, 0.01879485510289669, 0.028369098901748657, -0.003925963770598173, -5.047126978752203e-05, 0.030071768909692764, -0.0015569606330245733, 0.005884034093469381, -0.0172362569719553, 0.030202742666006088, 0.00038432859582826495, -0.021584615111351013, -0.01460366789251566, 0.002848697593435645, -0.03552031144499779, -0.01322188600897789, -0.028866803273558617, -0.0024263046216219664, 0.013398702256381512, -0.0035395887680351734, 0.040471151471138, -0.01658138446509838, -0.003703306894749403, -0.01294029038399458, 0.01841503009200096, -0.003362772986292839, -0.0012385286390781403, -7.172906043706462e-05, -0.006109965033829212, 0.011211425997316837, 0.006604394409805536, -0.006172178313136101, 0.005448543466627598, 0.008100778795778751, 0.023365870118141174, -0.006329347845166922, 0.003975079394876957, 5.653396146954037e-05, -0.008965211920440197, -0.019148487597703934, 0.00876220129430294, -0.010268408805131912, -0.005081814713776112, 0.001918777939863503, 0.01629324071109295, 0.004728183150291443, 0.00922716036438942, 0.026980768889188766, -0.018139982596039772, 0.013320117257535458, -0.013077814131975174, -0.010392834432423115, -0.009043795987963676, 0.01673855446279049, 0.003739324864000082, -0.0031008238438516855, 0.015533587895333767, 0.0224621444940567, 0.027033157646656036, -0.0017665199702605605, 0.009004504419863224, -0.013844016008079052, 0.020497525110840797, -0.028369098901748657, 0.012599756941199303, 0.000977398012764752, 0.015258541330695152, -0.018048299476504326, -0.009888582862913609, 0.03127673640847206, -0.021152397617697716, -0.0076947580091655254, -0.020052211359143257, 0.032691262662410736, -0.010766112245619297, -0.012730731628835201, 0.009351586923003197, 0.013778528198599815, 0.01745891384780407, -0.003130292985588312, -0.0071184695698320866, -0.010124336928129196, -0.0007670200429856777, 0.003205603454262018, -0.009528402239084244, 0.016149168834090233, 0.0035887041594833136, 0.02844768390059471, 0.009410525672137737, -0.009796900674700737, -0.029705040156841278, -0.019030610099434853, 0.02345755137503147, -0.0010535269975662231, 0.01155850850045681, 0.008591934107244015, 0.02489827200770378, -0.0016830236418172717, 0.028264319524168968, 0.02035345323383808, 0.009993362240493298, 0.00418791314586997, -0.009882033802568913, 0.01497039757668972, -0.014328621327877045, -0.021610809490084648, -0.6504722833633423, -0.007609624415636063, 0.016607578843832016, -0.001466915593482554, 0.013261178508400917, -0.005884034093469381, 0.021545322611927986, 0.0016314523527398705, -0.024989955127239227, 0.013555871322751045, 0.013660650700330734, 0.012468782253563404, -0.008185912854969501, 0.0037622454110533, 0.010248762555420399, -0.0005828369758091867, 0.003752422286197543, 0.006198373157531023, -0.01706599071621895, 0.0019482471980154514, -0.012619403190910816, 0.027399886399507523, 0.002775024389848113, -0.0005799719365313649, -0.0002066942979581654, -0.01277657225728035, -0.0017403250094503164, -0.010346993803977966, -0.008696713484823704, 0.005353586748242378, -0.017825644463300705, 0.02035345323383808, 0.01527163852006197, 0.005134204402565956, 0.04078549146652222, -0.0003747101582121104, -0.014171452261507511, 0.013149850070476532, 0.0012745466083288193, 0.04906308650970459, -0.017367232590913773, 0.007026787381619215, 0.01527163852006197, 0.006064123939722776, -0.005579518154263496, 0.0240076445043087, 0.012364002875983715, -0.02051062323153019, 0.009390879422426224, -0.016044389456510544, 0.0006687890854664147, -0.0016330896178260446, 0.013189142569899559, -0.020942838862538338, 0.020366551354527473, 0.005206240341067314, 0.012586659751832485, -0.018231665715575218, 0.004682342056185007, 0.0003192505973856896, -0.021440543234348297, -0.0062867808155715466, -0.009502207860350609, -0.025251902639865875, -0.028526268899440765, 0.03004557453095913, -0.0014824687968939543, 0.008670519106090069, 0.01696121133863926, 0.004161717835813761, 0.002847060328349471, 0.01352967694401741, 0.010477968491613865, -0.020707085728645325, 0.0012598119210451841, 0.016542091965675354, 0.021388152614235878, -0.015677660703659058, -0.017210062593221664, 0.0045546418987214565, 0.009790351614356041, -0.026705721393227577, -0.000770294398535043, -0.011519216001033783, -0.007878122851252556, 0.004106053616851568, -0.022435950115323067, -0.018493613228201866, -0.006457048002630472, 0.003961981739848852, 0.02390286512672901, 0.012069310061633587, -0.001564327976666391, -0.03153868392109871, 0.020248673856258392, 0.0325864814221859, -0.015769341960549355, -0.0018532905960455537, 0.004999955650418997, 0.006512712221592665, -0.007544137071818113, -0.024033838883042336, 0.03407959267497063, 0.01668616384267807, 0.030228938907384872, 0.03059566766023636, -0.002517986809834838, -0.0030631686095148325, 0.04128319397568703, -0.032245948910713196, 0.01460366789251566, -0.023523038253188133, 0.00024168907839339226, 0.0007015326991677284, 0.005844741594046354, -0.029678845778107643, 0.031853023916482925, -0.009377781301736832, -0.02815954014658928, -0.024767298251390457, -0.010615491308271885, 0.017052892595529556, 0.023156309500336647, -0.024924466386437416, -0.01596580445766449, 0.01613607071340084, 0.019423533231019974, 0.008978309109807014, 0.025094734504818916, -0.01679094508290291, -0.0027782986871898174, -0.006303153000771999, 0.02627350576221943, -0.002210196340456605, 0.038925651460886, -0.004688890650868416, 0.007825732231140137, -0.019436631351709366, 0.00525208143517375, -0.03575606644153595, -0.020536817610263824, -0.003578881034627557, -0.004469508305191994, 0.003289099782705307, -0.0062867808155715466, -0.006041203625500202, -0.02920733578503132, 0.01924016885459423, -0.018663881346583366, -0.008906273171305656, -0.0166337750852108, -0.008742555044591427, -0.012842060066759586, 0.006453773472458124, 0.013110557571053505, 0.014092867262661457, -0.00845441035926342, -0.035232167690992355, -0.018781758844852448, -0.020196283236145973, -0.01407977007329464, 0.021925149485468864, -0.008146620355546474, 0.017825644463300705, -0.01719696633517742, -0.003169585485011339, -0.04468853399157524, 0.02390286512672901, 0.0005881578545086086, -0.011650190688669682, -0.002468871185556054, -0.007616173010319471, 0.024466056376695633, 0.00787157379090786, 0.00681722816079855, -0.007819184102118015, -0.03442012518644333, -0.01103461068123579, 0.01845432072877884, -0.018087591975927353, 0.009934423491358757, 0.029233532026410103, -0.00046618771739304066, -0.012462233193218708, 0.02920733578503132, -0.0033791447058320045, 0.020549915730953217, 0.019384240731596947, -0.0053437636233866215, -0.0006691983435302973, 0.0011591252405196428, 0.02889299765229225, -0.014263134449720383, -0.01003920380026102, -0.010353542864322662, -0.022160902619361877, -0.02776661515235901, -0.0069743976928293705, -0.00886698067188263, -0.008827688172459602, 0.016476605087518692, 0.030228938907384872, -0.0013785077026113868, 0.03599182143807411, -0.003650916973128915, -0.017917325720191002, -0.01802210509777069, -0.017943520098924637, 0.019227072596549988, 0.01896512322127819, 0.028631048277020454, -0.031067175790667534, -0.013241532258689404, -0.02560553513467312, -0.019829554483294487, 0.008107327856123447, 0.023523038253188133, -0.0009119106689468026, -0.014695350080728531, 0.0038342815823853016, 0.007098823320120573, -0.02416481450200081, 0.01375233381986618, -0.0019122292287647724, 0.0036378195509314537, 0.004721634555608034, -0.00906344223767519, 0.016921918839216232, 0.03263887017965317, -0.011486472561955452, -0.002747192280367017, 0.02954787015914917, 0.021008325740695, -0.006673155818134546, 0.0015905228210613132, 0.014066671952605247, 0.026417577639222145, -0.032900821417570114, 0.026574747636914253, -0.022213293239474297, 0.01174842193722725, 0.0013490384444594383, 0.009823095053434372, -0.02461012825369835, 0.01917468197643757, 0.008441313169896603, 0.03156488016247749, -3.473896867944859e-05, -0.019266365095973015, 0.013038521632552147, -0.008120425045490265, 0.01497039757668972, 0.014394109137356281, -0.01328082475811243, 0.0014415392652153969, 0.0016118062194436789, 0.010301152244210243, 0.006247488781809807, 0.01527163852006197, 0.03465588018298149, 0.0090896375477314, 0.009017601609230042, 0.03342472016811371, -0.015179956331849098, -0.011348949745297432, 0.018650783225893974, -0.024073131382465363, -0.00864432379603386, 0.011912140063941479, 0.012501525692641735, 5.126428004587069e-05, -0.019606897607445717, 0.006365365814417601, 0.007210151758044958, -0.025867484509944916, 0.011159036308526993, 0.001943335635587573, -0.015324028208851814, -0.017498206347227097, 0.030569473281502724, 0.0026849794667214155, -0.049927517771720886, 0.004764201119542122, 0.022331170737743378, 0.005127655807882547, 0.000427713937824592, 0.017982812598347664, -0.017210062593221664, 0.004534995649009943, 0.020811865106225014, -0.026849793270230293, 0.008244851604104042, -0.029521675780415535, -0.004328710492700338, 0.012743828818202019, 0.006001911126077175, 0.03054327704012394, -0.014472694136202335, -0.0008726182859390974, -0.01795661821961403, 0.000193903804756701, -0.005635182373225689, -0.02140125073492527, 0.014865617267787457, 0.03813980519771576, -0.012010371312499046, -0.03415817767381668, -0.013464189134538174, -0.006732094567269087, -0.018388833850622177, 0.012711085379123688, -0.008565738797187805, -0.029181141406297684, 0.01231161318719387, 0.0029010875150561333, -0.0008464233833365142, -0.014813227578997612, -0.025710314512252808, 0.030726641416549683, 0.014315524138510227, -0.01635872758924961, -0.0033300293143838644, -0.035572703927755356, 0.01840193197131157, 0.06035309657454491, 0.022304974496364594, -0.009580791927874088, 0.021086910739541054, 0.024204107001423836, -0.006994043942540884, -0.008971760049462318, -0.006745192222297192, 0.004600482992827892, -0.004020920488983393, -0.027190327644348145, 0.002540907356888056, 0.0052750022150576115, -0.021977538242936134, 0.013045070692896843, 0.021427445113658905, -0.0054911100305616856, -0.015127566643059254, -0.0009266452980227768, 0.009842741303145885, 0.010235665366053581, 0.005265179090201855, 0.03088381141424179, 0.033450912684202194, 0.032403115183115005, 0.02150603011250496, 0.030359912663698196, 0.024793492630124092, -0.004358179867267609, -0.006836874410510063, -0.01125726755708456, 0.02284197136759758, -0.012187186628580093, 0.02450534887611866, -0.010497614741325378, 0.008329984731972218, -0.005294648464769125, -0.007995999418199062, -0.0017632455565035343, 0.02045823261141777, 0.0048984503373503685, -0.019646190106868744, 0.0016093504382297397, -0.009600438177585602, 0.009960618801414967, -0.024413665756583214, -0.015206151641905308, 0.021767979487776756, -0.008434764109551907, -0.001502114930190146, -0.009646279737353325, -0.003788440488278866, -0.023352771997451782, 0.0049344683066010475, -0.014354816637933254, 0.03455109894275665, -0.003510119393467903, -0.010615491308271885, -0.01961999572813511, -0.038663703948259354, -0.03109337016940117, -0.011702580377459526, 0.007668563164770603, -0.010274957865476608, -0.028814412653446198, 0.0018614765722304583, -0.0083168875426054, 0.011060805059969425, -0.048984501510858536, 0.013974989764392376, 0.0011067354353144765, -0.016384923830628395, -0.022580021992325783, 0.018375737592577934, 0.022986043244600296, 0.009037247858941555, -0.010576198808848858, -0.007504844572395086, -0.001416981453076005, 0.005438720341771841, -0.007969805039465427, -0.005910228937864304, -0.019881945103406906, -0.028814412653446198, -0.032691262662410736, 0.0053470381535589695, 0.005399427842348814, -0.006005185656249523, -0.0211785938590765, -0.007183956913650036, -0.010412480682134628, -0.03455109894275665, -5.126428004587069e-05, -0.01097567193210125, 0.03161726891994476, -0.0015970715321600437, 0.0035952527541667223, 0.0026948023587465286, 0.0073542241007089615, 0.0020972308702766895, 0.007092274725437164, -0.01222647912800312, -0.002648961264640093, -0.013195691630244255, 0.020864253863692284, 0.0029665748588740826, -0.001014234614558518, -0.023261088877916336, 0.0024852431379258633, -0.016005096957087517, -0.010995318181812763, -0.0027455550152808428, -0.021925149485468864, -0.0006867980700917542, 0.001858202158473432, -0.015834828838706017, 0.019724775105714798, -0.02140125073492527, 0.015324028208851814, 0.0036640146281570196, 0.03808741644024849, -0.01690882071852684, 0.03442012518644333, -0.010739917866885662, -0.014119062572717667, 0.004436764866113663, 0.004495703149586916, -0.019672386348247528, -0.047700949013233185, -0.0008226842037402093, -0.002933831186965108, 0.009940972551703453, -0.021689394488930702, 0.0006294967024587095, -0.009102734737098217, -0.04028778895735741, 0.0008636137936264277, -0.012874803505837917, -0.004269772209227085, -0.011178682558238506, -0.043719321489334106, 2.5491443011560477e-05, 0.0022445772774517536, -0.030464692041277885, 0.014682252891361713, -0.021440543234348297, -0.008958662860095501, -0.0031270186882466078, 0.004649598617106676, 0.019213974475860596, -0.006509437691420317, -0.012036565691232681, -0.0031090097036212683, 0.004161717835813761, -0.02383737824857235, 0.00969866942614317, 0.02755705639719963, -0.026260407641530037, 0.04534340649843216, 0.006047752220183611, 0.02800237014889717, 0.008519898168742657, 0.007792988792061806, 0.018690075725317, -0.011879396624863148, -0.022213293239474297, 0.002270772121846676, 0.0019400613382458687, -0.020602304488420486, 0.008546092547476292, -0.025251902639865875, 0.016332533210515976, 0.00031556692556478083, -0.000678202894050628, 0.010608943179249763, 0.006663333158940077, -0.014354816637933254, -0.003899768926203251, -0.03774688020348549, -0.03431534767150879, -0.011571606621146202, 0.004368002992123365, -0.023627817630767822, 0.006195098627358675, -0.02201683074235916, -0.031853023916482925, 0.011126292869448662, 0.0007432808633893728, 0.02844768390059471, -0.016568288207054138, 0.040392566472291946, 0.009168222546577454, 0.015703855082392693, -0.02011769823729992, -0.008395472541451454, 0.0025245354045182467, -0.011899042874574661, -0.01790422759950161, -0.029364505782723427, 0.013778528198599815, -0.012914096005260944, 0.04112602397799492, -0.000610669085290283, 0.021637003868818283, -0.0011664925841614604, 0.02462322637438774, -0.019161583855748177, -0.026980768889188766, 0.004629952367395163, -0.028238125145435333, 0.0050392476841807365, -0.03735395520925522, -0.007740599103271961, -0.0011026423890143633, -0.023824280127882957, 0.023300381377339363, -0.004223931115120649, 0.006021557375788689, -0.020497525110840797, -0.011342400684952736, 0.029076362028717995, -0.004050389397889376, 0.03541553393006325, -0.018480516970157623, 0.024636322632431984, 0.0023182504810392857, 0.0009266452980227768, -0.033346135169267654, -0.027583250775933266, 0.007105372380465269, -0.02339206449687481, 0.03779926896095276, 0.033686667680740356, 0.008277595043182373, -0.0013424897333607078, -0.003945610020309687, -0.0004633226490113884, -0.0030598940793424845, -0.014669155701994896, 0.013182593509554863, 0.011001866310834885, 0.00273736915551126, -0.02567102201282978, -0.03842794895172119, 0.007321480195969343, 0.024256495758891106, -0.03153868392109871, 0.013398702256381512, 0.010104690678417683, -0.022409753873944283, -0.010314250364899635, 0.020969033241271973, 0.014891812577843666, 0.015991998836398125, -0.013267727568745613, 0.00806803535670042, -0.0037295017391443253, 0.012743828818202019, 0.009999911300837994, -0.024845881387591362, -0.014590570703148842, 0.016987405717372894, -0.02467561513185501, 0.007923963479697704, 0.00764891691505909, 0.009037247858941555, 0.000139058189233765, 0.0037491479888558388, -0.02172868698835373, 0.022252585738897324, -0.033293742686510086, 0.0003493338299449533, 0.0219513438642025, 0.00023554963991045952, 0.005035973619669676, -0.01405357476323843, -0.021859660744667053, -0.007105372380465269, -0.004675793461501598, -0.003020601812750101, 0.036175183951854706, -0.0031450276728719473, -0.02522570826113224, 0.004878804087638855, 0.009083088487386703, -0.01961999572813511, 0.002747192280367017, 0.009233709424734116, 0.015284736640751362, -0.013896405696868896, -0.01584792695939541, 0.013988087885081768, 0.007170859724283218, 0.04880113899707794, -0.025801997631788254, 0.007491747383028269, -0.013293921947479248, 0.013018875382840633, -0.0020874077454209328, 0.025972263887524605, 0.02870963327586651, -0.00029980906401760876, -0.026352090761065483, 0.029966989532113075, -0.02151912823319435, -0.003066442906856537, 0.028840607032179832, -0.012979582883417606, -0.032900821417570114, -0.004295967053622007, 0.007111920975148678, -0.006967849098145962, 0.00017169951752293855, 0.002020283369347453, 0.011401339434087276, 0.01690882071852684, -0.011506118811666965, -0.01452508382499218, -0.0264961626380682, 0.03371286392211914, 0.010242214426398277, -0.0011198328575119376, 0.019777165725827217, -0.019606897607445717, 0.010713722556829453, 0.0001134772173827514, -0.010929830372333527, 0.005458366591483355, -0.02061540260910988, -0.032691262662410736, -0.013064716942608356, 0.03282223641872406, -0.019606897607445717, 0.002920733764767647, 0.013713041320443153, -0.014289328828454018, -0.000830870121717453, 0.01322188600897789, 0.029312117025256157, 0.012756926007568836, 0.00967247411608696, -0.02045823261141777, 0.017864935100078583, 0.014367913827300072, -0.004754377994686365, -0.027688032016158104, -0.011682935059070587, -0.0172362569719553, -0.0320625826716423, -0.005550048779696226, 0.020693987607955933, 0.019750969484448433, 0.010739917866885662, -0.0204058438539505, -0.01984265260398388, -0.01563836820423603, -0.047989096492528915, -0.0015463188756257296, -0.00886698067188263, 0.030962396413087845, 0.030805226415395737, 0.027399886399507523, 0.0018762111430987716, 0.026587843894958496, -0.0019826281350106, 0.02123098261654377, -0.04018300771713257, 0.018781758844852448, 0.007635819260030985, -0.02815954014658928, 0.005173496901988983, -0.002026831964030862, -0.01884724572300911, -0.004620129242539406, 0.0012982857879251242, -0.006882715504616499, 0.018506711348891258, 0.015179956331849098, 0.008997955359518528, -0.02079876698553562, 0.003680386347696185, 0.006679704878479242, -0.003922689240425825, -0.0009233709424734116, 0.028290513902902603, -0.040052033960819244, -0.00283396290615201, 0.024793492630124092, 0.013765431009232998, -0.016476605087518692, 0.0017828918062150478, 0.02556624263525009, 0.0020726730581372976, 0.00048092237557284534, -0.003994725178927183, 0.009561145678162575, 0.0094760125502944, -0.00662404065951705, 0.02516022138297558, 0.0020857704803347588, 0.005631907843053341, 0.027137937024235725, 0.028238125145435333, -0.024976857006549835, 0.0136344563215971, 0.02295984886586666, -0.017157673835754395, -0.005114558152854443, 0.018153080716729164, -0.005114558152854443, 0.022920556366443634, -0.006568376440554857, 0.014145256951451302, 0.0067026251927018166, -0.019043708220124245, -0.01119832880795002, 0.012665243819355965, 0.0018991318065673113, -0.01014398317784071, -0.015428808517754078, -0.03248170018196106, 0.03153868392109871, 0.010746465995907784, -0.0044465879909694195, 0.007000592537224293, 0.014459596015512943, 0.002370640402659774, -0.018375737592577934, -0.04825104400515556, 0.01449888851493597, -0.008140071295201778, -0.03093620203435421, 0.014328621327877045, 0.006954751443117857, -0.00010007278615375981, 0.01675165258347988, 0.20788289606571198, 0.031145760789513588, 0.01225267443805933, 0.027137937024235725, 0.004921370651572943, 0.0031057351734489202, 0.006532358471304178, -0.0018680252833291888, 0.004954114556312561, 0.01724935509264469, -0.027478471398353577, 0.025186415761709213, 0.006342445034533739, -0.007779891602694988, 0.011990725062787533, 0.0020710360258817673, -0.05139443278312683, 0.006961300037801266, -0.017642278224229813, 0.04652217775583267, 0.0064504994079470634, -0.011512667872011662, 0.001075628912076354, -0.0054223486222326756, 0.014983494766056538, -0.02150603011250496, -0.007550685666501522, 0.004744554869830608, 0.021165495738387108, 0.01233125850558281, 0.001027332036755979, 0.012233028188347816, -0.009410525672137737, -0.003483924549072981, -0.014171452261507511, -0.027583250775933266, 0.0004399928147904575, 0.0005300378543324769, -0.018690075725317, 0.013660650700330734, 0.021702492609620094, 0.009718315675854683, 0.008172815665602684, 0.0025982086081057787, -0.02001291885972023, 0.00048337815678678453, -0.004620129242539406, -0.002932193921878934, 0.012986131943762302, 0.0032170636113733053, -0.020418940111994743, 0.019803360104560852, 0.007321480195969343, 0.019803360104560852, -0.012285417877137661, 0.015874121338129044, 0.013516578823328018, 0.011119743809103966, -0.009829644113779068, -0.011610898189246655, -0.006443950347602367, 0.0003268225700594485, -0.01608368195593357, -0.00931229442358017, -0.017092185094952583, -0.015389516018331051, -0.007432808633893728, -0.004639775492250919, -0.007419711444526911, -0.013883307576179504, 0.0008734368602745235, 0.0011632181704044342, -0.016371825709939003, 0.014472694136202335, -0.02083805948495865, -0.020091503858566284, 0.03625376895070076, 0.016542091965675354, 0.025657925754785538, 0.00681722816079855, 0.003932512365281582, -0.001807449501939118, -0.0016764749307185411, -0.022815775126218796, -0.01430242694914341, -0.014433401636779308, 0.008591934107244015, -0.0038473790045827627, -0.0032710907980799675, 0.006123062688857317, 0.009744510054588318, 0.0035723322071135044, -0.005415800027549267, -0.03227214142680168, -7.618014933541417e-05, 0.00483623705804348, -0.00726254191249609, -0.007603075820952654, -0.0062867808155715466, -0.007838830351829529, -0.022710995748639107, 0.055585622787475586, 0.02461012825369835, -0.005926600657403469, 0.002075947355479002, -0.017105283215641975, -0.014577473513782024, 0.023274186998605728, -0.010091593489050865, -0.011957981623709202, -0.013988087885081768, -0.0033283920492976904, 0.018781758844852448, -0.0011050981702283025, -0.00515385065227747, -0.0020153718069195747, -0.005946246907114983, -0.014446498826146126, 0.020301062613725662, -0.0029272823594510555, 0.017589889466762543, -0.023706402629613876, -0.005556597374379635, 0.016502799466252327, -0.018139982596039772, 0.005546774249523878, -0.00323016126640141, -0.014315524138510227, -0.0035887041594833136, -0.04031398147344589, 0.02079876698553562, -0.020890450105071068, 0.014027380384504795, -0.014695350080728531, 0.008054938167333603, 0.02483278512954712, 0.03098859079182148, -0.005995362531393766, -0.005851290188729763, 0.0002942835562862456, -0.003215426579117775, 0.00873600598424673, 0.032507896423339844, 0.0033889678306877613, 0.004741280805319548, -0.0022413029801100492, 0.019371144473552704, 0.015991998836398125, -0.011322754435241222, -0.02278958074748516, -0.02373259887099266, 0.012187186628580093, -0.01658138446509838, 0.012534269131720066, 0.02129647135734558, -0.026234213262796402, -0.021113106980919838, -0.019606897607445717, 0.010491065680980682, 0.03452490642666817, -0.05804794281721115, -0.010301152244210243, 0.026181822642683983, -0.023103920742869377, -0.011689483188092709, -0.019279461354017258, -0.1651327759027481, 0.014119062572717667, -0.017000503838062286, -0.01360826101154089, 0.01283551100641489, 0.010517260991036892, -0.01580863445997238, -0.003203966189175844, -0.018493613228201866, -0.009390879422426224, 0.021545322611927986, 0.015310931019484997, -0.052704181522130966, 0.0008906273287720978, 0.019148487597703934, 0.015481198206543922, -0.011912140063941479, 0.022606216371059418, 0.0313815139234066, 0.019777165725827217, 0.04623403400182724, -0.010196372866630554, -0.004829688463360071, -0.03358189016580582, 0.01210860162973404, -0.0038833969738334417, -0.0317220501601696, 0.016555190086364746, 0.005782528780400753, -0.0061034164391458035, -0.011538862250745296, 0.006836874410510063, 0.02920733578503132, 0.010576198808848858, 0.0039652562700212, 0.004754377994686365, -0.00646032253280282, -0.0028699811082333326, -0.01139479037374258, 0.03203638643026352, 0.03248170018196106, -0.000531675003003329, 0.006394835188984871, 0.03261267766356468, 0.01519305445253849, 0.019764067605137825, 0.017052892595529556, -0.01258011069148779, 0.010013008490204811, 0.012442586943507195, 0.016332533210515976, -0.039842475205659866, 0.01549429539591074, 0.0012385286390781403, -0.007891220040619373, 0.021715588867664337, 0.013595163822174072, 0.017367232590913773, 0.012743828818202019, -0.03455109894275665, 0.014001185074448586, -0.022815775126218796, -0.0011583066079765558, -0.015507393516600132, -0.007596527226269245, -0.01097567193210125, 0.01017672661691904, -0.006954751443117857, -0.02894538827240467, 0.022684801369905472, 0.008120425045490265, -0.010556553490459919, -0.006414481438696384, 0.0038080865051597357, -0.00703988503664732, -0.0010453410213813186, 0.002287144074216485, 0.021597711369395256, 0.02368020825088024, 0.010929830372333527, 0.0041584437713027, 0.006725545972585678, -0.02145363949239254, 0.02860485389828682, -0.024256495758891106, 0.011656739749014378, 0.010864343494176865, 0.026365187019109726, -0.005608987528830767, -0.0028159539215266705, -0.0028175911866128445, -0.035127390176057816, 0.011067354120314121, -0.0061394344083964825, -0.0041780900210142136, 0.016345631331205368, 0.010320798493921757, 0.005117832683026791, -0.0035363142378628254, 0.008185912854969501, 0.0007502388907596469, -0.003690209472551942, -0.03813980519771576, 0.01601819321513176, 0.02366711013019085, 0.032691262662410736, 0.005130929872393608, 0.00845441035926342, 0.005916777532547712, -0.023523038253188133, -0.039266187697649, 0.024531543254852295, 0.03853273019194603, 0.022986043244600296, -0.02223948761820793, 0.02172868698835373, -0.007111920975148678, -0.008532995358109474, -8.917528612073511e-05, -0.0016895723529160023, 0.0601959265768528, -0.003994725178927183, -0.013909502886235714, -0.016214655712246895, 0.010137434117496014, -0.0019220523536205292, -0.10635137557983398, -0.02776661515235901, -0.011355497874319553, 0.009580791927874088, 0.016987405717372894, 0.0189520251005888, -0.017995910719037056, 0.033241353929042816, -0.03038610890507698, 0.022684801369905472, -0.00823175348341465, -0.0031450276728719473, -0.0032563561107963324, -0.002945291344076395, 0.019934333860874176, -0.017616083845496178, -0.001443176413886249, 0.024583933874964714, -0.01819237321615219, 0.027740420773625374, 0.016921918839216232, 0.0021954618860036135, 0.011506118811666965, -0.038951847702264786, -0.033686667680740356, -0.01449888851493597, -0.043378788977861404, -0.0011075539514422417, -0.00422720517963171, 0.016109876334667206, 0.024256495758891106, 0.008297241292893887, 0.02361472137272358, -0.005887308623641729, -0.020156990736722946, 0.007269090507179499, -0.03376525267958641, 0.01934494823217392, -0.004466233775019646, -0.027530862018465996, 0.01200382225215435, 0.009561145678162575, -0.0021119655575603247, -0.02771422639489174, -0.00967247411608696, -0.01449888851493597, -0.008212107233703136, -0.00864432379603386, -0.005366684403270483, -0.024479152634739876, -0.0224621444940567, -0.005101460963487625, -0.001428441726602614, -0.010543455369770527, -0.0021692668087780476, 0.001565146492794156, 0.01197107881307602, 0.013228435069322586, -0.019580703228712082, -0.019449729472398758, -0.02061540260910988, 0.0027717500925064087, -0.03125054016709328, 0.035782262682914734, 0.009705218486487865, 0.027530862018465996, -0.020693987607955933, -0.010438675992190838, -0.023588526993989944, -0.01575624570250511, -0.015664562582969666, 0.0009978627786040306, -0.021807271987199783, -0.004315613303333521, -0.02606394700706005, 0.00586111331358552, -0.010608943179249763, -0.03525836393237114, 0.03148629516363144, -0.019606897607445717, -0.021754881367087364, -0.030412303283810616, -0.00959389004856348, -0.01680404134094715, 0.03143390640616417, 0.025081636384129524, -0.00018387606542091817, -0.0074982959777116776, 0.021204788237810135, -0.009652827866375446, 0.01549429539591074, 0.01549429539591074, 0.013169496320188046, -0.019881945103406906, 0.007557234726846218, -0.008002548478543758, -0.01779944822192192, -0.01668616384267807, 0.007714404258877039, 0.0062540373764932156, -0.013974989764392376, -0.0036705632228404284, -0.05317568778991699, 0.024636322632431984, 0.011106646619737148, 0.003235072595998645, 0.023798085749149323, 0.010550004430115223, 0.010445225052535534, -0.007825732231140137, -0.009620084427297115, 0.01601819321513176, -0.044819507747888565, 0.008880077861249447, -0.0029272823594510555, -0.005913503468036652, -0.01941043697297573, -0.021702492609620094, 0.01985575072467327, 0.003899768926203251, -0.002740643685683608, 0.009934423491358757, 0.009777254424989223, -0.006738643161952496, 0.003302197204902768, 0.004007822833955288, -0.033346135169267654, 0.006578199565410614, -0.021021423861384392, 0.008552641607820988, 0.00042239308822900057, -0.023274186998605728, 0.012174089439213276, -0.012933742254972458, -0.0041420720517635345, 0.03842794895172119, -0.0156907569617033, -0.024597030133008957, 0.011728775687515736, 0.026849793270230293, 0.02889299765229225, -0.0030009555630385876, -0.02588058076798916, -0.030255133286118507, 0.026980768889188766, -0.019358046352863312, -0.012291966937482357, -0.013234984129667282, 0.004633226431906223, -0.01575624570250511, 0.013739235699176788, 0.02183346636593342, 0.02039274573326111, -0.007439357694238424, -0.008271045982837677, -0.01901751197874546, -0.006676430348306894, -0.033739056438207626, 0.01718386821448803, 0.010346993803977966, 0.004083133302628994, 0.01003920380026102, 0.030255133286118507, 0.003190868766978383, 0.008578836917877197, -0.017917325720191002, 0.025422170758247375, 0.0045153493992984295, -0.023693306371569633, 0.0012663607485592365, -0.005605712998658419, 0.006260585971176624, 0.018559101969003677, -0.018886538222432137, 0.007131567224860191, 0.011833555065095425, 0.009914777241647243, -0.004073310177773237, 0.013254629448056221, 0.001979353604838252, -0.0026931653264909983, 0.019043708220124245, 0.013516578823328018, -0.02412552200257778, 0.001737050712108612, 0.014001185074448586, -0.007675111759454012, 0.02001291885972023, -0.002739006420597434, -0.006152532063424587, -0.007511393632739782, -0.003765519941225648, 0.014656058512628078, -0.005428897216916084, -0.004937742371112108, -0.013883307576179504, -0.0027652012649923563, 0.011951432563364506, 0.013189142569899559, 0.01081195380538702, -0.002200373448431492, 0.028238125145435333, 0.023025335744023323, 0.005579518154263496, -0.024819687008857727, -0.019200876355171204, -0.02133576199412346, 0.008585385046899319, -0.02311701700091362, -0.019934333860874176, -0.0036476426757872105, 0.009299197234213352, 0.003932512365281582, 0.03832316771149635, 0.009888582862913609, 0.01757679134607315, -0.0004985220730304718, 0.012043114751577377, -0.007170859724283218, -0.0097314128652215, -0.012291966937482357, 0.026483064517378807, 0.017773253843188286, 0.01918778009712696, 0.01834954135119915, -0.025631729513406754, 0.02910255640745163, 0.01375233381986618, 0.002159443683922291, 0.00019380149024073035, -0.01028150599449873, 0.007321480195969343, -0.010654783807694912, -0.004954114556312561, 0.007092274725437164, -0.025422170758247375, -0.02083805948495865, -0.017760155722498894, -0.01996053010225296, 0.01851980946958065, 0.038925651460886, 0.06711138784885406, 0.012468782253563404, -0.008126974105834961, 0.00038678437704220414, 0.005739962216466665, 0.029705040156841278, -0.0034413577523082495, 0.009875484742224216, 0.00726254191249609, -0.02682359889149666, -0.0005783347296528518, 0.0020743103232234716, -0.005658102687448263, -0.01241639256477356, -0.02732130140066147, 0.004053663928061724, -2.30740406550467e-05, -0.00033316665212623775, -0.011754970997571945, 0.011316205374896526, 0.013791625387966633, -0.01580863445997238, 0.0009078177390620112, 0.0008750740671530366, -0.023627817630767822, -0.006362091284245253, 0.009999911300837994, 0.003303834469988942, -0.018218567594885826, -0.0317220501601696, 0.003925963770598173, -0.0023559057153761387, -0.02599845826625824, -0.006637137848883867, -0.000965937681030482, 0.0007526946719735861, 0.002567102201282978, -0.03596562519669533, -0.0007003048085607588, -0.026705721393227577, -0.015651464462280273, 0.02994079515337944, -0.008251399733126163, -0.0172362569719553, 0.00959389004856348, -0.021532224491238594, 0.0041387975215911865, -0.0009872210212051868, 0.009076540358364582]" +40,"Segment gross margin dollars increased 20% and 26% in constant currency, and gross margin percentage decreased slightly. Excluding the impact of the latest change in accounting estimate, gross margin percentage declined roughly three points, driven by sales mix shift to Azure and higher energy costs impacting Azure margins. Operating expenses increased 25% and 28% in constant currency, including roughly eight points of impact from Nuance. And operating income grew 17% and 25% in constant currency with roughly nine points of favorable impact from the latest change in accounting estimate.","[0.004678687546402216, -0.023297954350709915, 0.022586766630411148, -0.019570808857679367, -0.000647394044790417, 0.0034769135527312756, -0.01646265760064125, -0.018793771043419838, -0.018543537706136703, -0.023969629779458046, 0.03932599723339081, 0.04693832993507385, 0.0038489694707095623, 0.004237488377839327, 0.005600596312433481, 0.016449488699436188, 0.023311123251914978, 0.005142934620380402, 0.0025945149827748537, -0.019952742382884026, -0.03508521616458893, 0.019491787999868393, -0.031660985201597214, 0.005238418001681566, -0.006598233245313168, 0.00012583645002450794, 0.02125658467411995, -0.005653277039527893, 0.0069274865090847015, -0.018345985561609268, 0.006980167236179113, -0.0022981869988143444, -0.03463743254542351, 0.024628136307001114, -0.015158816240727901, 0.008303765207529068, -0.010094902478158474, 0.014368608593940735, 0.008784474804997444, -0.016884101554751396, 0.019267896190285683, 0.016923611983656883, 0.006341415923088789, 0.015211496502161026, -0.00806011725217104, 0.016818251460790634, -0.00845522154122591, 0.005877168849110603, -0.01029903907328844, 0.0118004335090518, -0.008744964376091957, 0.04814998432993889, -0.028763556852936745, -0.01801673322916031, 0.003470328403636813, 0.004790633451193571, 0.0027262161020189524, 0.015303687192499638, -0.003835799405351281, -0.0036612951662391424, -0.0034505731891840696, 0.01930740475654602, -0.013341338373720646, -0.005172567442059517, -0.04006352648139, -0.00774403428658843, -0.013440114445984364, -0.00011050559260183945, 0.016818251460790634, -0.022520916536450386, 0.03181902691721916, 0.029264021664857864, -0.00048729468835517764, 0.006743104662746191, 0.023113572970032692, -0.010364890098571777, 0.007131623569875956, -0.01548806857317686, 0.011201192624866962, -0.003154245438054204, 0.007375271059572697, -0.009950030595064163, -0.00523183261975646, -0.00965370237827301, 0.009054462425410748, 0.005811318289488554, -0.012182367034256458, -0.0034834984689950943, -0.018214285373687744, 0.008573752827942371, 0.03218778967857361, 0.011662147007882595, 0.003993840888142586, 0.028526494279503822, 0.008580337278544903, 0.0035394716542214155, -0.014829562976956367, 0.021743878722190857, -0.0074938018806278706, -0.02889525704085827, -0.02449643611907959, -0.013565230183303356, -0.039141617715358734, -0.005485357716679573, -0.0470963716506958, 0.009107142686843872, 0.0283421128988266, -0.001809246139600873, 0.024470094591379166, 0.0022965408861637115, 0.0118004335090518, -0.014157886616885662, 0.02482568845152855, -0.0022356288973242044, -0.0017993685323745012, -0.00242824200540781, -0.003605322213843465, 0.022007280960679054, -0.0044482103548944, 0.0012593934079632163, 0.005883754231035709, 0.013466454111039639, 0.020123952999711037, -0.008152307942509651, 0.014408119022846222, 0.0028365161269903183, 0.009469320997595787, -0.015369538217782974, 0.00970638357102871, -0.007987681776285172, 0.007039432879537344, -0.0009688274585641921, 0.02734118327498436, 0.024957390502095222, 8.735497976886109e-05, 0.03637589141726494, -0.003644832642748952, 0.007809885311871767, -0.022402385249733925, -0.00971296802163124, -0.004158467520028353, 0.014052525162696838, 0.007928416132926941, 0.004013596102595329, 0.008856910280883312, 0.02225751429796219, 0.027815308421850204, -0.003756778547540307, 0.03666563332080841, 0.004889409523457289, 0.011471180245280266, -0.030475672334432602, 0.018174774944782257, 0.006463239435106516, 0.030897116288542747, -0.010094902478158474, 0.016581188887357712, 0.024035481736063957, -0.025128601118922234, 0.010193677619099617, -0.019044002518057823, 0.02784164808690548, -0.008409125730395317, 0.022744808346033096, -0.006265687756240368, 0.012340408749878407, 0.016673380509018898, 0.0005815434269607067, -0.01476371195167303, -0.011293383315205574, -0.00034571581636555493, -0.014974433928728104, -0.01548806857317686, 0.021967770531773567, 0.007171133998781443, 0.024628136307001114, 0.010779748670756817, -0.006420436780899763, -0.031608302146196365, -0.025023240596055984, 0.00514951953664422, -0.011372404173016548, 0.016028044745326042, -0.010450495406985283, -4.172254921286367e-05, -0.014368608593940735, 0.032108768820762634, 0.01082584448158741, -0.006242639850825071, -0.0026718894951045513, -0.009225673973560333, 0.021190734580159187, -0.016370467841625214, -0.007566237822175026, -0.6481809616088867, -0.008237914182245731, -0.0029797411989420652, 0.004174930043518543, 0.02689339779317379, 0.0025368956848978996, 0.028921598568558693, -0.009383715689182281, -0.040695689618587494, 0.028500154614448547, -0.0008074934012256563, 0.0246676467359066, 0.010450495406985283, -0.007599162869155407, 0.01874108985066414, -0.016541678458452225, 0.014750542119145393, 0.01442128885537386, -0.014065694995224476, -0.009449565783143044, -0.010029051452875137, 0.0034900836180895567, 0.01079950388520956, -0.002214227570220828, 0.003378137480467558, 0.006881391163915396, 0.002838162239640951, 0.0019376549171283841, -0.0069274865090847015, 0.007078943308442831, -0.019004492089152336, 0.0060319178737699986, -0.0005082846037112176, -0.001493163057602942, 0.04164393991231918, -0.011991400271654129, -0.01841183751821518, 0.013374263420701027, 0.0020956965163350105, 0.02622172236442566, -0.03405794873833656, 0.0013573461910709739, -0.005017818417400122, -0.011141926981508732, -0.008837155066430569, 0.009890764951705933, 0.00945615116506815, -0.005659861955791712, 0.01364425104111433, -0.017279205843806267, -0.0024051943328231573, -0.0037469009403139353, 0.013723271898925304, 0.002527018077671528, -0.003169061616063118, -0.009331034496426582, 0.008593508042395115, -0.01942593604326248, -0.00014024127449374646, -0.009745893999934196, -2.808941098919604e-05, -0.018056243658065796, -0.016989463940262794, -0.018280135467648506, -0.01713433489203453, 0.017937712371349335, -0.005887046456336975, 0.009047877043485641, 0.02148047648370266, 0.01514564547687769, -0.007526727393269539, 0.006051673088222742, -0.006953827105462551, -0.00965370237827301, 0.014566159807145596, 0.011938720010221004, 0.012979160062968731, -0.011629221960902214, -0.004701734986156225, -0.0031789392232894897, 0.0064895800314843655, -0.01802990399301052, -0.0030143128242343664, 0.016212426126003265, -0.007882321253418922, 0.007072357926517725, -0.00820498913526535, -0.018095754086971283, -0.0018504027975723147, -0.023693058639764786, 0.015501239337027073, 0.028263092041015625, -0.002597807440906763, -0.03326774016022682, 0.010305624455213547, 0.011951889842748642, -0.025629065930843353, -0.0044054072350263596, 0.01868841052055359, -0.030212270095944405, -0.013986674137413502, -0.00948907621204853, 0.037745583802461624, 0.016265107318758965, 0.026590485125780106, 0.02433839440345764, 0.007065773010253906, 0.00022574419563170522, 0.04759683832526207, -0.02823675237596035, 0.003595444606617093, -0.008461805991828442, -0.003401185153052211, -0.009219088591635227, -0.01835915632545948, -0.023258443921804428, 0.01618608646094799, -0.01453982014209032, -0.03266191482543945, -0.019320575520396233, -0.011616052128374577, 0.0010297392727807164, 0.035243257880210876, -0.021019522100687027, -0.009785404428839684, 0.0112143624573946, 0.005679617170244455, -9.980486356653273e-05, 0.0038621395360678434, -0.026867058128118515, 0.012715756893157959, -0.004142004996538162, 0.02628757245838642, -0.0003146425588056445, 0.013789122924208641, 0.00890300516039133, 0.009390300139784813, -0.011339479126036167, -0.0052680508233606815, -0.051416173577308655, -0.01980786956846714, -0.008112798444926739, -0.010858769528567791, -0.01227455772459507, -0.01991323195397854, -0.013512549921870232, -0.019847379997372627, 0.009396885521709919, -0.011458010412752628, 0.0058343661949038506, -0.007105283439159393, -0.016818251460790634, -0.007467461749911308, 0.0053009758703410625, 0.01818794570863247, 0.01138557493686676, -0.0021763634867966175, -0.03748217970132828, -0.019044002518057823, -0.025879299268126488, 0.016028044745326042, 0.030106909573078156, 0.0040070111863315105, 0.0023097109515219927, -0.03118686005473137, -0.022349704056978226, -0.048966530710458755, 0.023113572970032692, -0.002263615606352687, -0.012827703729271889, 0.014065694995224476, -0.011247288435697556, 0.026300743222236633, -0.007572822738438845, 0.009851254522800446, -0.012577471323311329, -0.01389448344707489, -0.011148512363433838, 0.014473969116806984, -0.04311899468302727, 0.032951656728982925, 0.023297954350709915, -0.0020775874145329, -0.005561085883527994, 0.038693830370903015, -0.0062327622435987, 0.03376820310950279, 0.02065075933933258, -0.017489928752183914, 0.006802370306104422, -0.006920901592820883, 0.01668655127286911, -0.014302757568657398, -0.004178222734481096, -0.004500890616327524, -0.0059002167545259, 0.0013285365421324968, -0.007823055610060692, -0.005541330669075251, -0.027867987751960754, 0.010852184146642685, 0.020835140720009804, 0.00265871942974627, 0.01741090789437294, 0.006720057222992182, -0.013538890518248081, 0.004145297221839428, -0.025233963504433632, 0.005478772800415754, 0.03279361501336098, 0.016607530415058136, -0.02182289958000183, -0.009719553403556347, -0.033004336059093475, -0.022534087300300598, -0.004500890616327524, 0.03108149953186512, -0.0025319568812847137, 0.003394600236788392, 0.009357375092804432, 0.009601022116839886, -0.00752014247700572, 0.015659280121326447, 0.00357239693403244, -0.017674310132861137, -0.0034505731891840696, -0.015804151073098183, 0.013176711276173592, 0.024351563304662704, -0.020281994715332985, -0.0014692922122776508, 0.02053222805261612, 0.016054384410381317, -0.005969360005110502, 0.007138208486139774, 0.0062887356616556644, 0.014118376187980175, -0.022889679297804832, 0.03856213018298149, 0.002545126946642995, 0.015935853123664856, 0.012175781652331352, 0.013031840324401855, -0.024246202781796455, 0.00496513769030571, -0.009423225186765194, 0.034742794930934906, -0.005195614881813526, -0.011201192624866962, -0.008382786065340042, -0.010450495406985283, 0.004224318079650402, -0.004300046246498823, -0.028421133756637573, 0.015316857025027275, -0.0010840659961104393, 0.007691354025155306, 0.013815462589263916, 0.010338549502193928, 0.018662068992853165, 0.006226177327334881, 0.014526649378240108, 0.029869846999645233, -0.0014577683759853244, -0.008073288016021252, -0.000563846027944237, -0.01897815242409706, 0.0036481251008808613, 0.0003311052278149873, 0.013762782327830791, -0.008461805991828442, -0.0030818097293376923, 0.004708320368081331, 0.010470250621438026, -0.005343778990209103, 0.006953827105462551, 0.018846450373530388, -0.022573597729206085, -0.021111713722348213, 0.04132785648107529, -0.00034756786772049963, -0.042223427444696426, 0.008218158967792988, 0.019057173281908035, 0.007151378784328699, 0.026129530742764473, 0.007730864454060793, -0.016726061701774597, 0.0027920668944716454, 0.02889525704085827, -0.018925471231341362, 0.004221025388687849, -0.02082196995615959, -0.0005654923152178526, -0.001639680820517242, 0.007809885311871767, 0.0055907187052071095, -0.030343972146511078, -0.014737371355295181, -0.015856832265853882, 0.017924541607499123, -0.006469824817031622, -0.03519057855010033, 0.01918887533247471, 0.026300743222236633, -0.007645258679986, -0.05578865483403206, -0.01701580360531807, -2.9864291718695313e-05, -0.02404865063726902, 0.02321893349289894, -0.025352492928504944, -0.016989463940262794, 0.020611248910427094, 0.030844436958432198, 0.00450747599825263, -0.0008470037719234824, -0.0374031588435173, 0.008507901802659035, 0.02132243476808071, -0.0026060387026518583, -0.016870932653546333, -0.032951656728982925, 0.0020347845274955034, 0.05837000161409378, 0.03258289396762848, -0.012649906799197197, 0.023969629779458046, 0.022678958252072334, 0.0027064611203968525, -0.006473117042332888, -0.014566159807145596, 0.008376200683414936, -0.009034707210958004, -0.014829562976956367, 0.00814572349190712, 0.009482490830123425, -0.013209637254476547, 0.015461728908121586, 0.005439262371510267, 0.011115587316453457, -0.029105979949235916, -0.0013976796763017774, 0.016778741031885147, 0.008185233920812607, 0.014855902642011642, 0.024562286213040352, 0.02689339779317379, 0.006953827105462551, 0.01947861723601818, 0.00484002148732543, 0.019228385761380196, -0.0034604507964104414, -0.010147582739591599, -0.023982800543308258, -0.000741642783395946, -0.0006576831801794469, 0.023113572970032692, -0.01846451684832573, 0.008356445468962193, 0.0004313216486480087, -0.019662998616695404, 0.022613108158111572, 0.008382786065340042, 0.018043072894215584, -0.01277502253651619, 0.007098698057234287, -0.012577471323311329, 0.00026072736363857985, -0.03174000605940819, -0.01367059163749218, 0.0236535482108593, 0.0033633210696280003, 0.0009663580567575991, -0.0006157034076750278, -0.016028044745326042, -0.03018593043088913, 0.0010906511452049017, -0.016001703217625618, 0.02634025365114212, -0.02220483310520649, -0.012768438085913658, 0.0012025971664115787, -0.016949953511357307, -0.03179268538951874, -0.012267973273992538, -0.0012025971664115787, -0.019742019474506378, -0.03229315206408501, -0.006180081982165575, -0.017661139369010925, -0.004777463618665934, -0.06026649847626686, 0.019320575520396233, 0.009126897901296616, -0.02204679138958454, -0.02371939830482006, 0.004181515425443649, 0.02192826010286808, 0.004188100341707468, -0.0013515842147171497, -0.00015227959374897182, 0.007566237822175026, 0.02237604558467865, -0.002620855113491416, -0.00089309923350811, -0.024509605020284653, -0.026867058128118515, -0.003302409313619137, -0.0010173922637477517, 0.001996920444071293, 0.012412844225764275, -0.028921598568558693, -0.008132553659379482, -0.009449565783143044, -0.013242562301456928, -0.01227455772459507, -0.008112798444926739, 0.022626277059316635, -0.006183374673128128, 0.0100158816203475, 0.00777037488296628, 0.011451425030827522, 0.009021536447107792, 0.011504105292260647, -0.017200184985995293, -0.02421986311674118, -0.024009140208363533, 0.00629202788695693, 0.0051001315005123615, 0.009581266902387142, -0.012432599440217018, 0.0058310735039412975, -0.0017055313801392913, 0.01684459112584591, -0.004188100341707468, -0.02220483310520649, -0.020216144621372223, -0.017977222800254822, -0.02439107373356819, 0.023508675396442413, 0.005808026064187288, 0.009363960474729538, 0.008580337278544903, 0.03139758110046387, -0.01612023450434208, 0.039194297045469284, 0.010318794287741184, 0.003119673812761903, 0.0002800709626171738, -0.015237836167216301, -0.0014989250339567661, -0.05752711370587349, 0.010002710856497288, 0.0017763208597898483, 0.0189123023301363, -0.0011482704430818558, -0.012294312939047813, 0.004118957091122866, -0.021230245009064674, -0.005245002917945385, -0.0036909279879182577, -0.021243413910269737, -0.01007514726370573, -0.033452123403549194, 0.006914316676557064, 0.011234117671847343, -0.0067628598771989346, 0.02952742390334606, -0.020545396953821182, -0.008040362037718296, -0.012676246464252472, 0.015606599859893322, 0.02773628756403923, 0.003404477844014764, -0.010819259099662304, -0.015106135047972202, -0.003328749444335699, -0.03637589141726494, -0.0019491787534207106, 0.023837929591536522, -0.026656337082386017, 0.021954601630568504, 0.015198325738310814, 0.04314533621072769, -0.004645762033760548, 0.021678028628230095, 0.027156801894307137, -0.024904709309339523, 0.0014199042925611138, 0.005459017585963011, 0.0013030193513259292, -0.025510534644126892, 0.008975441567599773, -0.02889525704085827, 0.012063835747539997, -0.0141710564494133, -0.0035921521484851837, 0.0001178109014290385, -0.0015252652810886502, -0.0027525564655661583, 0.0018652192084118724, -0.03698171675205231, -0.028052369132637978, 0.008224744349718094, 0.00471490528434515, -0.006170204374939203, 0.01656801998615265, -0.02275797910988331, -0.028315773233771324, 0.025918809697031975, 0.01908351294696331, 0.04556863754987717, -0.02734118327498436, 0.020716609433293343, 0.007006507366895676, 0.0018471102230250835, -0.007579408120363951, -0.0006457477575168014, -0.006720057222992182, 0.00046753950300626457, -0.02387744002044201, -0.01216919720172882, -0.016594359651207924, -0.02013712376356125, 0.04006352648139, 0.0009235551115125418, 0.016831422224640846, 0.0007025439408607781, 0.01784552074968815, -0.01213627215474844, -0.030370311811566353, 0.018714750185608864, -0.025431513786315918, -0.007177718915045261, -0.031950727105140686, -0.011477765627205372, 0.010727068409323692, -0.00708552822470665, 0.02203362248837948, -0.0011128756450489163, 0.0032892392482608557, -0.01051634643226862, -0.0175294391810894, 0.010667802765965462, 0.002859563799574971, 0.04285559058189392, -0.025405174121260643, 0.01639680750668049, 0.024127671495079994, -0.008876665495336056, -0.017384566366672516, -0.009363960474729538, 0.008066702634096146, -0.025141771882772446, 0.02734118327498436, 0.039984505623579025, -0.012195536866784096, 0.018846450373530388, -0.026406103745102882, -0.010081731714308262, -0.004454795271158218, -0.007289665285497904, 0.0023475750349462032, 0.020058102905750275, 0.013499380089342594, -0.020110784098505974, -0.029448403045535088, -0.020558567717671394, 0.03611248731613159, -0.001401795307174325, -0.0036777579225599766, 0.006018748041242361, -0.036244187504053116, -0.005004648119211197, 0.021901920437812805, 0.02489153854548931, 0.0067628598771989346, -0.011675316840410233, 0.012445769272744656, -0.004803803749382496, 0.003631662344560027, 0.0009408409241586924, -0.013374263420701027, -0.02432522363960743, 0.003704098053276539, -0.037534862756729126, 0.032951656728982925, 0.010173922404646873, 0.004872946999967098, -0.0037765337619930506, -0.0024661063216626644, -0.00616691168397665, 0.02304772101342678, -0.016989463940262794, -0.0010972361778840423, 0.04886116832494736, -0.005165982060134411, 0.030422993004322052, -0.013018670491874218, -0.021678028628230095, -0.006848465651273727, -0.011234117671847343, 0.002495738910511136, 0.012188952416181564, 0.00945615116506815, -0.03263557329773903, 0.016765572130680084, 0.004481135401874781, -0.009666873142123222, 0.0028282846324145794, -0.0016758986748754978, 0.014131546020507812, -0.02149364724755287, -0.01501394435763359, 0.026182211935520172, -0.0024512899108231068, 0.008198403753340244, 0.0011186376214027405, 0.004418577533215284, -0.021348774433135986, 0.02063758857548237, -0.005189029965549707, 0.02656414546072483, 0.02482568845152855, -0.0124655244871974, -0.028763556852936745, 0.007651843596249819, -0.0141710564494133, -0.029105979949235916, 0.04214440658688545, -0.02013712376356125, -0.03521692007780075, 0.0016223950078710914, 0.006973581854254007, -0.004978307988494635, 0.015369538217782974, -0.0009177931933663785, -0.01026611402630806, 0.008007436990737915, -0.008521071635186672, -0.0022981869988143444, -0.013512549921870232, 0.02165168896317482, 0.0038094590418040752, -0.007500387262552977, -0.0030587618239223957, -0.010147582739591599, 0.013631081208586693, -0.019333746284246445, -0.007243569474667311, 0.005653277039527893, -0.015369538217782974, -0.022283853963017464, -0.001261039637029171, 0.03463743254542351, -0.026603655889630318, 0.0024134255945682526, -0.009377130307257175, -0.0004255597305018455, -0.0083103496581316, 0.003733730874955654, 0.016199255362153053, -0.0021549619268625975, 0.002808529417961836, -0.013453284278512001, 0.02199411205947399, 0.010081731714308262, -0.017661139369010925, -0.02556321583688259, -0.020940501242876053, -0.0036645878572016954, -0.03347846120595932, -0.011708242818713188, 0.0037995814345777035, 0.008817399851977825, 0.0006227000267244875, -0.02499690093100071, -0.0199790820479393, -0.00010294305684510618, -0.03097613714635372, -0.028105050325393677, -0.018609389662742615, 0.023074062541127205, 0.03266191482543945, 0.014697860926389694, -0.007763789501041174, 0.020387355238199234, -0.006535675376653671, 0.009469320997595787, -0.036850012838840485, 0.020176634192466736, 0.009061046876013279, -0.017661139369010925, -0.002691644709557295, -0.0009523647604510188, -0.024127671495079994, -0.013045010156929493, 0.007757204584777355, -0.0013639312237501144, 0.014632010832428932, 0.011905794031918049, 0.008856910280883312, -0.02973814681172371, -0.010279283858835697, 0.010101486928761005, -0.0005543800070881844, 0.0007202412816695869, 0.018938641995191574, -0.04132785648107529, 0.0006609757547266781, 0.018372327089309692, 0.008883250877261162, -0.032951656728982925, 0.023851098492741585, 0.022244343534111977, -0.0045700338669121265, 0.013440114445984364, -0.019320575520396233, 0.006413851864635944, -0.0031986944377422333, -0.007342345546931028, 0.02120390348136425, 0.03234583139419556, 0.0024858613032847643, 0.026537805795669556, 0.04132785648107529, -0.02973814681172371, -0.013881313614547253, 0.02180972881615162, -0.02393011935055256, -0.023574527353048325, 0.011431669816374779, -0.007329175714403391, 0.013828633353114128, -0.005495235323905945, 0.013031840324401855, 0.004642469808459282, -0.016949953511357307, -0.009390300139784813, 0.023535016924142838, 0.0019936279859393835, -0.004247365985065699, 0.0005934788496233523, -0.037350479513406754, 0.034742794930934906, -0.016528509557247162, -0.0033748450223356485, 0.018662068992853165, -0.008014022372663021, -0.0007758027641102672, -0.03956305980682373, -0.052706845104694366, -0.005389874335378408, -0.003908235114067793, -0.038088005036115646, 0.0028809651266783476, 0.00010556679626461118, -0.026208551600575447, 0.02177022024989128, 0.1989215910434723, 0.015382708050310612, 0.004790633451193571, 0.02209947258234024, 0.01071389764547348, 0.001592762186191976, 0.002378854202106595, 0.0037139756605029106, -0.0032727764919400215, 0.012742097489535809, 0.0027328012511134148, 0.029211340472102165, -0.014052525162696838, -0.0047379531897604465, 0.026972418650984764, -0.008659358136355877, -0.05017818138003349, 0.005073791369795799, -0.023232104256749153, 0.030765416100621223, -0.00269987597130239, 0.0028052369598299265, -0.002464459976181388, -0.016726061701774597, 0.025523705407977104, -0.0177401602268219, -0.02420669235289097, 0.0016174562042579055, 0.016436317935585976, 0.019281065091490746, -0.0022487991955131292, 0.03885187208652496, -0.0020117368549108505, -0.005073791369795799, -0.0068945614621043205, -0.018951812759041786, -0.030159590765833855, 0.012946234084665775, -0.010944374836981297, 0.00993027538061142, 0.01970250904560089, 0.015053454786539078, 0.0021763634867966175, -0.006581770721822977, 0.004800511058419943, 0.016699720174074173, -0.0012124747736379504, 0.015619770623743534, 0.0034834984689950943, 0.0029698635917156935, -0.007671598810702562, 0.03661295026540756, 0.02594514936208725, 0.014592500403523445, -0.0030225440859794617, 0.021230245009064674, 0.01255113072693348, -0.014105205424129963, 0.005676324479281902, -0.013947163708508015, -0.016752401366829872, 0.009864425286650658, -0.015474898740649223, 0.00031135001336224377, -0.011543615721166134, -0.01140532921999693, 0.001169671886600554, -0.0001185311411973089, -0.020387355238199234, -0.0028052369598299265, -0.0017878446960821748, -0.006305198185145855, -0.017608460038900375, 0.015593430027365685, -0.017055314034223557, -0.012090176343917847, 0.039984505623579025, 0.0025286644231528044, 0.022125812247395515, 0.004866361618041992, 0.012682831846177578, 0.0052680508233606815, -0.0005128118209540844, -0.02644561417400837, -0.022784318774938583, -0.022349704056978226, 0.015251006931066513, 0.00514951953664422, 0.016726061701774597, 0.022455066442489624, 0.0013137201312929392, 0.0012972574913874269, -0.012939649634063244, -0.021967770531773567, 0.01617291569709778, 0.018504027277231216, -0.001934362342581153, 0.00620971480384469, -0.028974277898669243, -0.01074023824185133, -0.021954601630568504, 0.06395413726568222, 0.013459869660437107, -0.005656569264829159, -0.0008223098120652139, -0.010035636834800243, -0.006973581854254007, 0.01596219278872013, -0.009851254522800446, -0.0014989250339567661, -0.018767431378364563, -0.005478772800415754, 0.02489153854548931, -0.0024611675180494785, -0.0011795494938269258, 0.0038950650487095118, 0.0034736208617687225, -0.008046947419643402, 0.0027328012511134148, -0.0005729005206376314, 0.01589634269475937, -0.010759993456304073, 0.003974085673689842, 0.0094298105686903, -0.009462735615670681, 0.01049000583589077, 0.011207778006792068, -0.019123023375868797, -0.012965989299118519, -0.03653393313288689, 0.0051001315005123615, -0.02889525704085827, 0.019070344045758247, -0.02734118327498436, 0.000984466983936727, 0.0003409828059375286, 0.026313913986086845, -0.007908660918474197, -0.01775333099067211, 0.0005914209759794176, -0.006822125520557165, 0.019728850573301315, 0.006644329056143761, -0.011431669816374779, 0.0222180038690567, -0.02098001167178154, 0.029026959091424942, 0.021901920437812805, -0.009423225186765194, -0.019676169380545616, -0.044725749641656876, 0.005528160836547613, 0.00861984770745039, 0.014184226281940937, 0.037640221416950226, -0.0236008670181036, -0.03392624482512474, -0.02304772101342678, -0.011201192624866962, 0.011991400271654129, -0.05239076539874077, -0.014236906543374062, 0.02863185480237007, -0.03073907643556595, -0.0070196776650846004, 0.001292318687774241, -0.16594359278678894, 0.018003562465310097, -0.00714479386806488, 0.002958339639008045, 0.02082196995615959, 0.019781529903411865, -0.005686202086508274, -0.017595289275050163, -0.003506546141579747, -0.017726991325616837, 0.016001703217625618, 0.030317632481455803, -0.038088005036115646, -0.015988534316420555, 0.014816392213106155, 0.004300046246498823, -0.01925472542643547, -0.002062771003693342, 0.029158661141991615, 0.025036411359906197, 0.018938641995191574, -0.00608459860086441, 0.0042012701742351055, 0.004362604580819607, -0.004932212643325329, 0.0007095405599102378, -0.013130616396665573, 0.014855902642011642, 0.007546482607722282, 0.0009984602220356464, -0.019175704568624496, -0.008284009993076324, 0.003516423748806119, 0.0083103496581316, -0.0015112720429897308, 0.005472187418490648, -0.010200263001024723, -0.00274103251285851, -0.009232258424162865, 0.015171986073255539, 0.018161604180932045, 0.00917957816272974, 0.005705957300961018, 0.015922682359814644, -0.0017071777256205678, 0.015224666334688663, 0.032609231770038605, -0.014632010832428932, 0.013868143782019615, 0.02080879919230938, 0.008389370515942574, -0.05673690512776375, 0.02065075933933258, 0.007665013894438744, 0.0008153131348080933, 0.01875426061451435, 0.0016833067638799548, 0.015435388311743736, 0.010331964120268822, -0.021625347435474396, 0.016357297077775, -0.019320575520396233, -0.0025023240596055984, -0.007829640060663223, 2.7973658234259347e-07, -0.019689340144395828, -0.0036151998210698366, -0.007157963700592518, -0.02437790483236313, 0.013459869660437107, 0.01526417676359415, 0.000689373817294836, -0.011662147007882595, -0.01327548734843731, 0.011793848127126694, -0.0013005499495193362, 0.005396459251642227, 0.017713820561766624, 0.010193677619099617, 0.013341338373720646, 0.0002708107349462807, 0.0006576831801794469, -0.025247132405638695, 0.011484350077807903, -0.019900061190128326, 0.01115509681403637, 0.012656491249799728, 0.004388944711536169, 0.005057328846305609, -0.003519716439768672, 0.0010922973742708564, -0.024088161066174507, 0.01342035923153162, 0.010272698476910591, 0.002597807440906763, 0.01051634643226862, 0.01663387008011341, 0.0034834984689950943, 0.003993840888142586, 0.00019117261399514973, -0.015580260194838047, -0.0012659784406423569, -0.036691971123218536, 0.012742097489535809, 0.021730709820985794, 0.028500154614448547, -0.010029051452875137, 7.346460915869102e-05, 0.01526417676359415, -0.022850168868899345, -0.037587542086839676, 0.010522930882871151, 0.023284783586859703, 0.014855902642011642, -0.022626277059316635, 0.025431513786315918, -2.7446338208392262e-05, -0.02208630181849003, 0.010160752572119236, -0.003704098053276539, 0.059792373329401016, -0.014460799284279346, -0.009100557304918766, -0.02506275102496147, -0.0011400390649214387, -0.02734118327498436, -0.11400061845779419, -0.039246976375579834, -0.017055314034223557, 0.019399596378207207, 0.02199411205947399, 0.01261039637029171, -0.023679887875914574, 0.022073132917284966, -0.012386504560709, 0.037297800183296204, 0.002785481745377183, -0.0009852901566773653, -0.0077835447154939175, -0.0016248644096776843, 0.04551595821976662, -0.01629144698381424, -0.0027295087929815054, -0.0021813022904098034, -0.015448558144271374, 0.01639680750668049, 0.002169778337702155, -0.007243569474667311, 0.017252866178750992, -0.024364734068512917, -0.031608302146196365, -0.0029073054902255535, -0.033504802733659744, -0.007566237822175026, 0.0030505305621773005, 0.022639447823166847, 0.03476913273334503, -0.00500794081017375, 0.015461728908121586, -0.016212426126003265, -0.02884257771074772, -0.0057981484569609165, -0.016436317935585976, -0.00041732838144525886, -0.013466454111039639, -0.02377207949757576, 0.016884101554751396, 0.015435388311743736, 0.006371048744767904, -0.01896498166024685, -0.007316005416214466, 0.0002738974872045219, -0.0036086146719753742, 0.008718623779714108, -0.01702897436916828, -0.003391307545825839, -0.0035756893921643496, 0.0027640804182738066, -0.004313216544687748, -0.013183296658098698, 0.0015721839154139161, -0.003226680913940072, 0.015237836167216301, 0.011293383315205574, 0.0017746745143085718, -0.0331360399723053, -0.031450264155864716, 0.0020693561527878046, -0.029000619426369667, 0.03118686005473137, 0.01040439959615469, 0.02008444257080555, -0.02154632657766342, -0.015698790550231934, -0.014526649378240108, -0.02281065843999386, -0.008553997613489628, 0.016607530415058136, -0.0034275255165994167, 0.012281143106520176, -0.0235481858253479, 0.011352648958563805, -0.013841803185641766, -0.027525564655661583, 0.03653393313288689, -0.021190734580159187, -0.01107607688754797, -0.03611248731613159, -0.002986326115205884, -0.00500794081017375, 0.03603346645832062, 0.01263673696666956, 0.0032859465572983027, -0.008797644637525082, 0.039194297045469284, -0.00993027538061142, -0.001957410015165806, 0.03337310254573822, 0.011115587316453457, -0.03097613714635372, -0.0022751393262296915, -0.007289665285497904, -0.026761697605252266, -0.029843507334589958, -0.013986674137413502, -0.013209637254476547, -0.01908351294696331, 0.006861635949462652, -0.05117911100387573, 0.013789122924208641, 0.002597807440906763, 0.01947861723601818, 0.011188022792339325, 0.00993027538061142, 0.006028625648468733, 0.004635884426534176, -0.006739812437444925, 0.006008870434015989, -0.03927331790328026, 0.02332429401576519, -0.010621706955134869, -0.015330027788877487, -0.018438177183270454, -0.02699876017868519, 0.014197396114468575, 0.014605670236051083, -0.008672527968883514, -0.0028513323049992323, 0.00014106440357863903, -0.0048597767017781734, -0.006650913972407579, 0.0024529360234737396, -0.005534745752811432, 0.0029385844245553017, -0.029896186664700508, 0.017384566366672516, -0.00620971480384469, -0.022665787488222122, 0.012412844225764275, -0.004718197975307703, 0.007730864454060793, 0.048123642802238464, -0.011958475224673748, -0.023587696254253387, 0.00040436405106447637, 0.02321893349289894, 0.007645258679986, -0.00995661597698927, -0.03608614578843117, -0.024088161066174507, 0.01903083361685276, -0.009337619878351688, 0.006331538315862417, 0.0036777579225599766, -0.0035295940469950438, 0.005814610980451107, -0.0013515842147171497, 0.0016627284931018949, 0.05468236654996872, -0.009383715689182281, -0.009146653115749359, -0.0257871076464653, 0.004645762033760548, -0.023758908733725548, 0.020295165479183197, 0.0077506196685135365, 0.014526649378240108, 0.009699798189103603, 0.034611091017723083, 0.02180972881615162, 0.01213627215474844, -0.0350588783621788, 0.01241942960768938, 0.008409125730395317, -0.017002632841467857, 0.029606444761157036, -0.022678958252072334, -0.011260458268225193, 0.00403005862608552, -0.01389448344707489, 0.0012552776606753469, 0.010536101646721363, -0.014724201522767544, -0.01004880666732788, 0.007638673298060894, -0.0007000745390541852, 0.000372056063497439, 0.028473813086748123, 0.02030833438038826, 0.006993337068706751, 0.014197396114468575, 0.025879299268126488, 0.003881894750520587, 0.02220483310520649, -0.007223814260214567, -0.013091105967760086, -0.0018273551249876618, 0.014447628520429134, 0.008876665495336056, 0.007546482607722282, -0.007902075536549091, 0.006848465651273727, -0.003470328403636813, 0.013710102066397667, 0.021454136818647385, 0.016054384410381317, -0.0007305304752662778, 0.025471024215221405, 0.00820498913526535, 0.010272698476910591, -0.029158661141991615, -0.02506275102496147, -0.02393011935055256, 0.02411450259387493, -0.030212270095944405, -0.039484038949012756, 0.0061998371966183186, 0.01712116412818432, 0.026142701506614685, 0.014184226281940937, 0.018899131566286087, 0.012873798608779907, -0.007190889213234186, 0.01160946674644947, -0.024456925690174103, -0.005597303621470928, -0.0188069399446249, 0.018451347947120667, 0.01980786956846714, 0.01870157942175865, 0.030212270095944405, -0.012162611819803715, 0.023363804444670677, 0.0030225440859794617, 0.04151223972439766, -0.010628292337059975, -0.004349434282630682, 0.0005885400460101664, -0.004303338937461376, 0.0023673302493989468, 0.0059957001358270645, -0.015698790550231934, -0.03147660195827484, -0.012623566202819347, -0.006216299720108509, 0.011556786485016346, 0.009581266902387142, 0.07754570245742798, -0.0009202625951729715, -0.0035756893921643496, 0.01367059163749218, 0.014513479545712471, 0.03413696959614754, -0.012004570104181767, 0.0022619692608714104, -0.010582196526229382, -0.01548806857317686, 0.008744964376091957, -0.012630151584744453, 0.0017894909251481295, -0.009633948095142841, -0.01897815242409706, 0.01308452058583498, -0.008777889423072338, 0.02661682665348053, 0.0066904244013130665, 0.007862566038966179, 0.005531453061848879, -0.01758211851119995, -0.010173922404646873, 0.010114657692611217, -0.0023673302493989468, -0.01897815242409706, 0.014250077307224274, 0.020281994715332985, -0.02320576272904873, -0.041090793907642365, 0.000655213778372854, 0.01947861723601818, -0.01568562164902687, -0.01835915632545948, -0.00408932426944375, 0.004105786792933941, 0.0017730282852426171, -0.027025099843740463, -0.001660259091295302, -0.010292453691363335, -0.021401455625891685, 0.032609231770038605, 0.008297179825603962, -0.0018553416011855006, -0.0003265779814682901, -0.012241632677614689, 0.005073791369795799, 0.0027920668944716454, -0.004375774413347244]" +41,"Now to more personal computing. Revenue decreased slightly year over year to $13.3 billion and grew 3% in constant currency, in line with expectations overall, but with OEM and Surface weakness offset by upside in gaming consoles. Windows OEM revenue decreased 15% year over year. Excluding the impact from the Windows 11 deferral last year, revenue declined 20%, driven by PC market demand deterioration noted earlier.","[0.007162286434322596, -0.031173184514045715, 0.006056393031030893, -0.012633206322789192, 0.01246406976133585, -0.009796914644539356, -0.028493020683526993, -0.020543597638607025, -0.023301826789975166, -0.04319489747285843, 0.042180076241493225, 0.03195381537079811, -0.009822935797274113, 0.019047388806939125, -0.014949077740311623, 0.018683094531297684, 0.0026590232737362385, -0.013108090497553349, 0.017902463674545288, -0.02544856071472168, -0.016718506813049316, 0.004631741903722286, -0.03307272121310234, 0.0071557811461389065, -0.007936411537230015, 0.008782095275819302, 0.02222195267677307, -0.01922953501343727, 0.026957780122756958, 0.0015645140083506703, -0.0003620581410359591, -0.019190505146980286, -0.019099431112408638, 0.011234576813876629, -0.028649145737290382, 0.016965707764029503, -0.007546096574515104, 0.02298957295715809, 0.018969325348734856, 0.005870993249118328, 0.031537480652332306, 0.01632819138467312, -0.006524771451950073, 0.0269317589700222, -0.014428657479584217, 0.010896303690969944, -0.0006663821404799819, 0.01115000806748867, -0.02088187076151371, 0.004091805778443813, -0.012990995310246944, 0.041945889592170715, -0.020868860185146332, -0.025487592443823814, -0.013069058768451214, 0.02119412273168564, -0.02042650245130062, 0.026606496423482895, -0.005155415274202824, 0.007324917707592249, -0.01501412969082594, 0.014441668055951595, -0.03205789998173714, 0.008170600980520248, -0.03822488337755203, 0.0012628327822312713, -0.01811063103377819, -0.013530931435525417, -0.009185421280562878, 0.0018686347175389528, 0.023171721026301384, 0.042023953050374985, 0.004693542141467333, 0.015066171996295452, -0.006150719244033098, -0.006667886860668659, 0.004251184407621622, -0.0025923443026840687, -0.0010026225354522467, 0.001953202998265624, 0.014545751735568047, -0.0239393413066864, -0.00879510585218668, -0.013856194913387299, -0.0009977435693144798, 0.0028249071910977364, -0.032604340463876724, -0.000569209863897413, -0.021753575652837753, 0.0010579172521829605, 0.013231690041720867, 0.0038868903648108244, 0.0018263505771756172, 0.021233154460787773, 0.012418532744050026, 0.017785368487238884, -0.023067636415362358, 0.031407374888658524, 0.002426460385322571, -0.003994226921349764, 0.004888699855655432, -0.0038250903598964214, -0.02784249372780323, -0.01451973058283329, -0.03713199868798256, 0.01982801966369152, 0.009972557425498962, 0.00501229939982295, 0.023783214390277863, -0.014428657479584217, -0.0032997909002006054, -0.0015994796995073557, 0.02508426643908024, 0.008131569251418114, 0.009380578994750977, 0.01254213321954012, -0.004410563502460718, 0.010193735361099243, 0.004735826049000025, -0.006127950735390186, 0.012958468869328499, 0.009582241997122765, 0.016354212537407875, -0.012574659660458565, 0.01077920850366354, 0.006635360885411501, -0.012704764492809772, -0.012802342884242535, 0.009081336669623852, -0.0016929927514865994, 0.0065085082314908504, -0.017121832817792892, 0.011637902818620205, 0.005887256469577551, -0.009413105435669422, 0.031615544110536575, -0.014181457459926605, 0.0342957079410553, -0.023900309577584267, -0.03239617496728897, -0.007188307587057352, 0.009757883846759796, 0.001294545829296112, -0.0011424855329096317, 0.007520075421780348, 0.031927794218063354, 0.011585860513150692, -0.025786833837628365, 0.018995346501469612, -0.0048756892792880535, 0.016367223113775253, -0.0076827071607112885, 0.023978373035788536, 0.0200491975992918, 0.02919558808207512, -0.023470962420105934, -0.002102823927998543, 0.01840987429022789, -0.000591165095102042, -0.008456832729279995, -0.023184731602668762, 0.01122807152569294, -0.007500560022890568, 0.0043487632647156715, -0.00013417089940048754, 0.02409546636044979, 0.04439186304807663, 0.023900309577584267, -0.017928484827280045, -0.021011976525187492, 0.0022914763540029526, -0.011800534091889858, -0.009523694403469563, 0.007819317281246185, 0.013478890061378479, 0.020751764997839928, -0.004667520988732576, 0.010486472398042679, -0.005604277830570936, -0.029299670830368996, 0.0013661036500707269, -0.0005472546326927841, 0.02088187076151371, 0.016640443354845047, 0.0041275848634541035, -0.023457951843738556, 0.02760830521583557, 0.0016490822890773416, 0.010317335836589336, -0.004319489933550358, -0.004283710848540068, 0.01654937118291855, -0.011592365801334381, -0.016575392335653305, -0.6461540460586548, -0.017121832817792892, -0.019268566742539406, 0.008144579827785492, 0.0058677406050264835, -0.003247748827561736, 0.030184386298060417, 0.0007139518274925649, -0.030704807490110397, 0.007793296128511429, 0.014936067163944244, 0.006287329830229282, 0.00972535740584135, 0.0010416540317237377, 0.0024882603902369738, -0.011000387370586395, -0.0052204676903784275, 0.010122178122401237, -0.029065482318401337, 0.010310830548405647, -0.007032181601971388, -0.0012685249093919992, -0.008886178955435753, -0.009868472814559937, -0.006352382246404886, 0.0010790593223646283, 0.002548433840274811, -0.015547561459243298, -0.003701490582898259, 0.004810636397451162, -0.009979061782360077, 0.005604277830570936, 0.009217947721481323, 0.0052204676903784275, 0.04558883234858513, -0.00936106313019991, -0.012938953936100006, 0.0168486125767231, 0.02522738091647625, 0.05009046941995621, -0.026320263743400574, 0.018318800255656242, -0.0013254458317533135, -0.004992783535271883, -0.018162673339247704, 0.01010266225785017, 0.0213372390717268, -0.021532395854592323, 0.0029598912224173546, -0.012386007234454155, 0.02214389108121395, 0.007071212865412235, 0.011741986498236656, -0.00927649438381195, 0.02036144956946373, -0.00306885433383286, 0.004085300490260124, -0.02963794581592083, 0.0019076662138104439, -0.007780286017805338, -0.007266370579600334, -0.0027826230507344007, -0.005945803597569466, -0.026372306048870087, -0.028466999530792236, 0.04590108245611191, -0.022195931524038315, 0.010974366217851639, 0.01991909369826317, 0.003626680001616478, -0.022052817046642303, 0.009927020408213139, 0.0034152592997998, -0.024082455784082413, -0.0023679130245000124, 0.013199163600802422, 0.02724401094019413, -0.005851477384567261, -0.026177149266004562, 0.010948345065116882, 0.005620541051030159, -0.030366534367203712, 0.0020003661047667265, -0.0077022225596010685, 0.008593442849814892, -0.017772357910871506, 0.0028997177723795176, -0.00954321026802063, -0.00029253322281874716, 0.007045191712677479, 0.004095058422535658, 0.02755626291036606, 0.002953386167064309, -0.015378424897789955, 0.012073754332959652, 0.03218800574541092, -0.010909313336014748, -0.0014482325641438365, -0.006189750973135233, 0.015430466271936893, -0.006345876958221197, -0.007383465301245451, 0.030965017154812813, 0.007149275857955217, 0.03187575191259384, 0.0264243483543396, 0.005994593258947134, 0.007246854715049267, 0.03944787010550499, -0.041191279888153076, 0.024446750059723854, -0.029533861204981804, -0.012847879901528358, -0.0021857658866792917, -0.02034843899309635, -0.02410847693681717, 0.02034843899309635, -0.012320954352617264, -0.008014474995434284, -0.022417111322283745, -0.006791486870497465, 0.016887644305825233, 0.008443822152912617, -0.03008030168712139, -0.014532741159200668, 0.01253562793135643, 0.01625012792646885, 0.017303980886936188, 0.004823646973818541, -0.014623815193772316, -0.0034510381519794464, -0.025266412645578384, 0.022729363292455673, 0.0011815170291811228, 0.012867395766079426, 0.0001015937959891744, -0.005282267462462187, -0.02927364967763424, -0.0002471997286193073, -0.03002825938165188, -0.01999715529382229, -0.010421419516205788, -0.009250473231077194, 0.01757720112800598, -0.0032396172173321247, -0.019671892747282982, -0.008404790423810482, 0.004013742785900831, -0.010558029636740685, -0.016796570271253586, -0.009640788659453392, -0.006999655161052942, 0.01937265135347843, 0.0001578540977789089, 0.0068110027350485325, -0.0030834912322461605, -0.0009237463236786425, -0.016978716477751732, -0.016445286571979523, -0.0041048163548111916, -0.016406254842877388, 0.006248298101127148, 0.011325649917125702, 0.01384318433701992, -0.002769612707197666, -0.011045924387872219, -0.043975528329610825, 0.03601309657096863, 0.00392917450517416, -0.003366469871252775, 0.0194507148116827, 0.008756074123084545, 0.029846113175153732, -0.005129394121468067, 0.002655770629644394, 0.01774633675813675, -0.00935455784201622, -0.013700068928301334, 0.01653636060655117, -0.02641133777797222, 0.006059645675122738, -0.0003374601365067065, 0.009588747285306454, -0.0042284163646399975, 0.01661442220211029, 0.012438048608601093, 0.022039806470274925, 0.032604340463876724, -0.007526580709964037, 0.001546624582260847, 0.018748147413134575, 0.020023176446557045, -0.02760830521583557, -0.020179303362965584, -0.010759692639112473, -0.0007619280950166285, 0.00594905624166131, -0.009764389134943485, 0.0032721436582505703, 0.011676933616399765, 0.009835946373641491, 0.03593503311276436, -0.008463338017463684, 0.021441321820020676, 0.002579333959147334, -0.028388936072587967, -0.003366469871252775, -0.01877416856586933, 0.006726434454321861, 0.02896139770746231, 0.027191968634724617, -0.03900551423430443, -0.017915474250912666, -0.00037120614433661103, -0.021818626672029495, 0.01519627682864666, 0.0054221306927502155, 0.007422496564686298, -0.013387816026806831, -0.002807017881423235, -0.0019450715044513345, -0.009217947721481323, 0.009790409356355667, -0.014025331474840641, -0.0022752131335437298, -0.0010627961019054055, -0.009595252573490143, 0.013517920859158039, 0.0360911600291729, -0.0269317589700222, -0.02423858270049095, 0.01766827516257763, 0.02521437034010887, 0.001232745940797031, -0.00194181886035949, 0.02176658622920513, 0.020296398550271988, -0.02066069282591343, 0.04649956896901131, -0.012216869741678238, -0.012860890477895737, 0.010993882082402706, 0.011299628764390945, -0.019893072545528412, -0.016341201961040497, -0.007240349426865578, 0.03622126206755638, 0.016653453931212425, -0.023588057607412338, 0.009822935797274113, -0.0041991425678133965, 0.015131224878132343, 0.0015588218811899424, -0.009120368398725986, 0.0030330754816532135, 0.004166616126894951, -0.0008424306288361549, -0.008385274559259415, 0.0389014296233654, 0.03224004805088043, -0.004937489051371813, 0.004898457322269678, 0.023444941267371178, -4.507938865572214e-05, 0.002102823927998543, 0.01533939316868782, -0.006293834652751684, 0.015352403745055199, -0.0028102705255150795, 0.008131569251418114, 0.013335773721337318, -0.006332866381853819, 0.0028655652422457933, 0.006999655161052942, -0.017408063635230064, 0.01638023369014263, 0.016289159655570984, -0.03687179088592529, -0.004849668126553297, 0.03466000407934189, 0.0027468441985547543, -0.024459760636091232, -0.019801998510956764, 0.02006220817565918, 0.0013368300860747695, 0.022859469056129456, 0.006993149872869253, -0.0273220743983984, 0.011865586042404175, 0.002384176244959235, -0.008827632293105125, 0.012867395766079426, -0.009549715556204319, 0.0006464598118327558, 0.021142080426216125, 0.006274319253861904, 0.027530241757631302, -0.014675856567919254, -0.005239983554929495, -0.010148199275135994, 0.016523350030183792, 0.004404058214277029, -0.029820092022418976, 0.0015645140083506703, 0.03473806381225586, -0.006101930048316717, -0.021610459312796593, -0.027217989787459373, -0.01840987429022789, -0.01414242573082447, 0.006072656251490116, -0.003107885830104351, -0.020491555333137512, -0.012620195746421814, -0.004534163046628237, -0.003935679793357849, -0.012529122643172741, -0.020309409126639366, 0.02448578178882599, 0.008086033165454865, -0.016796570271253586, 0.0032575067598372698, -0.0239393413066864, 0.01691366545855999, 0.061045318841934204, 0.0249281395226717, -0.01961985044181347, 0.03138135373592377, 0.013908236287534237, 0.010096156969666481, -0.020920902490615845, -0.0151572460308671, 0.010948345065116882, -0.006157224532216787, -0.02230001613497734, -0.004690289497375488, 0.013244700618088245, -0.020998965948820114, 0.01699172705411911, -0.00766969658434391, 0.0007062267977744341, -0.013225184753537178, 0.005256246775388718, 0.00703868642449379, -0.014051352627575397, 0.006225529592484236, 0.023757193237543106, 0.019398672506213188, 0.0213372390717268, 0.025565654039382935, 0.027452178299427032, 0.028466999530792236, -0.003499827580526471, 0.005074099637567997, -0.022208942100405693, 0.009074831381440163, -0.03283853083848953, 0.029924176633358, 0.0026086075231432915, 0.005910024978220463, 0.006456466391682625, 0.0044008055701851845, -0.017264949157834053, 0.030626744031906128, 0.0016246875748038292, -0.008105549030005932, 0.023783214390277863, -0.008365758694708347, -0.01170946005731821, -0.026307253167033195, -0.01433758344501257, 0.0008765832171775401, -0.004934236407279968, -0.036637600511312485, -0.006440203171223402, 0.0002831819001585245, -0.02170153334736824, 0.001662906026467681, -0.030574701726436615, 0.03276046738028526, -0.005851477384567261, -0.029247630387544632, -0.01227541733533144, -0.030366534367203712, -0.023314835503697395, -0.011468765325844288, 0.011572849936783314, 0.00029578583780676126, -0.03601309657096863, -0.009439125657081604, 0.002159744966775179, 0.005731130484491587, -0.0418938472867012, 0.01735602132976055, 0.018670083954930305, -0.013127606362104416, -0.024381699040532112, -0.0048756892792880535, 0.014454677700996399, -0.010265293531119823, 0.0020068713929504156, -0.0012294932967051864, 0.012945459224283695, 0.0060921721160411835, -0.008300705812871456, -0.023822246119379997, -0.032890573143959045, -0.007415991276502609, -0.0027029337361454964, 0.021454332396388054, -0.005282267462462187, 0.007305402308702469, -0.035206444561481476, -0.009035800583660603, 0.0077022225596010685, -0.015365414321422577, 0.02066069282591343, -0.004378037061542273, 0.022664310410618782, -0.0174470953643322, -0.0013482142239809036, 0.0058905091136693954, -0.0026639022398740053, -0.0013709826162084937, 0.009289504960179329, -0.0001872293942142278, -0.009946536272764206, -0.02403041534125805, -0.007240349426865578, 0.023900309577584267, -0.004072289913892746, -0.00473257340490818, -0.010161208920180798, 0.018318800255656242, 0.007546096574515104, 0.008775589987635612, -0.02626822330057621, -0.0008912200573831797, -0.002802138915285468, -0.02327580563724041, 0.021818626672029495, -0.0159508865326643, 0.011280112899839878, -0.0011359802447259426, 0.014376615174114704, -0.03265638276934624, 0.03195381537079811, -0.008020980283617973, -0.003834848292171955, 0.004992783535271883, 0.002862312598153949, -0.023848267272114754, -0.05500844120979309, 0.005057836417108774, -0.0024476023390889168, 0.009979061782360077, -0.020595639944076538, -0.02401740476489067, -0.01766827516257763, -0.03486816957592964, 0.0060401298105716705, -0.005604277830570936, -0.005519709549844265, -0.006658129394054413, -0.028102705255150795, 0.01358297374099493, 0.008736558258533478, -0.020088229328393936, 0.00778679084032774, -0.02530544437468052, -0.00020898133516311646, -0.004365026485174894, 0.004134090151637793, 0.021207133308053017, 0.013869205489754677, -0.005207457114011049, -0.010603566654026508, -0.0038868903648108244, -0.013986299745738506, -0.013153626583516598, 0.015378424897789955, -0.02740013785660267, 0.04212803766131401, 0.011468765325844288, 0.03936980664730072, 0.0039324271492660046, 0.006134456023573875, 0.012281922623515129, -0.004839910194277763, 0.008020980283617973, 0.01264621689915657, -0.012698259204626083, -0.029663965106010437, 0.005239983554929495, -0.026242202147841454, 0.015664655715227127, 0.015326382592320442, -0.010551524348556995, 0.012919438071548939, -0.008385274559259415, 0.0016832349356263876, 0.003672216786071658, -0.03447785601019859, -0.0061930036172270775, 0.002535423496738076, -0.0132121741771698, -0.02979407086968422, 0.026164138689637184, -0.022352058440446854, -0.03466000407934189, 0.010720660910010338, 0.00750706484541297, 0.018279768526554108, -0.006580065935850143, 0.01403834205120802, 0.015833793208003044, 0.005682340823113918, -0.017837410792708397, 0.013726089149713516, -0.0033827328588813543, -0.000892846321221441, -0.03700189292430878, -0.019112441688776016, -0.01141672395169735, -0.015144235454499722, 0.034321729093790054, 0.006902076303958893, 0.028024641796946526, 0.0008261674665845931, 0.034399792551994324, -0.0009920514421537519, -0.038875408470630646, 0.012171333655714989, -0.022937530651688576, 0.0038576165679842234, -0.03494623303413391, 0.01519627682864666, 0.0042772055603563786, -0.01713484339416027, 0.024147508665919304, -0.01990608312189579, 0.006713423877954483, -0.004625236615538597, -0.02880527265369892, 0.011000387370586395, 0.006475982256233692, 0.024420730769634247, -0.01818869449198246, 0.019294587895274162, -0.00486593134701252, -0.0007143584080040455, -0.023757193237543106, -0.021077027544379234, 0.007708727847784758, -0.017629243433475494, 0.047332242131233215, 0.03856315463781357, 0.0032184752635657787, -0.0119696706533432, -0.014740909449756145, -0.010395398363471031, -0.003525848500430584, -0.020023176446557045, 0.015027140267193317, 0.017408063635230064, -0.011618386954069138, -0.02028338797390461, -0.03216198459267616, -0.0185529887676239, 0.032005857676267624, -0.01818869449198246, 0.008521884679794312, -0.008352748118340969, -0.023470962420105934, -0.008196622133255005, 0.028701188042759895, 0.015326382592320442, 0.004296721424907446, -0.022026795893907547, 0.013622005470097065, 0.006889065727591515, 0.00703868642449379, 0.004407310858368874, -0.009790409356355667, 0.0011416723718866706, 0.012112786062061787, -0.038667239248752594, 0.015482508577406406, 0.0070842234417796135, 0.001121343462727964, -0.01803256943821907, -0.00032607594039291143, -0.002350023714825511, 0.020972944796085358, -0.025175338611006737, -0.011950154788792133, 0.028545061126351357, 0.008625969290733337, 0.0037697956431657076, -0.0016092376317828894, -0.01826675795018673, -0.024342667311429977, -0.016809580847620964, -0.007981948554515839, 0.020686713978648186, -0.0018881504656746984, -0.01103941909968853, 0.018526967614889145, -0.012125796638429165, -0.026385316625237465, -0.015820782631635666, 0.0034575434401631355, 0.021311217918992043, -0.009269989095628262, -0.013674047775566578, 0.017460105940699577, 0.022924521937966347, 0.03330690786242485, 0.0043715317733585835, -0.0006667887209914625, 0.010245777666568756, 0.010200240649282932, -0.014584783464670181, 0.024147508665919304, 0.025773823261260986, 0.018956314772367477, -0.01990608312189579, 0.012698259204626083, -0.028753230348229408, -0.02305462583899498, 0.0254355501383543, -0.02462889812886715, -0.022417111322283745, 0.006030371878296137, 0.006303592585027218, -0.006384908687323332, 0.002231302671134472, 0.007396475877612829, -0.008515379391610622, 0.011878596618771553, -0.0030769859440624714, -0.02163648046553135, -0.03801671415567398, 0.024277614429593086, 0.006895571015775204, 0.0011538696708157659, 0.007715233135968447, -0.0009904252365231514, 0.01654937118291855, -0.0031046331860125065, -0.00757862301543355, 0.01765526458621025, -0.017759347334504128, -0.02163648046553135, -0.014051352627575397, 0.0215454064309597, -0.017993537709116936, 0.01578175090253353, -0.023236773908138275, 0.019216524437069893, 0.007533085998147726, -0.006277571897953749, 0.020764775574207306, 0.0009457015548832715, -0.003935679793357849, -0.013713078573346138, 0.011123986914753914, 0.0074810441583395, 0.0006549979443661869, -0.03106910176575184, 0.006316603161394596, -0.009699336253106594, -0.025045234709978104, -0.01571669802069664, 0.0009286252316087484, 0.03702791407704353, 0.008307211101055145, -0.008560916408896446, -0.03931776434183121, 0.00052164017688483, -0.0480608306825161, -0.027191968634724617, 0.006615845020860434, 0.019854040816426277, 0.02812872640788555, 0.012392512522637844, -0.017238928005099297, 0.04275254160165787, -0.009985567070543766, 0.009029295295476913, -0.04699396714568138, 0.003626680001616478, 0.006153971888124943, -0.004761847201734781, -0.030418574810028076, -0.010369377210736275, 0.0025419285520911217, -0.016705496236681938, 0.0018377347150817513, 0.007689212448894978, -0.003041207091882825, 0.013999310322105885, 0.023705150932073593, -0.009328536689281464, -0.004983026068657637, 0.012288427911698818, 0.001997113460674882, 0.0055945198982954025, 0.022885490208864212, -0.03871928155422211, -0.00028053915593773127, 0.013752110302448273, 0.011260597966611385, -0.018526967614889145, -0.0009091094834730029, 0.01507918257266283, 0.005607530474662781, -0.011449250392615795, 0.0005838467041030526, -0.002042650245130062, 0.004569942131638527, -0.0036234273575246334, 0.019893072545528412, 0.00916590541601181, 0.007799801416695118, 0.038068756461143494, 0.026177149266004562, -0.04121730104088783, 0.005575004033744335, 0.008996768854558468, -0.014844993129372597, 0.0003864528553094715, -0.0006070216768421233, -0.04197191074490547, 0.0073574441485106945, -0.00458620535209775, 0.009139884263277054, -0.0047228154726326466, -0.017330002039670944, -0.018422884866595268, 0.020855849608778954, -0.014467688277363777, 0.004218658432364464, -0.006277571897953749, -0.026242202147841454, 0.02395235188305378, -0.020907891914248466, -0.007806306704878807, 0.007129760459065437, 0.00025431482936255634, -0.006947612855583429, -0.03832896798849106, -0.04171169921755791, 0.02568274922668934, -0.003620174713432789, -0.020686713978648186, 0.01893029361963272, 0.00909434724599123, 0.007311907596886158, 0.0185529887676239, 0.20650283992290497, 0.016601411625742912, 0.014103394001722336, 0.045172493904829025, 0.015729708597064018, 0.018526967614889145, 0.013635016046464443, -0.012789332307875156, 0.006674392148852348, 0.01639324426651001, -0.030132343992590904, 0.023965362459421158, -0.009686325676739216, -0.005708361975848675, 0.028102705255150795, 0.0074094864539802074, -0.04041064903140068, 0.006654876749962568, -0.02740013785660267, 0.06130553036928177, 0.030886953696608543, -0.015261329710483551, -0.005122888833284378, -0.01691366545855999, 0.01968490332365036, -0.01924254558980465, -0.03216198459267616, 0.010005082935094833, 0.037236083298921585, 0.010759692639112473, -0.0034900696482509375, 0.010141693986952305, -0.011911123059689999, 0.00973186269402504, -0.00016903500363696367, -0.011436239816248417, -0.01593787595629692, 0.018461914733052254, -0.005971824750304222, 0.034842148423194885, 0.03689781203866005, 0.023705150932073593, 0.0017791874706745148, -0.03302067890763283, 0.015222297981381416, 0.02410847693681717, 0.0012311196187511086, 0.00759813841432333, 0.006960623431950808, -0.014936067163944244, -0.02410847693681717, 0.01077270321547985, 0.022937530651688576, 0.025552643463015556, -0.033280886709690094, 0.027660347521305084, 0.005965319462120533, 0.012008702382445335, -0.0072858864441514015, -0.013335773721337318, 0.001740155857987702, 0.005812446121126413, -0.006856539286673069, -6.340083018585574e-06, -0.013556952588260174, -0.0047163101844489574, -0.01290642749518156, -0.008944726549088955, -0.00861295871436596, -0.02620317041873932, -0.0011424855329096317, 0.016211098060011864, -0.03060072287917137, -0.002483381424099207, -0.014129415154457092, -0.019554799422621727, 0.0384850911796093, -0.011286618188023567, 0.03346303477883339, 0.008638979867100716, 0.0037372694350779057, 0.006889065727591515, -0.010057125240564346, -0.003187575377523899, -0.020543597638607025, -0.005747393239289522, 0.003398996079340577, -0.004781363066285849, 0.021363260224461555, 0.008066517300903797, 0.012659227475523949, 0.004810636397451162, -0.02327580563724041, -0.01759021170437336, 0.015768740326166153, 0.010356366634368896, -0.01631518080830574, 0.007526580709964037, -0.007741254288703203, -0.003971458412706852, -0.016198087483644485, 0.04829501733183861, 0.042466308921575546, -0.006456466391682625, 0.009309020824730396, 0.0008094977820292115, -0.0016751033253967762, 0.020764775574207306, 0.01115651335567236, -0.009335041977465153, -0.0021142081823199987, -0.001138419727794826, 0.028310872614383698, -0.013504911214113235, -0.0019515766762197018, -0.005129394121468067, -0.006967128720134497, -0.015560572035610676, 0.004215405788272619, -0.004508142359554768, 0.014688867144286633, -0.01766827516257763, 0.001629566540941596, 0.021792607381939888, -0.02919558808207512, 0.01377813145518303, -0.009940030984580517, -0.008710537105798721, -0.005568498745560646, -0.02475900389254093, 0.02740013785660267, -0.013622005470097065, -0.010941839776933193, -0.021233154460787773, 0.01553455088287592, 0.011533818207681179, 0.014415646903216839, 0.002255697501823306, -0.02979407086968422, 0.003581143217161298, -0.01040840893983841, 0.030106322839856148, 0.013140616938471794, -0.0053928568959236145, 0.016211098060011864, -0.003486817004159093, 0.014740909449756145, 0.015144235454499722, 0.007090728729963303, -0.028649145737290382, -0.03825090453028679, -0.0031046331860125065, 0.007533085998147726, 0.006934602744877338, 0.01358297374099493, -0.019710924476385117, -0.03486816957592964, -0.023861277848482132, 0.002350023714825511, 0.007246854715049267, -0.060889191925525665, -0.008736558258533478, 0.012737290933728218, -0.024446750059723854, -0.02687971666455269, -0.015833793208003044, -0.16320385038852692, 0.024980181828141212, -0.014233499765396118, -0.010161208920180798, 0.020192313939332962, 0.009478157386183739, 0.0011335407616570592, 0.00034213578328490257, 0.0016417639562860131, 0.003307922510430217, 0.017850421369075775, 0.019099431112408638, -0.029585903510451317, -0.004088553134351969, 0.019411683082580566, 0.010798724368214607, -0.01459779404103756, 0.025500603020191193, 0.027296053245663643, 0.02012726105749607, 0.05232827737927437, -0.012795837596058846, 0.00388363772071898, -0.021831637248396873, 0.015495519153773785, 0.0003368502657394856, -0.01309507992118597, 0.0024378446396440268, 0.007266370579600334, -0.018800189718604088, -0.005103372968733311, -0.01908642053604126, 0.022182922810316086, 0.03541461378335953, -0.0064369505271315575, -0.010701145976781845, -0.02245614305138588, -0.008840642869472504, -0.006674392148852348, 0.03047061711549759, 0.023692140355706215, 0.010005082935094833, 0.022937530651688576, 0.024745993316173553, -0.008840642869472504, 0.014988109469413757, 0.0024947654455900192, -0.00476835248991847, 0.014545751735568047, -0.012021712958812714, 0.03658555820584297, -0.0546441487967968, -0.005740887951105833, 0.006280824542045593, 0.01565164513885975, 0.027296053245663643, 0.008248664438724518, 0.0016303797019645572, 6.845765165053308e-05, -0.01714785397052765, -0.013817163184285164, -0.02799862064421177, 0.0002516720851417631, -0.024056434631347656, -0.0016027323435992002, -0.025877907872200012, 0.012945459224283695, -0.018448906019330025, -0.0273220743983984, 0.019294587895274162, 0.0018052085069939494, -0.03000224009156227, 0.016601411625742912, -0.02110304869711399, 0.0057961829006671906, -0.004078795202076435, 0.02321075275540352, -0.006908581592142582, 0.020790796726942062, 0.013635016046464443, 0.005724625196307898, -0.0026216180995106697, -0.003220101585611701, 0.02230001613497734, -0.025019213557243347, 0.014389625750482082, 0.011663923040032387, 0.013335773721337318, -0.0033046698663383722, -0.009419609792530537, 0.007461528293788433, -0.02124616503715515, 0.00514565734192729, -0.008170600980520248, 0.01115000806748867, 0.007103739306330681, 0.014871014282107353, 0.006017361301928759, -0.025656728073954582, 0.009998577646911144, -0.011442745104432106, -0.015625623986124992, -0.023288816213607788, 0.015066171996295452, 0.03166758641600609, 0.026853695511817932, -0.01954178884625435, 0.014649835415184498, 0.010050619952380657, -0.01991909369826317, -0.045328620821237564, 0.023965362459421158, 0.020972944796085358, 0.02364009991288185, -0.010512493550777435, 0.02529243379831314, 0.002862312598153949, -0.007415991276502609, -0.011306134052574635, -0.015105203725397587, 0.04897156357765198, -0.01864406280219555, -0.003990974277257919, 0.0002801325754262507, -0.025578664615750313, -0.028102705255150795, -0.11064139008522034, -0.04499034956097603, -0.014858003705739975, 0.01954178884625435, 0.018683094531297684, 0.031849730759859085, -0.0194507148116827, 0.018201705068349838, -0.02815474569797516, 0.019203513860702515, 0.012333964928984642, -0.0008530016639269888, -0.005731130484491587, -0.005539225414395332, 0.03143339604139328, -0.01579476147890091, -0.009783904999494553, 0.004839910194277763, -0.019060399383306503, 0.022794416174292564, 0.00645321374759078, -0.014350594021379948, 0.015677666291594505, -0.023861277848482132, -0.03481612727046013, -0.002953386167064309, -0.031771667301654816, -0.0044886264950037, 0.010304325260221958, 0.012197354808449745, 0.03067878633737564, -0.004137342795729637, 0.001484011416323483, -0.011813544668257236, -0.01954178884625435, -0.016575392335653305, -0.024134498089551926, -0.005230225622653961, -0.007344433572143316, -0.024004394188523293, 0.027738410979509354, 0.006876055151224136, 0.0026264970656484365, -0.017056779935956, -0.014129415154457092, -0.013595984317362309, -0.015703687444329262, 0.016822591423988342, 0.01077270321547985, -0.017186885699629784, -0.004469110630452633, -0.010505988262593746, -0.01998414471745491, -0.025487592443823814, 0.0002335793396923691, -0.0038803850766271353, 0.011442745104432106, 0.004378037061542273, -0.013439858332276344, -0.027374116703867912, -0.02448578178882599, 0.009855462238192558, -0.012880406342446804, 0.035674821585416794, 0.0008806489640846848, -0.0006062085158191621, -0.010831250809133053, -0.013895225711166859, 0.0021727553103119135, -0.013530931435525417, 0.00984895695000887, 0.005610783118754625, -0.030808890238404274, -0.002416702453047037, -0.010505988262593746, 0.0072273388504981995, -0.008599948137998581, -0.02888333611190319, 0.0365074947476387, -0.0029322439804673195, -0.009152894839644432, -0.01974995620548725, 0.0006013295496813953, 0.010733671486377716, 0.023067636415362358, 0.025786833837628365, -0.015391434542834759, 0.010460451245307922, -0.005744140595197678, -0.02027037739753723, -0.0023988131433725357, 0.03554471582174301, 0.012197354808449745, 0.01115651335567236, 0.010135188698768616, -0.021441321820020676, -0.02321075275540352, -0.013134111650288105, 0.008131569251418114, -0.008990263566374779, -0.005174930673092604, 0.02641133777797222, -0.06146165728569031, 0.021883679553866386, -0.009068326093256474, 0.013804152607917786, 0.017056779935956, 0.022885490208864212, 0.008333232253789902, -0.019945114850997925, -0.011631397530436516, -0.0035453643649816513, -0.04631742089986801, 0.03991624712944031, -0.00729889702051878, -0.012470575049519539, -0.019047388806939125, -0.014272530563175678, 0.031693607568740845, 0.013713078573346138, 0.011058934964239597, 0.014910046011209488, 0.0025403022300451994, -0.014103394001722336, 0.01608099229633808, -0.006784981582313776, -0.023588057607412338, -0.0007623346755281091, -0.01952877826988697, -0.013700068928301334, 0.010089651681482792, -0.020855849608778954, 7.165945862652734e-05, 0.006196256261318922, -0.0036527011543512344, 0.026151128113269806, -0.0013612248003482819, -7.979102520039305e-05, -0.002143481746315956, -0.0030216912273317575, 0.02455083467066288, 0.0039551956579089165, -0.023783214390277863, -0.024264603853225708, 0.021610459312796593, -0.021467342972755432, 0.0012522616889327765, -0.010388893075287342, -0.0009936777641996741, -0.011260597966611385, -0.003359964583069086, 0.009309020824730396, 0.02395235188305378, 0.0003114391292911023, 0.0029550124891102314, -0.011768007650971413, -0.007331422995775938, -0.01557358168065548, 0.0012034722603857517, -0.007962432689964771, 0.0012969853123649955, -0.007741254288703203, 0.023249784484505653, 0.01507918257266283, 0.004023500718176365, -0.021129069849848747, 0.018149662762880325, -0.004286963492631912, -0.023223763331770897, 0.006349129602313042, -0.0056237936951220036, 0.011592365801334381, 0.007552601862698793, -0.003509585512802005, 0.0054448992013931274, 0.003997479565441608, 0.010258788242936134, -0.015326382592320442, 0.009009779430925846, -0.0048952046781778336, -0.008060012012720108, 0.0020686713978648186, -0.010414914228022099, -0.0011018277145922184, -0.01340082660317421, -0.00011445183918112889, 0.009348052553832531, 0.02844097837805748, -0.009822935797274113, -0.00021040436695329845, 0.009829441085457802, 0.008944726549088955, 0.007695717271417379, 0.008625969290733337, 0.006254803389310837, 0.01029131468385458, 0.006001098547130823, 0.004156858194619417, 0.021571427583694458, 0.021688522771000862, -0.004290216136723757, 0.03135533258318901, 0.0077022225596010685, 0.00890569481998682, -0.03075684979557991, -0.028727209195494652, -0.010740176774561405, 0.02656746469438076, -0.01974995620548725, -0.029299670830368996, 0.008307211101055145, 0.018227726221084595, 0.007572117727249861, 0.03208392113447189, 0.02206582762300968, 0.012405522167682648, -0.007851843722164631, 0.012919438071548939, -0.02700982242822647, -0.018605031073093414, -0.016523350030183792, 0.028753230348229408, 0.011358176358044147, 0.016367223113775253, -0.006895571015775204, -0.023158710449934006, 0.04350715130567551, 0.006570308469235897, 0.017603222280740738, -0.03263036161661148, -0.01085727196186781, -0.0136610371991992, -0.004804131109267473, -0.010011588223278522, 0.016965707764029503, -0.02171454392373562, -0.0020898133516311646, -0.0089772529900074, -0.02261226810514927, 0.023627089336514473, 0.02470696158707142, 0.05906772240996361, 0.014428657479584217, -0.00551645690575242, 0.008170600980520248, 0.020634671673178673, 0.02410847693681717, 0.0006423940067179501, 0.005470919888466597, -0.03255229815840721, -0.025695759803056717, 0.009757883846759796, -0.006771971005946398, 0.004839910194277763, 0.003281901590526104, -0.024082455784082413, 0.00594905624166131, 0.0013327642809599638, 8.202721073757857e-05, -0.00283466512337327, 0.012106280773878098, 0.014415646903216839, -0.02708788402378559, 0.006323108449578285, 0.005337562412023544, -0.012938953936100006, -0.0013799273874610662, 0.023666121065616608, 0.019268566742539406, -0.02289850078523159, -0.04551076889038086, -0.005753898527473211, 0.00483015226200223, -0.037314146757125854, -0.005714867264032364, 0.0020117503590881824, -0.0016848612576723099, 0.01489703543484211, 0.006248298101127148, -0.0044430894777178764, -0.014988109469413757, 0.0009814804652705789, 0.01683560200035572, -0.0009196805185638368, 0.001283974852412939, 0.00013904983643442392, -0.02708788402378559, -0.008886178955435753, -0.0007237097015604377, 0.0013913115253672004]" +42,"Devices revenue grew 2% and 8% in constant currency, in line with expectations, driven by the impact of a large Hollands deal, partially offset by low double-digit declines in consumer Surface sales. Windows commercial products and cloud services revenue grew 8% and 15% in constant currency, in line with expectations, driven by demand for Microsoft 365 E5 noted earlier. Search and news advertising revenue, ex TAC, increased 16% and 21% in constant currency, in line with expectations, benefiting from an increase in search volumes and roughly five points of impact from Xandr even as we saw increased ad market headwinds during September. Edge browser gained share again this quarter.","[0.01180251408368349, -0.016670143231749535, 0.009068187326192856, -0.013433863408863544, 0.013433863408863544, -0.007483071181923151, -0.03022288903594017, -0.0231955386698246, -0.009180466644465923, -0.04216410219669342, 0.03909954056143761, 0.042771730571985245, -0.01116846688091755, 0.013909397646784782, -0.004118000622838736, 0.020448002964258194, 0.0030232795979827642, 0.0017155584646388888, 0.010151350870728493, -0.032177865505218506, -0.02392205037176609, 0.006393303629010916, -0.02392205037176609, 0.0037811635993421078, -0.013988654129207134, 0.01582474634051323, 0.03471405431628227, -0.008348280563950539, 0.020619723945856094, -0.013896188698709011, 0.0020375351887196302, -0.02842642366886139, -0.025401493534445763, 0.008685117587447166, -0.011703443713486195, 0.010362699627876282, -0.0026005818508565426, 0.011571351438760757, 0.030381402000784874, 0.01355274673551321, 0.024450423195958138, 0.008255815133452415, -0.010408932343125343, 0.017198514193296432, -0.009656001813709736, 0.019919632002711296, 0.005359675269573927, 0.004979908000677824, 0.006036652252078056, 0.00861907098442316, -0.005848419852554798, 0.04580986872315407, -0.03133247047662735, -0.02315591089427471, -0.002967140171676874, 0.0027789075393229723, -0.0026649772189557552, 0.024278702214360237, -0.004306233488023281, -0.00869172252714634, -0.014305677264928818, 0.020619723945856094, -0.03447628393769264, -0.00021300003572832793, -0.039760008454322815, -0.007324559614062309, -0.009893769398331642, -0.003843907732516527, 0.006829210557043552, 0.01717209629714489, 0.029747353866696358, 0.02063293382525444, 0.017423072829842567, 0.0028284424915909767, 0.011260932311415672, -0.011412839405238628, -0.006822606083005667, -0.008513396605849266, 0.009735257364809513, 0.006284326780587435, 0.004253396298736334, -0.024173028767108917, -0.01655125804245472, -0.005263907834887505, 0.012680932879447937, 0.011663815937936306, -0.022178422659635544, 0.00023281399626284838, -0.02482028305530548, 0.0043689776211977005, 0.027343260124325752, 0.005138419568538666, -0.006624466273933649, 0.020381957292556763, 0.004682698752731085, -0.005448838230222464, -0.012839443981647491, 0.03178158774971962, -0.015864375978708267, -0.01521711889654398, 0.0020771631971001625, -0.005524791777133942, -0.035295262932777405, -0.01567944511771202, -0.04226977378129959, 0.008229397237300873, 0.005069070961326361, -0.0003568576357793063, 0.031041866168379784, -0.012905490584671497, -0.013116839341819286, -0.00993339717388153, 0.0373823344707489, 0.004084977321326733, -0.0035830240231007338, 0.002343000378459692, -0.023169120773673058, 0.015375630930066109, 0.0069480943493545055, -0.016498422250151634, 0.01873079501092434, 0.003031535539776087, 0.00783972255885601, -0.015666235238313675, 0.006320652551949024, 0.01223842054605484, -0.002532884245738387, -0.01851944625377655, 0.014424560591578484, -0.016934329643845558, 0.0003205320390406996, -0.023446515202522278, 0.00912102498114109, 0.005026140715926886, 0.00498651247471571, 0.04617973044514656, -0.021346237510442734, 0.020540468394756317, -0.02721116878092289, -0.018308095633983612, -0.0012771746842190623, 0.016921119764447212, 0.0074038151651620865, -0.007740652654320002, 0.010270234197378159, 0.033393122255802155, 0.013453677296638489, -0.003758047241717577, 0.014807630330324173, -0.003933070693165064, 0.014583072625100613, -0.023037027567625046, 0.01717209629714489, 0.0026253494434058666, 0.02766028419137001, -0.02035553939640522, -0.012218606658279896, 0.017594793811440468, -0.0036754889879375696, -0.007278326898813248, -0.02364465594291687, 0.023591818287968636, -0.008097304031252861, -0.004623256623744965, 0.012859257869422436, 0.031834423542022705, 0.026603540405631065, 0.013698048889636993, -0.01958939991891384, -0.008916281163692474, -0.007364187389612198, -0.015481305308640003, -0.008599257096648216, 0.014728374779224396, 0.01521711889654398, 0.023010609671473503, 0.004577023908495903, 0.0025477446615695953, -0.01914028264582157, -0.01851944625377655, 0.012958328239619732, -0.01796465367078781, 0.014794421382248402, 0.005828605964779854, 0.011498699896037579, -0.018704375252127647, 0.027343260124325752, 0.010389118455350399, -0.009788095019757748, -0.01672297902405262, -0.007469861768186092, 0.017158886417746544, -0.016498422250151634, -0.022072749212384224, -0.6458821892738342, -0.002164674922823906, 0.0014233025722205639, 0.01388297975063324, 0.012304467149078846, -0.006816001143306494, 0.022482236847281456, 0.004210466053336859, -0.03960149735212326, 0.012139351107180119, 0.01422642171382904, 0.011908188462257385, 0.01689470000565052, 0.0017386747058480978, -0.001806372427381575, -0.004831303376704454, 0.0078066992573440075, 0.002848256379365921, -0.013176281936466694, 0.01349991001188755, -0.010587258264422417, 0.013605584390461445, 0.0012003955198451877, -0.00967581570148468, -0.010514606721699238, -0.007846327498555183, -0.003569814609363675, 0.0022389772348105907, -0.019312003627419472, 0.019721491262316704, -0.02042158506810665, 0.018440188840031624, 0.01740986295044422, 0.016815444454550743, 0.042771730571985245, -0.005376187153160572, -0.005006326362490654, 0.026339353993535042, 0.01078539714217186, 0.04596837982535362, -0.04081675037741661, 0.011644002050161362, 0.002210907405242324, -0.0083945132791996, -0.004055256489664316, 0.02323516644537449, 0.022284097969532013, -0.0053365593776106834, 0.007998233661055565, -0.00025159597862511873, 0.012489398010075092, -0.013988654129207134, -0.003366721561178565, -0.005534698721021414, 0.023486144840717316, -0.004629861563444138, 0.01201386284083128, -0.017013585194945335, 0.011663815937936306, -0.006581536028534174, -0.02443721331655979, -0.005613954737782478, -0.01841377094388008, -0.024344749748706818, -0.022350143641233444, 0.03252130746841431, -0.015798328444361687, 0.00758214108645916, 0.017251351848244667, 0.0144509794190526, -0.02287851646542549, 0.007641582749783993, 0.019615817815065384, -0.007529303897172213, 0.003408000571653247, 0.013143258169293404, 0.04081675037741661, -0.015098235569894314, -0.018479816615581512, 0.022350143641233444, 0.005425721872597933, -0.03521600738167763, 0.00233309343457222, 0.00430953549221158, 0.004263303242623806, -0.0021283491514623165, -0.007476466707885265, -0.01869116723537445, -0.004061861429363489, 0.01533600315451622, 0.003051349427551031, 0.017581583932042122, 0.003102535381913185, -0.03199293464422226, 0.01599646732211113, 0.04911219701170921, -0.003031535539776087, 0.0025427911896258593, -0.0001599564275238663, 0.011366606689989567, -0.0060201408341526985, -0.009358792565762997, 0.030037960037589073, -0.002428860869258642, 0.024807075038552284, 0.024635354056954384, 0.012192188762128353, -0.0028218377847224474, 0.035295262932777405, -0.03230996057391167, 0.010554234497249126, -0.02114809677004814, 0.005191256757825613, -0.007483071181923151, -0.023076655343174934, -0.030487075448036194, 0.02125377207994461, -0.0109042814001441, -0.023169120773673058, -0.03223070502281189, 0.005359675269573927, 0.0009345583384856582, 0.005399303510785103, -0.019483724609017372, -0.008559629321098328, 0.013830142095685005, 0.008698327466845512, 0.0006468431674875319, 0.004662884399294853, -0.017423072829842567, 0.005495070945471525, -0.018770422786474228, 0.018374143168330193, -0.003229675116017461, 0.01873079501092434, 0.015798328444361687, -0.015177491120994091, -0.026497865095734596, 0.0053794896230101585, -0.033498797565698624, -0.02575814351439476, 0.0019103956874459982, -0.007476466707885265, 0.00643953587859869, -0.006059768609702587, -0.019496934488415718, -0.008916281163692474, 0.010508001782000065, -0.024741027504205704, -0.014424560591578484, -0.015058607794344425, -0.008328466676175594, -0.006677303463220596, 0.00483790785074234, 0.021768935024738312, 0.007066978141665459, -0.0031619772780686617, -0.016987165436148643, -0.019166700541973114, -0.014371723867952824, -0.010157955810427666, 0.014979351311922073, 0.010924095287919044, -0.011003350839018822, -0.011274141259491444, 0.01388297975063324, -0.034053586423397064, 0.022772841155529022, 0.012621491216123104, -0.01655125804245472, 0.00029638377600349486, -0.012377118691802025, 0.020064933225512505, 0.008249211125075817, 0.024622144177556038, 0.014754793606698513, -0.03299684450030327, -0.02437116764485836, 0.010428746230900288, -0.020831074565649033, 0.013367816805839539, 0.021940656006336212, 0.0011326979147270322, -0.011861955747008324, 0.036404844373464584, 0.0019880004692822695, 0.022931354120373726, 0.01962902769446373, -0.007040559314191341, -0.0002883343549910933, 0.005412512458860874, 0.03046065755188465, -0.024054143577814102, -0.03098902851343155, -0.007456652354449034, -0.0017948142485693097, -0.01723814196884632, 0.0006208373233675957, 0.00256590754725039, -0.007291536312550306, 0.0173041895031929, 0.042877402156591415, 0.00021506399207282811, 0.01706642098724842, -0.0013869770336896181, -0.02219163253903389, -0.0173041895031929, -0.019998887553811073, 0.014292467385530472, 0.030064377933740616, 0.023723911494016647, -0.04425117000937462, -0.02479386515915394, -0.012198792770504951, -0.03164949268102646, 0.014001863077282906, 0.011657211929559708, 0.0016552910674363375, -0.014754793606698513, 0.005610652267932892, 0.0004899826599285007, -0.021689679473638535, 0.005788977723568678, -0.008407722227275372, 0.00600693142041564, -0.0022852097172290087, -0.008110512979328632, 0.0214651208370924, 0.020831074565649033, -0.03688037768006325, -0.009893769398331642, 0.022033119574189186, 0.024767447263002396, -0.010468374006450176, -0.0019153491593897343, 0.014001863077282906, 0.030698424205183983, -0.018810050562024117, 0.024001307785511017, -0.0041246055625379086, 0.012766793370246887, 0.017290979623794556, 0.01599646732211113, -0.022653957828879356, -0.006994327064603567, 0.008150140754878521, 0.029166145250201225, 0.0025824191980063915, -0.008084094151854515, 0.0025064656510949135, -0.007654792163521051, 0.011360001750290394, 0.0014926514122635126, -0.01637953892350197, 0.012053490616381168, -0.012515815906226635, 0.00806428026407957, 0.011921397410333157, 0.021940656006336212, 0.029298238456249237, 0.013632002286612988, 0.008579443208873272, 0.04057898372411728, -0.010151350870728493, -0.009603164158761501, 0.018123166635632515, -0.012079909443855286, 0.0017122561112046242, 0.001966535346582532, 0.0003940087917726487, 0.011795909143984318, -0.011696839705109596, 0.017053212970495224, 0.0037448378279805183, -0.0209499578922987, 0.005967303644865751, 0.011710048653185368, -0.03466121479868889, -0.015877583995461464, 0.04179424047470093, 0.011056188493967056, -0.027079075574874878, -0.0003867849591188133, 0.0266563780605793, -0.004061861429363489, 0.0130706075578928, 0.013341397978365421, -0.02471460960805416, -0.0038406054954975843, 0.02513730712234974, -0.023486144840717316, 0.023882422596216202, -0.015296375378966331, -0.002220814349129796, 0.015402049757540226, -0.009061583317816257, 0.020514050498604774, -0.011142048984766006, 0.00033869483741000295, -0.015573770739138126, 0.012132746167480946, 0.0039991168305277824, -0.02800372615456581, 0.011412839405238628, 0.044779542833566666, -0.025665679946541786, -0.033868659287691116, -0.02392205037176609, -0.009563536383211613, -0.01184214185923338, 0.003559907665476203, -0.00983432773500681, -0.033076100051403046, 0.020276283845305443, 0.003209860995411873, -0.0009254768956452608, 0.0006901861634105444, -0.008665303699672222, 0.01388297975063324, 0.0037085122894495726, -0.02125377207994461, 0.016564467921853065, -0.021993491798639297, 0.020263073965907097, 0.0692167580127716, 0.027713121846318245, -0.015454886481165886, 0.02443721331655979, 0.013097025454044342, -0.012350699864327908, -0.01585116609930992, -0.0016148375580087304, 0.008097304031252861, -0.0028796284459531307, -0.018532654270529747, -0.01655125804245472, -0.007238699123263359, -0.025797773152589798, 0.017594793811440468, 0.004970001056790352, -0.005191256757825613, -0.015058607794344425, 0.01189497858285904, 0.020170608535408974, 0.008354885503649712, 0.0041840472258627415, 0.026431819424033165, 0.019325213506817818, 0.018704375252127647, 0.019364841282367706, 0.015692654997110367, 0.026577120646834373, -0.001819581724703312, -0.006640978157520294, -0.024635354056954384, 0.007172652520239353, -0.017462700605392456, 0.02766028419137001, -0.00806428026407957, 0.008288838900625706, -0.0047982800751924515, 0.0024701401125639677, -0.008612466976046562, 0.02482028305530548, 0.005957396700978279, -0.019325213506817818, 0.019021399319171906, -0.01734381727874279, 0.0009320815443061292, -0.022178422659635544, -0.0015463142190128565, 0.013262142427265644, -0.002924209926277399, -0.012991351075470448, -0.00376134947873652, -0.017885398119688034, -0.01945730671286583, 0.012192188762128353, -0.02104242332279682, 0.025388283655047417, -0.008737955242395401, -0.005736140534281731, -0.015256746672093868, -0.03365730866789818, -0.006135722156614065, -0.014913304708898067, 0.006039954721927643, -0.010164559818804264, -0.014768002554774284, -0.0023083260748535395, -0.011861955747008324, -0.0008074187790043652, -0.03725023940205574, 0.02240298129618168, -0.0018047213088721037, -0.012403537519276142, -0.02586381882429123, 0.018770422786474228, 0.01789860799908638, 0.0011624188628047705, 0.010798607021570206, 0.007014140952378511, 0.007344373501837254, 0.01565302535891533, -0.01405470073223114, -0.008645489811897278, -0.016432374715805054, -0.013493305072188377, -0.012813026085495949, 0.0013151514576748013, -0.005812094081193209, 0.0036523728631436825, -0.021729307249188423, -0.007060373667627573, -0.008070885203778744, -0.02853209897875786, 0.0012136049335822463, -0.011901583522558212, 0.03141172602772713, -0.006370187271386385, 0.01890251599252224, 0.011208095587790012, 0.0019318608101457357, -0.0028746749740093946, 0.015203909948468208, -0.017317399382591248, -0.020381957292556763, -0.003209860995411873, 0.01371125876903534, 0.011994048953056335, 0.014688747003674507, -0.019259165972471237, -0.008671908639371395, -0.0002709971449803561, -0.007251908537000418, 0.0032313261181116104, -0.028954796493053436, -0.006049861665815115, 0.005894652102142572, -0.018083538860082626, 0.02080465480685234, -0.01031646691262722, 0.007819908671081066, -0.0045043728314340115, 0.00877758301794529, -0.018083538860082626, 0.029720935970544815, -0.025216562673449516, -0.0005254826392047107, 0.005263907834887505, -0.002253837650641799, -0.021095259115099907, -0.04401340335607529, 0.003300674958154559, -0.008368094451725483, -0.0001945276599144563, -0.01810995675623417, -0.003635861212387681, -0.017423072829842567, -0.034080006182193756, -0.002014419063925743, -0.008209583349525928, -0.01890251599252224, -0.007331164088100195, -0.0363520085811615, 0.00632725702598691, 0.006426326930522919, -0.02945674955844879, 0.018374143168330193, -0.030804099515080452, -0.0055479081347584724, -0.013843351043760777, -0.007265117485076189, 0.024608934298157692, -0.004794977605342865, -0.007331164088100195, 0.00013993607717566192, -0.004481256473809481, -0.02513730712234974, -0.00592107092961669, 0.024661771953105927, -0.026128005236387253, 0.04100168123841286, 0.02548074908554554, 0.02637898176908493, 0.009464466944336891, 0.008612466976046562, 0.02080465480685234, -0.003867024090141058, -0.003645768156275153, 0.009662606753408909, -0.01766084134578705, -0.028849121183156967, 0.005964001175016165, -0.02800372615456581, 0.008150140754878521, 0.009405025281012058, -0.003645768156275153, 0.0023793261498212814, -0.010290048085153103, -0.007879350334405899, 0.007331164088100195, -0.03135889023542404, -0.024120191112160683, -0.009490885771811008, -0.002503163181245327, -0.027026237919926643, 0.013400839641690254, -0.022693585604429245, -0.03188726305961609, 0.008262420073151588, 0.011637397110462189, 0.019259165972471237, -8.998838893603534e-05, 0.027713121846318245, 0.009272932074964046, 0.0065353037789464, -0.001638779416680336, 0.005003024358302355, -0.0014084421563893557, -0.007938791997730732, -0.024899540469050407, -0.034053586423397064, 0.020725399255752563, -0.027079075574874878, 0.025150517001748085, 0.004002419300377369, 0.021095259115099907, -0.005554512608796358, 0.030302144587039948, -0.01180251408368349, -0.03360447287559509, 0.000715366390068084, -0.022376561537384987, 0.0016940933419391513, -0.03727665916085243, -0.014741584658622742, 0.005349768325686455, -0.016934329643845558, 0.02561284229159355, -0.01838735304772854, 0.007331164088100195, -0.002192744519561529, -0.020236654207110405, 0.005696512758731842, 0.00440530339255929, 0.050697311758995056, -0.024463633075356483, 0.030804099515080452, 0.006066373083740473, 0.004682698752731085, -0.02170288749039173, -0.03209860995411873, 0.005990419536828995, -0.022284097969532013, 0.034397028386592865, 0.026511074975132942, 0.014147165231406689, -0.00836148951202631, -0.021729307249188423, 0.0007124769035726786, -0.010686327703297138, -0.007938791997730732, 0.012852653861045837, 0.0017700468888506293, -0.008936095051467419, -0.03022288903594017, -0.03312893584370613, -0.008229397237300873, 0.02364465594291687, -0.0169607475399971, 0.007958605885505676, 0.01111563015729189, -0.03503107652068138, -0.021333027631044388, 0.037857867777347565, 0.012680932879447937, 0.014635909348726273, -0.01388297975063324, 0.008592653088271618, 0.0021993492264300585, 0.005471954587846994, -0.0003807994944509119, -0.001173976925201714, -0.0025295817758888006, 0.009457862004637718, -0.04126586765050888, 0.02616763301193714, 0.018572282046079636, 0.006667396519333124, -0.018757212907075882, -0.004302931018173695, -0.0007797617581672966, 0.021517958492040634, -0.030698424205183983, 0.0072254897095263, 0.033181775361299515, -0.004266605246812105, 0.012159164994955063, -0.026960190385580063, -0.02312949299812317, -0.015256746672093868, -0.016049304977059364, -0.011208095587790012, 0.04139796271920204, -0.008090699091553688, -0.012865862809121609, 0.01500577013939619, 0.00617865240201354, -0.0055148848332464695, -0.0008676862344145775, 0.0005304361693561077, 0.019708283245563507, -0.023103073239326477, -0.00769441993907094, 0.020646143704652786, 0.012007257901132107, 0.03471405431628227, -0.008024652488529682, 0.011472281068563461, 0.0059441872872412205, 0.018928933888673782, -0.007661396637558937, 0.03135889023542404, 0.017766514793038368, 0.012046885676681995, -0.03212502971291542, 0.015983259305357933, -0.010825024917721748, -0.010190978646278381, 0.02415981888771057, -0.022455818951129913, -0.029245400801301003, 0.015639817342162132, 0.005656884983181953, -0.012429955415427685, 0.002508116653189063, 0.0054059079848229885, -0.010673118755221367, 0.006776373367756605, -0.00806428026407957, -0.010745769366621971, -0.022416191175580025, 0.02298418991267681, 0.007324559614062309, -0.0004162995028309524, 0.023565400391817093, -0.010171164758503437, 0.019959259778261185, -0.004134512506425381, -0.010805211029946804, 0.0018047213088721037, -0.018598701804876328, -0.02644502744078636, -0.0070537687279284, 0.03397433087229729, -0.012344094924628735, 0.009523908607661724, -0.012007257901132107, 0.004273210186511278, -0.0007488024421036243, 0.004210466053336859, 0.014622700400650501, 0.014556653797626495, 0.011227909475564957, -0.014305677264928818, 0.02014419063925743, 0.017119258642196655, -0.015520933084189892, -0.031623076647520065, -0.01755516603589058, -0.010706141591072083, -0.03252130746841431, -0.01443777047097683, 0.011531722731888294, 0.019087444990873337, 0.013288560323417187, -0.015943631529808044, -0.020765027031302452, -0.01134018786251545, -0.05384112522006035, -0.031623076647520065, -0.008249211125075817, 0.024503260850906372, 0.03569154068827629, 0.0038306983187794685, -0.004421814810484648, 0.04134512320160866, 4.468460247153416e-05, 0.009464466944336891, -0.041979171335697174, 0.002352907322347164, 0.009609769098460674, -0.026154423132538795, -0.004524186719208956, 0.0032313261181116104, -0.010897676460444927, -0.013592374511063099, 0.01793823577463627, -0.01047497894614935, 0.019747911021113396, 0.012297863140702248, 0.02274642325937748, -0.01744949258863926, 0.005574326496571302, 0.01009190920740366, 0.006664094515144825, -0.00023467156279366463, 0.03748800605535507, -0.03991851955652237, 0.0066607920452952385, 0.020725399255752563, 0.0012507560895755887, -0.02721116878092289, 0.0014959537656977773, 0.01977432891726494, 0.008387908339500427, -0.010217397473752499, -0.012311072088778019, -0.007859536446630955, -0.000113723857793957, -0.013176281936466694, 0.010917490348219872, -0.016472002491354942, 0.005666791927069426, 0.023737121373414993, 0.035612285137176514, -0.048134706914424896, 0.000589465256780386, 0.02225767821073532, -0.008090699091553688, -0.007489675655961037, 0.010679722763597965, -0.02689414471387863, 0.016036096960306168, -0.007040559314191341, 0.005399303510785103, 0.0069480943493545055, -0.011399630457162857, -0.02360502816736698, 0.011729862540960312, 0.0026236982084810734, -0.0008396164630539715, -0.014569863677024841, -0.031094703823328018, 0.017357027158141136, 0.00792558304965496, 0.002096977084875107, 0.0013589072041213512, 0.007463257294148207, 0.009239908307790756, -0.026233678683638573, -0.04306233301758766, 0.012350699864327908, -0.015322793275117874, -0.022561492398381233, 0.015098235569894314, 0.010976932011544704, -0.0017106049926951528, 0.011558141559362411, 0.21303966641426086, 0.023288004100322723, 0.02810940146446228, 0.0366954505443573, 0.007938791997730732, 0.0055479081347584724, 0.004438326228410006, 0.0057328385300934315, 0.019127072766423225, 0.0041510239243507385, -0.0078000943176448345, 0.018162794411182404, -0.0002922558633144945, -0.006102698855102062, 0.017608003690838814, -0.0017700468888506293, -0.046998705714941025, 0.007443443406373262, -0.02509767934679985, 0.03508391231298447, 0.011320373974740505, -0.002894488861784339, 0.003493861062452197, -0.020685771480202675, 0.015203909948468208, -0.02710549347102642, -0.02219163253903389, -0.008354885503649712, 0.025560004636645317, 0.0003475698467809707, -0.005676698870956898, 0.007350977975875139, 0.00221586087718606, 0.0074038151651620865, -0.012416746467351913, -0.014635909348726273, -0.012126142159104347, 0.01783256232738495, -0.01727777160704136, 0.02731684222817421, 0.023657865822315216, 0.011300560086965561, -0.01291209552437067, -0.015256746672093868, 0.003204907523468137, 0.03230996057391167, 0.0014926514122635126, 0.00019566282571759075, 0.021491538733243942, -0.00992018822580576, -0.020540468394756317, 0.02599591203033924, 0.020923538133502007, 0.014966142363846302, -0.03225712105631828, 0.006043257191777229, 0.007093396503478289, 0.005812094081193209, -0.0052705127745866776, -0.01637953892350197, -0.012641305103898048, -0.003460837760940194, -0.008500187657773495, 0.002658372512087226, -0.009253118187189102, -0.006000326946377754, -0.012416746467351913, 0.005729536060243845, -0.012212002649903297, -0.006208373233675957, 0.005967303644865751, -1.2564319149532821e-05, -0.027396097779273987, 0.008269025012850761, -0.013255537487566471, -0.02223126031458378, 0.03233637660741806, -0.008368094451725483, 0.02842642366886139, 0.02052726037800312, 0.024067353457212448, 0.007634978275746107, -0.009992838837206364, -0.010270234197378159, -0.04102810099720955, -0.002658372512087226, 0.007912373170256615, 0.006353675853461027, 0.011102420277893543, 0.0162738636136055, 0.01000604871660471, 0.00711321085691452, -0.01900818943977356, -0.012278049252927303, 0.013453677296638489, 0.0009444652823731303, -0.02031591162085533, -0.0024866515304893255, -0.011954421177506447, -0.010461769066751003, -0.027924470603466034, 0.048795171082019806, 0.04676093906164169, -0.004352465737611055, 1.8704582544160075e-05, -0.000656750111375004, -0.004193954169750214, 0.009378606453537941, 0.004230279941111803, -0.02031591162085533, -0.004484558943659067, -0.008883257396519184, 0.02287851646542549, 0.0008222792530432343, -0.012839443981647491, 0.018374143168330193, 0.001270569977350533, -0.014847259037196636, -0.000983267673291266, -0.0020408376585692167, 0.022786051034927368, -0.013790514320135117, -0.008189769461750984, 0.029588842764496803, -0.028400005772709846, 0.015085025690495968, -0.00326269818469882, -0.014675538055598736, -0.007284931838512421, -0.0377257764339447, 0.02191423624753952, -0.01907423697412014, 0.007628373336046934, -0.014768002554774284, 0.016458794474601746, 0.01768725924193859, 0.02291814424097538, -0.007938791997730732, -0.02447684109210968, 0.0009824420558288693, -0.005425721872597933, 0.01567944511771202, 0.013176281936466694, -0.003074465785175562, 0.006343768443912268, -0.020038515329360962, 0.011452467180788517, 0.018162794411182404, -0.014847259037196636, -0.024978796020150185, -0.0278716329485178, 0.0023132795467972755, 0.0018080235458910465, -0.005769163835793734, 0.029192563146352768, -0.021095259115099907, -0.02001209743320942, -0.03487256541848183, 0.008962512947618961, 0.01894214376807213, -0.05096149817109108, -0.016762608662247658, 0.017436282709240913, -0.011861955747008324, -0.011967630125582218, -0.018255259841680527, -0.16707128286361694, 0.024741027504205704, -0.014741584658622742, 0.0011384770041331649, 0.004887442570179701, 0.023314423859119415, -0.011300560086965561, -0.005283721722662449, -0.010745769366621971, -0.004573721904307604, 0.02091033011674881, 0.023393679410219193, -0.04208484664559364, -0.015520933084189892, 0.018889306113123894, 0.006297536194324493, -0.02014419063925743, 0.010607072152197361, 0.013869769871234894, 0.005795582663267851, 0.04184707626700401, -0.013698048889636993, 0.004851117264479399, -0.012079909443855286, 0.008077490143477917, -0.01817600429058075, -0.016696561127901077, -0.007852931506931782, 0.012053490616381168, -0.012073304504156113, -0.009788095019757748, -0.002417302690446377, 0.026788469403982162, 0.02565247006714344, -0.005396001040935516, -0.0032329773530364037, -0.019021399319171906, -0.017462700605392456, -0.010851443745195866, 0.042771730571985245, 0.024529678747057915, 0.010190978646278381, 0.016115352511405945, 0.028294330462813377, -0.000327755871694535, 0.020646143704652786, -0.003682093694806099, -0.017264561727643013, 0.00029844773234799504, 0.00749628059566021, 0.03902028501033783, -0.06361601501703262, 0.009477675892412663, -0.00017461049719713628, 0.002460232935845852, 0.017581583932042122, -0.0067697688937187195, 0.016036096960306168, 0.02011777088046074, -0.03270623832941055, 0.0025394889526069164, -0.02513730712234974, -0.006089489441365004, -0.03447628393769264, 0.002224116586148739, -0.026616748422384262, 0.0005981338326819241, 0.008037862367928028, -0.023552190512418747, 0.022693585604429245, 0.0031933493446558714, -0.010157955810427666, 0.002729372587054968, -0.019047817215323448, 0.0037514425348490477, 0.00713962921872735, 0.016921119764447212, -0.0026005818508565426, 0.02219163253903389, 0.024503260850906372, -0.001026197918690741, 0.005769163835793734, -0.016141770407557487, 0.03648409992456436, -0.02482028305530548, 0.007304745726287365, 0.011346792802214622, 0.011234513483941555, -0.0009849187918007374, -0.012212002649903297, -0.01422642171382904, -0.01460949145257473, 0.015018980018794537, -0.0049501871690154076, 0.0017568375915288925, 0.027079075574874878, 0.020817864686250687, 0.0034641402307897806, -0.01772688701748848, 0.007370792329311371, -0.006310745608061552, -0.009840931743383408, -0.03175516799092293, 0.019549770280718803, 0.029166145250201225, 0.031200377270579338, -0.011861955747008324, 0.0075623271986842155, 0.0078066992573440075, -0.023208748549222946, -0.04168856516480446, 0.015428467653691769, 0.025150517001748085, 0.009372001513838768, -0.0019995584152638912, 0.04100168123841286, -0.023591818287968636, -0.011908188462257385, 0.004009024240076542, -0.025005213916301727, 0.057486895471811295, -0.020646143704652786, -0.012350699864327908, -0.021346237510442734, -0.01841377094388008, -0.005065768491476774, -0.10408931970596313, -0.028479261323809624, 0.007661396637558937, 0.008242606185376644, 0.024040935561060905, 0.024278702214360237, -0.01738344505429268, 0.0030249308329075575, -0.0112543273717165, 0.02810940146446228, 0.0006584012880921364, 0.014979351311922073, 0.002927512163296342, 0.002970442408695817, 0.03537451848387718, -0.0032940704841166735, 0.0053794896230101585, 0.004927070811390877, -0.021346237510442734, 0.02398809790611267, -0.007000931538641453, -0.014147165231406689, 0.012793212197721004, -0.04163572937250137, -0.028267912566661835, -0.0030761167872697115, -0.03812205418944359, -0.003016674891114235, 0.007469861768186092, 0.01738344505429268, 0.015203909948468208, 0.002560954075306654, 0.014332096092402935, -0.013348002918064594, -0.013037583790719509, 0.003280861070379615, -0.022521864622831345, -0.004147721920162439, 0.000495348940603435, -0.029958702623844147, 0.021372655406594276, 0.01896856166422367, 0.0022340237628668547, -0.024635354056954384, -0.010897676460444927, -0.016049304977059364, -0.012403537519276142, 0.02187460847198963, 0.0010905932867899537, -0.013896188698709011, -0.0162738636136055, -0.002706256229430437, -0.006294233724474907, -0.03056633099913597, -0.0037844658363610506, -0.011690234765410423, 0.0016544654499739408, 0.0051945592276751995, -0.015309584327042103, -0.024252284318208694, -0.025467539206147194, 0.0026682796888053417, -0.03814847394824028, 0.04063182324171066, 0.013103630393743515, 0.00766800157725811, -0.02178214304149151, -0.012588467448949814, -0.008229397237300873, -0.00855302531272173, 0.0021811865735799074, 0.004306233488023281, -0.019325213506817818, 0.006528698839247227, -0.028030144050717354, 0.020765027031302452, -0.006657489575445652, -0.031094703823328018, 0.03468763455748558, -0.017158886417746544, -0.005326651968061924, -0.030170051380991936, -0.004187349695712328, 0.00033745646942406893, 0.036061402410268784, 0.01921953819692135, -0.004170837812125683, 0.0029539307579398155, 0.01595683954656124, -0.02586381882429123, 0.006683908402919769, 0.02956242486834526, 0.017370235174894333, 0.010620281100273132, 0.01914028264582157, -0.010025862604379654, -0.016775816679000854, -0.013869769871234894, 0.022006701678037643, -0.006191861815750599, 0.0038736285641789436, 0.005214373115450144, -0.05854363739490509, 0.01521711889654398, -0.012370513752102852, 0.023420097306370735, 0.015243537724018097, 0.014649119228124619, 0.012733769603073597, -0.012344094924628735, -0.004114698618650436, 0.007430233992636204, -0.03508391231298447, 0.028373586013913155, -0.004217070527374744, -0.009530513547360897, -0.017013585194945335, -0.028637772426009178, 0.013750886544585228, 0.005353070795536041, -0.00046438962453976274, 0.016181398183107376, 0.020659353584051132, -0.01017776969820261, 0.0026336051523685455, 0.002899442333728075, -0.017224933952093124, 0.011822327971458435, -0.01894214376807213, -0.0017882096581161022, 0.0017617910634726286, -0.0010460118064656854, 0.023354051634669304, 0.0015611747512593865, -0.012112932279706001, 0.03223070502281189, -0.00696790823712945, -0.005828605964779854, -0.00024478492559865117, 0.025797773152589798, 0.01879684068262577, -0.0003325029683765024, -0.02028949186205864, -0.032389216125011444, 0.020817864686250687, -0.020448002964258194, -0.0007380698807537556, -0.01023060642182827, -0.005610652267932892, -0.016775816679000854, 0.0018129771342501044, 0.022865306586027145, 0.025599632412195206, -0.008037862367928028, -0.006010233890265226, -0.02208595722913742, 0.008632280863821507, -0.0167890265583992, 0.008975722827017307, -0.003728326177224517, 0.010356094688177109, -0.00230172136798501, 0.030592750757932663, 0.007350977975875139, 0.025705307722091675, -0.017475910484790802, 0.03859758749604225, 6.031905286363326e-05, -0.02541470341384411, -0.0006030873046256602, -0.0010105117689818144, 0.010778793133795261, 0.025256190448999405, -0.02050084061920643, 0.01556056085973978, 0.011617583222687244, 0.012489398010075092, -0.007119815330952406, 0.0020408376585692167, -0.006198466289788485, -0.014041490852832794, 0.006875443272292614, 0.0032643494196236134, -0.004828000906854868, -0.001364686293527484, 0.008202978409826756, -0.0007562327082268894, 0.019536562263965607, -0.014635909348726273, -0.012311072088778019, -0.003625954268500209, 0.00019937794422730803, 0.01956298016011715, 0.004573721904307604, 0.004834605380892754, -0.006271117366850376, 0.003682093694806099, 0.0021167912054806948, -0.0009774885838851333, 0.015600188635289669, -0.0028251400217413902, 0.025335446000099182, 0.0020920236129313707, 0.014028281904757023, -0.028690610080957413, -0.018321305513381958, -0.012813026085495949, 0.03291758894920349, -0.024873120710253716, -0.014583072625100613, -0.007542512845247984, 0.022376561537384987, 0.01111563015729189, 0.030592750757932663, 0.021716097369790077, 0.008988931775093079, -0.0008123722509481013, -0.004114698618650436, -0.015018980018794537, -0.007298140786588192, -0.013064002618193626, 0.027396097779273987, 0.022270888090133667, 0.011571351438760757, 0.018017491325736046, -0.015058607794344425, 0.027792377397418022, 0.009860745631158352, 0.020580096170306206, -0.017132468521595, 0.0025493958964943886, -0.012746979482471943, -0.00766800157725811, 0.0029258609283715487, 0.011076002381742, -0.015811538323760033, -0.014067909680306911, -0.025573214516043663, -0.010184373706579208, 0.011326978914439678, 0.0166173055768013, 0.07534587383270264, 0.03077767975628376, -0.011789304204285145, 0.005746047478169203, 0.0027987214270979166, 0.03812205418944359, -0.009570141322910786, 0.010640094988048077, -0.024899540469050407, -0.02742251753807068, -0.006079582497477531, -0.00012786194565705955, 0.0049006519839167595, -0.01099014189094305, -0.022442609071731567, 0.007516094483435154, -0.00326269818469882, -0.0014530235202983022, -0.008031257428228855, -0.002219163114205003, 0.008612466976046562, -0.02306344546377659, -0.011663815937936306, -0.0064758616499602795, -0.02257470227777958, -0.00483790785074234, 0.013922607526183128, 0.0045803263783454895, -0.033630888909101486, -0.03973358869552612, 0.0022010004613548517, 0.010541025549173355, -0.030170051380991936, -0.018955351784825325, 0.006994327064603567, 0.0020490933675318956, -0.0018971863901242614, -0.0009651048458181322, 0.009378606453537941, -0.018162794411182404, 0.002009465591982007, 0.01762121357023716, -0.0005692385020665824, -0.008757769130170345, 0.003936372697353363, -0.022759633138775826, 0.003356814617291093, 0.004428419284522533, 0.007819908671081066]" +43,"And in gaming, revenue grew slightly and was up 4% in constant currency, ahead of expectations, driven by better-than-expected console sales. Xbox hardware revenue grew 13% and 19% in constant currency. Xbox content and services revenue declined 3% and increased 1% in constant currency, driven by declines in first-party content as well as in third-party content where we had lower engagement hours and higher monetization, partially offset by growth in Xbox Game Pass subscriptions. Segment gross margin dollars declined 9% and 4% in constant currency, and gross margin percentage decreased roughly five points year over year driven by sales mix shift to lower margin businesses.","[0.013882124796509743, -0.020371630787849426, 0.0035156868398189545, -0.01902986317873001, -0.0015602875500917435, -0.015765758231282234, -0.014565909281373024, -0.023442212492227554, -0.0020561928395181894, -0.04337518662214279, 0.0414915531873703, 0.0433235801756382, 0.007173290941864252, 0.002656117547303438, -0.003051229054108262, 0.01444979477673769, 0.019932975992560387, 0.00849570520222187, 0.018217062577605247, -0.023803457617759705, -0.014578810892999172, 0.0021916597615927458, -0.022758428007364273, -0.0013659571995958686, -0.01634632982313633, 0.013585387729108334, 0.018694423139095306, -0.005554140079766512, 0.036279305815696716, -0.00414786534383893, -0.01481103990226984, -0.026809530332684517, -0.02714497223496437, 0.009224645793437958, -0.02198433130979538, 0.013456371612846851, -0.0039414395578205585, 0.013920829631388187, 0.026938546448946, 0.004763916600495577, 0.023326097056269646, 0.014294975437223911, -0.016436642035841942, 0.01630762591958046, 0.0005192895187065005, 0.032279811799526215, -0.014346581883728504, 0.0017320401966571808, -0.016294723376631737, 0.008927908726036549, -0.0067346366122365, 0.03251203894615173, -0.022848738357424736, -0.014165959320962429, 0.010701879858970642, 0.012927405536174774, -0.010953460820019245, 0.0378274992108345, -0.0032528166193515062, -0.0033898961264640093, -0.019404010847210884, 0.02262941189110279, -0.025042010471224785, 0.007173290941864252, -0.04234306141734123, 0.01281129103153944, -0.007824822328984737, -0.005608971696346998, 0.015365809202194214, 0.0052961078472435474, 0.030757421627640724, 0.03436987102031708, 0.02034582756459713, 0.014604614116251469, 0.007721609435975552, -0.01579156145453453, -0.004412347916513681, -0.016578558832406998, 0.013778911903500557, 0.0018368656747043133, 0.014978760853409767, -0.008263476192951202, -0.00024271139409393072, -0.017971932888031006, -0.0010740584693849087, 0.011385664343833923, -0.024835584685206413, 0.0030528416391462088, -0.011256648227572441, -0.00907627772539854, 0.023558326065540314, 0.0038737060967832804, 0.014785236679017544, 0.02809969149529934, 0.006073429249227047, 0.006166966166347265, -0.02701595611870289, 0.029828505590558052, -0.014423991553485394, -0.025841910392045975, 0.006370166316628456, -0.0099148815497756, -0.029028605669736862, -0.010237421840429306, -0.03086063452064991, 0.009953586384654045, 0.010463199578225613, 0.0018675070023164153, 0.03057679906487465, -0.0028947971295565367, 0.005283206235617399, -0.002344866283237934, 0.021016711369156837, -0.003236689604818821, -0.0007325691403821111, 0.007218446582555771, -0.011559835635125637, 0.007631298154592514, 0.008179616183042526, -0.002798035042360425, 0.004405897110700607, 0.010708330199122429, 0.016810787841677666, -0.009424620307981968, 0.006015372462570667, 0.003699534572660923, -0.008198968134820461, -0.007282954640686512, 0.015120678581297398, -0.0007466802489943802, 0.009024671278893948, -0.008469901978969574, 0.011663048528134823, 0.010901854373514652, 0.0011498553212732077, 0.027686839923262596, -0.012004941701889038, 0.023958276957273483, -0.030680011957883835, -0.03129928931593895, 0.005638000555336475, 0.008921458385884762, 0.00943107157945633, 0.0029512415640056133, 0.012108154594898224, 0.014991662465035915, 0.008173164911568165, -0.011450172401964664, 0.011546934023499489, 0.00584765151143074, 0.007179741747677326, 0.0004914704477414489, 0.018939552828669548, 0.0013441857881844044, 0.02581610716879368, -0.02594512328505516, 0.006186318583786488, 0.021455366164445877, -0.002828676486387849, 0.004157541319727898, -0.01687529683113098, 0.015533529222011566, -0.012843545526266098, -0.0006204864475876093, -0.010153560899198055, 0.030370373278856277, 0.03785330057144165, 0.01404984574764967, -0.023093868046998978, -0.011817867867648602, 0.007431323174387217, -0.0029464035760611296, -0.022616509348154068, 0.01415305770933628, -0.01226942427456379, 0.03522137552499771, 0.010069700889289379, -0.007882879115641117, -0.033157117664813995, -0.021932724863290787, 0.009863275103271008, -0.018126752227544785, 0.015288399532437325, 0.01226942427456379, 0.00567670539021492, -0.016565658152103424, 0.03372478857636452, -0.010443847626447678, 0.0014635255793109536, -0.0009393979562446475, 0.0037995220627635717, 0.020410334691405296, 0.004041426815092564, -0.023558326065540314, -0.6461122632026672, 0.00556704169139266, -0.009605242870748043, 0.007050726097077131, 0.012082351371645927, 0.0073732659220695496, 0.02099090814590454, 0.005541238468140364, -0.03202177956700325, 0.018320275470614433, 0.012940307147800922, 0.012101703323423862, 0.005276755429804325, -0.018242865800857544, 0.011637245304882526, -0.022474592551589012, 0.02274552546441555, -0.002749653998762369, -0.034550491720438004, 0.009831021539866924, 0.0037801696453243494, 0.00598634360358119, -0.0048026214353740215, -0.0006108102388679981, -0.013727305456995964, 0.005218698177486658, -0.007282954640686512, 0.003480207407847047, 0.0019433038542047143, 0.010559962131083012, -0.009302055463194847, 0.0075409868732094765, 0.0026980475522577763, 0.009334309957921505, 0.041156113147735596, -0.020513547584414482, -0.013482174836099148, 0.011482425965368748, 0.010927657596766949, 0.06027628853917122, -0.036279305815696716, 0.004731662571430206, 0.006244375836104155, -0.017997736111283302, -0.012159760110080242, 0.022332673892378807, 0.02114572748541832, 0.008398943580687046, 0.001461912877857685, -0.01914597861468792, -0.001720751286484301, -0.009676202200353146, 0.016681771725416183, -0.005050977226346731, 0.012404890730977058, 0.0038479031063616276, -0.004689732566475868, -0.021648889407515526, 0.0056444513611495495, -0.014127255417406559, -0.027557823807001114, -0.010418044403195381, -0.020694170147180557, -0.019971681758761406, -0.034911736845970154, 0.03034457005560398, -0.011959785595536232, 0.005576717667281628, 0.023364802822470665, 0.02175210230052471, -0.018088046461343765, 0.01779131032526493, -0.007805469445884228, -0.011734007857739925, -0.0035414898302406073, 0.013817616738379002, 0.0243840292096138, -0.020410334691405296, -0.024887191131711006, 0.005886356346309185, 0.011559835635125637, -0.027170775458216667, -0.008224771358072758, 0.006476604379713535, 0.00698621803894639, -0.004460729192942381, 0.006741087418049574, 0.0009635884780436754, 0.00033624802017584443, 0.010592215694487095, 0.010501904413104057, 0.007779666222631931, -0.0061637405306100845, -0.008334435522556305, 0.014565909281373024, 0.022719722241163254, -0.024525946006178856, 0.006583042908459902, 0.002122313715517521, 0.0051445141434669495, -0.02198433130979538, -0.0037737188395112753, 0.02722238190472126, 0.022964851930737495, 0.03873061016201973, 0.027635233476758003, 0.009534284472465515, -0.006512084044516087, 0.039556313306093216, -0.0447685606777668, 0.009411719627678394, -0.012359735555946827, 0.0040059476159513, -0.0015240018256008625, -0.025351649150252342, -0.028641557320952415, 0.02926083467900753, -0.013366060331463814, -0.02062966302037239, -0.009753611870110035, 0.012462948448956013, 0.010766387917101383, 0.005392869934439659, -0.025996729731559753, -0.008457000367343426, 0.023558326065540314, 0.01918468251824379, 0.008508606813848019, 0.0046671549789607525, -0.01397243607789278, 0.0066636777482926846, -0.006247601006180048, 0.029209228232502937, -0.011856572702527046, 0.004470405168831348, 0.0019142753444612026, -0.0017013988690450788, -0.020320024341344833, 0.0006878167041577399, -0.039556313306093216, -0.019016962498426437, -0.0028125494718551636, -0.01383051835000515, 0.0017013988690450788, -0.008392492309212685, -0.019739452749490738, -0.019520124420523643, 0.004673605784773827, -0.0035253630485385656, -0.010321281850337982, -0.008347337134182453, -0.0121920146048069, 0.0017804211238399148, 0.0010345472255721688, 0.0067346366122365, -0.00171107507776469, 0.004570392891764641, -0.01866861991584301, -0.023197080940008163, -0.019520124420523643, 0.010185815393924713, 0.013843419961631298, 0.005867003928869963, 0.01083089504390955, -0.02581610716879368, -0.007566790096461773, -0.048742253333330154, 0.04009818285703659, -0.005189669784158468, 0.0009934233967214823, 0.02015230432152748, -0.005309009458869696, 0.006908808369189501, 0.0018094497499987483, 0.010301929898560047, -0.001290966640226543, -0.008476353250443935, -0.023609932512044907, 0.012682275846600533, -0.021610183641314507, 0.015056170523166656, 0.019442714750766754, -0.010559962131083012, -0.007392618339508772, 0.009592341259121895, -0.003418924752622843, 0.012514554895460606, 0.0443815141916275, -0.0075990441255271435, 0.003818874480202794, 0.007018472068011761, 0.03354416787624359, -0.03354416787624359, -0.01047610118985176, -0.018049342557787895, 0.00115388713311404, -0.017172032967209816, -0.002027164213359356, -0.0008934359648264945, -0.011005067266523838, 0.010676076635718346, 0.011514680460095406, -0.018758930265903473, 0.014991662465035915, 0.002968981396406889, -0.02266811579465866, -0.004783269017934799, -0.014914252795279026, 0.009643947705626488, 0.012146858498454094, 0.028357721865177155, -0.0374920591711998, -0.012346833944320679, -0.007966740056872368, -0.014501401223242283, 0.009521382860839367, 0.017301049083471298, 0.012933856807649136, -0.006960414815694094, 0.010798641480505466, -0.010359986685216427, -0.017339754849672318, 0.00509613286703825, 0.0089150071144104, -0.01687529683113098, 0.007108782883733511, -0.012959660030901432, 0.031841155141592026, 0.029467260465025902, -0.02701595611870289, -0.012404890730977058, 0.03664055094122887, 0.008050600066781044, -0.01153403241187334, 0.008721483871340752, 0.020332925021648407, 0.030912240967154503, -0.017597785219550133, 0.04257528856396675, -0.008160263299942017, 0.004144639708101749, 0.016436642035841942, 0.0045349132269620895, -0.01770099811255932, 0.007347462698817253, -0.01126954983919859, 0.03989175707101822, 0.0054702796041965485, -0.013572486117482185, -0.0031979847699403763, -0.010160012170672417, 0.020087795332074165, -0.012521005235612392, -0.032202400267124176, 0.011327607557177544, -0.0028899589087814093, -0.01077283825725317, 0.001111150486394763, 0.014991662465035915, 0.02701595611870289, -0.0003616480389609933, 0.0010240647243335843, 0.024409832432866096, -0.008650524541735649, -0.016810787841677666, 0.023635735735297203, -0.008818245492875576, -0.003689858363941312, -0.0012409728951752186, 0.01217266172170639, 0.0034156993497163057, -0.009656849317252636, -0.0035027852281928062, 0.0038317760918289423, -0.024616258218884468, 0.013546682894229889, 0.026551498100161552, -0.029880112037062645, -0.029080212116241455, 0.03622769936919212, 0.018410587683320045, -0.04992920160293579, 0.0017401037039235234, 0.019920075312256813, 0.0009055312257260084, 0.0005003403057344258, -0.0019497546600177884, -0.026474088430404663, 0.004731662571430206, 0.024293716996908188, -0.017765507102012634, 0.0015006177127361298, -0.007921583950519562, -0.014694925397634506, 0.025312945246696472, 0.016720477491617203, 0.02154567651450634, -0.017365558072924614, -0.01718493551015854, -0.024654962122440338, 0.019687846302986145, 0.005741212982684374, -0.03524717688560486, 0.015739955008029938, 0.03145410865545273, -0.0023013234604150057, -0.038756415247917175, -0.019932975992560387, -0.0019465292571112514, -0.013417666777968407, 0.006286305841058493, -0.01083089504390955, -0.030550995841622353, 0.00342215015552938, 0.014398188330233097, 0.0007083786185830832, -0.006089556496590376, -0.016436642035841942, 0.0036059978883713484, 0.01659146137535572, -0.03026716038584709, 0.010327733121812344, -0.032718464732170105, 0.005312235094606876, 0.05810881778597832, 0.023803457617759705, -0.010366437956690788, 0.01710752584040165, 0.013572486117482185, 0.0030334892217069864, -0.00020622405281756073, -0.013920829631388187, 0.006895906757563353, 0.001111150486394763, -0.01678498461842537, 0.000995842507109046, 0.005173542536795139, -0.011017968878149986, 0.0036866329610347748, -0.00937301479279995, -0.006031499244272709, -0.02158438041806221, 0.008882753551006317, 0.01691400073468685, 0.017933227121829987, 0.022513296455144882, 0.008347337134182453, 0.03498914837837219, 0.012179112993180752, 0.02246169000864029, 0.014333680272102356, 0.021442463621497154, -0.017804211005568504, 0.003114124294370413, -0.023119671270251274, -0.008366689085960388, -0.0067152841947972775, 0.03006073459982872, -0.011572737246751785, 0.011140533722937107, 0.006212121807038784, -0.016410838812589645, 0.011875925585627556, 0.013636994175612926, 0.012991913594305515, -0.01598508656024933, 0.011985588818788528, -0.008379590697586536, 0.008082853630185127, -0.018887946382164955, -0.016681771725416183, -0.0034060231409966946, -0.011108280159533024, -0.008379590697586536, -0.0012014617677778006, -0.02222946099936962, -0.03318292275071144, 0.0030334892217069864, -0.026603104546666145, 0.01205009687691927, -0.009998742491006851, -0.02657730132341385, -0.016965607181191444, -0.024255013093352318, -0.013495076447725296, -0.021816609427332878, 0.01950722374022007, -0.0027028857730329037, -0.019442714750766754, -0.0010264837183058262, -0.014772335067391396, -9.41413818509318e-05, -0.050187233835458755, 0.0205522533506155, -0.006637874525040388, -0.013430568389594555, -0.025003306567668915, -0.005025174468755722, 0.01718493551015854, -0.006792693864554167, 0.0026754699647426605, 0.006160515360534191, 0.006883005145937204, 0.0006096007418818772, -0.014927154406905174, -0.007270053029060364, -0.027325594797730446, -0.02758362703025341, -0.017481671646237373, -0.0006995087605901062, 0.010463199578225613, 0.006044400855898857, -0.03251203894615173, -0.010308380238711834, 0.0005249339737929404, -0.024113096296787262, 0.005841200705617666, -0.0046090977266430855, 0.030189750716090202, 0.0029705939814448357, 0.00030600989703089, 0.004389770328998566, 0.01939110830426216, 0.010005192831158638, -0.007979641668498516, -0.017172032967209816, -0.030112341046333313, -0.01253390684723854, -0.0001623787684366107, 0.0007277310360223055, -0.0041091605089604855, -0.0038511285092681646, 0.008282829076051712, -0.012708079069852829, -0.009031121619045734, 0.006444350350648165, -0.030757421627640724, -0.010314831510186195, -0.005092907696962357, -0.009605242870748043, 0.024164702743291855, -0.018694423139095306, 0.0053960951045155525, 0.007108782883733511, 0.014785236679017544, -0.031634729355573654, 0.02910601533949375, 0.008837597444653511, -0.016488248482346535, -0.002396472729742527, -0.015920577570796013, -0.01866861991584301, -0.04900028556585312, -0.0015699637588113546, -0.002225526375696063, 0.012037195265293121, -0.02318418025970459, -0.015430317260324955, -0.014785236679017544, -0.030292963609099388, 0.012572611682116985, -0.01942981407046318, -0.0011925918515771627, -0.01043094601482153, -0.03666635602712631, -0.00028081145137548447, 0.012308129109442234, -0.027532020583748817, 0.02095220237970352, -0.027041759341955185, -0.006370166316628456, -0.0024916219990700483, 0.0044349259696900845, 0.013998239301145077, 0.0006878167041577399, -0.01914597861468792, -0.003041552845388651, -0.008586016483604908, -0.023003557696938515, -0.0090117696672678, 0.023403506726026535, -0.027325594797730446, 0.04528462514281273, 0.012959660030901432, 0.04360741749405861, -0.006444350350648165, 0.004070455674082041, 0.007547437679022551, -0.0013232206692919135, -0.006992668844759464, 0.009398818016052246, -0.0011208266951143742, -0.04569747671484947, 0.009437521919608116, -0.03504075109958649, 0.0008079628460109234, 0.020939301699399948, -0.004583294503390789, 0.006483055185526609, -0.0009031121735461056, 0.006921709980815649, 0.01404984574764967, -0.02918342500925064, -0.016539854928851128, 0.0012127506779506803, -0.009721357375383377, -0.0178300142288208, 0.004144639708101749, -0.031557321548461914, -0.0378274992108345, 0.01361119095236063, 0.010160012170672417, 0.02562258206307888, -0.0070636277087032795, 0.017597785219550133, -0.0028173874597996473, 0.005054202862083912, -0.015881873667240143, 0.010282577015459538, 0.0021626311354339123, 0.0036866329610347748, -0.026293465867638588, -0.019610436633229256, -0.007179741747677326, -0.025080716237425804, 0.04863904044032097, -0.008882753551006317, 0.009166589006781578, 0.0021642439533025026, 0.01762358844280243, -0.02594512328505516, -0.024319520220160484, 0.012527456507086754, -0.04520721733570099, -0.0002660955651663244, -0.02095220237970352, 0.006025048438459635, -0.00381242367438972, -0.012101703323423862, 0.024680765345692635, -0.013817616738379002, 0.013327355496585369, 0.0028431906830519438, -0.03006073459982872, 0.013585387729108334, 0.010456749238073826, 0.034318264573812485, -0.024242110550403595, 0.012140408158302307, 0.0001369787350995466, 0.01043094601482153, -0.02222946099936962, -0.026938546448946, 0.0017030115704983473, -0.017778407782316208, 0.03070581518113613, 0.03746625408530235, -0.005508984439074993, -0.001510293921455741, -0.015559332445263863, -0.00442847516387701, -0.002594834892079234, 0.004144639708101749, 0.013649895787239075, 0.014849744737148285, 0.003127025905996561, -0.0010651885531842709, -0.01304997131228447, -0.004302684683352709, 0.013224142603576183, -0.017765507102012634, 0.002469044178724289, -0.0022093993611633778, -0.025558074936270714, -0.011933982372283936, 0.034602098166942596, 0.025570977479219437, -0.0021932723466306925, -0.019378207623958588, 0.008340885862708092, -0.009985840879380703, 0.009972939267754555, -0.01205009687691927, -0.01233393233269453, -0.005467053968459368, 0.022810034453868866, -0.03762107342481613, 0.024125996977090836, 0.02274552546441555, 0.009418169967830181, -0.016127003356814384, -0.014875547960400581, 0.0017917100340127945, 0.020281318575143814, -0.021416660398244858, -0.0030189750250428915, 0.034240853041410446, 0.016526952385902405, 0.00851505808532238, -0.00949557963758707, -0.022152051329612732, -0.019932975992560387, -0.01666887104511261, -0.015894774347543716, 0.02339060604572296, 0.0027012729551643133, -0.01750747486948967, 0.014475597999989986, 0.005825073458254337, -0.024642061442136765, 0.008121558465063572, 0.006437899544835091, 0.021881118416786194, -0.020939301699399948, -0.0057379878126084805, 0.010592215694487095, 0.018242865800857544, 0.02490009367465973, -0.004238176625221968, 0.005192894954234362, -0.0008402168750762939, 0.005657352972775698, -0.009798767045140266, 0.03300229832530022, 0.015688348561525345, 0.0009797154925763607, -0.014165959320962429, 0.025648385286331177, -0.01557223405689001, -0.02781585603952408, 0.04056263715028763, -0.023055164143443108, -0.017520375549793243, 0.006786243058741093, 0.008418295532464981, -0.011901728808879852, 0.009327858686447144, 0.0004029734991490841, -0.010876051150262356, -0.00484777707606554, -0.013662797398865223, -0.009985840879380703, -0.01914597861468792, 0.030292963609099388, 0.003428600961342454, -0.01361119095236063, 0.005899257957935333, 0.0010240647243335843, 0.0191072728484869, -0.016759181395173073, -0.006054077297449112, 0.00787642877548933, -0.010256773792207241, -0.026203155517578125, 0.0004688926273956895, 0.017778407782316208, -0.03320872411131859, 0.01882343925535679, -0.008702130988240242, -0.0019110499415546656, -0.011495327576994896, 0.013882124796509743, 0.004399446304887533, 0.004280106630176306, 0.007760313805192709, -0.00609600730240345, 0.02099090814590454, 0.005170317366719246, -0.012043646536767483, -0.014553007669746876, -0.01288870070129633, -0.013417666777968407, -0.03189276158809662, -0.0023916345089673996, 0.011159886606037617, 0.02577740140259266, 0.0004987276042811573, -0.01650114916265011, -0.008553762920200825, 0.00036265599192120135, -0.05692186951637268, -0.018849240615963936, 0.002019100822508335, 0.03153151646256447, 0.020771579816937447, 0.00929560512304306, -0.01603669300675392, 0.041517358273267746, -0.004370417911559343, 0.017378458753228188, -0.03145410865545273, 0.007431323174387217, 0.015069072134792805, -0.017842916771769524, 0.001141791814006865, -0.0014151445357128978, 0.005754114594310522, -0.01035353634506464, 0.014398188330233097, -0.001385309617035091, 0.011933982372283936, 0.026809530332684517, 0.028280312195420265, -0.012585513293743134, -0.01762358844280243, 0.018771832808852196, 4.51304113084916e-05, -0.0016038304893299937, 0.025609681382775307, -0.026654710993170738, 0.0007575659547001123, 0.02998332493007183, 0.018604110926389694, -0.01517228502780199, 0.004373643547296524, 0.029235031455755234, 0.009760062210261822, -0.01375310868024826, -0.01261131651699543, -0.008360238745808601, -0.0017965481383726, -0.010998615995049477, 0.033079709857702255, 0.01842348836362362, 0.00261902529746294, 0.036201898008584976, 0.04817458614706993, -0.0396595261991024, 0.0009635884780436754, 0.032589446753263474, -0.026409581303596497, -0.008844048716127872, 0.00707652885466814, -0.013469273224473, 0.0213005468249321, -0.01255325973033905, 0.022474592551589012, 0.017455868422985077, -0.024758175015449524, -0.01277258712798357, 0.0229390487074852, -0.0031592799350619316, 0.012727431021630764, -0.019997484982013702, -0.03406023234128952, 0.026603104546666145, 0.010018094442784786, 0.0008172359084710479, 0.008392492309212685, 0.0015119066229090095, -0.0032624928280711174, -0.0360470786690712, -0.040227197110652924, -0.001107925083488226, 0.0029060859233140945, -0.02889958955347538, 0.0014393350575119257, 0.017365558072924614, -0.00947622675448656, 0.024912994354963303, 0.2038453221321106, 0.013340257108211517, 0.00729585625231266, 0.018655717372894287, 0.015959283336997032, -0.0004370418027974665, 0.001553030451759696, 0.0010635758517310023, -0.008824695833027363, 0.01155338529497385, -0.018720226362347603, 0.026125745847821236, 0.0041091605089604855, -0.009908431209623814, 0.018139652907848358, -0.001790097332559526, -0.029596276581287384, 0.00851505808532238, -0.024074390530586243, 0.027248185127973557, 0.00871503259986639, 0.006318559870123863, -0.008927908726036549, -0.03289908543229103, 0.021494070068001747, -0.014694925397634506, -0.015623840503394604, -0.008405393920838833, 0.01099216565489769, 0.005105809308588505, 0.001498198602348566, 0.01071478147059679, -0.007044275291264057, 0.0014119191328063607, -0.011024419218301773, -0.015417415648698807, -0.024435635656118393, 0.007644199766218662, -0.014359483495354652, 0.017817113548517227, 0.04128512740135193, 0.016488248482346535, -0.003754366422072053, -0.01583026722073555, 0.010347085073590279, 0.013082224875688553, -0.006066978443413973, -0.002036840422078967, 0.0165527556091547, -0.021171530708670616, -0.015314202755689621, 0.017533278092741966, 0.026370875537395477, 0.023958276957273483, -0.03057679906487465, 0.015546430833637714, 0.006870103534311056, -0.0038930585142225027, -0.0018884721212089062, -0.0010909917764365673, 0.0067217350006103516, 0.006579817272722721, -0.017339754849672318, 0.01794612966477871, -0.01375310868024826, 0.004686507396399975, -0.003380219917744398, 0.0018562180921435356, -0.003822099883109331, -0.01926209218800068, -0.004705859813839197, -0.001589316176250577, -0.02910601533949375, 0.001129696611315012, -0.020100697875022888, -0.016810787841677666, 0.043994463980197906, -0.014217565767467022, 0.04500079154968262, -0.005092907696962357, 0.003815649077296257, -0.0004967116983607411, 0.003099610097706318, -0.019287895411252975, -0.035272981971502304, 0.0018900848226621747, 0.007773215416818857, 0.00531546026468277, 0.0030367146246135235, 0.012308129109442234, 0.006915259175002575, 0.0008644073968753219, -0.012669374234974384, -0.02446143887937069, 0.0004898577462881804, 0.010779288597404957, 0.0013707953039556742, 0.005663803778588772, -0.021158628165721893, -0.009566538035869598, -0.0071410369127988815, 0.04471695423126221, 0.025570977479219437, -0.016526952385902405, -0.012624218128621578, -0.00200297380797565, -0.0036801821552217007, 0.01838478446006775, 0.00821186974644661, -0.01946851797401905, -0.00923109706491232, -0.004589745309203863, 0.02333899959921837, -0.004034976474940777, 0.015494824387133121, 0.012062998488545418, 0.008547311648726463, -0.013882124796509743, 0.0007486961549147964, 0.017120426520705223, 0.007998993620276451, -0.019004059955477715, 0.008302181027829647, 0.015533529222011566, -0.010005192831158638, -0.005789594259113073, -0.0038801569025963545, -0.013598289340734482, -0.014346581883728504, -0.023726047948002815, 0.01850089803338051, -0.020294221118092537, 0.005550914444029331, -0.030809028074145317, 0.017442967742681503, 0.002731914399191737, 0.03171214088797569, -0.008727934211492538, -0.02086189202964306, 0.016475345939397812, -0.004163992125540972, 0.02985430881381035, 0.022448789328336716, -0.009147236123681068, 0.022397182881832123, -0.022319773212075233, 0.010179364122450352, 0.028951195999979973, -0.0014780398923903704, -0.024009883403778076, -0.04580068960785866, 0.011372762732207775, -0.007070078048855066, 0.006902357563376427, 0.015352907590568066, -0.04303974658250809, -0.02905440889298916, -0.022048838436603546, 0.013559584505856037, 0.02242298610508442, -0.04288492724299431, -0.01077283825725317, 0.004883256740868092, -0.030396176502108574, -0.0025254886131733656, -0.012275874614715576, -0.16111521422863007, 0.01942981407046318, -0.010559962131083012, -0.017481671646237373, 0.022281067445874214, 0.00130951264873147, 0.005141288507729769, 0.006683030165731907, -0.008547311648726463, -0.006566915661096573, 0.010172913782298565, 0.025648385286331177, -0.046471573412418365, -0.017455868422985077, 0.018165456131100655, 0.01695270650088787, -0.006941062398254871, 0.0026980475522577763, 0.004157541319727898, 0.015494824387133121, 0.04918090999126434, -0.012185563333332539, 0.004096258897334337, -0.006350813899189234, 0.0036608297377824783, -0.006966865621507168, -0.023080967366695404, 0.025312945246696472, 0.00851505808532238, -0.005989569239318371, -0.004757465794682503, -0.01723654195666313, 0.016526952385902405, 0.006079880055040121, -0.01703011617064476, 0.0005188863142393529, -0.009753611870110035, -0.008179616183042526, -0.004415573552250862, 0.03225400671362877, 0.026603104546666145, -0.0032383021898567677, -0.0013482174836099148, 0.02091349847614765, 0.007773215416818857, 0.03302810341119766, -0.0028190002776682377, -0.007431323174387217, 0.01846219412982464, 0.00801834650337696, 0.027532020583748817, -0.0618760883808136, 0.027970675379037857, 0.01411435380578041, 0.019674943760037422, 0.004047877620905638, 0.0012490364024415612, 0.016243116930127144, 0.009114982560276985, -0.004186570178717375, 0.008908556774258614, -0.02969948947429657, -0.005654127337038517, -0.028873786330223083, 0.012766135856509209, -0.019133076071739197, -0.011198591440916061, -0.019636239856481552, -0.03705340251326561, 0.012398440390825272, 0.004670380149036646, -0.0019965230021625757, 0.006857201922684908, -0.014565909281373024, 0.006760439835488796, 0.0044349259696900845, 0.013443470001220703, -0.004244627431035042, 0.019894272089004517, 0.025403255596756935, -0.015546430833637714, -0.01590767689049244, -0.027170775458216667, 0.01807514578104019, -0.01706882007420063, 0.01071478147059679, 0.024048587307333946, 0.02838352508842945, -0.0013022555503994226, 0.003705985378473997, 0.010237421840429306, -0.015546430833637714, 0.004954215604811907, -0.00027315111947245896, -0.00955363642424345, 0.012146858498454094, 0.010179364122450352, -0.006363715510815382, -0.017210738733410835, 0.007779666222631931, -0.01175335980951786, -0.01650114916265011, -0.019597534090280533, -0.0019965230021625757, 0.03509235754609108, 0.026125745847821236, -0.010540609247982502, 0.009811668656766415, 0.019520124420523643, -0.026835333555936813, -0.032589446753263474, 0.012766135856509209, 0.011953335255384445, 0.027970675379037857, -0.004734888207167387, 0.024951700121164322, -0.013301552273333073, -0.010030996054410934, 0.003967242781072855, -0.004070455674082041, 0.05707668885588646, -0.021997231990098953, -0.017533278092741966, -0.009656849317252636, -0.0008377978228963912, -0.021674692630767822, -0.10527707636356354, -0.0353245884180069, -0.019520124420523643, 0.00336731830611825, 0.03929828107357025, 0.028048085048794746, -0.019404010847210884, 0.017778407782316208, -0.009669750928878784, 0.03338934853672981, 0.004180119372904301, -0.012766135856509209, -0.021442463621497154, 0.0019287896575406194, 0.03171214088797569, -0.02053935080766678, 0.0019674943760037422, 0.01397243607789278, -0.010005192831158638, 0.03369898721575737, 0.006008921656757593, -0.0003928941150661558, 0.007844174280762672, -0.035995472222566605, -0.050548478960990906, -0.009637497365474701, -0.03772428631782532, -0.008140911348164082, 0.010256773792207241, 0.02430661953985691, 0.03488593548536301, 0.007437773980200291, 0.008340885862708092, -0.0323830209672451, -0.0263837780803442, -0.02122313715517521, -0.013198339380323887, -0.00726360222324729, -0.009940684773027897, -0.019171781837940216, 0.014398188330233097, 0.008037698455154896, 0.003115737112239003, -0.022835837677121162, 0.00815381295979023, -0.01895245350897312, -0.010205167345702648, 0.024551749229431152, 0.004873580299317837, -0.017197836190462112, -0.023790555074810982, -0.01304997131228447, -0.01754617877304554, -0.007328110281378031, -0.011088927276432514, -0.001844929181970656, 0.010753486305475235, -0.004515560809522867, -0.0050864568911492825, -0.02954467013478279, -0.03553101420402527, 0.00010734536772361025, -0.019016962498426437, 0.0389370359480381, 0.015288399532437325, 0.02074577659368515, -0.02090059593319893, -0.004683281760662794, -0.013495076447725296, -0.024242110550403595, -0.012495202012360096, 0.0287447702139616, -0.02202303521335125, 0.004096258897334337, -0.017133329063653946, 0.014140156097710133, -0.010908304713666439, -0.0320475809276104, 0.045387838035821915, -0.020410334691405296, -0.01065027341246605, -0.029596276581287384, -0.0026141873095184565, -0.024358225986361504, 0.04017559066414833, 0.022113347426056862, 0.000217714550672099, 0.009237547405064106, 0.005841200705617666, -0.01566254533827305, 0.001982008805498481, 0.02091349847614765, 0.017959030345082283, -0.010618018917739391, 0.00899241678416729, -0.01739136129617691, -0.019274994730949402, -0.018088046461343765, 0.008818245492875576, -0.00531546026468277, -0.005918610375374556, -0.0020513548515737057, -0.04897448420524597, 0.01682369038462639, 0.00520579656586051, 0.027454610913991928, 0.01979105919599533, 0.004638126119971275, 0.002557742642238736, -0.011108280159533024, -3.273277616244741e-05, -0.009611694142222404, -0.03942729905247688, 0.03857579082250595, 0.0017836465267464519, -0.029725292697548866, -0.020565154030919075, -0.03026716038584709, 0.02830611541867256, 0.012217817828059196, -0.008347337134182453, 0.0003136702289339155, 0.0044349259696900845, 0.0037995220627635717, -0.012662922963500023, -0.001373214297927916, -0.011327607557177544, 0.01404984574764967, -0.015585135668516159, 0.0143723851069808, -0.0051445141434669495, -0.020449040457606316, 0.010469650849699974, 0.0014361096546053886, -0.011217943392693996, 0.03844677656888962, 0.0008523121359758079, -0.020526450127363205, -0.007702257018536329, 0.021803708747029305, 0.017533278092741966, 0.00331248645670712, -0.02466786466538906, -0.019055666401982307, 0.01567544788122177, -0.009405268356204033, 0.012895151972770691, -0.00813446007668972, -0.012591964565217495, -0.008418295532464981, -0.00375759182497859, 0.013127380982041359, 0.02398408018052578, -0.010817993432283401, -0.0012901602312922478, -0.014553007669746876, -0.012746783904731274, -0.030163947492837906, 0.013456371612846851, -0.004883256740868092, 0.009785865433514118, -0.01113408338278532, 0.0331055112183094, 0.017533278092741966, 0.017197836190462112, -0.04827779904007912, 0.02150697261095047, -0.0068313986994326115, -0.004502659197896719, 0.020216811448335648, -0.007089430466294289, 0.007960288785398006, 0.024164702743291855, -0.013495076447725296, 0.004496208392083645, 0.007476478815078735, -0.013430568389594555, -0.009753611870110035, 0.021687593311071396, -0.013301552273333073, -0.0012861285358667374, 0.007528085261583328, 0.0038479031063616276, 0.004950989969074726, 0.007869977504014969, 0.01353378128260374, 0.00969555415213108, 0.04569747671484947, -0.0016820464516058564, -0.004134963732212782, -0.011153435334563255, 0.013520879670977592, 0.01275323424488306, 0.0034479533787816763, 0.009173039346933365, 0.002585158683359623, 0.005209022201597691, 0.008521508425474167, 0.01822996512055397, 0.016217313706874847, -0.0002872622571885586, 0.028254510834813118, 0.012824192643165588, -0.0009579440229572356, -0.03101545199751854, -0.021377956494688988, -0.0052606286481022835, 0.023790555074810982, -0.039117660373449326, -0.044071875512599945, 0.00015502082533203065, 0.016062496230006218, 0.013482174836099148, 0.023609932512044907, 0.005063878837972879, 0.005831524264067411, 0.008450550027191639, 0.03589225932955742, -0.013714403845369816, -0.015533529222011566, -0.005696057807654142, 0.031273484230041504, 0.017133329063653946, 0.016655968502163887, 0.01185012236237526, -0.016372133046388626, 0.03372478857636452, 0.0016183448024094105, 0.01161144208163023, -0.0035608422476798296, -0.01703011617064476, -0.011405017226934433, -0.002523876028135419, 0.014217565767467022, 0.00258838408626616, -0.017210738733410835, -0.012501653283834457, -0.021248940378427505, -0.003902734722942114, 0.01975235342979431, 0.03885962814092636, 0.0640951618552208, 0.009818119928240776, 0.008418295532464981, 0.021016711369156837, 0.01575285755097866, 0.04347839951515198, -0.01185012236237526, -0.011198591440916061, -0.005647676531225443, -0.03609868511557579, 0.005615422502160072, 0.002015875419601798, 0.010998615995049477, -0.015223891474306583, -0.022526198998093605, 0.0229390487074852, 0.010101954452693462, -0.0009482678142376244, -0.00030278449412435293, 0.0036801821552217007, 0.003154441947117448, -0.02266811579465866, 0.012017843313515186, 0.0016296337125822902, -0.00963104609400034, 0.009173039346933365, 0.013224142603576183, 0.018255768343806267, -0.036072880029678345, -0.030086537823081017, -0.0011119568953290582, -0.0008619883446954191, -0.042833320796489716, -0.007805469445884228, 0.0047445641830563545, 0.003285070648416877, 0.00041970526217482984, -0.0014409477589651942, -0.009269801899790764, -2.5538622139720246e-05, 0.0016739829443395138, 0.019042765721678734, 0.01459171250462532, -0.0068894559517502785, 0.00795383844524622, -0.010979264043271542, -0.0019691071938723326, 0.01862991414964199, -0.002457755384966731]" +44,"Operating expenses increased 2% and 5% in constant currency, driven by the Xandr acquisition. And operating income decreased 15% and 9% in constant currency. Now back to total company results. Capital expenditures, including finance leases were $6.6 billion, and cash paid for PP&E was $6.3 billion.","[0.017512913793325424, 0.008054900914430618, 0.010555817745625973, -0.028451988473534584, -0.011004033498466015, 0.016668448224663734, -0.008269265294075012, -0.0011278485180810094, -0.0002864280540961772, -0.013654355891048908, 0.02603551745414734, 0.0458349846303463, 0.00847063772380352, 0.0027802400290966034, 0.015005500987172127, 0.016824349761009216, 0.008743464946746826, 0.0012723819818347692, 0.009808790870010853, -0.003946251701563597, -0.037208445370197296, -0.013128189370036125, -0.044094085693359375, 0.001624783966690302, 0.009458012878894806, -0.015447220765054226, 0.015460212714970112, 0.012485096231102943, 0.0012325947172939777, -0.009750327095389366, -0.00895782932639122, -0.008009430021047592, -0.005804075859487057, 0.008620043285191059, -0.002319031860679388, -0.012361674569547176, -0.009354078210890293, -0.012972287833690643, 0.019825449213385582, -0.003192728850990534, 0.03229755535721779, 0.017512913793325424, -0.013342553749680519, 0.020721882581710815, 0.0009922469034790993, 0.012335690669715405, -0.014044109731912613, -0.009776310995221138, -0.003298287047073245, 0.010068626143038273, -0.020656922832131386, 0.04224925488233566, -0.01908491738140583, -0.002031588926911354, -0.001981245819479227, -0.004154120106250048, -0.0012228508712723851, 0.015486196614801884, -0.004384724423289299, -0.005732621066272259, 0.002625962719321251, 0.007314369548112154, -0.01901995949447155, 0.005813819356262684, -0.04677039012312889, -0.006080151069909334, 0.00826276931911707, -0.00874996092170477, -0.013173660263419151, 0.013303577899932861, 0.03144009783864021, 0.025489863008260727, -0.007944470271468163, 0.008931845426559448, 0.001438839128240943, -0.005972968880087137, -0.0068726493045687675, -0.00260485103353858, -0.013901200145483017, 0.019526638090610504, 0.026347320526838303, -0.012322698719799519, -0.012790403328835964, -0.00183184037450701, 0.02339818701148033, 0.014641731046140194, -0.0017571375938132405, 0.0036604327615350485, -0.035753365606069565, 0.028893709182739258, 0.03531164675951004, 0.014615747146308422, -0.008197810500860214, 0.017110168933868408, 0.013589397072792053, 0.0005452485638670623, -0.022060034796595573, 0.02573670633137226, -0.027568547055125237, -0.01817549392580986, -0.006148357875645161, -0.014381895773112774, -0.04562711715698242, -0.005628686863929033, -0.02558080665767193, 0.006846665870398283, -0.002127403160557151, -0.01272544451057911, 0.023489130660891533, 0.014251978136599064, -0.0075482213869690895, 0.00346555607393384, 0.02697092667222023, -0.0029166536405682564, -0.00693111214786768, -0.018318403512239456, 0.016057834029197693, -0.00249117286875844, -0.019682539626955986, -0.006310754921287298, 0.02606150135397911, 0.0074247997254133224, 0.0245414637029171, 0.0009004924213513732, 0.03297312557697296, -0.001317041227594018, 0.010510345920920372, -0.007827544584870338, 0.014511813409626484, 0.0009557075100019574, -0.0032235842663794756, -0.0006426869076676667, 0.015616114251315594, 0.025788674131035805, -0.023748965933918953, 0.04625071957707405, 0.0024099743459373713, 0.01319314818829298, -0.0013048615073785186, -0.01798061653971672, 0.005375347100198269, 0.0037676149513572454, 0.007502750493586063, 0.011185918934643269, 0.005024569109082222, 0.03141411393880844, 0.004163864068686962, -0.014381895773112774, 0.02671108953654766, -0.007866520434617996, 0.004274294245988131, -0.011120960116386414, 0.018396353349089622, 0.019188852980732918, 0.015408245846629143, -0.021696265786886215, -0.006096390541642904, 0.013511446304619312, -0.015914924442768097, -0.01257603894919157, -0.02385289967060089, 0.018916025757789612, -0.012439625337719917, -0.0044529312290251255, 0.010659751482307911, 0.02603551745414734, 0.025684740394353867, 0.02155335620045662, -0.01694127544760704, -0.007749594282358885, -0.004806956741958857, -0.02222892828285694, -0.02430761232972145, 0.02090376615524292, -0.0027282729279249907, 0.025619780644774437, -0.007320865523070097, -0.002411598339676857, -0.02041007950901985, -0.01635664515197277, 0.013342553749680519, -0.016473570838570595, 0.02028016187250614, 0.0030822986736893654, 0.014161035418510437, -0.03268730640411377, 0.01090659573674202, 0.011932945810258389, 0.000679632241372019, -0.015356278978288174, 0.0004672979121096432, 0.019591597840189934, -0.005476033315062523, -0.013160668313503265, -0.6468864679336548, -0.0009272879688069224, 0.0016661952249705791, 0.002090051770210266, 0.008938341401517391, -0.00025922650820575655, 0.02456744760274887, -0.000181580355274491, -0.048901043832302094, 0.013342553749680519, 0.005755356512963772, 0.006846665870398283, -0.007879511453211308, -0.01504447590559721, 0.009893236681818962, -0.021826183423399925, 0.008613547310233116, -0.002068940317258239, -0.006512127351015806, 0.008405678905546665, 0.008126355707645416, -0.0010109224822372198, -0.009652889333665371, -0.009328095242381096, 0.011777044273912907, -0.0036441930569708347, 0.005823563318699598, -0.022475771605968475, -0.01036743726581335, 0.017032217234373093, -0.013693331740796566, 0.010640264488756657, 0.007431295700371265, 0.003312902757897973, 0.03905327618122101, 0.002091675763949752, -0.007320865523070097, 0.010438892059028149, 0.005476033315062523, 0.045523181557655334, -0.02749059721827507, 0.0001182454579975456, -0.008886374533176422, 0.01285536214709282, -0.010075122117996216, 0.0006577086169272661, 0.006957095582038164, -0.006473151966929436, -0.005911258049309254, -0.016408612951636314, -0.007788569200783968, -0.00899030826985836, 0.008834407664835453, 0.016317669302225113, 0.010295982472598553, 0.006564094685018063, -0.016187751665711403, -0.026555189862847328, 0.01570705696940422, 0.004975850228220224, 0.01652553863823414, -0.01512242667376995, -0.015733040869235992, -0.005368851125240326, -0.009094242937862873, 0.018734140321612358, -0.01088710781186819, 0.012751427479088306, 0.012679972685873508, 0.015668081119656563, 0.00020949238387402147, 0.017110168933868408, -0.0038747971411794424, -0.0043100216425955296, 0.015460212714970112, -0.013563413172960281, 0.029751166701316833, -0.01517439354211092, -0.011315836571156979, -0.006476399954408407, -0.006684268359094858, -0.01609680987894535, -0.013745298609137535, 0.01811053417623043, 0.019305778667330742, 0.0013576404890045524, 0.007639164105057716, 0.0016069202683866024, -0.0028078474570065737, -0.003933260217308998, 0.011705589480698109, 0.0106467604637146, 0.0026860495563596487, -0.023865891620516777, -0.0005801639636047184, 0.015979884192347527, -0.0017376500181853771, 0.00996469147503376, -0.013004767708480358, -0.019747499376535416, -0.02450248785316944, -0.0048849075101315975, 0.03778008371591568, -0.013232123106718063, 0.030660590156912804, 0.03435025364160538, 0.0030465712770819664, -0.003692912170663476, 0.05069390684366226, -0.016083817929029465, -0.007314369548112154, -0.009003300219774246, -0.011848499067127705, -0.011172926984727383, -0.029101576656103134, -0.02671108953654766, 0.03323296085000038, 0.0044107078574597836, -0.012426633387804031, -0.029101576656103134, 0.0005943737342022359, -0.007574205286800861, 0.021085651591420174, -0.019708523526787758, 0.006989574991166592, 0.016330661252141, 0.026892974972724915, -0.009133217856287956, -0.008905862458050251, -0.007600188720971346, 0.008041908964514732, -0.007847032509744167, 0.01175106130540371, 0.004780973307788372, 0.004046937916427851, 0.017616847530007362, 0.011004033498466015, -0.023346221074461937, 0.003943003714084625, -0.04627670347690582, -0.02168327383697033, 0.012426633387804031, -0.024775315076112747, -0.0008164519094862044, -0.016824349761009216, -0.029075592756271362, 0.009419037029147148, 0.025165069848299026, -0.011971920728683472, -0.002741264645010233, -0.026477238163352013, -0.009906228631734848, 0.007658651564270258, -0.0007275394164025784, 0.0046770391054451466, 0.008048404939472675, 0.014940542168915272, -0.02333322912454605, -0.03632500395178795, -0.0225926972925663, 0.010770182125270367, 0.009912724606692791, -0.0013722563162446022, 0.0001989365555346012, -0.016330661252141, -0.004378228448331356, -0.025204043835401535, 0.004030698444694281, 0.0010685735614970326, -0.007762585766613483, 0.013102205470204353, -6.9526299739663955e-06, 0.018422337248921394, 0.002161506563425064, 0.0011749437544494867, 0.005661166273057461, 0.005969720892608166, -0.01609680987894535, 0.014888574369251728, -0.015862958505749702, 0.024320604279637337, 0.02222892828285694, -0.0009134841966442764, 0.004657551646232605, 0.03788401558995247, 0.004521138034760952, 0.009133217856287956, 0.027958299964666367, -0.00824328139424324, -0.018188485875725746, -0.01275792345404625, 0.0226836409419775, 0.0012147310189902782, -0.02229388616979122, 0.00631400290876627, -0.0024798051454126835, 0.0001383421040372923, -0.00988024566322565, -0.007632668130099773, -0.010471371002495289, 0.025230027735233307, 0.027802400290966034, 0.01973450742661953, 0.03879344090819359, 0.007444287184625864, -0.04056032374501228, 0.015797998756170273, -0.01609680987894535, 0.031102310866117477, 0.01743496209383011, 0.009263135492801666, -0.032245587557554245, -0.017344020307064056, -0.0034330766648054123, -0.04282089322805405, 0.004115144722163677, 0.022644665092229843, 0.02025417797267437, 0.0020868040155619383, 0.00366368074901402, -0.00200398126617074, -0.0035824819933623075, 0.014381895773112774, -0.00597946485504508, -0.022112002596259117, -0.018993975594639778, 0.0016873067943379283, 0.03832573816180229, 0.013953167013823986, -0.011809524148702621, -0.009600922465324402, 0.02525601163506508, 0.005255172960460186, 0.01208884734660387, 0.007769081741571426, 0.007028550375252962, 0.01596689224243164, -0.003264183644205332, 0.023800931870937347, -0.016980251297354698, 0.02155335620045662, 0.0203191377222538, 0.01726607047021389, -0.019305778667330742, -0.005878778640180826, -0.012524071149528027, 0.02733469568192959, 0.021735239773988724, -0.010107601061463356, -0.015473204664885998, -0.004180103540420532, 0.020656922832131386, 0.008009430021047592, -0.029543297365307808, 0.01253056712448597, -0.0029458850622177124, 0.02255372144281864, 0.016707424074411392, 0.030764523893594742, 0.021891141310334206, 0.015005500987172127, 0.00021639425540342927, 0.04848530516028404, 0.014420870691537857, -0.007749594282358885, 0.00659657409414649, -0.02261868119239807, -0.009509979747235775, 0.019058935344219208, 0.002919901628047228, 0.014888574369251728, -0.02599654346704483, 0.0157720148563385, 0.016694432124495506, -0.015135418623685837, 0.005216198042035103, 0.014264969155192375, -0.034584105014801025, -0.006632301490753889, 0.013277594931423664, 0.018656190484762192, -0.037987951189279556, 0.005333123728632927, 0.019591597840189934, 0.004521138034760952, -0.005277908872812986, 0.014148043468594551, -0.0038163340650498867, 0.006148357875645161, 0.013219131156802177, -0.04365236684679985, -0.015343287028372288, -0.02391785942018032, 0.002619466744363308, 0.013823249377310276, -0.02762051485478878, 0.018136518076062202, -0.011283356696367264, -0.011491225101053715, -0.0347919762134552, 0.004186599515378475, 0.01275792345404625, -0.02235884591937065, -0.00513499928638339, 0.033414848148822784, -0.0022362093441188335, -0.030166903510689735, -0.019981350749731064, 0.006093142554163933, -0.030504688620567322, 0.016577506437897682, -0.005476033315062523, -0.02447650581598282, 0.03011493571102619, 0.013888208195567131, -0.000995494774542749, -0.01129634864628315, -0.01452480535954237, 0.02450248785316944, 0.01244612131267786, -0.01272544451057911, 0.0035792342387139797, -0.026074493303894997, -0.013329561799764633, 0.06656985729932785, 0.02775043249130249, 0.004319765139371157, 0.02239782176911831, 0.0004636439844034612, -0.002984860446304083, -0.007911991328001022, -0.0076911309733986855, 0.018799100071191788, -0.005976216867566109, -0.008633035235106945, -0.009165697731077671, 0.011049505323171616, 0.0039040285628288984, -0.001532217487692833, 0.0025577559135854244, -0.01041940413415432, -0.019188852980732918, 0.003770862938836217, 0.013641363941133022, 0.0015939284348860383, -0.00100199063308537, 0.02365802228450775, 0.03258337453007698, 0.009464508853852749, 0.01746094599366188, 0.013836241327226162, 0.01116643100976944, -0.008743464946746826, -0.017707789316773415, -0.01788967475295067, -0.013446487486362457, 0.010172559879720211, 0.014940542168915272, -0.011647126637399197, -0.005034313071519136, 0.002624338725581765, -0.013342553749680519, 0.024658389389514923, 0.010412908159196377, 0.011445754207670689, -0.017707789316773415, 0.003913772292435169, -0.01830541156232357, 0.00485242810100317, -0.022319870069622993, -0.02326826937496662, 0.02216396853327751, 0.019357744604349136, -0.003699408145621419, -0.0005951857310719788, -0.012173294089734554, -0.03318099305033684, 0.017253078520298004, -0.0018350882455706596, 0.010484362952411175, -0.008613547310233116, -0.025697732344269753, 0.0009906229097396135, -0.02645125426352024, -0.011237885802984238, -0.020760856568813324, 0.001953638158738613, -0.010490858927369118, -0.015265336260199547, -0.015239352360367775, -0.019721515476703644, -0.0036896641831845045, -0.04313269630074501, 0.010490858927369118, -0.01791565865278244, -0.01006213016808033, -0.016447586938738823, 0.012465608306229115, 0.036740742623806, 0.0016678192187100649, 0.003829325782135129, 0.002103043720126152, -0.005238933488726616, 0.04056032374501228, -0.017292052507400513, -0.0025593796744942665, -0.03206370025873184, -0.008158834651112556, -0.005495521239936352, 0.0196695476770401, 0.005502016749233007, 0.018201477825641632, -0.005972968880087137, 0.0012277227360755205, -0.004521138034760952, -0.01486259140074253, -0.006905128713697195, 0.0037611189763993025, 0.016668448224663734, -0.003920268267393112, 0.007736602332442999, 0.010432396084070206, 0.011517209000885487, 0.02515207789838314, 0.004053433891385794, 0.008886374533176422, -0.020877784118056297, 0.0013154172338545322, 0.018864057958126068, 0.014511813409626484, 0.015109434723854065, -0.015953900292515755, -0.010594792664051056, 0.0020868040155619383, -0.013628372922539711, 0.0002691733534447849, -0.029907066375017166, -0.011419770307838917, 0.01921483688056469, -0.012751427479088306, 0.003264183644205332, 0.004923882894217968, 0.0025090365670621395, 0.00036092777736485004, 0.00460883229970932, -0.0013608884764835238, 0.03853360563516617, 0.015473204664885998, -0.001031222171150148, -0.00983477383852005, 0.0017717534210532904, -0.008704490028321743, -0.038481637835502625, 0.009386558085680008, -0.03273927420377731, 0.019435696303844452, -0.013024254702031612, 0.015551155433058739, -0.017993608489632607, -0.009522971697151661, -0.015226361341774464, -0.0074767665937542915, -0.0035110274329781532, 0.009821781888604164, -0.03138813003897667, -0.007918487302958965, 0.00020553394278977066, -0.007132484577596188, 0.03629902005195618, -0.022514747455716133, -0.020306145772337914, -0.00693111214786768, -0.006590078119188547, 0.021631306037306786, -0.009951700456440449, -0.0030952906236052513, -0.023216303437948227, -0.0009118602611124516, -0.026477238163352013, -0.010016659274697304, 0.011952433735132217, -0.014225994236767292, 0.016538530588150024, 0.010711719281971455, 0.02801026776432991, -0.000475823791930452, -0.018162501975893974, 0.023060401901602745, -0.0037806066684424877, -0.005618942901492119, 0.02411273494362831, -0.014342919923365116, -0.024918224662542343, 0.010880611836910248, 0.0009272879688069224, 0.015408245846629143, 0.003299911040812731, -0.0479656346142292, 0.002638954436406493, -0.017032217234373093, -0.014758656732738018, -0.005778091959655285, -0.013914191164076328, -0.01257603894919157, 0.014485829509794712, -0.012322698719799519, -0.01583697460591793, -0.00236125523224473, -0.0235670804977417, 0.004615328274667263, 0.02476232498884201, 0.022774582728743553, 0.03635098785161972, -0.022800566628575325, 0.010023155249655247, 0.017798732966184616, 0.016057834029197693, 0.02324228547513485, 0.006703756283968687, 0.005895018111914396, -0.02573670633137226, -0.027958299964666367, -0.014109068550169468, -0.004641311708837748, -0.030556656420230865, 0.02801026776432991, -0.0011294725118204951, 0.005680653732270002, 0.0043100216425955296, 0.013667347840964794, 0.008516108617186546, -0.011842003092169762, 0.015226361341774464, -0.03138813003897667, -0.013654355891048908, -0.02995903417468071, -0.004930378869175911, -0.003213840536773205, 0.0023580072447657585, 0.019370736554265022, -0.02430761232972145, -0.004189847502857447, -0.006174341309815645, -0.03258337453007698, 0.021176593378186226, 0.0030936666298657656, 0.02599654346704483, -0.038117870688438416, 0.034714024513959885, 0.003910524304956198, 0.001496490091085434, -0.012381162494421005, -0.0216183140873909, 0.010952066630125046, -0.0005436246283352375, 0.033544763922691345, 0.03351878002285957, -0.031595997512340546, 0.01288784109055996, -0.050460055470466614, 0.010003667324781418, -0.03320697695016861, -0.019747499376535416, 0.0043522450141608715, 0.009529467672109604, 0.016083817929029465, 0.007398816291242838, -0.012900833040475845, -0.031595997512340546, 0.023021426051855087, -0.013069726526737213, 0.010841636918485165, -0.010763686150312424, -0.009360574185848236, -0.004729006439447403, 0.013615380972623825, 0.023216303437948227, 0.01342050451785326, 0.0020202212035655975, -0.0035337628796696663, 0.00785352848470211, 0.004751741886138916, 0.012504584155976772, 0.026087485253810883, -0.012303211726248264, 0.015577138401567936, -0.030582640320062637, 0.030270837247371674, 0.0032528156880289316, 0.01661648042500019, 0.0037448792718350887, 0.0003140355693176389, 0.0022865524515509605, 0.019981350749731064, -0.011192414909601212, -0.006525119300931692, 0.04375629872083664, 0.0022670647595077753, 0.0164216049015522, -0.009354078210890293, -0.04180753231048584, -0.03125821053981781, -0.026529205963015556, -0.0013568286085501313, 0.019942374899983406, -0.009334590286016464, -0.03021886944770813, 0.009412541054189205, -0.0013478967593982816, -0.01257603894919157, -0.002455445472151041, -0.013251611031591892, 0.03687065839767456, -0.022124994546175003, -0.0173050444573164, 0.021891141310334206, 0.019500654190778732, 0.016642464324831963, 0.000708051782567054, 0.008717481046915054, 0.016174759715795517, 0.003478547791019082, -8.358380728168413e-05, 0.012355178594589233, 0.011692597530782223, -0.013108701445162296, -0.03892336040735245, 0.025178061798214912, -0.007067525759339333, -0.014693697914481163, 0.03603918477892876, -0.02590559981763363, -0.03453214094042778, 0.015888940542936325, 0.018318403512239456, -0.001580936717800796, 0.005969720892608166, -0.004241814836859703, -0.029751166701316833, 0.017577871680259705, -0.0076196761801838875, -0.008626539260149002, -0.009146209806203842, 0.0020705643109977245, 0.018747132271528244, -0.005849546752870083, 0.028036251664161682, -0.00826276931911707, 0.013901200145483017, -0.021696265786886215, -0.006148357875645161, 0.010237518697977066, -0.006148357875645161, -0.015291320160031319, 0.008633035235106945, 0.016122793778777122, -0.016824349761009216, -0.007035046350210905, -0.0043262611143291, -0.006911624688655138, 0.008438157849013805, 0.01386222429573536, 0.009081250987946987, -0.005547488108277321, 0.008938341401517391, -0.013524438254535198, 0.027152810245752335, 0.0023921106476336718, -0.012426633387804031, -0.012790403328835964, -0.008678506128489971, -0.015187385492026806, -0.016148777678608894, -0.011932945810258389, 0.00758719677105546, 0.013641363941133022, 0.007041542325168848, -0.029413379728794098, -0.010354445315897465, -0.019643563777208328, -0.0460168682038784, -0.014096076600253582, -0.018877049908041954, 0.021566348150372505, 0.03957294672727585, 0.017772749066352844, -0.008704490028321743, 0.03372664749622345, 0.01726607047021389, 0.01399214193224907, -0.034298285841941833, 0.010432396084070206, 0.026139453053474426, -0.01111446414142847, 0.0034980354830622673, -0.0006881580920889974, -0.028088219463825226, -0.015823982656002045, 0.014758656732738018, -0.0025220285169780254, 0.04437990486621857, 0.022761590778827667, 0.0048199486918747425, -0.015953900292515755, -0.019266802817583084, 0.027802400290966034, 0.009074755012989044, 0.015148410573601723, 0.014135051518678665, -0.04593891650438309, 0.011627638712525368, 0.015096442773938179, -0.004271046258509159, -0.016083817929029465, 0.019877417013049126, 0.01759086363017559, -0.004904395435005426, -0.005985960364341736, -0.012062863446772099, 0.0002762782387435436, -0.008918853476643562, -0.020072292536497116, 0.0072234272956848145, 0.0054305619560182095, 0.0007957462221384048, 0.03468804061412811, 0.03214165195822716, -0.03281722590327263, -0.014096076600253582, 0.013206140138208866, -0.02733469568192959, -0.014602755196392536, 0.000304088753182441, 0.011919953860342503, 0.003955995664000511, -0.0035792342387139797, -0.0014875582419335842, 0.005524752661585808, -0.02265765704214573, -0.009899732656776905, 0.024333596229553223, 0.010763686150312424, 0.004118392709642649, -0.019721515476703644, -0.0497325174510479, 0.012095343321561813, -0.014290953055024147, 0.0022881764452904463, 0.00044699828140437603, -0.00035788281820714474, -0.006898632738739252, -0.031076326966285706, -0.03726041316986084, 0.014083084650337696, -0.017811724916100502, -0.04102802649140358, 0.00537859508767724, 0.0048978994600474834, -0.016499554738402367, 0.016954267397522926, 0.19924186170101166, 0.01713615097105503, 0.003907276317477226, 0.03806590288877487, -0.0021501388400793076, 0.0017993608489632607, 0.006128869950771332, -0.01127686072140932, -0.015655089169740677, 0.018980983644723892, -0.010705223307013512, 0.034584105014801025, -0.018812090158462524, -0.00693111214786768, 0.025372937321662903, -0.02933542989194393, -0.055552832782268524, 0.013641363941133022, -0.03221960365772247, 0.03946901485323906, 0.02515207789838314, -0.0007433731807395816, 0.0046185762621462345, -0.01473267376422882, 0.003865053178742528, -0.028867725282907486, -0.025165069848299026, -0.008516108617186546, 0.0226836409419775, 0.019526638090610504, -0.004829692654311657, 0.01204337552189827, -0.0086525222286582, -0.0020494526252150536, 0.0025106605608016253, -0.00899030826985836, -0.009633401408791542, 0.009581434540450573, -0.010705223307013512, 0.010542825795710087, 0.02086479216814041, 0.004264550283551216, -0.004534129519015551, -0.006067159119993448, 0.0025252762716263533, 0.0067362356930971146, 0.00048556760884821415, -0.006697260309010744, 0.0018432080978527665, 0.006044423673301935, -0.03593524917960167, 0.029257478192448616, 0.014394886791706085, 0.026022525504231453, -0.022254912182688713, 0.012056367471814156, 0.02369699813425541, 0.013836241327226162, 0.0034363246522843838, -0.006755723152309656, 0.010458379052579403, 0.016837341710925102, -0.017863690853118896, -0.003556498559191823, -0.002991356421262026, -0.0026292104739695787, 0.015447220765054226, 0.017032217234373093, 0.012049871496856213, 1.585910104040522e-05, -0.014849599450826645, 0.0023742469493299723, -0.016057834029197693, 0.004599088337272406, -0.020423071458935738, 0.006684268359094858, 0.046822357922792435, 0.0020137252286076546, 0.0395209826529026, 0.0020380846690386534, 0.01626570336520672, 0.02723076194524765, -0.00597946485504508, -0.0086525222286582, -0.012653989717364311, -0.02554183080792427, 0.0006816622335463762, -0.004433443304151297, -0.004160616081207991, 0.014238986186683178, 0.00873047299683094, -0.00023344597138930112, -0.029361411929130554, -0.025827649980783463, -0.004803709220141172, -0.007450783159583807, -0.02235884591937065, -0.011497721076011658, -0.02391785942018032, 0.005719629116356373, -0.014602755196392536, 0.07202640175819397, 0.01646057888865471, -0.002538268221542239, -0.03125821053981781, -0.022930484265089035, -0.005830059293657541, 0.02255372144281864, 0.0035759862512350082, -0.016148777678608894, -0.003413588972762227, -0.013342553749680519, 0.00249117286875844, -0.019097909331321716, 0.017707789316773415, 0.022579705342650414, 0.010932578705251217, -0.0007198255625553429, 0.014719681814312935, 0.0006946540088392794, -0.006866153329610825, -0.023515114560723305, -0.0074832625687122345, -0.008191314525902271, 0.017357012256979942, -0.00895782932639122, -0.0015484571922570467, -0.011354811489582062, -0.02112462744116783, -0.020046310499310493, 0.012283723801374435, 0.0044107078574597836, 0.011952433735132217, -0.020163236185908318, -0.003913772292435169, 0.014511813409626484, 0.011328828521072865, -0.01613578572869301, -0.011705589480698109, 0.007093509193509817, 0.013069726526737213, 0.015927916392683983, 0.004716014489531517, -0.0019130388973280787, 0.020397087559103966, -0.01452480535954237, -0.0022881764452904463, 0.020565981045365334, -0.01186149101704359, -0.009483995847404003, -0.05846298858523369, 0.005963224917650223, 0.01590193249285221, -0.00801592506468296, 0.029751166701316833, -0.020942742004990578, -0.027126826345920563, -0.03190780058503151, -0.018383361399173737, 0.019617581740021706, -0.059086594730615616, -0.021579338237643242, 0.016213735565543175, -0.009061763063073158, -0.01788967475295067, -0.015252344310283661, -0.16317670047283173, 0.01743496209383011, -0.011848499067127705, 0.009815286844968796, 0.01283587422221899, 0.013836241327226162, 0.010835140943527222, -0.013615380972623825, -0.0017522657290101051, -0.008574571460485458, 0.019383728504180908, 0.021631306037306786, -0.03450615704059601, -0.012563046999275684, 0.004095657262951136, 0.01386222429573536, -0.014148043468594551, 0.0007969642174430192, 0.00633024238049984, 0.01646057888865471, 0.03167394921183586, -0.00947749987244606, 0.009464508853852749, -0.00236125523224473, -0.001623971969820559, -0.003243071958422661, -0.0053233802318573, -0.005963224917650223, -0.0025999790523201227, -0.025892607867717743, -0.013758290559053421, -0.0047192624770104885, 0.03585730120539665, 0.002218345645815134, -5.5519540183013305e-05, 0.007093509193509817, -0.0313621461391449, -0.02242380380630493, -0.002655194140970707, 0.028348054736852646, 0.026334328576922417, 0.003699408145621419, -0.008788935840129852, 0.0035889779683202505, -0.01817549392580986, 0.011822516098618507, 0.03141411393880844, -0.0048361886292696, 0.007613180670887232, 0.027698464691638947, 0.015979884192347527, -0.04674440994858742, 0.009380062110722065, -0.009113730862736702, 0.011458746157586575, 0.020202210173010826, 0.008204306475818157, 0.004358740523457527, 0.005933993496000767, -0.011705589480698109, -0.010991042479872704, -0.003985227085649967, -0.003871549153700471, -0.02512609399855137, 0.014303945004940033, -0.02226790226995945, 0.0074767665937542915, 0.0033388861920684576, -0.05638430640101433, 0.03866352513432503, 0.014680705964565277, 0.01381025742739439, -0.004079417325556278, -0.006447168532758951, 0.0026210907381027937, -0.009548954665660858, 0.014537796378135681, -0.01373230665922165, 0.008639530278742313, 0.019656555727124214, -0.0069441040977835655, 0.03177788108587265, -0.02112462744116783, 0.003394101280719042, -0.014005133882164955, 0.0014339672634378076, 0.009243648499250412, 0.01176405232399702, -0.008814919739961624, -0.009984179399907589, 0.010848132893443108, -0.00790549535304308, 0.024450521916151047, 0.008633035235106945, 0.009334590286016464, 0.0026438264176249504, 0.00657383818179369, 0.012783907353878021, 0.015992876142263412, 0.015953900292515755, -0.005144743248820305, 0.000310990639263764, -0.01381025742739439, 0.014057100750505924, 0.04609481990337372, 0.024398554116487503, -0.001538713462650776, 0.000829849683213979, -0.010770182125270367, -0.02798428386449814, -0.052045051008462906, 0.016018860042095184, 0.023878883570432663, 0.03273927420377731, -0.0008436533971689641, 0.011790036223828793, -0.028815757483243942, -0.016252711415290833, 0.0026080990210175514, 0.001781497267074883, 0.05981413275003433, -0.012673476710915565, -0.03585730120539665, -0.02096872590482235, -0.00900979619473219, -0.011497721076011658, -0.09338488429784775, -0.019721515476703644, -0.007509246468544006, 0.028841741383075714, 0.01465472299605608, -0.0022427053190767765, -0.0038325737696141005, 0.016538530588150024, -0.008620043285191059, 0.04661449044942856, -0.00038143040728755295, -0.004342501051723957, -0.004764733836054802, 0.004933626856654882, 0.04313269630074501, 0.006320498883724213, -0.00847063772380352, -0.012316202744841576, -0.005242181476205587, 0.034740008413791656, 0.0008347215480171144, -0.012842370197176933, 0.007671643514186144, -0.02116360142827034, -0.03086845949292183, 0.0027428886387497187, -0.029647231101989746, 0.00847063772380352, 0.013641363941133022, 0.015434229746460915, 0.010250510647892952, 0.0012650741264224052, 0.014433862641453743, -0.0186951644718647, -0.02969919890165329, -0.00024258080520667136, -0.015213369391858578, -0.010763686150312424, 0.0010904971277341247, -0.021345486864447594, 0.025814658030867577, 0.006288019474595785, -0.006567342672497034, -0.020656922832131386, -0.021865157410502434, -0.013329561799764633, 0.014238986186683178, 0.007976950146257877, -0.01769479736685753, -0.030426738783717155, -0.04087212681770325, -0.018448321148753166, -0.021540364250540733, -0.0020656923297792673, 0.0009508355869911611, -0.026892974972724915, 0.006534863263368607, 0.004800461232662201, -0.000686940154992044, -0.0458349846303463, -0.022319870069622993, 0.0038455654866993427, -0.01866918057203293, 0.031206244602799416, -0.003699408145621419, -0.0004070079594384879, -0.028477972373366356, -0.029361411929130554, -0.016629472374916077, -0.029127560555934906, -0.020877784118056297, 0.014355911873281002, -0.012946303933858871, 0.011491225101053715, -0.03541557863354683, 0.006996070966124535, -0.015395253896713257, -0.017668815329670906, 0.05368201807141304, -0.012647493742406368, -0.021241553127765656, -0.04222327098250389, 0.02222892828285694, -0.0005054612411186099, 0.021137619391083717, 0.007385824341326952, -0.0020705643109977245, -0.011004033498466015, 0.003135889768600464, -0.005160982720553875, -0.018916025757789612, 0.015291320160031319, -0.002211849670857191, -0.017772749066352844, 0.0007206375594250858, -0.005271412897855043, -0.013784273527562618, -0.007898999378085136, -0.02083880826830864, -0.02333322912454605, -0.009711352176964283, 0.005878778640180826, -0.06111331284046173, 0.008386190980672836, 0.0086979940533638, 0.009373566135764122, -0.00661281356588006, -0.0032154645305126905, 0.016954267397522926, -0.015629105269908905, -0.02759453095495701, -0.011406779289245605, -0.05409775301814079, 0.022124994546175003, 0.007911991328001022, -0.013719314709305763, -0.010315469466149807, -0.008899366483092308, 0.012939807958900928, -0.0031164020765572786, -0.02560678869485855, 0.03021886944770813, 0.013888208195567131, -0.0005984336603432894, 0.027828382328152657, 0.0011107968166470528, 0.0031521294731646776, 0.005411074496805668, -0.013615380972623825, 0.006723243743181229, 0.00886039063334465, -0.005859290715306997, 0.02285253256559372, -0.018123526126146317, -0.019045943394303322, 0.045029494911432266, -0.0009337838855572045, -0.022371837869286537, -0.008983812294900417, 0.018058568239212036, -0.011484729126095772, -0.00970485620200634, -0.023034418001770973, -0.019331762567162514, 0.01629168726503849, 0.007301377598196268, -0.005238933488726616, -0.000708051782567054, 0.012439625337719917, 0.0008330976124852896, 0.005674157757312059, 0.03242747113108635, 0.03427230194211006, 0.005599455442279577, -0.006421185098588467, -0.0047192624770104885, -0.006755723152309656, -0.03253140673041344, 0.013615380972623825, -0.01412205956876278, 0.025697732344269753, 0.003377861576154828, 0.018370371311903, 0.021111635491251945, 0.01691529154777527, -0.04871915653347969, 0.001301613519899547, 0.012517576105892658, -0.0182794276624918, 0.0004080229555256665, -0.01672041416168213, -0.03206370025873184, 0.024463513866066933, -0.0014721305342391133, 0.010237518697977066, 0.015057467855513096, -0.0034168369602411985, 0.017941642552614212, 0.03364869952201843, -0.011478234082460403, -0.018422337248921394, 0.010386924259364605, 0.021150611340999603, -0.011023521423339844, -0.007937975227832794, 0.015590130351483822, -0.012101839296519756, 0.014706689864397049, -0.03273927420377731, -0.015317303128540516, -0.010016659274697304, 0.007769081741571426, 0.0030075961258262396, 0.017253078520298004, -0.004277542233467102, 0.014213002286851406, 0.015447220765054226, -0.012550055049359798, 0.022631673142313957, 0.005869034677743912, -0.018227461725473404, 0.03190780058503151, 0.008548588491976261, 0.014953533187508583, -0.02597055956721306, -0.03710450977087021, -0.01432992797344923, 0.0049855937249958515, -0.031725917011499405, -0.024034785106778145, -0.0033242704812437296, 0.04256105795502663, 0.01762983947992325, 0.0005127691547386348, 0.00473874993622303, 0.008626539260149002, 0.01811053417623043, 0.0072234272956848145, 0.002827335149049759, -0.01088710781186819, -0.024073759093880653, 0.02294347621500492, 0.01616176962852478, 0.018903033807873726, 0.018487296998500824, 0.0007287574117071927, 0.04126187786459923, -0.006534863263368607, 0.0038423174992203712, -0.01152370497584343, -0.014771648682653904, -0.0007892503635957837, -0.010347949340939522, 0.009068259038031101, -0.008535596542060375, -0.009133217856287956, -0.017318036407232285, -0.004573104903101921, -0.014589764177799225, 0.012900833040475845, -0.006996070966124535, 0.05955429747700691, 0.018851066008210182, -0.008412174880504608, 0.010958562605082989, 0.03258337453007698, 0.04521137848496437, -0.011010529473423958, -0.00509602390229702, -0.01681135781109333, -0.01853926293551922, -0.01186149101704359, -0.00254801195114851, 0.009425533004105091, -0.02428162842988968, 0.015927916392683983, -0.006421185098588467, 0.015447220765054226, 0.031544029712677, -0.018838074058294296, -0.014823615550994873, 0.002710409229621291, 0.01014008093625307, 0.01227073185145855, 0.013615380972623825, -0.01335554476827383, -0.030712557956576347, 0.00874996092170477, 0.0003755435172934085, 0.0010474618757143617, -0.031595997512340546, -0.005605950951576233, -0.006499135866761208, -0.011932945810258389, -0.015759022906422615, 0.008710985071957111, -0.01830541156232357, -0.0019731258507817984, -0.0007949342834763229, 0.0045178900472819805, -0.03190780058503151, -0.003247943939641118, 0.029829116538167, -0.00284844683483243, -0.023294253274798393, -0.00035788281820714474, -0.0012066111667081714, 0.010802661068737507, 0.020163236185908318, -0.010575305670499802]" +45,"Our data center investments continue to be based on strong customer demand and usage signals. Cash flow from operations was $23.2 billion, down 5% year over year, driven by strong cloud billings and collections, which were more than offset by a tax payment related to the transfer of intangible property completed in Q1 of FY '22. Free cash flow was $16.9 billion, down 10% year over year. Excluding the impact of this tax payment, cash flow from operations grew 2%, and free cash flow was relatively unchanged [indiscernible] year.","[-0.022294508293271065, -0.027116671204566956, 0.00050164241110906, -0.02752598002552986, 0.013916480354964733, 0.0017843281384557486, -0.02583758346736431, -0.023010797798633575, -0.00845477357506752, -0.03793775662779808, 0.019058415666222572, 0.03238651528954506, -0.01261820551007986, 0.0013790170196443796, 0.008096628822386265, 0.028932977467775345, 0.00513873714953661, -0.03604470565915108, -0.00913268979638815, -0.017945608124136925, -0.027884123846888542, 0.027628306299448013, -0.03591679781675339, 0.0018562768818810582, -2.139724892913364e-05, -0.0033895839005708694, 0.006843122188001871, -0.005311414133757353, 0.013916480354964733, -0.019416559487581253, -0.009350134991109371, -0.012503087520599365, -0.021961946040391922, 0.016628148034214973, -0.024187559261918068, 0.0014133924851194024, -0.007955929264426231, 0.02029913105070591, 0.011499003507196903, -0.01862352527678013, 0.04208200424909592, 0.01068678218871355, -0.01862352527678013, 0.01323856320232153, -0.0030682128854095936, -0.01233041100203991, -0.007111730985343456, -0.01062922365963459, -0.019390977919101715, 0.01281646452844143, -0.012240874581038952, 0.0485541895031929, -0.009100712835788727, -0.011492608115077019, -0.005730315577238798, 0.007744879461824894, -0.010667596012353897, -0.0023231441155076027, 0.010462941601872444, -0.003965173847973347, -0.017613045871257782, 0.019595632329583168, -0.024085231125354767, 0.002652509370818734, -0.0399075523018837, -0.012758905068039894, 0.004691056441515684, 0.0014725503278896213, -0.001279887743294239, 0.011160044930875301, 0.024225931614637375, 0.03453538194298744, -0.0012862831354141235, 0.016768846660852432, 0.013264145702123642, -0.014863005839288235, -0.0035718539729714394, 0.003626215271651745, 0.015873486176133156, 0.03192604333162308, 0.00936292577534914, -0.013033909723162651, -0.0012599019100889564, 0.005372170824557543, 0.00579426996409893, 0.008441982790827751, -0.0059669469483196735, 0.010232706554234028, -0.0536193810403347, 0.03543074429035187, 0.024200350046157837, 0.0011160045396536589, 0.016014184802770615, 0.03809124976396561, -0.0003867243358399719, 0.0070669627748429775, -0.021565428003668785, 0.029316702857613564, -0.0006091658142395318, -0.03238651528954506, 0.001615648390725255, -0.004543961025774479, -0.018406080082058907, -0.0113455131649971, -0.024494539946317673, -0.02549222856760025, 0.023893369361758232, -0.0029786766972392797, 0.010437360033392906, -0.0035238880664110184, -0.010303055867552757, -0.012867627665400505, -0.009394903667271137, 0.014415324665606022, -0.001324655837379396, 0.01281646452844143, -0.0011759618064388633, -0.00017007876886054873, -0.018764225766062737, -0.01515719573944807, 0.01813747175037861, -0.0024094826076179743, 0.02923995815217495, -0.018329335376620293, 0.011716448701918125, 0.0012990740360692143, 0.0019410164095461369, -0.016257211565971375, 0.006689631845802069, -0.0019186324207112193, -0.017216527834534645, 0.017357228323817253, 0.00816058274358511, 0.005340193398296833, -0.01468393299728632, 0.010597246699035168, -0.011742030270397663, 0.018035145476460457, -0.015489758923649788, -0.02077239379286766, -0.017549090087413788, 0.0071756853722035885, 0.005170714110136032, 0.007808833848685026, 0.012611810117959976, 0.032309770584106445, 0.01424904353916645, -0.009369321167469025, 0.027884123846888542, -0.013302518054842949, 0.007393130101263523, -0.01642349362373352, 0.026029447093605995, 0.016768846660852432, 0.016756055876612663, -0.01802235282957554, -0.003565458580851555, 0.03394700214266777, 0.002249596407637, -0.014773469418287277, -0.01442811544984579, 0.012989141047000885, -0.0037733104545623064, -0.002893937285989523, 0.006146019324660301, 0.01196587085723877, 0.012893210165202618, -0.004339307080954313, 0.0016404306516051292, -0.0137757807970047, 0.0028251861222088337, -0.002572566270828247, 5.8108580560656264e-05, 0.017472345381975174, 0.011505398899316788, 0.02801203355193138, 0.011530980467796326, 0.004323318134993315, -0.030774863436818123, -0.021437520161271095, 0.012362387962639332, 0.010098401457071304, -0.0006803150754421949, 0.0158351119607687, 0.00534978648647666, -0.022882889956235886, 0.01898166909813881, -0.014863005839288235, -0.008665823377668858, 0.0025309959892183542, -0.02104100212454796, 0.0007530632428824902, 0.006146019324660301, -0.005973342340439558, -0.6413860321044922, 0.004755010828375816, 0.004297736566513777, -0.025556184351444244, -0.0032968500163406134, -0.009273390285670757, 0.026170145720243454, -0.0015029286732897162, -0.02862599492073059, -0.0058838059194386005, 0.031081844121217728, 0.03154231607913971, -0.010923413559794426, -0.012842046096920967, -0.006257939152419567, -0.023522432893514633, -0.023701505735516548, -0.0003815280506387353, -0.027628306299448013, 0.01245192438364029, -0.006862308364361525, 0.016359539702534676, -0.011262372136116028, 0.004825360607355833, 0.011281558312475681, 0.0038084853440523148, 0.013494380749762058, -0.027142252773046494, -0.009107108227908611, 0.0007510646246373653, -0.017011873424053192, -0.0141978794708848, 0.03220744431018829, 0.005065189674496651, 0.0391656830906868, 0.014837424270808697, -0.024225931614637375, 0.011499003507196903, 0.013571126386523247, 0.028370177373290062, -0.025556184351444244, 0.017190946266055107, 0.019531678408384323, -0.00437767943367362, -0.01540022250264883, 0.016986291855573654, 0.010162356309592724, -0.01776653528213501, 0.013430426828563213, 0.0021696535404771566, -0.006146019324660301, -0.00930536724627018, -0.024481749162077904, -0.006526547949761152, 0.0034087703097611666, 0.009247807785868645, 0.00911989901214838, -0.036658670753240585, 0.0045119840651750565, 0.013737407512962818, 0.0021680546924471855, -0.006376254837960005, -0.014325788244605064, -0.014082761481404305, -0.02091309241950512, 0.025223620235919952, -0.018674688413739204, 0.004655881319195032, 0.030109737068414688, -0.006168403197079897, 0.010040842927992344, 0.015502549707889557, 0.00455994950607419, -0.008998385630548, 0.01980028674006462, 0.0053689731284976006, 0.035584233701229095, -0.011562958359718323, -0.015758367255330086, -0.004751813132315874, -0.013929271139204502, -0.009286181069910526, -0.003010653890669346, -0.0053689731284976006, 0.00863384548574686, 0.014415324665606022, 0.00011241986794630066, -0.004595124628394842, -0.01299553643912077, -0.0035015041939914227, 0.00697742635384202, -0.007335571106523275, 0.009382112883031368, -0.04177502170205116, 0.013609498739242554, 0.01595023088157177, -0.019544469192624092, 0.012080988846719265, 0.0013470398262143135, 0.0013646272709593177, -0.013149027712643147, -0.006830331403762102, 0.0077065066434443, 0.0028427736833691597, 0.015540922060608864, 0.023599177598953247, -0.011057717725634575, -0.01160133071243763, 0.028370177373290062, -0.02310033328831196, 0.006286718882620335, -0.01873864233493805, -0.002681288868188858, -0.009343739598989487, -0.011876334436237812, -0.017817700281739235, 0.04087965935468674, 0.0013126643607392907, 0.006289916578680277, -0.014965333044528961, -0.01823979802429676, 0.005928574129939079, 0.013903689570724964, -0.027142252773046494, -0.00017457555804867297, 0.017817700281739235, 0.018035145476460457, -0.008729777298867702, 0.00017267691146116704, -0.011473421938717365, 0.0009577173623256385, 0.010910622775554657, 0.03911451995372772, -0.014069970697164536, 0.019736332818865776, 0.00014349771663546562, -0.001462157815694809, -0.005995726212859154, -0.003795694326981902, -0.056842681020498276, -0.028344595804810524, -0.0001979588996618986, -0.008493145927786827, -0.009586766362190247, -0.014146716333925724, -0.026016654446721077, -0.006779167801141739, 0.012100175023078918, -0.019915403798222542, 0.013993225991725922, -0.016231629997491837, 0.0005564034217968583, 0.005596010945737362, 0.006715213414281607, 0.019902613013982773, -0.0024046858306974173, 0.021232865750789642, -0.03947266563773155, -0.00504600303247571, -0.031849298626184464, 0.004323318134993315, 0.005324204917997122, -0.008800127543509007, 0.008774545043706894, -0.02067006565630436, -0.007891974411904812, -0.023522432893514633, -0.0038788351230323315, -0.0003031838859897107, -0.0035142949782311916, 0.01178040262311697, -0.01007921528071165, 0.0158351119607687, -0.002115292241796851, -0.002618933329358697, -0.0015684820245951414, 0.0004708643537014723, 0.00018117086437996477, -0.010488524101674557, -0.022754980251193047, 0.018815388903021812, 0.014159507118165493, -0.00030498261912725866, -0.0024446574971079826, 0.02767946943640709, 0.0022208169102668762, 0.003629412967711687, 0.02005610428750515, -0.015054868534207344, -0.0008110218914225698, -0.0030698117334395647, 0.016103722155094147, -0.016602566465735435, -0.017126992344856262, -0.007527434267103672, -0.00802627857774496, -0.003152952529489994, -0.002385499654337764, 0.007501852698624134, 0.008410004898905754, 0.017242109403014183, 0.037400539964437485, 0.008250119164586067, 0.031721390783786774, -0.010424569249153137, -0.02668178081512451, -0.0016276398673653603, -0.029879501089453697, 0.03586563467979431, 0.03080044500529766, 0.016986291855573654, -1.5376539522549137e-05, 0.01849561557173729, -0.006868703756481409, -0.0374772846698761, -0.0017619440332055092, 0.023650342598557472, -0.0034055726137012243, 0.010354219935834408, 0.01196587085723877, 0.011313535273075104, -0.014709515497088432, 0.013366471976041794, -0.005887003615498543, -0.0028123953379690647, -0.016270002350211143, -0.0043904706835746765, 0.004969257861375809, 0.00737394392490387, -0.0002100502752000466, -0.008704195730388165, 0.024098023772239685, 0.004716638009995222, 0.0026237298734486103, -0.006379452534019947, 0.03302605822682381, 0.016883965581655502, -0.0029898688662797213, 0.04036802425980568, -0.005071585066616535, 0.007412316277623177, 0.017613045871257782, 0.025159666314721107, -0.021897990256547928, -0.017433973029255867, -0.024123605340719223, 0.014325788244605064, -0.006392243783921003, -0.005759094841778278, -0.02391895093023777, 0.0005396153428591788, 0.0033448159229010344, 0.0018610734259709716, -0.0391656830906868, -3.9946524339029565e-05, -0.007668134290724993, -0.0001679802662692964, -0.0035590631887316704, 0.028293432667851448, 0.02921437658369541, 0.018290963023900986, 0.008896058425307274, 0.027858542278409004, -0.009311762638390064, 0.00887687224894762, 0.020989838987588882, -0.011518189683556557, -0.007719297893345356, -0.010462941601872444, 0.004982048645615578, 0.009107108227908611, -0.006203578319400549, 0.0018035144312307239, 0.0009904939215630293, 0.0064817797392606735, 0.024072440341114998, 0.00929257646203041, -0.026528291404247284, -0.007412316277623177, 0.0070797535590827465, 0.011409467086195946, -0.026630617678165436, -0.004406459163874388, 0.016743265092372894, 0.017549090087413788, 0.011275162920355797, 0.017306063324213028, 0.00785999745130539, 0.011044926941394806, 0.01243913359940052, -0.020452620461583138, -0.0047965808771550655, 0.00014859408838674426, 0.004083489067852497, 0.003722146851941943, 0.001287082559429109, 0.013583917170763016, -0.011837962083518505, -0.027142252773046494, 0.01075073704123497, -0.010603642091155052, 0.0022144215181469917, -0.00019546067051123828, 0.017178155481815338, 0.032437678426504135, 0.013001931831240654, 0.0005827845889143646, -0.01135830394923687, 0.0076425522565841675, -0.011652493849396706, 0.018930505961179733, -0.01426183432340622, -0.03057020902633667, 0.03445863723754883, 0.004694254137575626, 0.0033767931163311005, -0.0071884761564433575, -0.01800956204533577, 0.03527725487947464, -0.0002007568982662633, -0.010539687238633633, 0.010104796849191189, -0.03995871916413307, 0.003984360024333, 0.052596110850572586, 0.0060404944233596325, -0.005058794282376766, 0.00652335025370121, 0.00023063560365699232, 0.011511794291436672, 0.002511809580028057, -0.021961946040391922, 0.023727087303996086, -0.02729574404656887, -0.014223461970686913, 0.006721608806401491, 0.012368783354759216, -0.00010152762843063101, -0.004128257278352976, 0.006964635569602251, -0.013328099623322487, -0.011492608115077019, -0.016832802444696426, 0.00948443915694952, -0.019122369587421417, -4.226986857247539e-05, 0.029572520405054092, 0.053465887904167175, 0.026656199246644974, 0.031849298626184464, 0.027142252773046494, 0.020260758697986603, 0.009337344206869602, -0.01052050106227398, -0.018457243219017982, 0.008480355143547058, -0.005282634403556585, 0.019902613013982773, -0.00591578334569931, 0.017370019108057022, -0.00646259356290102, -0.024584077298641205, 0.0027772204484790564, 0.005899794399738312, 0.010053633712232113, -0.0018898529233410954, 0.01165888924151659, -0.0043808771297335625, -0.0034663293045014143, -0.015937440097332, -0.010379801504313946, 0.028702741488814354, 0.007808833848685026, -0.003517492674291134, 0.011089695617556572, -0.018892133608460426, -0.04607275873422623, 0.009989679791033268, -0.010194333270192146, 0.024213140830397606, -0.007239639759063721, -0.04448669031262398, 0.001961801666766405, -0.017613045871257782, -0.028907394036650658, -0.025044547393918037, 0.008135001175105572, -0.007118126377463341, -0.010526896454393864, -0.008429192006587982, 0.008173374459147453, -0.0030746085103601217, -0.016461865976452827, 0.011025740765035152, -0.0003161746426485479, -0.017958398908376694, -0.030979517847299576, 0.007776856888085604, 0.02645154483616352, -0.012125756591558456, -0.0054297298192977905, 0.016231629997491837, -0.009861770085990429, 0.0033320249058306217, 0.008640240877866745, -0.005548045504838228, -0.014850215055048466, -0.011217604391276836, -0.01426183432340622, 0.0316702239215374, 0.019851449877023697, -0.007226848509162664, -2.7580341338762082e-05, 0.01643628440797329, -0.02331777848303318, -0.014325788244605064, 0.018201425671577454, 0.0010912221623584628, 0.016474656760692596, 0.010085610672831535, 0.03614703565835953, -0.008365237154066563, 0.015323477797210217, 0.010616432875394821, 0.013686244376003742, 0.017178155481815338, -0.005135539453476667, -0.0017251702956855297, 0.013021118938922882, 0.005813456140458584, 0.0024766346905380487, -0.004898908082395792, 0.008013487793505192, -0.008934431709349155, -0.002999461954459548, -0.004332911688834429, -0.019237486645579338, -0.014312997460365295, -0.008844895288348198, -0.014850215055048466, 0.00513873714953661, 0.010315846651792526, 0.00784720666706562, -0.0014565617311745882, 0.030621372163295746, -0.02440500445663929, 0.019646795466542244, -0.0034375498071312904, -0.00513873714953661, -0.004838151391595602, 0.018035145476460457, -0.022447999566793442, -0.03760519623756409, 0.006907076574862003, -0.03031439147889614, 0.016231629997491837, -0.01009200606495142, -0.00991293415427208, -0.02271660789847374, -0.033409785479307175, -0.014517651870846748, -0.02005610428750515, -0.018316544592380524, -0.002286370377987623, -0.04323318228125572, -0.0213735643774271, 0.01667931117117405, -0.04333551228046417, 0.018892133608460426, -0.017357228323817253, -0.013251353986561298, 0.01371182594448328, 0.007118126377463341, 0.03809124976396561, -0.0036006334703415632, -0.005247459746897221, -0.023752668872475624, -0.011454235762357712, -0.011211208999156952, -0.012247269973158836, 0.0021824443247169256, -0.03443305566906929, 0.034995853900909424, 0.00917106308043003, 0.04059826210141182, 0.0029339087195694447, 0.008122210390865803, 0.01788165420293808, -0.014236252754926682, -0.006708818022161722, 0.018035145476460457, -0.005771885626018047, -0.01738280989229679, 0.00991293415427208, -0.02018401212990284, 0.01474788784980774, 0.0035462721716612577, -0.035353999584913254, 0.018086308613419533, 0.008716986514627934, -0.01249669212847948, 0.011211208999156952, -0.04604717716574669, 0.005675954278558493, 0.002879547420889139, -0.0053945546969771385, -0.008979199454188347, -0.002358319004997611, -0.03844939172267914, -0.002390296198427677, 0.0047358241863548756, 0.0059797377325594425, 0.03233535215258598, -0.014709515497088432, -0.0007890375563874841, 0.00039132105302996933, 0.005928574129939079, 0.002590153831988573, 0.017600255087018013, 0.005925376433879137, -0.02732132561504841, -0.028907394036650658, -0.007994301617145538, 0.023125916719436646, -0.021232865750789642, 0.018188634887337685, 0.017331646755337715, 0.005771885626018047, 0.0018530790694057941, 0.01884097047150135, 0.00030877991230227053, -0.013302518054842949, 0.016014184802770615, -0.030621372163295746, -0.010961786843836308, -0.036428432911634445, -0.004962862469255924, -0.002559775486588478, 0.00553205655887723, 0.03755403310060501, 0.007060567382723093, 0.014312997460365295, -0.014133925549685955, -0.007214057724922895, 0.027884123846888542, -0.011933893896639347, 0.004173025488853455, -0.029393447563052177, 0.042721547186374664, -0.0038628466427326202, -0.00673439959064126, -0.03635168820619583, -0.021782873198390007, 0.01202342938631773, -0.016730474308133125, 0.039830807596445084, 0.036556344479322433, -0.015643250197172165, -0.017587464302778244, -0.02212822623550892, 0.025198038667440414, -0.003955580294132233, -0.00803906936198473, 0.01323856320232153, 0.012324015609920025, -0.0019330221693962812, -0.01822700724005699, -0.019122369587421417, -0.027244580909609795, 0.01738280989229679, -0.015579295344650745, 0.01656419225037098, -0.02790970541536808, -0.017664209008216858, -0.020222386345267296, 0.027705051004886627, 0.014658351428806782, 0.007022194564342499, -0.005819851532578468, 0.0064338138327002525, 0.01261820551007986, -0.004636695142835379, 0.006318695843219757, -0.0004228985635563731, -0.020861929282546043, 0.03169580549001694, -0.021220074966549873, 0.019403768703341484, -0.007265221327543259, -0.008186165243387222, -0.013302518054842949, 0.011134463362395763, -0.023138707503676414, 0.011703657917678356, -0.0053945546969771385, -0.009318158030509949, 0.024852685630321503, 0.0012007440673187375, 0.00652335025370121, -0.007987906225025654, -0.024366632103919983, -0.028805067762732506, -0.02826785109937191, -0.006715213414281607, 0.024468958377838135, 0.0033480136189609766, -0.023484060540795326, 0.009196644648909569, -2.5887798074109014e-06, -0.02270381711423397, -0.008857686072587967, -0.010910622775554657, 0.03330745920538902, -0.02466082200407982, -0.010712364688515663, 0.015643250197172165, 0.019378187134861946, 0.02885623089969158, -0.009676302783191204, 0.020260758697986603, -0.003093794686719775, 0.015540922060608864, -0.018892133608460426, 0.0453820526599884, 0.02550501935184002, 0.0026061423122882843, -0.047172773629426956, 0.014236252754926682, -0.00697742635384202, -0.004364888649433851, 0.013340890407562256, -0.0066640498116612434, -0.025799211114645004, 0.005496881902217865, 0.022908471524715424, 0.0011591737857088447, 0.007802438456565142, 0.013276936486363411, 0.007214057724922895, 0.05121469497680664, -0.016845593228936195, 0.0035462721716612577, -0.03312838450074196, 0.0274492334574461, 0.010411778464913368, -0.006344277877360582, 0.020734021440148354, -0.025696882978081703, -0.0035142949782311916, -0.007610575295984745, 0.012228083796799183, 0.009759443812072277, 0.014722306281328201, -0.034253984689712524, -0.0017811304423958063, 0.010104796849191189, -0.030237646773457527, 0.021808454766869545, -0.011684471741318703, -4.134552727919072e-05, 0.014402533881366253, -9.223425877280533e-05, -0.005634383764117956, 0.01607813872396946, 0.007565807085484266, 0.004649485927075148, 0.032079532742500305, 0.0022527941036969423, 0.009177458472549915, -0.0331539660692215, -0.004691056441515684, -0.026298055425286293, -0.0442308709025383, -0.011160044930875301, 0.008007092401385307, 0.024187559261918068, 0.008915245532989502, -0.022652653977274895, -0.022204972803592682, -0.00826930534094572, -0.03668425232172012, -0.024366632103919983, -0.023484060540795326, 0.02888181246817112, 0.03266791254281998, 0.01569441333413124, -0.03228418901562691, 0.03717030584812164, -0.002722859149798751, 0.04220991209149361, -0.040419187396764755, 0.02875390462577343, 0.031133009120821953, -0.020324712619185448, 0.0020097673404961824, -0.009631535038352013, -0.028549250215291977, -0.005832642316818237, 0.005231470800936222, -0.013750199228525162, 0.024366632103919983, 0.015438595786690712, 0.0061012511141598225, -0.016871174797415733, 0.00330644310452044, 0.009650721214711666, -0.0050140260718762875, 0.0064945705235004425, -0.009260599501430988, -0.04244014993309975, 0.0010976176708936691, 0.015899067744612694, -0.0039268010295927525, -0.002551781013607979, 0.01580953039228916, -0.0028299828991293907, -0.005880608223378658, -0.020580530166625977, -0.009817002341151237, -0.006427418440580368, 0.013903689570724964, -0.0021009023766964674, -0.00336719979532063, 0.024711985141038895, -0.008441982790827751, 0.015643250197172165, 0.03169580549001694, -0.01492695976048708, -0.00431692274287343, 0.006708818022161722, -0.02921437658369541, -0.013865317218005657, -0.008621054701507092, -0.0029451006557792425, 0.007290802896022797, 0.005052398424595594, -0.001622843206860125, 0.007623366080224514, -0.023854997009038925, -0.015182777307927608, 0.011684471741318703, -0.015336268581449986, -0.01014317013323307, -0.016500238329172134, -0.03814241290092468, 0.018329335376620293, 0.0038148807361721992, -0.01584790274500847, 0.0003583445795811713, 0.0028219884261488914, -0.004946873988956213, -0.03806566819548607, -0.03080044500529766, 0.02257590740919113, -0.008947222493588924, -0.04359132796525955, -0.020273549482226372, 0.01788165420293808, 0.010015261359512806, 0.01666652038693428, 0.20956581830978394, 0.023010797798633575, 0.0034855154808610678, 0.047044865787029266, -0.009087922051548958, -0.0022527941036969423, 0.013583917170763016, -0.01426183432340622, -0.011671680025756359, 0.016154885292053223, -0.009478043764829636, 0.011607726104557514, 0.005768687929958105, -0.0071053351275622845, 0.0010072820587083697, -0.003750926349312067, -0.02404685877263546, 0.01616767607629299, -0.043207600712776184, 0.05812177062034607, 0.02271660789847374, -0.02510850317776203, 0.008441982790827751, -0.01273971889168024, 0.0007822423940524459, -0.014811841771006584, 0.0014341777423396707, -0.0041986070573329926, 0.030160902068018913, 0.027218997478485107, -0.006453000474721193, 0.01596302166581154, 0.009708279743790627, -0.021539846435189247, -0.002155263675376773, -0.018175844103097916, 0.004361690953373909, -0.011300744488835335, -0.006398639176040888, 0.018789807334542274, -0.00038212761864997447, 0.008505936712026596, -0.013315308839082718, -0.007578597869724035, 0.021309610456228256, 0.01571999490261078, -0.00809023343026638, -0.001699588494375348, 0.007610575295984745, 0.023023588582873344, -0.03965173661708832, 0.004384074825793505, 0.001777932746335864, 0.01196587085723877, -0.0059925285167992115, 0.012138547375798225, 0.028907394036650658, 0.006165205501019955, -0.0022895680740475655, -0.010891436599195004, -0.0026061423122882843, 0.012049011886119843, -0.02173171006143093, -0.004838151391595602, -0.03218185901641846, -0.027858542278409004, -0.0017651418456807733, 0.007834415882825851, 0.0060404944233596325, -0.010597246699035168, 0.007303594145923853, -0.0035494698677212, -0.018073517829179764, -0.004751813132315874, -0.015668831765651703, -0.022051481530070305, 0.0253899022936821, 0.012842046096920967, 0.010897831991314888, 0.013673453591763973, 0.0005308216204866767, 0.010290265083312988, -0.03394700214266777, -0.02104100212454796, 0.0011359902564436197, -0.009394903667271137, -0.001331850653514266, 0.0005380164948292077, -0.019493306055665016, -0.015387431718409061, 0.012778092175722122, 0.023266615346074104, -0.021910782903432846, -0.023471269756555557, 0.0216421727091074, -0.006561722606420517, 0.002216020366176963, 0.008569891564548016, -0.015899067744612694, -0.016218839213252068, -0.012471110559999943, 0.055870573967695236, 0.026272473856806755, -0.005266645923256874, -0.000420500262407586, -0.027935286983847618, 0.0022240146063268185, 0.025402693077921867, -0.007546620909124613, -0.02852366864681244, 0.01473509706556797, -0.007770461030304432, 0.018431661650538445, -0.0204270388931036, 0.019864240661263466, 0.005439322907477617, -0.007329175714403391, -0.006798353977501392, -0.001392607344314456, -0.0013518363703042269, 0.005033212248235941, -0.03780984878540039, -0.007028589956462383, -0.006168403197079897, 0.006728004198521376, -0.009318158030509949, 0.013302518054842949, -0.01702466420829296, -0.0035910403821617365, -0.03819357603788376, 0.0113455131649971, 0.00462070619687438, 0.022422417998313904, -0.015604876913130283, -0.002526199212297797, 0.022780561819672585, 0.002559775486588478, -0.0002008568262681365, -0.024225931614637375, -0.003424758790060878, -0.0016036569140851498, 0.01822700724005699, 0.009701884351670742, -0.009759443812072277, 0.020094476640224457, -0.03804008662700653, 0.041391294449567795, -0.003945987205952406, -0.02453291229903698, -0.023854997009038925, -0.0449727438390255, 0.004121861886233091, 0.02127123810350895, -0.000546410505194217, 0.031005099415779114, -0.04000988230109215, -0.030851608142256737, -0.018674688413739204, 0.003172138938680291, 0.013622290454804897, -0.05159842222929001, -0.013890898786485195, 0.01582232117652893, -0.008953617885708809, -0.004873326513916254, -0.015873486176133156, -0.15881159901618958, 0.012400760315358639, -0.004659079015254974, 0.0019138357602059841, 0.02490384876728058, -0.0192119050770998, -0.0027020738925784826, -0.03033997304737568, 0.015528131276369095, 0.00814779195934534, -0.0011775606544688344, 0.017676999792456627, -0.017421182245016098, 0.014479279518127441, 0.005413740873336792, 0.0123751787468791, -0.01657698303461075, 0.023854997009038925, 0.020273549482226372, 0.0015484961913898587, 0.03998430073261261, -0.01858515292406082, 0.011754821054637432, -0.027960870414972305, 0.0253899022936821, 0.020350294187664986, -0.035098180174827576, 0.0011975463712587953, 0.0007470675045624375, -0.013059491291642189, -0.021539846435189247, 0.005007630679756403, 0.016999082639813423, 0.01679442822933197, 0.014031598344445229, -0.004588729236274958, -0.015502549707889557, -0.014095552265644073, -0.002375906566157937, 0.027474815025925636, 0.026182936504483223, 0.020695647224783897, 0.012535065412521362, 0.0205293670296669, -0.0049404785968363285, 0.017830491065979004, 0.023842204362154007, 0.00791755598038435, -0.0076041799038648605, 0.022754980251193047, 0.034842364490032196, -0.048042554408311844, 0.012765300460159779, -0.004812569823116064, -0.021667756140232086, 0.017613045871257782, -0.004499192815274, 0.00014779464981984347, 0.02354801446199417, -0.03555865213274956, 0.010533291846513748, -0.011447840370237827, -0.018521199002861977, -0.008908850140869617, 0.014274625107645988, -0.02031192183494568, 0.01632116548717022, -0.008557100780308247, -0.0403168611228466, 0.032565586268901825, 0.008742568083107471, -0.02248637191951275, 0.0077512748539447784, 0.009740256704390049, -0.0009625139064155519, -0.02490384876728058, -0.009644325822591782, -0.006990217603743076, 0.03924242779612541, 0.006548931822180748, -0.011390280909836292, 0.02813994139432907, -0.01426183432340622, 0.008045464754104614, 0.005352984182536602, 0.02125844731926918, 0.0113455131649971, 0.015630459412932396, 0.010392592288553715, 0.0064210230484604836, -0.005244262050837278, -0.03067253716289997, 0.013814153149724007, 0.007150103338062763, -0.004109071101993322, 0.021463101729750633, 0.021168909966945648, 0.008307678624987602, 0.011876334436237812, 0.016999082639813423, -0.011332722380757332, 0.005580022465437651, -0.018393289297819138, 0.005448915995657444, 0.010885041207075119, 0.021706128492951393, -0.009753048419952393, 0.013583917170763016, 0.01497812382876873, -0.013622290454804897, -0.049244899302721024, 0.016154885292053223, 0.024596868082880974, 0.003738135565072298, -0.009126294404268265, 0.04203084111213684, -0.01884097047150135, 0.0012790883192792535, 0.007546620909124613, -0.008621054701507092, 0.061089254915714264, -0.009081526659429073, -0.039216846227645874, -0.0021392751950770617, 0.0038052876479923725, -0.003782903542742133, -0.11071787774562836, -0.02006889507174492, -0.01667931117117405, 0.01656419225037098, 0.01400601677596569, 0.0042337821796536446, -0.0032568785827606916, 0.05295425280928612, -0.04121222347021103, 0.043795980513095856, 0.0076169706881046295, -0.010635619051754475, -0.007028589956462383, 0.009382112883031368, 0.04988444223999977, 0.011837962083518505, -0.00392360333353281, 0.0013918079202994704, 0.012343201786279678, 0.0283957589417696, 0.011140858754515648, -0.0037253445480018854, -0.0008242125040851533, -0.02104100212454796, -0.026860853657126427, -0.0029147223103791475, -0.0357888899743557, 0.0025182049721479416, 0.007559411693364382, 0.02331777848303318, 0.014722306281328201, 0.0006267532589845359, 0.015604876913130283, -0.02067006565630436, -0.013839734718203545, 0.02307475171983242, -0.02065727487206459, -0.0170502457767725, 0.02562013827264309, -0.009318158030509949, 0.009631535038352013, 0.007425107527524233, 0.01117283571511507, -0.014658351428806782, 0.0018482825253158808, -0.022192182019352913, -0.010661200620234013, -0.0170502457767725, -0.0053210072219371796, -0.020567739382386208, -0.03371676802635193, -0.013072282075881958, -0.024072440341114998, -0.002786813536658883, 0.025812001898884773, -5.770886491518468e-05, 0.02114332839846611, -0.0005408144788816571, -0.01497812382876873, -0.03381909430027008, -0.030263228341937065, 0.0030650151893496513, -0.018994459882378578, 0.03417723998427391, 0.0017619440332055092, -0.007559411693364382, 0.002217619214206934, -0.0039140102453529835, 0.01268216036260128, -0.022435208782553673, -0.009817002341151237, 0.017242109403014183, -0.023113124072551727, 0.004192211665213108, -0.026988761499524117, -0.002836378291249275, -0.01871306076645851, -0.01875143311917782, 0.019263070076704025, 0.006264335010200739, -0.021834036335349083, -0.029649265110492706, 0.004483204334974289, -0.01994098536670208, 0.030007410794496536, 0.002092908136546612, 0.002124885329976678, -0.02151426486670971, 0.007975115440785885, 0.00031717392266727984, 0.0016036569140851498, 0.014722306281328201, -0.019864240661263466, -0.02732132561504841, -0.01372461672872305, 0.009075131267309189, -0.027218997478485107, -0.007316384930163622, -0.01716536469757557, -0.00018107093637809157, -0.010718760080635548, 0.0005703934002667665, -0.05397752299904823, 0.00869780033826828, 0.008921640925109386, 0.0213735643774271, 0.004847744479775429, 0.013430426828563213, 0.0026860854122787714, -0.0021904385648667812, -0.01249669212847948, 0.012656578794121742, -0.04845186322927475, 0.01616767607629299, -0.005759094841778278, 0.0001262100413441658, -0.019365396350622177, -0.02537711150944233, 0.011243185959756374, -0.004400063771754503, 0.0020881115924566984, 0.03415165841579437, -0.0015916654374450445, -0.01571999490261078, 0.037272632122039795, 0.0015421007992699742, 0.004189013969153166, 0.0076041799038648605, -0.009785025380551815, 0.022882889956235886, 0.011057717725634575, -0.024929430335760117, -0.0066640498116612434, -0.018188634887337685, -0.01641070283949375, 0.03734937682747841, -0.007111730985343456, -0.02503175660967827, -0.00480297626927495, 0.02632363699376583, 0.024328257888555527, -0.02452012151479721, -0.028446923941373825, -0.03445863723754883, -0.0017651418456807733, -0.0251212939620018, 0.0008609862998127937, -0.0050619919784367085, 0.025057340040802956, -0.0014237851137295365, 0.007936743088066578, 0.015208359807729721, 0.027142252773046494, 0.013686244376003742, 0.0030554221011698246, -0.0025965492241084576, 0.019109578803181648, -0.005343391094356775, 0.01353275403380394, -0.01117283571511507, 0.015489758923649788, 0.010558873414993286, 0.03660750761628151, 0.004118664190173149, 0.002172851236537099, -0.02150147408246994, 0.007680925074964762, 0.007680925074964762, -0.045484378933906555, -0.007348361890763044, 0.0071756853722035885, -0.05786595493555069, 0.0003649398568086326, -0.00942688062787056, 0.014133925549685955, 0.006545734126120806, 0.002347127068787813, -0.004684660583734512, 0.008844895288348198, -0.0012511082459241152, -0.007418712135404348, 0.02719341591000557, 0.030032992362976074, -0.010098401457071304, -0.010283869691193104, 0.0015900665894150734, 0.011492608115077019, 0.02379104122519493, -0.01426183432340622, 0.00881931371986866, -0.002022558357566595, 0.017254900187253952, -0.0017091816989704967, 0.009964097291231155, -0.0038340671453624964, 0.004627101588994265, 0.018879342824220657, 0.0171525739133358, 0.01738280989229679, 0.009439671412110329, -0.006676840595901012, 0.029188795015215874, 0.006385848391801119, -0.0021328795701265335, -0.028191104531288147, -0.019634004682302475, -0.03346094861626625, 0.0031129810959100723, -0.009401299059391022, -0.03374234959483147, -0.004265759140253067, 0.04919373616576195, -0.008595473133027554, 0.01062922365963459, -0.0031449582893401384, 0.02297242544591427, -0.005266645923256874, 0.006507361773401499, -0.013826943933963776, -0.005736710969358683, -0.009222226217389107, 0.019634004682302475, 0.0070797535590827465, 0.03343536704778671, 0.008614659309387207, 0.0021216876339167356, 0.03563540056347847, 0.015093241818249226, -0.008838499896228313, -0.00018127079238183796, -0.002281573601067066, 0.007469875272363424, -0.010642014443874359, 0.014619979076087475, -0.005787874571979046, -0.011153649538755417, 0.011198418214917183, -0.0229596346616745, 0.0026573059149086475, 0.014236252754926682, 0.016717683523893356, 0.0635451078414917, 0.013033909723162651, -0.008371632546186447, 0.011742030270397663, 0.014057179912924767, 0.0065553272143006325, -0.003629412967711687, 0.01641070283949375, -0.007041380740702152, -0.025760836899280548, 0.02982833795249462, -0.0015101236058399081, -0.01032224204391241, -0.014044389128684998, -0.020273549482226372, 0.010705968365073204, 0.009938515722751617, 0.012822859920561314, -0.016346748918294907, 0.007680925074964762, -0.00100328482221812, -0.022806143388152122, 0.010597246699035168, 0.0052858320996165276, -0.012969954870641232, -0.01007921528071165, 0.012176920659840107, 0.0014125930611044168, -0.003738135565072298, -0.03816799446940422, 0.0053337980061769485, 0.002740446710959077, -0.018035145476460457, 0.006510559469461441, 0.025530600920319557, -0.0010344625916332006, -0.015349059365689754, -0.008422796614468098, 0.004633497446775436, -0.014466488733887672, -0.014581605792045593, 0.03719588741660118, -0.001263899146579206, -0.005621592979878187, 0.009689093567430973, 0.0017027863068506122, 0.015630459412932396, 0.007546620909124613, -0.005362577736377716]" +46,"This quarter, other income and expense was $54 million, driven by interest income, which was mostly offset by interest expense and net losses on foreign currency remeasurement. Our effective tax rate was approximately 19%. And finally, we returned $9.7 billion to shareholders through share repurchases and dividends. Now, moving to our Q2 outlook, which, unless specifically noted otherwise, is on a US dollar basis.","[-0.030022066086530685, -0.006907156202942133, 0.0024519753642380238, -0.041390907019376755, -0.009534737095236778, -0.018458107486367226, -0.0006942927720956504, -0.023075886070728302, -0.010347726754844189, -0.010920071043074131, 0.017053261399269104, 0.03056839480996132, 0.011830618605017662, -0.0024227078538388014, 0.006816101726144552, 0.03199925646185875, 0.006217741407454014, -0.04237950220704079, 0.008403056301176548, -0.019160529598593712, -0.0376446507871151, 0.005928317550569773, -0.030074097216129303, -0.004890942946076393, -0.0007564864354208112, -0.010549347847700119, 0.015622400678694248, -0.004364125896245241, 0.003905600169673562, -0.017664629966020584, -0.0200190469622612, -0.00917051825672388, -0.01861420087516308, 0.019329631701111794, -0.032493554055690765, 0.004923462867736816, -0.007186824455857277, 0.014425680972635746, 0.02087756246328354, -0.008728251792490482, 0.01836705207824707, 0.0035771524999290705, 0.002861721906810999, 0.02291979268193245, -0.019954007118940353, -0.002890989650040865, -0.011407864280045033, -0.026158740743994713, -0.007128289435058832, 0.02004506252706051, -0.01032821461558342, 0.04620380327105522, -0.03613574430346489, -0.02147592231631279, -0.003356019500643015, 0.0033430117182433605, 0.008760771714150906, 0.007518524304032326, -0.009892452508211136, -0.000864207511767745, -0.020539360120892525, -0.006103923078626394, -0.02066943794488907, 0.016584979370236397, -0.03402847796678543, -0.012487513944506645, -0.0181589275598526, -0.0012625722447410226, 0.02458479441702366, 0.016155721619725227, 0.0355633981525898, 0.01632482372224331, 0.009690831415355206, 0.0012975308345630765, 0.014061461202800274, -0.0167410746216774, -0.015167126432061195, 0.0021511693485081196, 0.013241968117654324, 0.0053592249751091, 0.015986619517207146, -0.007746160961687565, -0.0376446507871151, -0.007277879398316145, 0.0030389537569135427, 0.008357529528439045, -0.013723257929086685, 0.01817193441092968, -0.034340664744377136, 0.024402683600783348, 0.021931197494268417, 0.00928758829832077, 0.010601378977298737, 0.028981439769268036, -0.005902301520109177, 0.01133632194250822, -0.04128684476017952, 0.016832128167152405, -0.018054865300655365, -0.054008498787879944, 0.00899491272866726, 0.0003276346542406827, -0.020565375685691833, -0.014893962070345879, -0.016402870416641235, -3.38406753144227e-05, -0.007076258305460215, -0.0167410746216774, -0.008331513032317162, -0.016650019213557243, 0.0015137859154492617, -0.014477712102234364, 0.014035445638000965, -0.00516085559502244, 0.021527953445911407, -0.00629253638908267, 0.009105479344725609, 0.014399664476513863, 0.022984830662608147, -0.010399757884442806, 0.013840327970683575, -0.0014089102623984218, 0.024714872241020203, -0.01692318357527256, 0.013267983682453632, 0.006920163985341787, 0.027342453598976135, -0.0035056094639003277, 0.0008674595155753195, -0.005915309302508831, -0.025872569531202316, 0.011830618605017662, 0.0022844995837658644, 0.009645303711295128, -0.021137719973921776, 0.03220738098025322, -0.026561982929706573, 0.014425680972635746, -0.019901975989341736, -0.0006731550674885511, 0.007427469361573458, 0.01260458491742611, -0.0006024250178597867, -0.000238205844652839, 0.0038015374448150396, 0.02747253142297268, 0.027342453598976135, -0.019914982840418816, 0.019680842757225037, -0.004286079201847315, 0.009775382466614246, -0.009885949082672596, 0.03759261965751648, 0.01861420087516308, 0.03056839480996132, -0.007466492708772421, 0.006100670900195837, 0.013215952552855015, -0.0143606411293149, -0.01167452521622181, -0.021345844492316246, -0.010484308935701847, 0.0021511693485081196, 0.013411070220172405, 0.0035511369351297617, 0.022555572912096977, 0.025911591947078705, 0.0077916886657476425, -0.007765673100948334, -0.00793477427214384, 0.004861675668507814, -0.014503727667033672, -0.001666627824306488, 0.024298621341586113, -0.010022531263530254, 0.010913567617535591, 0.007661610376089811, -0.007505516521632671, -0.043628253042697906, -0.019667834043502808, 0.0002605630434118211, -4.438413088792004e-05, 0.013892360031604767, 0.0221002995967865, 0.0250010434538126, -0.0066047245636582375, 0.006409606896340847, -0.02267264388501644, 0.0075120204128324986, -0.018523145467042923, -0.014308609999716282, 0.022763697430491447, -0.0006085224449634552, -0.008253466337919235, -0.6443557143211365, 0.016650019213557243, -0.003388538956642151, 0.008175419643521309, 0.0033917909022420645, -0.010042042471468449, 0.022867759689688683, 0.00919653382152319, -0.022022251039743423, -0.006699031218886375, 0.002276369836181402, -0.009424170479178429, 0.005580357741564512, -0.03925762325525284, -0.004864927381277084, -0.036421917378902435, -0.01797681674361229, -0.011576966382563114, -0.033326052129268646, 0.006383591331541538, 0.004630786366760731, 0.014269586652517319, -0.006256764754652977, 0.00989895686507225, 0.016350839287042618, -0.0009975377470254898, -0.015635408461093903, -0.05322802811861038, -0.010601378977298737, 0.004565747454762459, -0.01631181500852108, -0.005219390615820885, 0.005804743152111769, 0.01754755899310112, 0.03608371317386627, 0.004182016476988792, -0.011537943035364151, 0.0015170378610491753, 0.008760771714150906, 0.05900350585579872, -0.025313232094049454, 0.0015991497784852982, 0.008494111709296703, 0.0035088614095002413, -0.001623539486899972, 0.00733641441911459, 0.013723257929086685, 0.026926202699542046, 0.025456318631768227, -0.0022584840189665556, -0.00899491272866726, 0.000530881981831044, -0.013098882511258125, -0.006341315805912018, 0.023804323747754097, 0.021840142086148262, 0.016181737184524536, -0.03410652279853821, 0.0009146128431893885, -0.006214489694684744, -0.0033917909022420645, -0.0052421544678509235, 0.005538082681596279, -0.011713548563420773, -0.023062877357006073, 0.008676220662891865, 0.003084480995312333, 0.021111704409122467, 0.011915169656276703, 0.0025999394711107016, -0.012975308112800121, 0.0216580331325531, 0.00096095324261114, -0.002248728182166815, 0.017196347936987877, 0.011707044206559658, 0.03358621150255203, -0.029241595417261124, -0.012520033866167068, 0.001835729693993926, -0.009020928293466568, -0.03340410068631172, 0.0007662423304282129, 0.006731550674885511, 0.006848621182143688, -0.004718589596450329, 0.0012999697355553508, -0.005508814938366413, 0.01114770770072937, 0.009554249234497547, -0.0013324893079698086, 0.004855171777307987, -0.003199925646185875, -0.03197323903441429, 0.006998211145401001, 0.0177816990762949, -0.010230655781924725, 0.0014893962070345879, 0.008500615134835243, -0.0003083261544816196, -0.011199739761650562, 0.005508814938366413, 0.025534365326166153, 0.00021645837114192545, 0.024272605776786804, 0.03285777196288109, -0.004217788111418486, -0.007232352159917355, 0.027290422469377518, -0.028331048786640167, -0.02557338774204254, -0.01041276566684246, 0.0177816990762949, -0.010243664495646954, -0.0028731038328260183, -0.024857958778738976, 0.012708647176623344, 0.0021121460013091564, 0.00017987386672757566, -0.0026519708335399628, -0.004555991385132074, 0.01207776740193367, 0.02684815600514412, -0.03545933589339256, -0.01757357455790043, 0.004312094766646624, 0.01497200969606638, -0.01633783057332039, -0.01278669387102127, 0.0054275160655379295, 0.020604398101568222, 0.01238995511084795, 0.022009244188666344, -0.006364079657942057, 0.005544586572796106, 0.01455575879663229, 0.005128336139023304, -0.02809690684080124, -0.011863138526678085, -0.023375065997242928, -0.004006410948932171, 0.0030909848865121603, 0.006129938643425703, -0.0031495201401412487, -0.016064666211605072, -0.02950175292789936, 0.01373626571148634, -0.007785184774547815, -0.00017906088032759726, 0.01612970605492592, 0.006552692968398333, 0.0017105293227359653, -0.020162131637334824, -0.02397342585027218, 0.0033137439750134945, 0.0014471207978203893, 0.0007487630355171859, -0.032701678574085236, -0.024259598925709724, -0.01300782710313797, -0.0008845322881825268, -0.0044389208778738976, -0.008487607352435589, 0.012851733714342117, -0.036057695746421814, -0.0013942765071988106, -0.02931964211165905, 0.014503727667033672, -0.004198276437819004, -0.010068058036267757, 0.003424310591071844, -0.000622343213763088, 0.023036861792206764, -0.015479314140975475, 0.01415251661092043, 0.01075096894055605, 0.0059348214417696, -0.01710529252886772, -0.001860119285993278, -0.034574806690216064, 0.021358853206038475, -0.005590113811194897, -0.007869735360145569, -0.013528140261769295, 0.008032333105802536, -0.006321804132312536, 0.009710343554615974, 0.008318505249917507, -0.0008698984747752547, 0.004751109052449465, 0.001767438487149775, 0.018432091921567917, -0.00640310300514102, 0.000786160584539175, 0.005918561480939388, -0.0014479337260127068, -0.010061554610729218, 0.0038243012968450785, -0.00846159178763628, 0.007011218927800655, 0.01229890063405037, 0.03636988624930382, -0.007674618158489466, 0.021319828927516937, -0.010900558903813362, -0.02333604171872139, -0.0009113608975894749, -0.0215019378811121, 0.023453112691640854, 0.047192398458719254, 0.031921207904815674, -0.02207428216934204, -0.0031186265405267477, -0.01978490501642227, -0.040168169885873795, 0.0014276090078055859, 0.028773313388228416, 0.010347726754844189, -0.0010333092650398612, 0.008910361677408218, 0.0029023715760558844, -0.01125177089124918, -0.0048096440732479095, -0.006455134134739637, -0.006637244019657373, -0.008591669611632824, -0.022789712995290756, -0.0009154258295893669, -0.0028893635608255863, 0.0009137998567894101, -0.008175419643521309, 0.010842024348676205, -0.0017463008407503366, 0.018067872151732445, 0.006679519545286894, 0.020552366971969604, 0.007921766489744186, -0.002804812742397189, 0.028747297823429108, 0.0027332697063684464, 0.003791781608015299, 0.011024133302271366, 0.006751062348484993, -0.01732642576098442, -0.011401360854506493, -0.016168730333447456, 0.030074097216129303, -0.0033365078270435333, 0.008812802843749523, 0.015297205187380314, 0.003951127640902996, 0.004331606440246105, 0.004861675668507814, -0.02354416809976101, 0.0015048430068418384, -0.009580264799296856, -0.007804696448147297, 0.013437085784971714, 0.039101529866456985, 0.037072308361530304, 0.029397690668702126, -0.0018926388584077358, 0.026275811716914177, 0.00793477427214384, 0.014009430073201656, 0.025755498558282852, 0.015973612666130066, 0.0010203014826402068, 0.009235557168722153, -0.014529743231832981, 0.006591716315597296, -0.003308866173028946, 0.021592993289232254, -0.0032308190129697323, 0.00384381297044456, 0.011043645441532135, -0.004474692512303591, -0.031244801357388496, -0.0013186684809625149, -0.006640495732426643, -0.0032665906473994255, -0.027186358347535133, 0.007342918775975704, 0.03855520114302635, 0.016259783878922462, 0.012142807245254517, 0.03527722880244255, -0.02666604518890381, 0.00014247636136133224, 0.03790481016039848, -0.01280620601028204, -0.012552553787827492, -0.010490812361240387, 0.0006268146680667996, -0.005079556722193956, -0.00793477427214384, 0.030282221734523773, -0.0074534849263727665, -0.009157510474324226, -0.028200969099998474, 0.007869735360145569, -0.0008272165432572365, -0.006575456820428371, 0.03819097951054573, 0.02273768186569214, 0.006435622461140156, -0.008188427425920963, -0.028981439769268036, 0.0074534849263727665, 0.006725046783685684, 0.0029511507600545883, -0.010230655781924725, -0.03998606279492378, 0.02950175292789936, 0.0177816990762949, 0.0023349050898104906, -0.006181969773024321, -0.01322896033525467, 0.017651621252298355, -0.004308842588216066, -0.01074446551501751, 0.003388538956642151, -0.019667834043502808, -0.003388538956642151, 0.07789087295532227, 0.03493902459740639, -0.0058925459161400795, 0.02931964211165905, 0.01895240508019924, 0.011180227622389793, 0.0018178438767790794, -0.02000603824853897, 0.0027316438499838114, -0.011004622094333172, -0.019316622987389565, -0.01446470431983471, -0.014178532175719738, -0.0006113678682595491, 0.004289330914616585, 0.010646906681358814, -0.007427469361573458, -0.025248192250728607, -0.00018383718270342797, 0.00779819255694747, -0.01627279259264469, 0.005960837006568909, 0.018015841022133827, 0.034132540225982666, 0.02376530133187771, 0.0029105013236403465, 0.02046131156384945, 0.016650019213557243, 0.004312094766646624, -0.010276183485984802, 0.013131401501595974, -0.001391024561598897, -0.01249401830136776, 0.021527953445911407, -0.017859747633337975, 0.004614526871591806, 0.010679426603019238, -0.029397690668702126, 0.006585212424397469, -0.0015755731146782637, 0.010022531263530254, 0.0032584606669843197, 0.005752711556851864, -0.005843766499310732, 0.015362244099378586, -0.019758889451622963, -0.009684327058494091, 0.02479291893541813, -0.00046787530300207436, -0.012214349582791328, -0.0003268216678407043, -0.02288076840341091, -0.03202527016401291, 0.010315206833183765, -0.009151006117463112, 0.019693851470947266, 0.002401570091024041, -0.04011613875627518, 0.014594782143831253, -0.03194722533226013, -0.02558639645576477, -0.013235464692115784, 0.0017186591867357492, 0.0009316856157965958, -0.007616083137691021, -0.005290933884680271, -0.005440523847937584, -0.005401500500738621, -0.01464681327342987, 0.0017625605687499046, 0.009378643706440926, -0.018848340958356857, -0.03816496580839157, -0.0007723397575318813, 0.006061647552996874, 0.006367331370711327, -0.004425913095474243, 0.019914982840418816, 0.0019414182752370834, 0.014425680972635746, -0.014542751014232635, -0.012767182663083076, -0.029865970835089684, -0.036864183843135834, -0.016819121316075325, 0.019303616136312485, 0.018015841022133827, -0.010191632434725761, -0.01817193441092968, 0.0020373510196805, 0.006315300241112709, -0.02435065247118473, 0.018328029662370682, -0.019693851470947266, 0.010965598747134209, 0.007186824455857277, 0.03257159888744354, 0.015479314140975475, -0.000650391390081495, 0.016571972519159317, 0.0008471347391605377, 0.010367237962782383, -0.007765673100948334, -0.011609486304223537, 0.020318226888775826, 0.016610994935035706, 0.024077488109469414, -0.004829155746847391, 0.006643747910857201, -0.00992497242987156, 0.002782049123197794, -0.021085688844323158, -0.011622494086623192, -0.0072193443775177, -0.001166639500297606, -0.023205963894724846, 0.004855171777307987, 0.014165524393320084, 0.0020812524016946554, 0.006952683907002211, 0.03525121137499809, -0.017300410196185112, 0.028435111045837402, 0.009463194757699966, 0.006497409660369158, -0.001759308623149991, -0.010107082314789295, -0.011472904123365879, -0.010178624652326107, 0.0073884460143744946, 0.01125827431678772, 0.020786508917808533, -0.02290678396821022, -0.0026535966899245977, 0.005141343921422958, -0.0247799102216959, -0.02355717495083809, -0.017599590122699738, -0.014998025260865688, -0.00784371979534626, -0.008799795061349869, -0.015622400678694248, 0.0007780306623317301, -0.028539173305034637, 0.009937980212271214, -0.026744093745946884, -0.007303894963115454, 0.009879444725811481, -0.0009072959655895829, 0.03488699346780777, -0.0072193443775177, -0.010907063260674477, -0.029371675103902817, -0.00868922844529152, -0.0033755311742424965, -0.012415971606969833, 0.012207846157252789, -0.02703026495873928, 0.013372046872973442, 0.011349329724907875, 0.002388562308624387, 0.007440477143973112, -0.01074446551501751, 0.018692247569561005, 0.010783488862216473, -0.002788553014397621, 0.032597616314888, -0.007154304999858141, -0.006575456820428371, -0.005746207665652037, -0.011186731979250908, 0.016168730333447456, -0.01836705207824707, -0.010477804578840733, -0.012259877286851406, -0.00027905855677090585, -0.015050056390464306, 0.01672806590795517, -0.031088707968592644, 0.018223965540528297, -0.0030129379592835903, 0.022165337577462196, -0.021944204345345497, 0.011524935252964497, -0.04555341228842735, -0.004552739672362804, 0.037280432879924774, 0.0011365589452907443, 0.039751920849084854, -0.007895750924944878, 0.013879352249205112, 0.01072495337575674, 0.01653294824063778, -0.0019072727300226688, 0.027784720063209534, -0.00625026086345315, -0.0024080739822238684, -0.0321553498506546, -0.016624003648757935, 0.0100095234811306, 0.0051510995253920555, 0.031088707968592644, 0.004640542436391115, 0.015830526128411293, 0.014776892028748989, 0.012025736272335052, 0.00609416700899601, -0.018497129902243614, 0.009229053743183613, 0.010776984505355358, -0.01940767839550972, -0.0167410746216774, -0.0010365612106397748, 0.026080694049596786, -0.00458525912836194, 0.024402683600783348, -0.007772176992148161, 0.0018958908040076494, -0.002921883249655366, -0.017469512298703194, 0.00469907745718956, -0.000993472756817937, 0.026483936235308647, -0.019485725089907646, 0.01196069736033678, 0.025287216529250145, -0.0018536153947934508, -0.036421917378902435, -0.012324916198849678, 0.004630786366760731, -0.013580171391367912, 0.03397644683718681, 0.03358621150255203, -0.007479500956833363, -0.00032113073393702507, 0.005720192100852728, 0.01557036954909563, -0.022360455244779587, -0.017495527863502502, 0.004549487493932247, 0.019459709525108337, 0.010224152356386185, -0.006637244019657373, 0.013046850450336933, -0.02582053653895855, 0.03441870957612991, -0.011635501869022846, 0.015271189622581005, -0.0100095234811306, -0.019303616136312485, -0.014581774361431599, 0.03077651932835579, 0.014308609999716282, 0.006796589586883783, -0.027524562552571297, -0.005284429993480444, 0.00989895686507225, -0.017287403345108032, -0.010881047695875168, 0.014269586652517319, -0.010933078825473785, 0.03730645030736923, -0.04024621844291687, 0.03660402446985245, -0.009599776938557625, -0.007882743142545223, -0.029189564287662506, 0.0011780213098973036, -0.0018422335851937532, 0.018041856586933136, -0.032519567757844925, 0.006331559736281633, 0.032129332423210144, -0.007466492708772421, -0.0068941484205424786, -0.010185129009187222, -0.04295184463262558, -0.014763884246349335, -0.017040254548192024, 0.010152609087526798, 0.02066943794488907, 0.011661517433822155, -0.03366425633430481, 0.013098882511258125, -0.008227450773119926, -0.0015170378610491753, -0.01339806243777275, -0.020981624722480774, 0.02892940863966942, -0.001969059929251671, 0.0036486955359578133, 0.006230749189853668, 0.009755870327353477, 0.04742654040455818, 0.00930710043758154, 0.0032405750826001167, -0.009840421378612518, 0.011661517433822155, -0.00418852036818862, 0.035017069429159164, 0.005996608640998602, 0.0017235371051356196, -0.02976190857589245, 0.011694036424160004, -0.01814591884613037, -0.024870965629816055, 0.022815728560090065, -0.04279575124382973, -0.009729854762554169, -0.014074468985199928, -0.0005849457229487598, 0.0003434879472479224, 0.0005459222593344748, 0.0033917909022420645, -0.004477944690734148, 0.030880581587553024, -0.007407957687973976, 0.023622214794158936, 0.0019186545396223664, 0.025703467428684235, 0.019954007118940353, 0.008097372949123383, 0.013196440413594246, -0.016389861702919006, -0.0003089359088335186, -0.012396459467709064, 0.0002926761226262897, 0.013411070220172405, -0.006835613399744034, 0.01072495337575674, 0.008871338330209255, 0.033326052129268646, -0.011173723265528679, 0.018093887716531754, -0.02497502788901329, -0.006848621182143688, 0.0023040114901959896, 0.03343011811375618, -0.007752665318548679, -0.014828923158347607, 0.01689716801047325, 0.0032340711914002895, 0.025339247658848763, 0.00567141268402338, 0.0014552506618201733, -0.01083551999181509, 0.0056128776632249355, 0.005385240539908409, -0.037046290934085846, -0.02355717495083809, 0.021814126521348953, 0.030490348115563393, 0.006887644529342651, -0.0337943360209465, -0.0253782719373703, 0.005860025994479656, -0.0574425645172596, -0.012402963824570179, -0.027082296088337898, 0.024246590211987495, 0.03236347436904907, 0.011186731979250908, -0.012123295105993748, 0.04250957816839218, 0.002017839113250375, 0.01570044830441475, -0.03553738445043564, 0.012741167098283768, 0.03142691031098366, -0.016689041629433632, -0.005040532909333706, 0.009664815850555897, -0.032727692276239395, -0.008721748366951942, 0.004838911816477776, -0.022425495088100433, 0.02230842411518097, 0.015778494998812675, 0.008312001824378967, -0.02333604171872139, 0.005886042024940252, 0.025703467428684235, 0.015453298576176167, 0.0177816990762949, -0.00012875716492999345, -0.02208729088306427, 0.005381988361477852, 0.006464890204370022, 0.010601378977298737, -0.03551136702299118, 0.0070177228190004826, -0.007882743142545223, -0.009313604794442654, -0.000993472756817937, -0.032077301293611526, -0.005499058868736029, 0.018406076356768608, -0.025859560817480087, -0.002664978615939617, 0.008494111709296703, -0.014282594434916973, 0.017183339223265648, 0.009729854762554169, -0.0334821492433548, -0.013372046872973442, 0.0018812570488080382, -0.02641889825463295, 0.0036747113335877657, -0.009573761373758316, 0.008760771714150906, 0.013476109132170677, -0.006809597834944725, -0.0028893635608255863, -0.00026198578416369855, -0.004734849091619253, -0.0057722232304513454, 0.0011885901913046837, 0.0006650251452811062, -0.008312001824378967, 0.0005211260868236423, -0.038477152585983276, 0.017040254548192024, -0.0116485096514225, 0.01291677262634039, 0.003339759772643447, 0.010998117737472057, -0.0003388132608961314, -0.033169958740472794, -0.009892452508211136, 0.020136116072535515, -0.010263175703585148, -0.018744278699159622, -0.012305404990911484, 0.00043982715578749776, -0.024701863527297974, 0.02288076840341091, 0.20635616779327393, 0.001891012885607779, 0.03132284805178642, 0.019667834043502808, 0.00018271931912750006, 0.002928387140855193, 0.003860072698444128, -0.010510324500501156, -0.024428699165582657, 0.0008390048751607537, -0.04276973754167557, 0.025651436299085617, -0.027134327217936516, -0.006351071875542402, -0.004217788111418486, -0.012851733714342117, -0.04170309379696846, 0.015050056390464306, -0.04958583787083626, 0.06888945400714874, 0.007147801108658314, -0.00598034868016839, -0.003264964558184147, -0.026119716465473175, 0.02063041366636753, -0.008025829680263996, -0.0004772246757056564, 0.007160808891057968, 0.01796380989253521, 0.028357064351439476, -0.020370258018374443, 0.004760864656418562, 0.009885949082672596, -0.005037281196564436, -0.0075120204128324986, -0.013489116914570332, 0.003084480995312333, 0.0017788204131647944, 0.0010593249462544918, 0.02040928043425083, 0.0303602684289217, -0.0013812687247991562, -0.014165524393320084, -0.030490348115563393, -0.002689368324354291, 0.0212808046489954, 0.016871152445673943, 0.012064759619534016, -0.007303894963115454, 0.012747670523822308, -0.03262363001704216, 0.029996050521731377, -0.00928108487278223, 0.012415971606969833, 0.012253372929990292, 0.015804510563611984, 0.033534180372953415, 0.0002471487096045166, 0.0015983367338776588, -0.016441894695162773, 0.010900558903813362, 0.01549232192337513, -0.013762281276285648, 0.004142993129789829, -0.019329631701111794, 0.007681122049689293, 0.002032472984865308, 0.027576593682169914, 0.01691017486155033, -0.01693619042634964, -0.005326705519109964, 0.009372139349579811, -0.020474320277571678, -0.009098974987864494, -0.01557036954909563, -0.00835102517157793, 0.01497200969606638, -0.007011218927800655, 0.012396459467709064, -0.012734662741422653, 0.00950872153043747, -0.00806485302746296, -0.030932612717151642, -0.012376947328448296, -0.006738054566085339, -0.03160902112722397, 0.0009690831648185849, 0.010620891116559505, -0.002276369836181402, 0.0058307587169110775, 0.024103503674268723, 0.0272383913397789, -0.010809504427015781, -0.0031966734677553177, 0.008103876374661922, -0.01075096894055605, -0.006572204641997814, 0.011128196492791176, -0.04906552657485008, -0.007147801108658314, -0.00857866182923317, 0.05054841563105583, 0.02312791720032692, -0.013053354807198048, 0.024610809981822968, -0.0250010434538126, -0.00260156556032598, 0.020604398101568222, 0.016558963805437088, -0.02267264388501644, 0.009365635924041271, -0.006585212424397469, 0.010087570175528526, -0.02349213697016239, 0.0033982947934418917, 0.0031511462293565273, -0.012676128186285496, -0.00035100808599963784, 0.005255162250250578, -0.013293999247252941, 0.0024080739822238684, -0.0125785693526268, 0.001654433086514473, 0.010172121226787567, -0.003107244847342372, -0.003547884989529848, 0.007993309758603573, -0.03444472700357437, 0.005655152723193169, -0.029787924140691757, 0.012819213792681694, -0.004887691233307123, 0.011791595257818699, -0.04732247442007065, 0.014061461202800274, 0.007401453796774149, 0.018328029662370682, 0.02061740681529045, -0.02583354525268078, 0.021814126521348953, -0.022841744124889374, 0.012207846157252789, -0.011668020859360695, -0.0033365078270435333, 0.020487328991293907, -0.04438270628452301, 0.020097093656659126, 0.00396738713607192, -0.012116790749132633, -0.004289330914616585, -0.04152098670601845, -0.0021820629481226206, -0.008227450773119926, 0.009846925735473633, 0.021996235474944115, -0.014906969852745533, -0.019667834043502808, -0.03038628399372101, 0.004107221495360136, 0.018432091921567917, -0.04914357140660286, -0.023010846227407455, 0.0167410746216774, -0.012220853939652443, -0.0125785693526268, 0.008513622917234898, -0.16296206414699554, 0.014087476767599583, 0.0023137673269957304, 0.011011125519871712, 0.011375345289707184, 0.002338157035410404, 0.03098464384675026, -0.01675408147275448, -0.009658311493694782, -0.010061554610729218, 0.01675408147275448, 0.02580752968788147, -0.03150495886802673, -0.011089173145592213, -0.00273652165196836, -0.024103503674268723, -0.023271003738045692, 0.010933078825473785, 0.02479291893541813, 0.021632017567753792, 0.04235348477959633, -0.000789006007835269, 0.005294185597449541, -0.0216580331325531, 0.04006410762667656, 0.013489116914570332, -0.025430303066968918, 0.006468142382800579, -0.007505516521632671, -0.009164014831185341, -0.007752665318548679, 0.02908550202846527, 0.031114723533391953, 0.004406401421874762, 0.008897353895008564, 0.01331351138651371, -0.00299180019646883, -0.00108615355566144, 0.008012821897864342, 0.034340664744377136, 0.04329004883766174, -0.00019572714518290013, 0.001117047155275941, 0.002029221039265394, -0.004715337418019772, 0.007154304999858141, 0.011212747544050217, -0.0022584840189665556, -0.004103969316929579, 0.012526537291705608, 0.027290422469377518, -0.04274372011423111, 0.011850130744278431, -0.012363939546048641, -0.006630740128457546, 0.014985017478466034, -0.00028434296837076545, 0.00014074875798542053, 0.024480730295181274, -0.0288773775100708, -0.018497129902243614, -0.012142807245254517, 0.009645303711295128, -0.0023202712181955576, 0.019901975989341736, -0.026900187134742737, -0.006211237516254187, -0.02249053306877613, -0.020955609157681465, 0.021098695695400238, 0.0007125850534066558, -0.0177166610956192, 0.012468002736568451, 0.011856635101139545, -0.010334718972444534, 0.006240505259484053, 0.005011265631765127, 0.004754360765218735, -0.0005902301636524498, -0.01032821461558342, -0.018874358385801315, 0.03689019754528999, -0.017053261399269104, 0.03738449513912201, -0.0011308679822832346, 0.009606280364096165, 0.0028893635608255863, 0.001986945513635874, 0.03431464731693268, -0.014230563305318356, -0.008448584005236626, -0.02332303486764431, 0.017404472455382347, 0.0010788367362692952, 0.01939466968178749, 0.016402870416641235, 0.021775102242827415, 0.035381291061639786, -0.009072959423065186, 0.02144990675151348, -0.02315393276512623, 0.01165501307696104, -0.02913753315806389, 0.0019072727300226688, 0.03655199334025383, 0.015960603952407837, -0.02703026495873928, 0.012851733714342117, 0.0212808046489954, -0.01633783057332039, -0.04146895185112953, -0.012864741496741772, 0.00919003039598465, 0.012422475032508373, -0.00578197930008173, 0.039491765201091766, -0.023297019302845, -0.002440593671053648, 0.01689716801047325, -0.00144630775321275, 0.06046038120985031, -0.00846159178763628, -0.022620610892772675, -0.025690458714962006, 0.007284383289515972, -0.019875960424542427, -0.10073261708021164, -0.026340849697589874, -0.002224338473752141, 0.030490348115563393, 0.024506745859980583, 0.0008577036205679178, -0.0017934541683644056, 0.03715035319328308, -0.004081205930560827, 0.04596966132521629, -0.008025829680263996, -0.006705535110086203, -0.01342407800257206, 0.0077916886657476425, 0.05572553351521492, 0.011128196492791176, -0.000641042017377913, -0.005154351703822613, 0.002108894055709243, 0.021827135235071182, 0.014035445638000965, -0.031088707968592644, 0.002201574854552746, 0.0024243337102234364, -0.025144129991531372, -0.008734756149351597, -0.014724860899150372, 0.0125785693526268, -0.008318505249917507, 0.017391465604305267, 0.00899491272866726, -0.002975540468469262, 0.006168961990624666, -0.01612970605492592, -0.03142691031098366, 0.02268565073609352, -0.010269680060446262, 0.0003130008408334106, 0.01289075706154108, -0.019654827192425728, 0.007980301976203918, 0.006939676124602556, -0.00337878311984241, -0.01861420087516308, 0.009151006117463112, -0.0035251211374998093, 0.0016349212964996696, -0.020344242453575134, 0.005960837006568909, -0.005593365989625454, -0.029631830751895905, 0.0037787738256156445, -0.035589415580034256, 0.016988223418593407, 0.010627394542098045, -0.0016300433780997992, -0.0018715012120082974, -0.011349329724907875, -0.004682817962020636, -0.02991800382733345, -0.008448584005236626, 0.001220296835526824, -0.02376530133187771, 0.011154212057590485, 0.003681215224787593, -0.00718032056465745, -0.005697428248822689, -0.015102087520062923, 0.010803001001477242, -0.01938166283071041, -0.01592158153653145, 0.035407304763793945, -0.010907063260674477, 0.0014024063711985946, -0.03886738792061806, -0.0036486955359578133, -0.0266400296241045, -0.024038465693593025, 0.02783675119280815, -0.013372046872973442, -0.04071449860930443, -0.04001207649707794, 0.0034275625366717577, -0.017404472455382347, 0.02066943794488907, 0.011622494086623192, 0.0054925549775362015, -0.01714431680738926, 0.008142899721860886, -0.0014284220524132252, -0.020552366971969604, 0.03153097257018089, -0.007186824455857277, -0.027342453598976135, -0.0042112842202186584, 0.014282594434916973, -0.021358853206038475, -0.0010829016100615263, 0.0021966968197375536, 0.003970639314502478, 0.0007796566351316869, -0.0029007454868406057, -0.05801491066813469, 0.0009121738839894533, -0.008650205098092556, -0.009333116002380848, -0.0012658241903409362, 0.010503820143640041, 0.01776869222521782, 0.01133632194250822, -0.009755870327353477, -0.013957398943603039, -0.04948177561163902, 0.020149124786257744, 0.007323406636714935, 0.0026877422351390123, -0.022607604041695595, -0.02911151759326458, -0.007583563216030598, 2.146799670299515e-05, -0.002473113127052784, 0.02866925112903118, -0.01311189029365778, -0.02126779779791832, 0.028174953535199165, 0.004406401421874762, -0.02044830471277237, 0.006061647552996874, -0.012324916198849678, 0.024428699165582657, -0.006546189077198505, -0.009931475855410099, 0.00505028897896409, -0.014906969852745533, -0.01361919566988945, 0.03613574430346489, 0.008292489685118198, -0.014919977635145187, 0.015141110867261887, 0.011583469808101654, 0.01570044830441475, -0.03072448819875717, -0.023648230358958244, -0.038321059197187424, 0.014568766579031944, -0.014763884246349335, 0.003160902066156268, 0.002100764075294137, 0.01373626571148634, 0.016689041629433632, 0.0007333162939175963, -0.0053949966095387936, 0.05125084146857262, 0.01309237815439701, -0.004305590875446796, -0.017092285677790642, -0.01549232192337513, -0.006549441255629063, 0.004263315349817276, -0.010614386759698391, -0.009040440432727337, -0.014412672258913517, 0.02168404869735241, -0.004425913095474243, 0.018028847873210907, -0.027082296088337898, -0.0031527720857411623, -0.00032275670673698187, -0.02000603824853897, -0.014880954287946224, 0.0033218739554286003, -0.03782676160335541, 0.010393254458904266, 0.002434089779853821, 0.008962392807006836, 0.0017576826503500342, 0.0075445398688316345, -0.009781885892152786, 0.0012894008541479707, -0.003977143205702305, -0.009495713748037815, 0.012773686088621616, 0.01797681674361229, -0.01292327605187893, -0.023218972608447075, 0.011017629876732826, 0.018848340958356857, 0.019134514033794403, -0.013280991464853287, -0.013215952552855015, 0.0008288425160571933, 0.02598963864147663, 0.007603074889630079, 0.0339244119822979, -0.008110380731523037, -0.008058348670601845, 0.0009357506060041487, -0.004887691233307123, 0.019954007118940353, -0.010562355630099773, -0.013775289058685303, 0.03280574083328247, 0.008442079648375511, 0.011694036424160004, -0.017703652381896973, -0.04071449860930443, -0.03668207302689552, 0.0011967201717197895, -0.027368469163775444, -0.027914797887206078, -0.014503727667033672, 0.017235370352864265, 0.0106404023244977, 0.024012450128793716, 0.005060045048594475, 0.01921256072819233, -0.00396738713607192, -0.0018162179039791226, -0.00825997069478035, 0.0006219367496669292, -0.007590067107230425, 0.019459709525108337, -0.002347912872210145, 0.012311908416450024, 0.007063250057399273, -0.005573853850364685, 0.04477294161915779, -0.023218972608447075, -0.001347936107777059, 0.01525818184018135, -0.007973798550665379, -0.011414368636906147, -0.004126733168959618, 0.02146291546523571, -0.014178532175719738, -0.010471301153302193, -0.018041856586933136, -0.01960279606282711, 0.0023365309461951256, 0.0314008966088295, 0.0167410746216774, 0.03504308685660362, 0.019459709525108337, 0.011375345289707184, -0.002022717148065567, 0.013788296841084957, 0.008897353895008564, -0.0017967061139643192, 0.011628997512161732, -0.018223965540528297, -0.027706671506166458, 0.026874171569943428, -0.016402870416641235, -0.002990174340084195, -0.014516735449433327, -0.025079092010855675, 0.01373626571148634, 0.019524749368429184, 0.01475087646394968, -0.008903858251869678, 0.0012170448899269104, -0.0038568207528442144, -0.004468188621103764, 0.016806112602353096, 0.004279575310647488, -0.01168102864176035, -0.021996235474944115, 0.004825904034078121, -0.004835659638047218, -0.0321553498506546, -0.038060903549194336, -0.0017137812683358788, -0.003061717376112938, -0.02580752968788147, 0.007557547651231289, 0.015739470720291138, 0.000719088944606483, -0.0030096860136836767, -0.009378643706440926, 0.03636988624930382, -0.0017023994587361813, 0.015219157561659813, 0.03428863361477852, 0.004952730145305395, -0.020799515768885612, -0.011785091832280159, 0.003440570319071412, 0.017482519149780273, -0.000407917337724939, -0.0321553498506546]" +47,"My commentary, for both the full year and next quarter, does not include any impact from AC division, which we still expect to close by the end of the fiscal year. First, FX. With the stronger US dollar and based on current rates, we now expect FX to decrease total revenue growth by approximately five points and to decrease total COGS and operating expense growth by approximately three points. Within the segments, we anticipate roughly seven points of negative FX impact on revenue growth in productivity and business processes, six points in Intelligent cloud and three points in more personal computing.","[-0.003036661073565483, -0.005112246610224247, 0.005958667490631342, -0.022242993116378784, 0.014689278788864613, -0.004592928569763899, -0.024657486006617546, -0.015174875035881996, -0.009125158190727234, -0.014379036612808704, 0.03639272227883339, 0.03628481179475784, 0.0051392242312431335, -0.0063565862365067005, -0.01101358700543642, 0.007924656383693218, 0.01236246433109045, -0.021973218768835068, 0.009448888711631298, -0.028515275567770004, -0.008659794926643372, 0.026694290339946747, -0.016186533495783806, -0.0024397827219218016, -0.01186337973922491, 0.014082283712923527, 0.0013025100342929363, -0.015471627935767174, 0.012200599536299706, -0.006123905070126057, 0.004717699717730284, -0.012868293561041355, 0.0006959366146475077, 0.02168995328247547, -0.004849215503782034, -0.010480780154466629, -0.007432316429913044, 0.006538684945553541, 0.001375855295918882, -0.01978803612291813, 0.0321032889187336, 0.0061643715016543865, -0.0203006099909544, 0.02028712071478367, -0.004592928569763899, 0.013684364967048168, 0.006690433714538813, -0.0007861428312025964, -0.005820407532155514, 0.023915601894259453, -0.0013446625089272857, 0.04583486542105675, -0.027382217347621918, -0.01996339112520218, 0.0010563399409875274, 0.013576454482972622, -0.009961462579667568, 0.003120965790003538, -0.0031479434110224247, -0.01572791486978531, -0.0054258606396615505, 0.025129592046141624, -0.02317371964454651, 0.008275364525616169, -0.026114273816347122, -0.002652230905368924, 0.004221987444907427, 0.008295598439872265, 0.019585704430937767, 0.0026100785471498966, 0.03415358439087868, 0.04480971768498421, -1.1809266652562656e-05, 0.010851721279323101, 0.02811061218380928, -0.014864632859826088, -0.009974950924515724, -0.010426824912428856, 0.0041376822628080845, 0.0233895406126976, 0.00965122040361166, -0.01762983202934265, -0.025291457772254944, -0.001181954168714583, 0.008673284202814102, 0.00034965440863743424, -0.006548801437020302, -0.0009526449139229953, -0.030268816277384758, 0.012321998365223408, 0.01244339719414711, 0.008322576060891151, 0.014945565722882748, 0.03523268550634384, -0.009907507337629795, 0.007479527033865452, -0.02572309784591198, 0.017575876787304878, -0.003716158214956522, -0.02964833192527294, -0.006319492124021053, -0.014176704920828342, -0.02217555046081543, -0.01505347527563572, -0.03097023256123066, 0.008194432593882084, 0.015107430517673492, 0.010015416890382767, -0.0031513157300651073, -0.01186337973922491, -0.00731766177341342, -0.008781193755567074, 0.006572406738996506, -0.0005104659358039498, -0.001455944962799549, -0.016726084053516388, -0.010224493220448494, 0.01110126357525587, -0.0024313521571457386, 0.004936892539262772, 0.020624341443181038, 0.012220832519233227, 0.020084789022803307, -0.012544563040137291, 0.029027849435806274, 0.0020266887731850147, 0.01226129848510027, -0.00545621057972312, 0.0009197660256177187, -0.011789191514253616, -0.0006938289734534919, 0.0006735958158969879, 0.012153388932347298, 0.013333656825125217, -0.01742750033736229, 0.01796705089509487, -0.03466615825891495, 0.02846132032573223, -0.02266114577651024, -0.00880142766982317, 0.0033721942454576492, 0.015134408138692379, -0.0058844792656600475, 0.013987862505018711, 0.01946430653333664, 0.030026018619537354, 0.02927064709365368, -0.011849891394376755, 0.017521921545267105, -0.011640815064311028, -0.0066297343000769615, -0.019437327980995178, 0.022310437634587288, 0.015620004385709763, 0.031105121597647667, 0.00676799425855279, 0.018169382587075233, 0.03485500067472458, 0.001262886798940599, -0.012922248803079128, -0.026370560750365257, 0.0018007517792284489, -0.00839001964777708, 0.006191348657011986, 0.004973986651748419, 0.007756046950817108, 0.01847962476313114, 0.006724155507981777, -0.0228634774684906, 0.006053088698536158, 0.01574140414595604, 0.00855862908065319, 0.007803257554769516, 0.022984877228736877, 0.012517585419118404, 0.030727434903383255, 0.002785432618111372, -0.01679352857172489, -0.02284998819231987, -0.03949514031410217, 0.005237017758190632, -0.013549476861953735, 0.014756722375750542, -0.01490509882569313, 0.018857311457395554, -0.0009745641727931798, 0.04254360496997833, -0.006538684945553541, 0.012982948683202267, -0.007425571791827679, -0.0001337285793852061, 0.013960884883999825, 0.006036228034645319, 0.0016549043357372284, -0.6448714733123779, -0.0072030071169137955, -0.002647172659635544, 0.0030889299232512712, 0.023227674886584282, 0.009246557019650936, 0.03485500067472458, -0.005031314212828875, -0.031024187803268433, 0.020057812333106995, 0.013569709844887257, 0.01628095470368862, 0.00749976048246026, -0.0338568314909935, 0.026438003405928612, -0.008855381980538368, 0.006258792709559202, -0.008160710334777832, -0.018061472102999687, 0.008545140735805035, 0.01709028147161007, 0.02978322096168995, 0.0035273153334856033, 3.8279675209196284e-05, 0.02015223354101181, -0.012510840781033039, 0.00601599458605051, -0.017980540171265602, -0.01673957332968712, -0.008248387835919857, -0.035961080342531204, 0.007081608287990093, 0.003149629570543766, -0.018681956455111504, 0.0487484410405159, -0.0012038734275847673, -0.011020330712199211, 0.0033620777539908886, 0.008767705410718918, 0.04777725040912628, -0.03960305079817772, 0.014325081370770931, -0.010723577812314034, -0.013576454482972622, -0.02604682929813862, 0.022269971668720245, -0.00374988024123013, -0.0135562215000391, 0.018681956455111504, -0.025696121156215668, -2.1892918084631674e-05, 0.00200645555742085, -0.008241643197834492, -0.006747760809957981, 0.0015014695236459374, 0.003375566564500332, 0.008032566867768764, -0.022391371428966522, -0.009496099315583706, 0.0017822047229856253, 0.009266790002584457, -0.026006363332271576, -0.014271126128733158, -0.018344737589359283, -0.03266981989145279, 0.005982272792607546, -0.003238992765545845, 0.01897870935499668, 0.01311109121888876, 0.0013488777913153172, -0.016968881711363792, 0.01066287886351347, -0.006676944904029369, -0.01389344036579132, 0.01676655001938343, 0.018533580005168915, 0.022404858842492104, -0.02418537810444832, -0.01691492646932602, -0.00923981238156557, 0.008005589246749878, -0.024603530764579773, -0.0038240684662014246, 0.010548223741352558, -0.01177570316940546, 0.003254167502745986, -0.012585029006004333, -0.02148762159049511, -0.02236439287662506, -0.00410396046936512, 0.002598275663331151, 0.001557953772135079, -0.0011929137399420142, -0.0238481592386961, 0.024104446172714233, 0.02117738127708435, -0.012065711431205273, 0.007256962358951569, 0.010851721279323101, -0.010130072012543678, -0.006707294378429651, 0.004252336919307709, 0.017467966303229332, 0.0018799983663484454, 0.033910784870386124, 0.034989889711141586, 0.004245592746883631, 0.0008767705294303596, 0.03488197922706604, -0.036635518074035645, -0.01660468429327011, -0.01741401106119156, -0.02063782885670662, -0.005752963479608297, 0.00469409441575408, -0.027355240657925606, 0.024320265278220177, -0.024859817698597908, -0.016483286395668983, -0.01692841574549675, 0.006933231838047504, 0.022796032950282097, 0.005267367698252201, -0.03973793983459473, -0.015512093901634216, 0.017670297995209694, 0.020111767575144768, -0.002250939840450883, 0.002756768837571144, -0.008599095977842808, 0.0009012189693748951, 0.007014164235442877, 0.02576356567442417, -0.003441324457526207, 0.015687448903918266, 0.0036015035584568977, 0.010656134225428104, -0.021919263526797295, 0.0018918010173365474, -0.03472011163830757, -0.03137489780783653, -0.0167530607432127, 0.0009737210930325091, -0.008619328960776329, -0.022755566984415054, -0.03539455309510231, -0.005688891746103764, 0.01659119687974453, 0.0069939312525093555, 0.008774450048804283, -0.008909337222576141, -0.0066364784725010395, -0.01796705089509487, 0.013718086294829845, 0.011735236272215843, 0.00579680223017931, 0.01761634275317192, -0.043406885117292404, -0.019396862015128136, -0.011978033930063248, 0.003299692180007696, 0.012510840781033039, 0.010298681445419788, 0.006747760809957981, -0.02167646586894989, 0.018992198631167412, -0.04313711076974869, 0.024967726320028305, 0.013933907262980938, -0.008430485613644123, 0.0179130956530571, -0.018412182107567787, 0.027301285415887833, -0.010136816650629044, -0.023564893752336502, -0.001534348470158875, -0.0025358900893479586, 0.002075585536658764, 0.002739907940849662, -0.028542252257466316, 0.025493789464235306, 0.001256985473446548, -0.016699107363820076, -0.0026657197158783674, 0.023578383028507233, 0.020260144025087357, 0.0005711654084734619, 0.024684462696313858, -0.016833994537591934, 0.0008767705294303596, 0.0009332547779195011, 0.013063880614936352, -0.020556896924972534, -0.011708258651196957, -0.02371327020227909, -0.012402931228280067, -0.012834571301937103, -0.0062722815200686455, -0.012989692389965057, 0.0179130956530571, 0.018992198631167412, 0.014014840126037598, 0.004336642101407051, 0.030268816277384758, 0.02115040272474289, -0.026815690100193024, 0.00787744577974081, -0.029243670403957367, 0.022984877228736877, 0.03234608843922615, 0.019693614915013313, -0.040870994329452515, 0.01286154892295599, -0.008302342146635056, -0.0453762486577034, -0.00435350276529789, 0.017818674445152283, 0.013906929641962051, 0.009772619232535362, 0.006862415466457605, 0.0022357648704200983, -0.01320551335811615, 0.012672706507146358, 0.0003205692337360233, -0.008659794926643372, -0.02689662203192711, -0.017481455579400063, 0.022283460944890976, 0.017467966303229332, -0.01862800121307373, 0.003164804307743907, 0.011175451800227165, 0.019100109115242958, 0.011438483372330666, 0.00546632707118988, 0.022458814084529877, 0.014379036612808704, -0.013906929641962051, 0.03957607224583626, 0.00046747043961659074, 0.006602756679058075, 0.00327777280472219, 0.04143752530217171, -0.0109933540225029, -0.004451296757906675, -0.010743810795247555, 0.026478469371795654, -0.003383997129276395, -0.009550054557621479, 0.004572695586830378, -0.007519993465393782, 0.007843724451959133, 0.012018500827252865, -0.015552560798823833, 0.008032566867768764, 0.0037060414906591177, -0.009597265161573887, -0.01006937213242054, 0.029756242409348488, 0.04804702475667, -0.012133155018091202, 0.008814916014671326, 0.026815690100193024, 0.006383563857525587, -0.0028511902783066034, 0.023794203996658325, -0.012618751265108585, 0.006312747951596975, -0.010433569550514221, 0.007263706531375647, 0.010143560357391834, 0.00698718661442399, 0.004559206776320934, 0.010264959186315536, 0.002222276059910655, 0.01895173266530037, 0.03137489780783653, -0.026303116232156754, 0.011620582081377506, 0.03148280829191208, 0.009017247706651688, -0.034423358738422394, 0.008005589246749878, 0.021217847242951393, 0.0005079367547295988, 0.011438483372330666, 0.013745063915848732, -0.005483188200742006, -0.0007250217604450881, 0.045133449137210846, -0.01711725816130638, 0.0006626361864618957, -0.009394933469593525, -0.00014089449541643262, 0.01448694709688425, 0.02081318385899067, 0.02081318385899067, -0.016672128811478615, -0.005894595757126808, 0.005311205983161926, -0.004383852705359459, -0.0012519271112978458, -0.012247810140252113, 0.0030788134317845106, 0.029540423303842545, -0.003534059738740325, -0.024117933586239815, -0.017198191955685616, -0.006879276596009731, -0.010716834105551243, 0.021244823932647705, -0.00702765304595232, -0.034477315843105316, 0.041761256754398346, 0.03048463724553585, -0.004768282640725374, -0.013077369891107082, -0.04046633094549179, 0.031725604087114334, 0.023807691410183907, -0.014864632859826088, -0.006875904276967049, -0.030511613935232162, -0.007917912676930428, 0.0693323165178299, 0.031752582639455795, -0.023443495854735374, 0.024859817698597908, 0.013906929641962051, 0.012746894732117653, -0.0003247844579163939, -0.02638404816389084, 0.012315253727138042, -0.017994029447436333, -0.023133253678679466, 0.003638597670942545, -0.0033688221592456102, -0.01726563461124897, 0.0038072073366492987, 0.018574045971035957, -0.0033823109697550535, -0.03399172052741051, 0.01006937213242054, 0.01279410533607006, -0.012436652556061745, -0.0012013441883027554, 0.03399172052741051, 0.016982370987534523, 0.013522499240934849, 0.0210020262748003, 0.009995183907449245, 0.017049815505743027, -0.01295597106218338, 0.002731477376073599, -0.015161385759711266, 0.003296320093795657, -0.010366125032305717, 0.034774068742990494, -0.01842566952109337, 0.002299836603924632, 0.011256384663283825, -0.030673479661345482, 0.005857501644641161, -0.002320069819688797, 0.01261200662702322, -0.008855381980538368, 0.015714425593614578, -0.013380867429077625, 0.017643321305513382, -0.007823490537703037, -0.013036902993917465, 0.028865983709692955, -0.0015014695236459374, -0.024144912138581276, -0.0006297572981566191, -0.018182871863245964, -0.030754413455724716, 0.015700936317443848, -0.01912708580493927, 0.0012198913609609008, -0.010966376401484013, -0.022755566984415054, 0.005294345319271088, -0.028326433151960373, -0.02692360058426857, -0.01149918232113123, 0.013657387346029282, -0.0019255229271948338, -0.030403703451156616, 0.0008860440575517714, -0.0067309001460671425, 0.011215918697416782, -0.035475485026836395, 0.0022087872494012117, 0.00681857718154788, -0.021905774250626564, -0.016146067529916763, 0.018830332905054092, 0.016334909945726395, 0.010312170721590519, 0.006781483069062233, -0.007088352460414171, 0.003557665040716529, -0.0015031556831672788, -0.021770887076854706, -0.004832354374229908, -0.0203006099909544, -0.015673959627747536, -0.017373545095324516, 0.015336739830672741, -0.0003336364752613008, -0.007951634004712105, -0.043757595121860504, 0.011505926959216595, -0.01741401106119156, -0.01776471920311451, 0.022728590294718742, -0.015673959627747536, 0.029162736609578133, -0.013030159287154675, 0.0045895567163825035, 0.005584354046732187, 0.015013009309768677, -0.013232490979135036, 0.007600925862789154, 0.0015124292112886906, -0.003793718758970499, -0.019005687907338142, 0.01167453732341528, 0.00812024436891079, 0.007823490537703037, -0.018007518723607063, 0.0009560171165503561, -0.011708258651196957, 0.007155796512961388, -0.022418348118662834, -0.018911266699433327, -0.015309762209653854, -8.393602183787152e-05, -0.013920417986810207, 0.01792658492922783, 0.0071962629444897175, -0.0005770667339675128, -0.00499421963468194, 0.036635518074035645, -0.03399172052741051, 0.024684462696313858, 0.006926487199962139, -0.0018513347022235394, 0.013933907262980938, -0.0009383130818605423, 0.0024111189413815737, -0.031914446502923965, 0.006326236762106419, -0.0014862946700304747, 0.011613837443292141, 0.008248387835919857, -0.015687448903918266, -0.004151171073317528, -0.018155895173549652, 0.0013876579469069839, -0.005378650035709143, -0.023308606818318367, -0.014298103749752045, -0.017859140411019325, -0.0026657197158783674, 0.0005239546881057322, -0.0342075377702713, 0.0349089577794075, -0.024819349870085716, -0.002955728443339467, 0.0003848516789730638, 0.003672319697216153, 0.015080452896654606, -0.010575201362371445, -0.011141730472445488, -0.015889780595898628, -0.013879952020943165, -0.017494944855570793, -0.01661817356944084, 0.016699107363820076, -0.038335107266902924, 0.023079298436641693, 0.03790346533060074, 0.037984397262334824, 0.002465074183419347, 0.00601599458605051, 0.027355240657925606, -0.011634070426225662, -0.005763079971075058, 0.0055202823132276535, -0.002080644015222788, -0.03364101052284241, 0.006771366111934185, -0.02046247571706772, 0.00014732274576090276, -0.011391272768378258, -0.029378557577729225, 0.011640815064311028, 0.02237788215279579, -0.010460547171533108, 0.003878023475408554, -0.016213510185480118, -0.002546006813645363, 0.005159457214176655, 0.004646883811801672, 0.002910203766077757, 0.014972543343901634, -0.03641970083117485, -0.004822237882763147, 0.024751907214522362, 0.012591773644089699, 0.028002701699733734, -0.03159071505069733, 0.02655940316617489, 0.013306679204106331, 0.009927740320563316, -0.004845843184739351, 0.013401100412011147, -0.016159554943442345, -0.02423933334648609, -0.02337605133652687, -0.002640428254380822, 0.001326115452684462, -0.0014862946700304747, 0.0265863798558712, -0.0024920515716075897, 0.01762983202934265, 0.0023285001516342163, 0.009860296733677387, 0.012456885538995266, -0.013529243879020214, 0.006127276923507452, -0.029891131445765495, -0.012139899656176567, -0.03992678225040436, 0.014163216575980186, -0.014176704920828342, -0.006579151377081871, 0.012463630177080631, -0.01025147084146738, 0.008255131542682648, 0.010791022330522537, -0.03860488161444664, 0.011573371477425098, -0.004481646232306957, 0.038712792098522186, -0.01982850208878517, 0.012895271182060242, 0.01050101313740015, 0.013879952020943165, -0.0221620611846447, -0.02237788215279579, 0.0028731096535921097, -0.005118991248309612, 0.020030833780765533, 0.03741787001490593, -0.008059544488787651, 0.004181521013379097, 0.0007490486605092883, -0.0030754413455724716, -0.017171213403344154, -0.0172791238874197, 0.02421235479414463, 0.021784376353025436, 0.005149340722709894, -0.020219678059220314, -0.03213026747107506, -0.01287503819912672, 0.03045765869319439, -0.017683787271380424, 0.005452838260680437, 0.010865210555493832, -0.025655655190348625, 0.007776280399411917, 0.04246267303824425, 0.004616533871740103, -0.0032895756885409355, -0.008322576060891151, 0.003291261615231633, -0.0116947703063488, 0.004346758592873812, -0.005351672414690256, -0.003161432221531868, -0.021379712969064713, 0.02200019545853138, -0.020368054509162903, 0.027651993557810783, -0.0015883035957813263, 0.0011473891790956259, -0.01945081725716591, -0.002744966186583042, -0.015795357525348663, 0.024751907214522362, -0.03984585031867027, -0.006886020768433809, 0.018884288147091866, -0.013852974399924278, 0.003679064102470875, -0.011870124377310276, -0.015309762209653854, -0.021541576832532883, -0.009442144073545933, -0.007573948707431555, 0.019046153873205185, 0.003351961262524128, -0.03965700417757034, 0.004970614332705736, 6.196407048264518e-05, -0.0013691108906641603, -0.0032120151445269585, -0.023929091170430183, 0.021555066108703613, -0.013933907262980938, -0.011661048047244549, 0.00855862908065319, 0.024670973420143127, 0.031078143045306206, -0.0007949948194436729, -0.009273534640669823, 1.8494378309696913e-05, -0.0006727527943439782, -0.013839486055076122, 0.026883132755756378, 0.014203682541847229, -0.007573948707431555, -0.02723384089767933, 0.02401002310216427, -0.026815690100193024, -0.02418537810444832, 0.03199537843465805, -0.03196840360760689, -0.028191544115543365, -0.009920995682477951, 0.0061778598465025425, 0.006019366905093193, -0.01083148829638958, 0.009590520523488522, 0.016887949779629707, 0.010952887125313282, -0.01622699946165085, 0.008356297388672829, -0.012928993441164494, 0.020354565232992172, -0.008491185493767262, 0.001462689251638949, 0.023578383028507233, -0.007641392294317484, 0.016645152121782303, -0.0015183305367827415, -0.0035846426617354155, 0.008079777471721172, 0.01540418341755867, 0.006262165028601885, -0.0018715679179877043, 0.02727430872619152, -0.002121110213920474, 0.005948550999164581, -0.005483188200742006, -0.021271802484989166, -0.0063734473660588264, 0.006167743355035782, 0.005864245817065239, 0.002444840967655182, 0.010885443538427353, -0.011418250389397144, 0.004879565443843603, 0.02079969458281994, 0.001317685004323721, -0.028218522667884827, 0.0002600805019028485, -0.024468641728162766, -0.05541189759969711, -0.023605359718203545, 0.006902881897985935, 0.01911359839141369, 0.029675310477614403, -0.028137588873505592, -0.013171791099011898, 0.0029489840380847454, -0.03318239375948906, -0.021770887076854706, -0.015957223251461983, 0.02117738127708435, 0.029864152893424034, 0.014783699996769428, -0.01878986693918705, 0.045969754457473755, 0.01218036562204361, 0.01286154892295599, -0.02981019765138626, 0.022242993116378784, 0.01829078234732151, -0.011809424497187138, 0.004906542599201202, 0.0037296470254659653, -0.01490509882569313, -0.004255709238350391, 0.011317084543406963, 0.008990270085632801, 0.010096349753439426, 0.02236439287662506, 0.0210020262748003, -0.02101551555097103, 0.0025240874383598566, 0.006444263271987438, 0.002744966186583042, 0.01118219643831253, -0.006154254544526339, -0.03938722983002663, -0.00017451106396038085, 0.014406014233827591, 0.011789191514253616, -0.01794007420539856, 0.017886118963360786, 0.0001986433198908344, -0.004380480386316776, 0.0043939691968262196, -0.008511418476700783, -0.006572406738996506, 0.02997206337749958, -0.027220353484153748, 0.020786205306649208, 0.016685618087649345, 0.0071962629444897175, 0.0179130956530571, 0.028299454599618912, -0.021959729492664337, -0.009543309919536114, 0.005203295964747667, -0.031401872634887695, -0.0032153872307389975, 0.020098278298974037, -0.004565950948745012, 0.009583776816725731, -0.01556604914367199, 0.015525583177804947, -0.0025965897366404533, -0.020853649824857712, -0.0059856451116502285, 0.02372675947844982, -0.007047886028885841, 0.01023123785853386, -0.013084114529192448, -0.03045765869319439, 0.021055981516838074, -0.014311593025922775, -0.012881782837212086, 0.006120532751083374, -0.011317084543406963, 0.013960884883999825, -0.0439734160900116, -0.021285289898514748, 0.0002453271299600601, -0.025979384779930115, -0.023740248754620552, -0.0056045870296657085, 0.0006938289734534919, 0.000872555305249989, 0.013933907262980938, 0.21053284406661987, 0.008012333884835243, -0.003036661073565483, 0.02673475630581379, 0.00853839609771967, -0.0014239090960472822, 0.0252509918063879, 0.000141632161103189, -0.015039986930787563, 0.019855480641126633, -0.021743908524513245, 0.020395031198859215, -0.013879952020943165, -0.005651797633618116, 0.01711725816130638, -0.010952887125313282, -0.049827542155981064, 0.008174198679625988, -0.028865983709692955, 0.05854129418730736, 0.025480300188064575, -0.021743908524513245, -0.0043332697823643684, -0.015431161038577557, 0.017022836953401566, -0.024468641728162766, -0.0128548052161932, 0.001846276456490159, -0.0029978808015584946, 0.02506214939057827, -0.016968881711363792, 0.005911456886678934, 0.01083148829638958, 0.00014763888611923903, -0.002574670361354947, -0.02098853699862957, 0.003007997293025255, -0.007149051874876022, 0.010777533054351807, 0.016200020909309387, 0.03388381004333496, 0.0048829372972249985, -0.0049537536688148975, -0.010278448462486267, -0.0022930921986699104, 0.01226129848510027, 0.004987475462257862, 0.00575633579865098, -0.008079777471721172, 0.015296273864805698, -0.032750751823186874, 0.004366991575807333, 0.0059923892840743065, 0.02252625860273838, -0.005800174083560705, 0.013738320209085941, 0.02507563680410385, 0.003141199005767703, -0.00533481128513813, -0.01328644622117281, -0.012463630177080631, 0.018398692831397057, 0.0058069187216460705, 0.009509587660431862, -0.005095385480672121, -0.014662301167845726, -0.01644282042980194, -0.0030383472330868244, 0.01482416596263647, -0.01949128322303295, 0.0028478181920945644, -0.009172368794679642, -0.012079199776053429, 0.005911456886678934, -0.017683787271380424, -0.017238657921552658, 0.015970712527632713, 0.00440408568829298, 0.021244823932647705, 0.018560558557510376, 0.008403507992625237, 0.010521246120333672, -0.009010503068566322, -0.03401869535446167, -0.011445228010416031, -0.02283650077879429, 0.03229213505983353, 0.0057900575920939445, 0.003510454436764121, -0.009873785078525543, 0.0060699498280882835, 0.007627903483808041, -0.010635901242494583, -0.015093942172825336, 0.0051392242312431335, 0.009543309919536114, -0.013266212306916714, 0.006160999182611704, -0.017737742513418198, 0.00220204284414649, -0.022081129252910614, 0.054764434695243835, 0.0008291382691822946, -0.01576838083565235, 0.003938722889870405, -0.002245881361886859, -0.0016431016847491264, 0.014352058991789818, 0.008578862063586712, -0.023578383028507233, -0.0104133365675807, -0.003164804307743907, 0.009023992344737053, -0.0020469219889491796, -0.001439083949662745, -0.019410351291298866, 0.008113499730825424, -0.018560558557510376, -0.0009711919701658189, -0.01946430653333664, 0.007324405945837498, -0.009894018061459064, -0.009678198024630547, 0.003004625206813216, -0.011883612722158432, -0.021096447482705116, 0.0028022935148328543, -0.03164467215538025, -0.01378553081303835, -0.03250795230269432, 0.020732250064611435, -0.02962135523557663, 0.008693517185747623, -0.044432032853364944, 0.0004501879448071122, 0.018412182107567787, 0.025008194148540497, -0.010635901242494583, -0.02744966186583042, 0.01796705089509487, -0.021231336519122124, 0.04168032109737396, 0.032238177955150604, -0.003918489906936884, 0.0005252192495390773, -0.014702767133712769, 0.045133449137210846, 0.009367955848574638, -0.026815690100193024, -0.004201753996312618, -0.013414588756859303, -0.00604634452611208, -0.00038464090903289616, 0.015700936317443848, 0.028515275567770004, -0.026276137679815292, 0.004764910787343979, -0.03150978311896324, 0.01607862301170826, 0.014149727299809456, -0.05236343294382095, -0.018816843628883362, 0.012072456069290638, -0.003982561640441418, -0.0035273153334856033, -0.010966376401484013, -0.17168515920639038, 0.033614031970500946, -0.0037060414906591177, 0.006042972207069397, 0.021460644900798798, 0.01641584187746048, 0.019032664597034454, -0.003153001656755805, -0.006649967283010483, -0.017481455579400063, 0.002753396751359105, 0.024643996730446815, -0.012429908849298954, -0.010959631763398647, 0.0016220255056396127, 0.004936892539262772, -0.05708450451493263, 0.014540902338922024, 0.028218522667884827, 0.033748921006917953, 0.012423164211213589, -0.005830524023622274, -0.014284615404903889, -0.014662301167845726, 0.001060555106960237, 0.017683787271380424, -0.029000870883464813, 0.004903170745819807, -0.012679451145231724, -0.00731766177341342, -0.019504772499203682, -0.011485693976283073, 0.019855480641126633, 0.012558051384985447, 0.004056749865412712, -0.008147221989929676, -0.03423451632261276, 0.0031884098425507545, -0.00921957939863205, 0.04062819853425026, 0.043245021253824234, 0.008180943317711353, 0.011384528130292892, 0.0172791238874197, -0.013933907262980938, 0.00853839609771967, 0.009374700486660004, 0.00752673763781786, 0.007209751754999161, 0.00361836445517838, 0.028515275567770004, -0.03010695055127144, 0.01864149048924446, 6.866235366942419e-07, -0.013812508434057236, 0.010184027254581451, 0.006359958555549383, -0.00013109405699651688, 0.0003051835810765624, -0.02371327020227909, 0.009927740320563316, -0.01244339719414711, -0.0038915122859179974, -0.020354565232992172, 0.00601599458605051, -0.03097023256123066, 0.007924656383693218, -0.00415454339236021, -0.026127761229872704, 0.022769056260585785, 0.000872555305249989, 0.0027635132428258657, 0.007162540685385466, 0.010136816650629044, 0.00735812820494175, -0.007573948707431555, -0.0059856451116502285, 0.018223337829113007, 0.018533580005168915, 0.019680125638842583, -0.0002870580356102437, 0.0007583221886307001, -0.024603530764579773, 0.018236827105283737, -0.019841991364955902, 0.0063734473660588264, 0.029540423303842545, 0.017899608239531517, 0.024482131004333496, -0.007998844608664513, 0.0031277101952582598, -0.018992198631167412, 0.01711725816130638, 0.002043549669906497, -1.2579866051964927e-05, 0.02674824558198452, 0.012038733810186386, 0.021123426035046577, -0.0024262939114123583, 0.012342231348156929, -0.012200599536299706, 0.0079718679189682, -0.025520766153931618, 0.0003686230047605932, 0.01729261316359043, 0.011134985834360123, -0.03045765869319439, 0.024940749630331993, 0.01997687853872776, -0.03331727907061577, -0.01006937213242054, 0.010973120108246803, 0.022458814084529877, 0.014972543343901634, -0.007439060602337122, 0.01946430653333664, -0.0031142213847488165, -0.006393680348992348, -0.004087099339812994, 0.013482033275067806, 0.05260623246431351, -0.010507757775485516, -0.007155796512961388, 0.00047758701839484274, -0.011708258651196957, -0.016294443979859352, -0.12377302348613739, -0.027651993557810783, -0.011519416235387325, 0.01378553081303835, 0.025264479219913483, 0.014271126128733158, -0.013488776981830597, 0.029000870883464813, -0.03272377327084541, 0.03984585031867027, 0.0208266731351614, -0.0007473625591956079, -0.007553715258836746, 0.004893053788691759, 0.046293485909700394, -0.022755566984415054, -0.007742558140307665, 0.0032895756885409355, -0.010743810795247555, 0.026464981958270073, -0.00045819691149517894, -0.0027213608846068382, 0.003911745268851519, -0.018722422420978546, -0.016807015985250473, -0.0007444118964485824, -0.01796705089509487, 0.0120117561891675, -0.00491665955632925, 0.011222662404179573, 0.033775899559259415, -0.003534059738740325, 0.017346568405628204, -0.01656421832740307, -0.024414686486124992, -0.003517198609188199, -0.017036326229572296, -0.01405530609190464, 0.008990270085632801, -0.039198387414216995, 0.010042394511401653, 0.013165046460926533, -0.015228829346597195, -0.039333276450634, -0.002517343033105135, -0.008781193755567074, -0.008133732713758945, 0.012935737147927284, -0.009853552095592022, -0.01711725816130638, -0.02808363549411297, -0.016833994537591934, -0.012254553847014904, -0.007405338808894157, 0.005112246610224247, 0.01050101313740015, 0.006825321353971958, 0.004764910787343979, -0.03213026747107506, -0.029729265719652176, -0.04472878575325012, 0.004191637504845858, -0.03601503744721413, 0.012288276106119156, 0.0006575778825208545, 0.005580981727689505, 0.0009787793969735503, -0.007722325157374144, -0.003517198609188199, -0.02371327020227909, -0.021244823932647705, 0.018884288147091866, -0.021784376353025436, 0.017980540171265602, -0.0282724779099226, -0.0007777123246341944, -0.020543407648801804, -0.011883612722158432, 0.04823586717247963, -0.011937567964196205, -0.04068215191364288, -0.03536757454276085, 0.008416997268795967, -0.011661048047244549, 0.022930921986699104, 0.031024187803268433, 0.008862126618623734, -0.02034107595682144, 0.017643321305513382, -0.0012114607961848378, -0.0020250026136636734, 0.03285866230726242, 0.009084691293537617, -0.021568555384874344, -0.021730421110987663, 0.0016540613723918796, -0.0029725893400609493, -0.016860971227288246, -0.005763079971075058, 0.003112535458058119, -0.00814047735184431, -0.01337412279099226, -0.053901154547929764, 0.01864149048924446, -0.013529243879020214, 0.007479527033865452, -0.0009711919701658189, 0.011087775230407715, 0.012976204045116901, -0.001777146477252245, -0.005641681142151356, -0.008794683031737804, -0.018587535247206688, 0.005554004106670618, -0.030511613935232162, -0.0004133045731578022, -0.008626073598861694, -0.03045765869319439, 0.03167165070772171, 0.004228731617331505, 0.0018142405897378922, 0.013906929641962051, -0.017467966303229332, -0.000560627318918705, 0.004272570367902517, 0.02235090360045433, -0.022634169086813927, 0.006218326278030872, -0.01624048873782158, 0.0035408041439950466, 0.019194530323147774, -0.02862318605184555, -0.0032204457093030214, -0.009684942662715912, -0.019922925159335136, 0.023794203996658325, -0.005587725900113583, -0.01167453732341528, 0.000317829311825335, 0.01927546225488186, 0.02981019765138626, -5.74985506318626e-06, -0.025520766153931618, -0.025264479219913483, 0.002368966583162546, -0.03399172052741051, -5.8644567616283894e-05, -0.0035273153334856033, -3.580321936169639e-05, 0.0030939884018152952, 0.00973215326666832, 0.0033452168572694063, 0.028380388393998146, -0.0018496486591175199, -0.008349553681910038, -0.011667792685329914, -0.0006542056798934937, -0.0315367616713047, 0.018250316381454468, -0.026721268892288208, 0.0035610373597592115, -0.00029907148564234376, 0.024468641728162766, 0.0066364784725010395, 0.007250217720866203, -0.024252822622656822, 0.015876291319727898, 0.005729358177632093, -0.02081318385899067, 0.0017467966536059976, -0.01709028147161007, -0.018209850415587425, -0.005951922852545977, -0.0013766983756795526, 0.02575007639825344, -0.0022357648704200983, 0.01606513373553753, -0.01762983202934265, 0.004329897463321686, 0.008315831422805786, -0.017521921545267105, 0.007209751754999161, 0.0068995095789432526, 0.001467747613787651, 0.0020351193379610777, 0.0033738804049789906, 0.013036902993917465, 0.013765297830104828, -0.012949226424098015, -0.014702767133712769, -0.004289431031793356, 0.019868969917297363, 0.0020131999626755714, 0.016807015985250473, -0.013347145169973373, 0.01729261316359043, 0.003100732807070017, 0.008578862063586712, 0.0024886794853955507, -0.014257637783885002, -0.010352636687457561, 0.0282724779099226, 0.0019069758709520102, -0.008997014723718166, -0.020529918372631073, -0.01694190502166748, -0.029702287167310715, 0.010467290878295898, -0.019167553633451462, -0.038146261125802994, -0.008936314843595028, 0.016523752361536026, -0.015242318622767925, 0.025129592046141624, 0.030700458213686943, 0.01083148829638958, -0.012463630177080631, 0.003095674328505993, -0.01540418341755867, 0.004822237882763147, -0.012369208969175816, 0.026141250506043434, 0.006160999182611704, 0.01726563461124897, 0.0050751524977386, -0.002630311530083418, 0.03998073562979698, 0.015579537488520145, 0.021595532074570656, -0.01710376888513565, 0.004302919842302799, 0.005368533544242382, 0.029405534267425537, -0.006508335005491972, 0.0007549499860033393, -0.012659217230975628, -0.01321225706487894, -0.019221507012844086, -0.012746894732117653, 0.027867814525961876, 0.017886118963360786, 0.07008768618106842, 0.012969459407031536, 0.005530398804694414, -0.006376819685101509, -0.0008489499450661242, 0.021730421110987663, -0.009212834760546684, -0.005864245817065239, -0.01593024656176567, -0.02372675947844982, 0.022418348118662834, -0.0009206090471707284, -0.01878986693918705, -0.018870798870921135, -0.023753736168146133, 0.004501879680901766, 0.01186337973922491, 0.016672128811478615, 0.015849312767386436, -0.0049841031432151794, 0.013765297830104828, -0.018574045971035957, 0.02201368473470211, 0.023335585370659828, -0.027152908965945244, -0.020705273374915123, 0.0026741500478237867, 0.016159554943442345, -0.023227674886584282, -0.03588014841079712, -0.006781483069062233, 0.010258215479552746, -0.01796705089509487, 0.0045119961723685265, 0.008632817305624485, 0.01017053797841072, -0.005108874291181564, -0.012598518282175064, 0.011033819988369942, 0.01610559970140457, -0.017508432269096375, 0.0072030071169137955, -0.010393102653324604, 0.000572429969906807, -0.0034261494874954224, -0.013589942827820778, 0.01261200662702322, 0.007290684152394533, -0.012308509089052677]" +48,"Our outlook has many of the trends we saw at the end of Q1, continue into Q2. In our consumer business, materially weaker PC demand from September will continue, and impact both Windows OEM and Surface device results even as the Windows installed base and usage grows, as you heard from Satya. Additionally, customers focusing our advertising spend will impact LinkedIn and Search and News advertising revenue. In our commercial business, demand for our differentiated hybrid and cloud offerings, together with consistent execution, should drive healthy growth across the Microsoft Cloud.","[-0.0095982626080513, -0.029435571283102036, 0.011965788900852203, -0.015581157058477402, 0.004084151703864336, 0.008424616418778896, -0.03154003992676735, -0.012201867066323757, -0.0047890134155750275, -0.03342866525053978, 0.021395424380898476, 0.042979709804058075, 0.00043084259959869087, 0.017146017402410507, -0.0059694042429327965, -0.001692174351774156, 0.010967515408992767, -0.024390242993831635, 0.030730627477169037, -0.033050939440727234, -0.007885009981691837, 0.001506684347987175, -0.00542642455548048, -0.00404368108138442, -0.023418951779603958, 0.016957154497504234, 0.031189294531941414, -0.01921001449227333, 0.0036929366178810596, -0.0026744280476123095, -0.005439914762973785, -0.012242337688803673, -0.02911180630326271, -0.003212349023669958, -0.019452838227152824, -0.0073656379245221615, -0.003760387422516942, 0.014758256264030933, 0.015837470069527626, -0.0061177960596978664, 0.018710877746343613, 0.017685625702142715, -0.006171756889671087, 0.017105547711253166, -0.022757932543754578, 0.015432764776051044, 0.0020016052294522524, 0.012869630940258503, -0.0013650375185534358, 0.008465087041258812, 0.000333249568939209, 0.028599180281162262, -0.03758363798260689, -0.01671433262526989, 0.0021887815091758966, 0.005767051596194506, -0.013004533015191555, 0.005908698309212923, -0.001086802571080625, -0.010596536099910736, -0.01112265232950449, 0.026953378692269325, -0.024970320984721184, 0.005959286820143461, -0.036072738468647, -0.0022309382911771536, -0.028356356546282768, -0.0007630382315255702, 0.013442963361740112, 0.006913716904819012, 0.03399525210261345, 0.04327649623155594, 0.014785236679017544, 0.016363587230443954, 0.024349773302674294, -0.018238721415400505, -0.029462551698088646, -0.01614774391055107, 0.0023169382475316525, 0.013854414224624634, -0.0010159790981560946, -0.028302395716309547, -0.02725016139447689, 0.001150880940258503, 0.004586660768836737, 0.007487049326300621, -0.02603604644536972, 0.005375836510211229, 0.002895329613238573, -0.014920137822628021, 0.006525874137878418, 0.02045111171901226, 0.01517645176500082, 0.015716059133410454, -0.006276305764913559, 0.018306173384189606, -0.012444689869880676, 0.028248434886336327, -0.0064010899513959885, 0.0029324276838451624, -0.00023207323101814836, -0.0031921137124300003, -0.023338010534644127, -0.006407835055142641, -0.045434921979904175, 0.023257069289684296, 0.015823980793356895, 0.0010716260876506567, 0.0395532064139843, -0.022596050053834915, -0.026427261531352997, -0.024552125483751297, 0.013098963536322117, -0.0039930930361151695, 0.0003878426505252719, 0.0014476648066192865, -0.01606680266559124, -0.001924036769196391, 0.012566101737320423, -0.014528922736644745, 0.023958558216691017, -0.0031044273637235165, 0.013975825160741806, -0.017766565084457397, -0.012647042982280254, 0.01864342764019966, -0.020086877048015594, -0.015621627680957317, 0.013429473154246807, -0.01800938881933689, -0.0066810110583901405, -0.004222426097840071, 0.006826030556112528, -0.007041873410344124, -0.012181632220745087, 0.016916684806346893, -0.026278868317604065, 0.010002967901527882, -0.02542898803949356, -0.02652169205248356, -0.025091733783483505, 0.015904922038316727, 0.0034332505892962217, -0.004219053313136101, 0.0259146336466074, 0.030056118965148926, 0.02660263329744339, -0.0030757607892155647, 0.025712281465530396, -0.008154813200235367, 0.01926397532224655, -0.037421755492687225, 0.017766565084457397, -0.0015109000960364938, 0.01926397532224655, -0.008566264063119888, 0.013132689520716667, 0.02606302686035633, 0.0014923510607331991, -0.009551046416163445, -0.023135656490921974, 0.011358730494976044, 0.003060584422200918, 0.0025445851497352123, 0.003972857724875212, 0.031189294531941414, 0.02660263329744339, 0.017199978232383728, -0.015594647265970707, -0.02154381573200226, -0.0009974300628528, -0.012930336408317089, -0.008512303233146667, -0.0012781944824382663, 0.0136722968891263, 0.02173267863690853, -0.0028261924162507057, 0.00927449855953455, -0.025590870529413223, -0.03574897348880768, 0.019978955388069153, -0.01672782190144062, 0.0065022665075957775, 0.004040308762341738, 0.00800642091780901, -0.015095510520040989, 0.03666630759835243, -0.008431361988186836, 0.004350582603365183, 0.00032271037343889475, -0.005264542531222105, 0.02282538264989853, -0.009760144166648388, -0.01987103372812271, -0.6449384689331055, -0.010117634199559689, -0.00587834557518363, -0.007669166661798954, 0.00016335763211827725, -0.0022629776503890753, 0.03224152699112892, -0.005982894450426102, -0.010212065652012825, 0.02286585420370102, 0.013328297063708305, 0.017186488956212997, -0.0010775281116366386, 0.005011601373553276, 0.014056766405701637, -0.021314483135938644, 0.007190265692770481, -0.004131367430090904, -0.005544463638216257, 0.010387438349425793, -0.0030184276401996613, 0.012397474609315395, -0.0027907807379961014, -0.01203323993831873, -0.012093945406377316, 0.00866744015365839, -0.009773634374141693, -0.002993133384734392, -0.0191965252161026, 0.021287502720952034, -0.023783186450600624, 0.02418789081275463, 0.0033691723365336657, 0.009760144166648388, 0.05088495463132858, -0.005466895177960396, -0.024619577452540398, 0.022676991298794746, 0.023742714896798134, 0.03577595576643944, -0.03601877763867378, -0.004050426185131073, -0.001370939426124096, -0.016943665221333504, 0.013139434158802032, 0.012539121322333813, 0.010259280912578106, -0.011351985856890678, 0.0159588810056448, 0.0009029988432303071, 0.02228577621281147, -0.0009375674417242408, 0.0010067046387121081, -0.015594647265970707, 0.037421755492687225, 0.014124217443168163, 0.017105547711253166, -0.03286207467317581, -0.002971211913973093, 0.002050507115200162, -0.005675992928445339, 0.0040268185548484325, -0.013152924366295338, -0.034912582486867905, -0.030649686232209206, 0.025874163955450058, -0.01970915123820305, 0.009429635480046272, 0.01849503628909588, -0.00773661769926548, -0.0032882310915738344, 0.020059896633028984, 0.02784373052418232, -0.018710877746343613, -0.007507284637540579, 0.023135656490921974, 0.020707424730062485, -0.02167871780693531, -0.014906647615134716, 0.013739747926592827, -0.005396071821451187, -0.03779948130249977, 0.00924751814454794, -0.00899120420217514, 0.00836391095072031, -0.0151224909350276, -0.004735053051263094, -0.018953701481223106, -0.0073993634432554245, 0.00557481637224555, -0.013476689346134663, 0.008303205482661724, -0.009308223612606525, -0.03453486040234566, 0.034426938742399216, 0.024943340569734573, -0.014690805226564407, 0.00557818915694952, 0.013699277304112911, 0.013193394988775253, -0.0010412732372060418, 0.0016871155239641666, 0.022744441404938698, 0.009773634374141693, 0.0320526659488678, 0.0433034747838974, 0.019668681547045708, 0.006886736489832401, 0.018859270960092545, -0.023108676075935364, 0.020181307569146156, -0.03642348200082779, -0.0069339522160589695, -0.01547323539853096, -0.0035074464976787567, -0.031243255361914635, 0.01849503628909588, -0.012417709454894066, -0.010738182812929153, -0.0018734486075118184, 0.005692855454981327, 0.003844700986519456, -0.008795596659183502, -0.027627887204289436, -0.007250971160829067, 0.010690966621041298, 0.009200301952660084, -0.0008490381296724081, 0.0105021046474576, -0.016876213252544403, -0.0077973236329853535, -0.039337363094091415, 0.02846427820622921, -0.00038236225373111665, 0.006879991386085749, 0.00931496825069189, -0.0009502145112492144, -0.013975825160741806, 0.01737534999847412, -0.03529030829668045, -0.02287934347987175, -0.0064348154701292515, -0.011196848936378956, 0.004165092948824167, -0.01427260972559452, -0.02596859447658062, -0.015351823531091213, -0.007392618339508772, -0.027506474405527115, -0.0060267373919487, -0.01976311206817627, 0.0003012104134541005, 0.008977713994681835, 0.026103496551513672, 0.012141161598265171, 0.0027840356342494488, -0.01115637831389904, -0.018710877746343613, -0.013827433809638023, -0.015864450484514236, -0.021152600646018982, 0.015338333323597908, 0.010751673020422459, -0.0010100771905854344, -0.01725393906235695, -0.01612076349556446, -0.040578458458185196, 0.0302449818700552, 0.01326084602624178, -0.005028464365750551, 0.029300669208168983, -0.011358730494976044, 0.009166576899588108, 0.015351823531091213, -0.007885009981691837, 0.005079052411019802, -0.03213360533118248, 0.004832856822758913, 0.00962524302303791, 0.0006133815622888505, 0.028815021738409996, -0.0009114302229136229, -0.0011331751011312008, -0.005608541890978813, 0.0203566811978817, 0.010286261327564716, 0.02669706381857395, 0.03793438524007797, -0.0034737212117761374, 0.015311352908611298, 0.011304769665002823, 0.01613425463438034, -0.04133391007781029, -0.013759982772171497, 0.004633876495063305, -0.0002487251767888665, -0.020100366324186325, -0.0053522284142673016, 0.008728145621716976, -0.018926721066236496, 0.029921216890215874, 0.015554176643490791, 0.0038413284346461296, 0.019506799057126045, 0.010421163402497768, -0.019547268748283386, -0.0009114302229136229, -0.0297323539853096, 0.009456615895032883, 0.03345564380288124, 0.01980358362197876, -0.051586445420980453, -0.0038109757006168365, -0.01860295794904232, -0.034345995634794235, 0.03461579978466034, 0.005335365887731314, 0.007925480604171753, -0.012788689695298672, 0.013496924191713333, 0.0066169328056275845, -0.0180363692343235, 0.004731680266559124, -0.018157782033085823, 0.005480385385453701, 0.00044348964001983404, 0.005554581061005592, 0.0148661769926548, 0.01670084148645401, -0.00962524302303791, 7.962367817526683e-05, 0.015945391729474068, 0.02978631481528282, 0.014380531385540962, -0.009335204027593136, 0.01181065198034048, 0.029840275645256042, -0.014636844396591187, 0.04408590495586395, -0.010569555684924126, 0.006090816110372543, 0.02662961371243, 0.004991366062313318, -0.007716382388025522, -0.0051397583447396755, 0.010400928556919098, 0.03364450857043266, -0.0029408589471131563, -0.013975825160741806, -0.004222426097840071, -0.014043276198208332, -0.004509092308580875, 0.01544625498354435, -0.000951057649217546, 0.009557791985571384, -0.035668034106492996, -0.0017056645592674613, -0.007898500189185143, 0.04003885015845299, 0.010562810115516186, -0.012950572185218334, -0.003490583971142769, 0.022474639117717743, -0.01857597753405571, -0.0004154553753323853, -0.011938808485865593, -0.0007411167025566101, 0.002704781014472246, -0.008714655414223671, -0.009827595204114914, 0.008768616244196892, -0.004998111166059971, 0.035506151616573334, -0.019331427291035652, -0.020046405494213104, 0.0040605440735816956, 0.030730627477169037, -0.010340222157537937, -0.00432022986933589, 0.024241851642727852, 0.007068853825330734, -0.027951650321483612, -0.014043276198208332, 0.029219727963209152, -0.012640297412872314, 0.017753075808286667, 0.006293168757110834, -0.0033978389110416174, -0.011803906410932541, 0.007689401973038912, -0.010785398073494434, 0.00891026295721531, -0.01670084148645401, 0.0032039175275713205, -0.002517604734748602, -0.00011867142166011035, 0.027951650321483612, -0.010927044786512852, 0.011520612984895706, 0.0009249204304069281, 0.011979279108345509, -0.01520343217998743, -0.016215195879340172, 0.008303205482661724, 0.052287936210632324, -0.001300959149375558, -0.018980681896209717, -0.012431199662387371, -0.01722695864737034, -0.004455131478607655, 0.002875094534829259, -0.005544463638216257, -0.03421109542250633, 0.015527196228504181, -0.004006583243608475, 0.0011373907327651978, -0.0001650439080549404, -0.0067518348805606365, 0.017038095742464066, 0.004913797602057457, -0.0009645477985031903, 0.005119523033499718, -0.02413392998278141, 0.0151224909350276, 0.07565292716026306, 0.029543492943048477, -0.025766242295503616, 0.030622705817222595, 0.010684221982955933, 0.009375674650073051, 0.001118841697461903, -0.017604684457182884, 0.005412934347987175, -0.006600070279091597, -0.02157079614698887, -0.0010935476748272777, -0.01675480231642723, -0.020005935803055763, 0.0252671055495739, 0.007406108547002077, 0.012626808136701584, -0.003844700986519456, 0.005928933620452881, 0.0020774875301867723, 0.006569717079401016, -0.006913716904819012, 0.02232624590396881, 0.012788689695298672, 0.023756206035614014, 0.040551479905843735, 0.035587090998888016, 0.03672026842832565, -0.008181793615221977, -0.016309626400470734, -0.020680444315075874, 0.020626483485102654, -0.03599179908633232, 0.03167494013905525, -0.005682738032191992, 0.00770963728427887, -0.015486725606024265, -0.008458342403173447, 0.0010319986613467336, 0.029381610453128815, 0.002139879623427987, -0.01617472432553768, 0.03582991659641266, -0.025078242644667625, 0.008141322992742062, -0.0014122531283646822, 0.004337092395871878, -0.011291280388832092, -0.003500701393932104, -0.04759335145354271, 0.0016120764194056392, -0.013625080697238445, -0.026413770392537117, 0.011378966271877289, -0.033779408782720566, 0.018764838576316833, 0.00022553892631549388, 0.001730115502141416, -0.018306173384189606, -0.03850097209215164, -0.00728469667956233, -0.017631664872169495, 0.007210500538349152, -0.005601796787232161, -0.01109567191451788, -0.008775361813604832, -0.02045111171901226, -0.0108595946803689, -0.026724044233560562, 0.01907511241734028, 0.015351823531091213, -0.0026002321392297745, -0.018859270960092545, 0.0050723073072731495, 0.018076840788125992, 0.008653949946165085, 0.018211741000413895, 0.004519210197031498, 0.007831049151718616, 0.007541010156273842, -0.0051060328260064125, -0.011628534644842148, -0.009706184267997742, -0.020869307219982147, -0.01115637831389904, -0.0025850555393844843, -0.009645477868616581, 0.006019992288202047, -0.02978631481528282, -0.005679365247488022, 0.0019746250472962856, -0.009551046416163445, -9.00047889444977e-05, 0.0032224664464592934, 0.020019425079226494, 0.005584934260696173, 0.0019105466781184077, 0.019587740302085876, -0.004569798242300749, -0.011439671739935875, -0.00033367113792337477, -0.018063349649310112, -0.02042413130402565, -0.019628209993243217, -0.009679203853011131, 0.0002965731546282768, 0.010454888455569744, 0.004434896167367697, 0.002583369379863143, 0.004445014055818319, 0.016889704391360283, -0.015513706021010876, -0.018306173384189606, -0.013119199313223362, -0.016390567645430565, -0.015297862701117992, 0.019547268748283386, -0.004637249279767275, 0.012188376858830452, 0.00585136516019702, 0.0136722968891263, -0.03569501265883446, 0.02965141460299492, -0.0319177620112896, 0.009234027937054634, -0.004114504437893629, -0.004380935803055763, -0.029327649623155594, -0.04165767505764961, -0.006488776300102472, -0.0173213891685009, 0.005466895177960396, 0.0007786362548358738, -0.02905784547328949, -0.014920137822628021, -0.007143049966543913, -0.00806038174778223, 0.0019527034601196647, -0.013213630765676498, -0.01987103372812271, -0.019385388121008873, -0.00449897488579154, -0.007669166661798954, -0.03763759881258011, 0.02418789081275463, -0.03477768227458, -0.01077190786600113, 0.003023486351594329, 0.004296622239053249, 0.019048133864998817, -0.009719674475491047, 0.0023590950295329094, -0.006485403515398502, -0.010933790355920792, -0.013031513430178165, -0.016538958996534348, 0.03898661956191063, -0.033050939440727234, 0.03043384477496147, 0.02101769857108593, 0.027627887204289436, -0.00678218761458993, 0.005665875039994717, 0.02471400797367096, -0.006775442510843277, -0.015028059482574463, 0.01049535907804966, -0.015675587579607964, -0.014137707650661469, -0.0013304689200595021, -0.030056118965148926, -0.009105870500206947, 0.018333153799176216, -0.00605371780693531, 0.0021432521753013134, 0.027007339522242546, -0.01787448674440384, -0.0014375472674146295, -0.04616339132189751, -0.02897690422832966, -0.020896287634968758, -0.0041448576375842094, -0.030218001455068588, 0.03345564380288124, -0.03156701847910881, -0.02231275662779808, 0.0023068205919116735, 0.02173267863690853, 0.007291441783308983, -0.008255989290773869, 0.00801316648721695, 0.009335204027593136, 0.0015463117742910981, -0.00020024484547320753, 0.0066506583243608475, -0.020882796496152878, -0.008188539184629917, -0.0396881066262722, -0.01722695864737034, 0.0031162314116954803, -0.019452838227152824, 0.016377078369259834, 0.020653463900089264, 0.01790146715939045, 0.011837632395327091, 0.028788043186068535, -0.010663986206054688, -0.025874163955450058, 0.010663986206054688, -0.027533454820513725, 0.006593325175344944, -0.009760144166648388, -0.0180363692343235, -0.01849503628909588, -0.007871519774198532, 0.0047417981550097466, -0.019466329365968704, 0.006337011698633432, 0.002615408506244421, -0.018468055874109268, 0.032484352588653564, -0.006013247184455395, 0.031782861799001694, -0.016471508890390396, 0.044814374297857285, 0.0037199168000370264, -0.008276225067675114, -0.02602255530655384, -0.015877941623330116, -0.0009653909364715219, 0.000650479574687779, 0.03901359811425209, 0.019398877397179604, 0.004337092395871878, -0.013193394988775253, 0.006492148619145155, 0.0008060382097028196, 0.0191965252161026, -0.009173321537673473, 0.009996222332119942, -0.0051060328260064125, -0.011851122602820396, -0.023391971364617348, -0.038069285452365875, -0.024430714547634125, 0.02467353828251362, -0.03466976061463356, -0.0053893267177045345, -0.0024788205046206713, -0.015918411314487457, -0.00590532599017024, 0.012013004161417484, 0.0038379558827728033, 0.0108595946803689, -0.0015926843043416739, 0.008822577074170113, -0.022083424031734467, 0.009139596484601498, 0.00836391095072031, -0.007163285277783871, -0.012916846200823784, 0.012701003812253475, -0.051694367080926895, 0.018994173035025597, 0.002741878852248192, -0.0016576057532802224, -0.014960608445107937, 0.001010920270346105, 0.0041752103716135025, 0.027034319937229156, -0.04252104461193085, -0.006707991473376751, 0.018940212205052376, -0.022757932543754578, 0.014974098652601242, -0.033482626080513, 0.003652465995401144, -0.009092380292713642, -0.01610727421939373, -0.008829322643578053, 0.02356734313070774, 0.015055039897561073, -0.007480304222553968, 0.01729440875351429, 0.010933790355920792, -0.023769695311784744, 0.009490340948104858, -0.0005429796874523163, -2.7955235054832883e-05, -0.008181793615221977, -0.006627050694078207, 0.010293006896972656, 0.0052072093822062016, 0.03426505625247955, -0.00023923988919705153, -0.0003182839136570692, -0.0033236430026590824, 0.0075814807787537575, -0.012849396094679832, 0.0222992654889822, 0.016309626400470734, 0.019398877397179604, -0.023338010534644127, 0.034885603934526443, -0.017699114978313446, -0.011999513953924179, -0.002192154061049223, -0.029273688793182373, -0.030460825189948082, -0.013604845851659775, 0.013706021942198277, 0.006731599569320679, -0.0011778612388297915, 0.009753399528563023, 0.015055039897561073, 0.024349773302674294, -0.003168505849316716, 0.00014912971528247, -0.023364990949630737, 0.02235322631895542, 0.010704456828534603, -0.02283887378871441, 0.014164688065648079, 0.0028481141198426485, 0.028707101941108704, -0.010394182987511158, -0.002128075808286667, 0.0023354871664196253, -0.016336606815457344, -0.012498650699853897, 0.0064348154701292515, 0.008303205482661724, 0.0004023867368232459, 0.008701165206730366, -0.013544139452278614, -0.0035479171201586723, 0.0017857624916359782, 0.009551046416163445, 0.013881394639611244, 0.01927746646106243, 0.011068692430853844, -0.0024484675377607346, 0.02173267863690853, 0.015135981142520905, -0.010630261152982712, -0.04160371422767639, 0.0006150678382255137, -0.02911180630326271, -0.015648607164621353, -0.00924077257514, 0.004077406600117683, 0.025617850944399834, 0.027951650321483612, -0.005864855367690325, -0.031054392457008362, 0.0067147365771234035, -0.04559680446982384, -0.029327649623155594, 0.01680876314640045, 0.018171271309256554, 0.033482626080513, 0.007244226057082415, -0.016970645636320114, 0.040551479905843735, 0.0034939562901854515, 0.00308925099670887, -0.03520936891436577, 0.007824303582310677, -0.006772069726139307, -0.030514786019921303, 0.0020268994849175215, 0.0012520572636276484, 0.005611914675682783, -0.020599503070116043, 0.006546109449118376, -0.002131448360159993, -0.008869792334735394, 0.02725016139447689, 0.034399956464767456, -0.016336606815457344, 0.007911990396678448, 0.004880072083324194, 0.017591193318367004, -0.004222426097840071, 0.01550021581351757, -0.02283887378871441, 0.007237480953335762, 0.015014569275081158, 0.010967515408992767, -0.003939132206141949, 0.017658645287156105, 0.020167818292975426, 0.0036659562028944492, -0.0053893267177045345, -0.0005067248712293804, -0.012748219072818756, -0.013321551494300365, 0.00899794977158308, 0.008849557489156723, -0.014083746820688248, 0.020815346390008926, 0.019924994558095932, 0.017631664872169495, -0.03329376131296158, 0.012282808311283588, 0.011972533538937569, -0.005989639554172754, 0.0024383498821407557, 0.02354036271572113, -0.033212821930646896, -0.0013599786907434464, -0.0006298227235674858, 0.008512303233146667, -0.007203755434602499, -0.0015758215449750423, -0.015621627680957317, 0.004074034281075001, -0.008620224893093109, -0.0027503103483468294, -0.007817558944225311, -0.002237683394923806, 0.023823656141757965, -0.019412368535995483, 0.01145990751683712, 0.010738182812929153, 0.0008996263495646417, 0.005460150074213743, -0.02664310298860073, -0.03172890096902847, 0.01334178727120161, 0.008680930361151695, -0.0044922297820448875, 0.02167871780693531, 0.023176128044724464, 0.011675749905407429, 0.010974260978400707, 0.2143319696187973, 0.002257918706163764, 0.01786099746823311, 0.023418951779603958, 0.012404220178723335, 0.005615286994725466, 0.020289229229092598, 0.008229008875787258, 0.016849232837557793, 0.01019857544451952, -0.013463199138641357, 0.004380935803055763, -0.0059356787241995335, -0.007648931350558996, 0.012761709280312061, 0.015945391729474068, -0.02479494921863079, 0.0037806227337569, -0.03672026842832565, 0.0383930504322052, 0.026278868317604065, -0.025024281814694405, 0.019007662311196327, -0.012883121147751808, 0.03224152699112892, -0.002168546197935939, -0.02671055495738983, 0.006343756802380085, 0.03588387742638588, 0.018319662660360336, -0.008262734860181808, 0.008849557489156723, -0.0006846265750937164, -0.005028464365750551, 0.0043101124465465546, -0.01025253627449274, 0.0005897737573832273, -0.004134739749133587, -0.0043573277071118355, 0.01666037179529667, 0.0421433188021183, 0.01726743020117283, -0.0016053313156589866, -0.003598505398258567, 0.0010058614425361156, 0.016404056921601295, -0.004050426185131073, -0.004306739661842585, 0.014596373774111271, -0.0035479171201586723, -0.022069932892918587, 0.00800642091780901, 0.03040686435997486, 0.010063673369586468, -0.008148068562150002, 0.011972533538937569, -0.010785398073494434, 0.013854414224624634, -0.013550885021686554, -0.016255665570497513, -0.011770181357860565, 0.006316776387393475, -0.0020134092774242163, 0.005186974070966244, -0.001991487806662917, -0.0036119953729212284, -0.00930147897452116, -0.0067990501411259174, -0.009753399528563023, -0.021166091784834862, 0.0012916846899315715, 0.0025648202281445265, -0.008154813200235367, 0.003922269679605961, -0.014663824811577797, -0.027951650321483612, 0.03771854192018509, 0.007358892820775509, 0.029921216890215874, 0.03690912947058678, 0.021354952827095985, 0.01663339138031006, -0.018157782033085823, -0.01110241748392582, -0.014744766056537628, -0.016889704391360283, 0.019061623141169548, -0.006225717719644308, 0.001334684551693499, 0.006927207112312317, 0.006589952390640974, 0.0038076031487435102, -0.011534103192389011, -0.0043236021883785725, 0.026818476617336273, 0.0030926235485821962, -0.008444852195680141, 0.002765486715361476, -0.008593244478106499, -0.019048133864998817, -0.023189617320895195, 0.061623137444257736, 0.04092920199036598, -0.013746492564678192, 0.009975987486541271, 0.008579754270613194, 8.199499279726297e-05, 0.02609000727534294, -0.003090937389060855, -0.01972264237701893, 0.01482570730149746, -0.016957154497504234, 0.03634254261851311, -0.007885009981691837, -0.028113532811403275, -0.002379330340772867, 0.0015741352690383792, -0.020734405145049095, 0.011001241393387318, -0.0026204672176390886, 0.01117661315947771, -0.016282645985484123, 0.004057171288877726, 0.02665659412741661, -0.03035290353000164, -0.0008553616935387254, 0.005068934988230467, -0.004273014143109322, -0.010717947036027908, -0.02340546064078808, 0.03364450857043266, -0.019317936152219772, -0.012235592119395733, -0.01798240840435028, 0.005406189244240522, 0.007035128306597471, 0.029327649623155594, -0.0008334401063621044, -0.016377078369259834, 0.014110727235674858, -0.018346643075346947, 0.007021638099104166, 0.007783833425492048, 0.0033354468178004026, 0.009227282367646694, -0.02297377586364746, 0.012862885370850563, 0.014394021593034267, -0.007008147891610861, -0.023284049704670906, -0.025240125134587288, 0.006073953118175268, -0.00497450353577733, 0.018063349649310112, 0.011547593399882317, -0.010239046066999435, -0.01266053318977356, -0.015095510520040989, -0.0022326246835291386, 0.017807036638259888, -0.032565291970968246, -0.007102579344063997, 0.011851122602820396, -0.00896422378718853, -0.005966031923890114, -0.013071984052658081, -0.17159508168697357, 0.026764515787363052, -0.007574735675007105, -0.011992769315838814, 0.009227282367646694, -0.002905447268858552, -0.005662502720952034, 0.01178367156535387, -0.0011314888251945376, 0.012262572534382343, 0.024983812123537064, 0.019317936152219772, -0.028032591566443443, -0.019965464249253273, 0.020194798707962036, -0.004377563018351793, -0.013496924191713333, 0.02053205296397209, 0.014380531385540962, 0.010542575269937515, 0.03456183895468712, -0.00021110022498760372, -0.002601918298751116, -0.015877941623330116, -1.509740741312271e-05, -0.003706426825374365, -0.01661990024149418, 0.01804986037313938, 0.0036693287547677755, -0.013119199313223362, 0.0020167818292975426, -0.013449708931148052, 0.03650442510843277, 0.016862723976373672, 0.0042089358903467655, -0.00932171382009983, -0.005315130576491356, -0.02606302686035633, -0.03758363798260689, 0.03715195506811142, 0.025644831359386444, 0.01926397532224655, 0.011534103192389011, 0.03337470442056656, 0.006677638739347458, 0.025577379390597343, 0.0029560355469584465, 0.004515837412327528, 0.0083369305357337, -0.01679527387022972, 0.01675480231642723, -0.038069285452365875, 0.00020825464162044227, -0.0083369305357337, -0.014178178273141384, 0.028059571981430054, 0.002257918706163764, -0.010974260978400707, 0.0048598372377455235, -0.03027196228504181, -0.007864774204790592, -0.012350259348750114, -0.007925480604171753, -0.016458017751574516, -0.011965788900852203, -0.025064753368496895, -0.00286497687920928, 0.01271449401974678, -0.04384308308362961, 0.017766565084457397, -0.009261008352041245, -0.012950572185218334, 0.0148661769926548, -0.016417548060417175, 0.0047890134155750275, -0.0022882716730237007, 0.00017621547158341855, 0.015392294153571129, 0.0043573277071118355, 0.02167871780693531, -0.00036254856968298554, 0.017618173733353615, -0.018360134214162827, 0.031836822628974915, -0.03415713459253311, 0.009382419288158417, 0.017604684457182884, 0.010434653609991074, 0.0012351945042610168, -0.03094647079706192, 0.0011964102741330862, -0.009605007246136665, 0.011763435788452625, -0.003544544568285346, 0.012647042982280254, 0.014083746820688248, 0.019547268748283386, 0.02588765323162079, -0.015729548409581184, 0.012485160492360592, -0.0017436057096347213, -0.0030504667665809393, -0.038015324622392654, 0.02416091039776802, -0.0024585851933807135, 0.01046837866306305, -0.01427260972559452, 0.022461147978901863, 0.014367041178047657, -0.01977660320699215, -0.026103496551513672, 0.022029463201761246, 0.028626160696148872, 0.007716382388025522, -0.001440919702872634, 0.03823116794228554, -0.011048456653952599, 0.009234027937054634, 0.0007272049551829696, -0.02351338230073452, 0.04646017774939537, -0.03207964450120926, -0.005642267409712076, 0.004050426185131073, -0.025550398975610733, -0.02104467898607254, -0.12810273468494415, -0.05075005441904068, 0.007608461193740368, 0.008323440328240395, 0.014070256613194942, 0.024484675377607346, 0.004684464540332556, 0.02787071093916893, -0.03672026842832565, 0.035047486424446106, 0.007250971160829067, -0.004259523935616016, 0.00030774471815675497, 0.0013633512426167727, 0.02294679544866085, -0.013759982772171497, -0.0025361536536365747, -0.00540281692519784, -0.030649686232209206, 0.023311030119657516, 0.00677881482988596, -0.018953701481223106, -0.004380935803055763, -0.012579591944813728, -0.01672782190144062, -0.0025428987573832273, -0.025240125134587288, -0.00902493018656969, 0.007938970811665058, 0.0036794464103877544, 0.015850961208343506, -0.003286544932052493, 0.014798726886510849, -0.01203323993831873, -0.013827433809638023, 0.00029298983281478286, -0.034480899572372437, -0.006913716904819012, 0.006981167942285538, -0.034238073974847794, 0.014353550970554352, 0.018886251375079155, -0.0009544302010908723, -0.0359378382563591, -0.00924077257514, 0.004148229956626892, -0.030649686232209206, 0.012458180077373981, 0.02235322631895542, -0.00572995375841856, -0.0016828998923301697, 0.009530811570584774, -0.022002482786774635, -0.013517159968614578, -0.004758660681545734, -0.0021095266565680504, -0.0008633714751340449, 0.01598586142063141, -0.03143211826682091, -0.026346320286393166, -0.015392294153571129, -0.0018515271367505193, -0.02723667211830616, 0.018805310130119324, 0.0029239964205771685, 0.014812217094004154, -0.011136142536997795, -0.022515108808875084, 0.01080563385039568, -0.036207642406225204, -0.003510819049552083, 0.011196848936378956, -0.013719512149691582, 0.03199870511889458, -0.019520288333296776, 0.00650901161134243, -0.006576462183147669, -0.03842002898454666, 0.03083854913711548, -0.010319987311959267, -0.01864342764019966, -0.02170569822192192, 0.008903518319129944, -0.017780056223273277, 0.0191965252161026, 0.033698465675115585, -0.010023202747106552, 0.006009874865412712, 0.005129640456289053, -0.0028042709454894066, 0.012923591770231724, 0.031782861799001694, 0.008539283648133278, 0.008795596659183502, -0.0029425453394651413, 0.006691128946840763, -0.013031513430178165, -0.02466004714369774, 0.015675587579607964, 0.013004533015191555, 0.0018869388150051236, 0.0050756800919771194, -0.05552557855844498, 0.012566101737320423, -0.020275739952921867, 0.016215195879340172, -0.005861483048647642, 0.028194474056363106, 0.010427908040583134, -0.01733488030731678, -0.013490179553627968, 0.008573008701205254, -0.03720591589808464, 0.03040686435997486, -0.008229008875787258, -0.002062311163172126, -0.020032916218042374, -0.018683897331357002, 0.025847183540463448, -0.006259443238377571, 0.015567666850984097, 0.016538958996534348, 0.014879667200148106, -0.03537125140428543, -0.0015952136600390077, 0.020221779122948647, -0.019479818642139435, 0.0011373907327651978, -0.028653141111135483, -0.016350097954273224, -0.007999676279723644, -0.015662098303437233, 0.016336606815457344, -0.004613641183823347, -0.012417709454894066, 0.013665551319718361, -0.013746492564678192, -0.009665713645517826, -0.013119199313223362, 0.03350960463285446, 0.01663339138031006, 0.011250809766352177, -0.023391971364617348, -0.026400281116366386, 0.022123893722891808, -0.024471184238791466, 0.0013211944606155157, -0.00994900707155466, -0.016862723976373672, -0.017132528126239777, -0.004401171114295721, 0.004246033728122711, 0.03952622413635254, 0.005888462997972965, -0.003067329525947571, -0.018832290545105934, 0.002991447225213051, -0.01547323539853096, 0.008431361988186836, -0.0013043317012488842, -0.00043969551916234195, -0.00924751814454794, 0.030730627477169037, 0.004748543258756399, -0.0034012114629149437, 0.0024821930564939976, 0.026778005063533783, 0.013071984052658081, -0.010987751185894012, -0.008917008526623249, -0.0030302314553409815, 0.01482570730149746, 0.018252212554216385, -0.008141322992742062, 0.013085473328828812, -0.0009063713951036334, 0.015756528824567795, -0.008809086866676807, 0.005119523033499718, -0.0028025847859680653, -0.02166522853076458, -0.00217360514216125, -0.021179581061005592, 0.007291441783308983, -0.003935759887099266, 0.01489315740764141, 0.020262248814105988, 0.009105870500206947, -0.011007986031472683, 0.00119893962983042, -0.0009502145112492144, 0.008809086866676807, 0.013773472979664803, -0.001332998275756836, 0.01298429723829031, -0.010144614614546299, 0.014461471699178219, 0.002008350333198905, 0.0052510523237288, 0.012539121322333813, -0.020828837528824806, 0.02418789081275463, 0.013281081803143024, 0.010117634199559689, -0.008748381398618221, -0.030784588307142258, -0.028329376131296158, 0.01679527387022972, -0.016282645985484123, -0.0041448576375842094, -0.014852686785161495, 0.01921001449227333, 0.0043101124465465546, 0.015823980793356895, 0.027492985129356384, 0.010765163227915764, -0.02962443418800831, 0.014920137822628021, -0.028680121526122093, -0.007669166661798954, -0.019398877397179604, 0.023607812821865082, 0.012539121322333813, 0.0064988937228918076, 0.0009687634883448482, 0.006589952390640974, 0.02409346029162407, -0.0006618619081564248, 0.017105547711253166, -0.016862723976373672, 0.002777290530502796, 0.0010952339507639408, -0.006424698047339916, -0.007972695864737034, 0.01856248639523983, -0.008674184791743755, -0.002300075488165021, -0.020032916218042374, -0.016538958996534348, 0.031890783458948135, 0.014717785641551018, 0.06081372871994972, 0.024983812123537064, -0.013989315368235111, 0.0009156459127552807, -0.004994738847017288, 0.02478145994246006, -0.006495521403849125, 0.00831669569015503, -0.021462874487042427, -0.022650010883808136, 0.012444689869880676, -0.008842812851071358, 0.01850852556526661, -0.017672134563326836, -0.011028221808373928, -0.009665713645517826, -0.007534265052527189, 0.0010842730989679694, -0.0009620183845981956, -0.006701246369630098, 0.008323440328240395, -0.01659291982650757, -0.008417871780693531, 0.003470348659902811, -0.020707424730062485, -0.01926397532224655, 0.008836067281663418, -0.00901818461716175, -0.02592812478542328, -0.0444636307656765, 0.01614774391055107, 0.023378480225801468, -0.02849125862121582, -0.013962335884571075, 0.001991487806662917, 0.010670731775462627, 0.006316776387393475, -0.010131124407052994, 0.008903518319129944, 0.0014653707621619105, -0.0018009388586506248, 0.016849232837557793, -0.007041873410344124, -0.010785398073494434, -0.022596050053834915, -0.016498489305377007, -0.005976149346679449, 0.00043210730655118823, 0.009753399528563023]" +49,"In commercial bookings, continued strong execution across core annuity sales motions and commitments to our platform should drive solid growth on a moderately growing expiry base against a strong prior year comparable, which included a significant volume of large long-term Azure contracts. As a reminder, the growing mix of larger long-term Azure contracts which are more unpredictable in their timing, always drives increased quarterly volatility in our bookings growth rate. Microsoft Cloud gross margin percentage should be up roughly one point year over year, driven by the latest accounting estimate change noted earlier. Excluding that impact, Q2 gross margin percentage will decrease roughly two points driven by lower Azure margin, primarily due to higher energy cost, revenue mix shift to Azure and the impact from Nuance.","[0.002215044805780053, -0.03396959602832794, 0.01146808173507452, -0.01699817180633545, -0.0010665650479495525, 0.009836471639573574, -0.03544071689248085, -0.026934945955872536, -0.02415318414568901, -0.031000599265098572, 0.043331295251846313, 0.04878782853484154, 0.004844679497182369, 0.01677081547677517, -0.007616410963237286, 0.00385835743509233, 0.02963646501302719, -0.004282977432012558, 0.013654706999659538, -0.04228813201189041, -0.013246804475784302, 0.012283886782824993, -0.033193912357091904, 0.009609115310013294, -0.005744071211665869, 0.010097261518239975, 0.007723401766270399, -0.01051185093820095, 0.010264434851706028, -0.004202734213322401, 0.007362307980656624, -0.014844980090856552, -0.02744315192103386, 0.034103333950042725, -0.014604250900447369, 0.001381686539389193, -0.007649845909327269, 0.035413969308137894, 0.008465650491416454, -0.012290573678910732, 0.022494826465845108, 0.018536165356636047, 0.004162612836807966, 0.020381756126880646, -0.00853252038359642, 0.009762914851307869, 0.005804253742098808, 0.011675376445055008, -0.013594524934887886, 0.003564132610335946, 0.01873677223920822, 0.046434029936790466, -0.029315492138266563, -0.016062000766396523, 0.0011267473455518484, -0.001407598378136754, -0.011936166323721409, 0.0107124587520957, -0.0011827504495158792, -0.007723401766270399, -0.0011768992990255356, 0.01394893229007721, -0.005760788451880217, -0.0059446790255606174, -0.02484862506389618, -0.00643951166421175, -0.0304923914372921, -0.006105165462940931, 0.011641941964626312, -0.025744672864675522, 0.025637682527303696, 0.021438291296362877, 0.011768992990255356, 0.007108204532414675, 0.025931907817721367, -0.019766559824347496, -0.012892397120594978, -0.028673548251390457, 0.007108204532414675, 0.0047142840921878815, 0.0075294808484613895, -0.01730576902627945, -0.012176896445453167, 0.0017402729718014598, 0.0034220353700220585, 0.017787229269742966, -0.01600850559771061, 0.0034437680151313543, -0.030733121559023857, 0.005152278114110231, 0.03003768064081669, 0.0004313068639021367, 0.027790872380137444, 0.025744672864675522, -0.007121578324586153, 0.012578112073242664, -0.0189641285687685, 0.03201701119542122, 5.542836515814997e-05, -0.019846802577376366, -0.0063325208611786366, -0.006238903850317001, -0.03217749670147896, -0.010765953920781612, -0.055902719497680664, 0.0019826742354780436, 0.023217014968395233, 0.006175377871841192, 0.03078661672770977, -0.007342246826738119, 0.012003036215901375, -0.01307294424623251, 0.010371425189077854, -0.013113065622746944, 9.920684533426538e-05, -0.0010398173471912742, 0.0009503796463832259, 0.011073553003370762, 0.0018806984880939126, -0.006359268445521593, 0.007415803149342537, 0.00038972252514213324, 0.015821272507309914, -0.016904553398489952, 0.002683129860088229, 0.009856532327830791, -0.0031796342227607965, -0.025049231946468353, 0.014443764463067055, -0.021612150594592094, 0.012270512990653515, -0.002531002275645733, 0.012865649536252022, 0.009742854163050652, 0.003065956523641944, 0.04014831781387329, -0.016503337770700455, 0.0028335857205092907, -0.02491549402475357, -0.02726929262280464, -0.011427960358560085, 0.030117923393845558, -0.0013908810215070844, 0.010658963583409786, 0.02765713445842266, 0.020368382334709167, 0.02698844112455845, -0.009421881288290024, 0.009248021058738232, -0.0027516710106283426, 0.01372157596051693, -0.036376889795064926, 0.012718536891043186, 0.014497259631752968, 0.03193676844239235, -0.009729480370879173, 0.004620667081326246, 0.028004854917526245, -0.03487901762127876, -0.014310025610029697, -0.012872336432337761, 0.01920485682785511, -0.0019158049253746867, 0.01729239523410797, 0.0016082061920315027, 0.011728871613740921, 0.017573246732354164, -0.011702124029397964, -0.006001518107950687, -0.023832211270928383, 0.007663219701498747, -0.008679633028805256, 0.0009344982099719346, 0.017118535935878754, 0.010485103353857994, 0.0469689816236496, 0.007074770051985979, -0.012016410008072853, -0.022147106006741524, -0.023885706439614296, 0.024661390110850334, -0.009127656929194927, 0.0028720356058329344, 0.0029221875593066216, -0.007368994876742363, -0.0028268988244235516, 0.029315492138266563, -0.003427050542086363, -0.003958661574870348, -0.005660484544932842, -0.009114283137023449, 0.0030392087064683437, -0.034103333950042725, -0.016583582386374474, -0.652644157409668, 0.0007196806254796684, 0.004099086858332157, -0.0033484792802482843, 0.023497864603996277, -0.00019308504124637693, 0.02347111701965332, -0.00014481379184871912, -0.04437445476651192, 0.02888752892613411, 0.0021097257267683744, 0.020381756126880646, 0.00044593450729735196, -0.0022317622788250446, 0.02248145267367363, -0.009843158535659313, 0.011782366782426834, 0.015018840320408344, -0.016075374558568, -0.005637080408632755, 0.003925226628780365, 0.02027476578950882, -0.002736625261604786, 0.005566867534071207, 0.019940419122576714, 0.017412761226296425, -0.012056531384587288, -0.001833889982663095, -0.0108194500207901, 0.0013306987239047885, -0.018536165356636047, 0.012464433908462524, 0.003941943868994713, 0.00267644296400249, 0.05341518297791481, -0.023350752890110016, -0.02666746824979782, 0.011020057834684849, 0.0037012146785855293, 0.02797810733318329, -0.03437080979347229, 0.005857748910784721, 0.005613676272332668, -0.004573858808726072, -0.002546047791838646, 0.01120060496032238, 0.019084492698311806, -0.0031913365237414837, 0.019325222820043564, -0.005954709369689226, 0.005459876731038094, -0.0005115499952808022, 0.005229177884757519, -0.017412761226296425, 0.0010974920587614179, 0.0012997715966776013, 0.006202125921845436, -0.015152579173445702, 0.001420136308297515, -0.014938597567379475, -0.016663825139403343, -0.01409604400396347, -0.019699690863490105, -0.03755378723144531, -0.036376889795064926, 0.011528263799846172, -0.00963586289435625, 0.02126443199813366, 0.02224072255194187, -0.0035440719220787287, -0.007723401766270399, 0.018803641200065613, 0.0048346491530537605, -0.013581151142716408, 0.010231000371277332, 0.002220060210675001, 0.009742854163050652, -0.02545044757425785, -0.012009723111987114, 0.022387834265828133, 0.0028987834230065346, -0.027764124795794487, -0.005590271670371294, 0.0028653487097471952, -0.0050720348954200745, -0.01166200265288353, -0.015981758013367653, -0.022454705089330673, 1.6456111552543007e-05, -0.005245895124971867, -0.0008910331525839865, 0.001654178835451603, -0.001015577232465148, -0.02658722549676895, 0.03191002085804939, 0.019405465573072433, -0.03223099187016487, -0.01192947942763567, 0.014751363545656204, -0.016891179606318474, -0.008759875781834126, -0.011889358051121235, 0.03528023138642311, 0.014376895502209663, 0.03514649346470833, 0.027630386874079704, 0.0036544061731547117, 0.0030425521545112133, 0.03193676844239235, -0.021170813590288162, -0.0008952125208452344, -0.015393308363854885, -0.0036711234133690596, 0.0071817608550190926, 0.006827353499829769, -0.030358653515577316, 0.026092393323779106, -0.01120729185640812, -0.02736290916800499, -0.013474159874022007, -0.012491181492805481, 0.007496046368032694, 0.014109417796134949, -0.028780538588762283, -0.00036192996776662767, 0.026881450787186623, 0.0008768234401941299, -0.006533128675073385, 0.009970209561288357, -0.023511238396167755, -0.00834528636187315, -0.01241762563586235, 0.03191002085804939, 0.00936838611960411, 0.034103333950042725, 0.0006273174658417702, 0.0089136753231287, -0.014818232506513596, -0.0010715802200138569, -0.04817263036966324, -0.026426739990711212, -0.003375226864591241, -0.00445683766156435, -0.006228873506188393, -0.010344677604734898, -0.017319142818450928, -0.0278176199644804, 0.006158660631626844, -0.01543342974036932, 0.0037145884707570076, 0.007469298783689737, 0.007857140153646469, 0.0017770511331036687, 0.016249235719442368, 0.007516107056289911, 0.014363521710038185, 0.004353190306574106, -0.033809106796979904, -0.015152579173445702, -0.027924612164497375, 0.009702732786536217, 0.019017623737454414, 0.008051061071455479, 0.010906379669904709, -0.025437073782086372, -0.02301640622317791, -0.04434770718216896, 0.01751975156366825, -0.0019308504415675998, -0.009341638535261154, 0.014764737337827682, -0.02353798598051071, 0.02674771286547184, 0.00785045325756073, 0.011254100129008293, -0.004356533754616976, -0.012337381951510906, -2.621223575260956e-05, 0.024902120232582092, -0.01429665181785822, 0.022454705089330673, 0.0225616954267025, 0.0041993907652795315, -0.016810936853289604, 0.025116100907325745, -0.0008279252797365189, 0.03174953535199165, 0.021291179582476616, -0.018616408109664917, 0.008713067509233952, -0.011989662423729897, 0.03225773945450783, -0.03289968520402908, -0.0008028493029996753, -0.013119752518832684, -0.018415799364447594, -0.019672943279147148, 0.0045337374322116375, 0.0015705922851338983, -0.010498477146029472, 0.017172031104564667, 0.009769601747393608, -0.008311851881444454, 0.010184191167354584, -0.0040088132955133915, -0.01101337093859911, 0.00394528778269887, -0.022815799340605736, 0.016944674775004387, 0.03787476196885109, 0.00784376636147499, -0.02476838231086731, -0.00223009055480361, -0.01608874835073948, -0.019004249945282936, 0.003617628011852503, 0.028085097670555115, -0.0048012142069637775, -0.004323098808526993, 0.0019158049253746867, 0.019030997529625893, -0.009836471639573574, 0.006773858331143856, 0.0018806984880939126, -0.015179326757788658, -0.0037948316894471645, -0.0007171730394475162, 0.016503337770700455, 0.013594524934887886, -0.007342246826738119, 0.005078721791505814, 0.028165340423583984, 0.009448629803955555, 0.0028937680181115866, 0.01578115113079548, 0.006265651434659958, 0.025851663202047348, -0.010451668873429298, 0.04044254124164581, -0.0004007977549917996, 0.014162913896143436, 0.010124009102582932, 0.005229177884757519, -0.011916105635464191, 0.014457138255238533, -0.004978417884558439, 0.020635860040783882, -0.00347720249556005, -0.0032180841080844402, -0.006727049592882395, -0.02126443199813366, 0.025182971730828285, 0.0008392094750888646, -0.02147841267287731, 0.01622248813509941, -0.012003036215901375, 0.004543767776340246, 0.006452885456383228, 0.024714885279536247, 0.02950272709131241, -0.0027583579067140818, 0.008251668885350227, 0.006994526833295822, -0.026119140908122063, 0.012758659198880196, -0.014417016878724098, -0.007195134647190571, 0.004239512607455254, -0.010926440358161926, 0.00031115111778490245, -0.01743950881063938, -0.009468690492212772, 0.0074425507336854935, 0.007402429357171059, -0.00663343258202076, 0.00402218708768487, 0.009281456470489502, -0.024206679314374924, -0.018389051780104637, 0.034103333950042725, 0.0005094603402540088, -0.045765336602926254, 0.025544065982103348, 0.015406682156026363, 0.0026028866413980722, 0.018937380984425545, 0.004600606393069029, -0.010739206336438656, 0.0024524307809770107, 0.03260546177625656, -0.012357442639768124, 0.008512459695339203, -0.016062000766396523, -0.0025092698633670807, -0.005931305233389139, 0.005590271670371294, 0.016891179606318474, -0.012979327701032162, -0.007970818318426609, -0.0198869239538908, 0.025102727115154266, -0.006105165462940931, -0.02012765407562256, 0.026466861367225647, 0.01905774511396885, 0.007248629815876484, -0.03870394080877304, -0.009462003596127033, -0.0050486307591199875, -0.0029873850289732218, 0.01913798786699772, -0.01912461407482624, -0.026386618614196777, 0.013173248618841171, 0.009789662435650826, 0.0015379934338852763, 0.008164739236235619, -0.02605227194726467, 0.00899391807615757, 0.01147476863116026, 0.0006206305115483701, -0.003124467097222805, -0.030733121559023857, 0.014871727675199509, 0.06462246924638748, 0.027550144121050835, -0.007556228898465633, 0.0280316025018692, 0.01250455528497696, 0.011421273462474346, -0.0016591940075159073, -0.004720970988273621, 0.012223704718053341, 0.004406685475260019, -0.01516595296561718, 0.0032247710041701794, 0.0001198422905872576, 0.0029138289391994476, 0.02377871610224247, 0.006349238101392984, 0.016583582386374474, -0.014283278025686741, 0.007810331881046295, 0.014042548835277557, 0.01844254694879055, 0.015085709281265736, 0.007817018777132034, 0.02240120992064476, 0.0286468006670475, 0.019325222820043564, 0.021304553374648094, 0.019606072455644608, -0.012136774137616158, -0.014938597567379475, -0.01630273088812828, -0.0007694146479479969, -0.008545894175767899, 0.027871116995811462, -0.010391485877335072, 0.018910633400082588, 0.0011384495301172137, -0.02530333586037159, 0.004323098808526993, 0.015072335489094257, -0.01128084771335125, -0.017586620524525642, 0.018643155694007874, -0.014737989753484726, 0.01127416081726551, -0.04410697892308235, -0.010257747955620289, 0.018241940066218376, -0.014055922627449036, -0.005172338802367449, 0.005573554430156946, -0.0006674390169791877, -0.039747100323438644, 0.007990879006683826, -0.03057263419032097, 0.02546382136642933, -0.02074285037815571, 0.0026630691718310118, 0.0011702124029397964, -0.022682059556245804, -0.03346138820052147, -0.02950272709131241, -0.014417016878724098, -0.013775072060525417, -0.023578109219670296, -0.010384798981249332, -0.032124001532793045, 0.00459057604894042, -0.05638417601585388, 0.012263826094567776, 0.011421273462474346, -0.01374832447618246, -0.037072330713272095, 0.014751363545656204, 0.024139810353517532, 0.012364129535853863, 0.022494826465845108, 0.010418233461678028, 0.00040811157668940723, 0.0014886773424223065, -0.001706002512946725, 0.009094222448766232, -0.022374460473656654, -0.04418722167611122, -0.020167775452136993, 0.001496200100518763, -0.0009420209680683911, -0.003298327326774597, -0.0192717257887125, 0.005724010523408651, -0.008766562677919865, -0.020020661875605583, 0.0076097240671515465, -0.01013738289475441, 0.028673548251390457, 0.007268690969794989, 0.019458960741758347, 0.016329478472471237, 0.007817018777132034, -0.006416107527911663, -0.0023003031965345144, -0.02446078322827816, -0.0024373852647840977, -0.023965951055288315, 0.012410938739776611, -0.012344068847596645, 0.009074161760509014, -0.02561093494296074, -0.0010724160820245743, -0.011534950695931911, 0.00975622795522213, -0.008405468426644802, -0.017773855477571487, -0.02043525129556656, -0.009682672098279, -0.004944983404129744, 0.01792096719145775, -0.012397564947605133, 0.0067939190194010735, 0.021210934966802597, 0.037767767906188965, -0.035333726555109024, 0.028914276510477066, 0.005279329605400562, 0.002139816991984844, -0.0017937684897333384, -0.00649300729855895, -0.0008132976363413036, -0.04145895317196846, 0.00560364592820406, 0.007703341078013182, 0.00407568272203207, 0.023110022768378258, -0.019231604412198067, -0.01295257918536663, -0.029850447550415993, -0.015901515260338783, 0.0042562298476696014, -0.014430390670895576, 0.0035975673235952854, -0.02316351793706417, 0.014497259631752968, 0.014992092736065388, -0.004386624787002802, 0.024741634726524353, -0.022120358422398567, -0.0019024310167878866, -0.011254100129008293, 0.017546499148011208, 0.019927045330405235, -0.006934344302862883, 0.0006686928099952638, -0.008492399007081985, -0.0056504542008042336, -0.022882668301463127, 8.729575347388163e-05, 0.024861998856067657, -0.029743455350399017, 0.021157439798116684, 0.020074158906936646, 0.04565834626555443, 0.005115500185638666, 0.009147717617452145, 0.020970206707715988, -0.019258351996541023, -0.008893614634871483, 0.005613676272332668, -0.013306986540555954, -0.010117322206497192, 0.003035865258425474, -0.028994519263505936, 0.00929483026266098, 0.0052057732827961445, -0.006676897872239351, 0.004911548458039761, 0.0014452122850343585, 0.0036209714598953724, 0.00047602568520233035, -0.038677193224430084, -0.03308691829442978, -0.006105165462940931, 0.014417016878724098, -0.010872945189476013, 0.0063893599435687065, -0.03327415511012077, -0.03041214868426323, 0.005824314430356026, 0.008017626591026783, 0.02286929450929165, -0.016516711562871933, 0.009040726348757744, -0.009528872556984425, -0.006807292811572552, -0.010886318981647491, 0.012350755743682384, -0.018576286733150482, 0.0035875369794666767, -0.017546499148011208, -0.014510633423924446, -0.007315499242395163, -0.015072335489094257, 0.017800603061914444, 0.01646321639418602, 0.01662370376288891, 0.0027750751469284296, 0.009916714392602444, -0.022976284846663475, -0.029048016294836998, 0.008365347050130367, -0.02430029585957527, 0.006666867062449455, -0.034852270036935806, -0.002699847100302577, 0.00440334202721715, -0.014122792519629002, 0.0140158012509346, 0.008091183379292488, 0.02111731842160225, -0.01920485682785511, 0.010725832544267178, 0.022361086681485176, -0.006208812817931175, 0.04536411911249161, -0.009308204054832458, 0.017238900065422058, 0.013882062397897243, -0.00535622937604785, -0.01279878057539463, -0.019833428785204887, 0.0035106372088193893, -0.011320969089865685, 0.029930690303444862, 0.025196345522999763, 0.0035474153701215982, -0.01485835388302803, -0.009141030721366405, -0.005633736960589886, -0.004985104780644178, -0.014577503316104412, 0.009421881288290024, 0.0062689948827028275, 0.013520968146622181, -0.020903337746858597, -0.03955986723303795, -0.00340866157785058, 0.0428498350083828, -0.009468690492212772, 0.005132217425853014, 0.004276290535926819, -0.02918175421655178, -0.017345892265439034, 0.005727353971451521, 0.008826744742691517, 0.010317930020391941, -0.0025042544584721327, 0.0033183880150318146, -0.0053729466162621975, 0.01372157596051693, -0.00624893419444561, -0.01866990327835083, -0.01729239523410797, 0.016195740550756454, -0.03739330172538757, 0.02697506733238697, 0.011106987483799458, 0.012076592072844505, -0.0010130696464329958, 0.012076592072844505, -0.0009044070029631257, 0.01805470511317253, -0.043251052498817444, -0.005744071211665869, 0.03413008153438568, -0.0017703642370179296, 0.009147717617452145, -0.01820181868970394, -0.009849845431745052, -0.023283883929252625, -0.006740423385053873, 0.005075378343462944, 0.025330083444714546, 0.025035858154296875, -0.029770202934741974, 0.019927045330405235, 0.015259569510817528, -0.01524619571864605, 0.012531302869319916, 0.019111240282654762, -0.0013315345859155059, -0.01790759339928627, -0.010545285418629646, 0.018081452697515488, -0.023444369435310364, 0.026025524362921715, 0.003687840886414051, 0.008278417401015759, -0.023270510137081146, 0.007355621084570885, -0.009435255080461502, 0.009649237617850304, 0.018469294533133507, -0.0059446790255606174, -0.019458960741758347, 0.01109361369162798, -0.010090574622154236, -0.0032515188213437796, 0.025744672864675522, -0.014350147917866707, -0.041030991822481155, 0.005757445003837347, 0.009555620141327381, -0.009201212786138058, 0.0023604854941368103, 0.014122792519629002, 0.011508203111588955, 0.021144066005945206, -0.013046196661889553, 0.00833859946578741, -0.01154832448810339, 0.02400607243180275, 0.009883279912173748, -0.009274769574403763, 0.004700910300016403, -0.0208097193390131, 0.012624920345842838, -0.010264434851706028, -3.494964767014608e-05, 0.01353434193879366, -0.010959874838590622, -0.003921883180737495, -0.005831001326441765, 0.019017623737454414, -0.02126443199813366, 0.0035306981299072504, -0.004901518113911152, -0.011307595297694206, -0.02468813769519329, -0.0015170967672020197, 0.01250455528497696, 0.01790759339928627, 0.013293612748384476, -0.002148175612092018, 0.023043153807520866, 0.024674763903021812, -0.029770202934741974, -0.039586614817380905, -0.005510028917342424, -0.02285592071712017, -0.02765713445842266, -0.01790759339928627, 0.00014847070269752294, 0.01394893229007721, 0.0038617008831351995, -0.04001457616686821, -0.020314887166023254, -0.00644285511225462, -0.03177628293633461, -0.021839506924152374, -0.008077808655798435, 0.028860781341791153, 0.030920354649424553, 0.023725220933556557, -0.01212340034544468, 0.028218835592269897, -0.008472337387502193, -0.0012379175750538707, -0.021545281633734703, 0.03102734684944153, 0.01001701783388853, -0.027389656752347946, 0.013574464246630669, -0.0017009873408824205, -0.028700295835733414, -0.010538598522543907, -0.0008187307394109666, 0.0005955545348115265, 0.006225530058145523, 0.01592826284468174, 0.012905770912766457, -0.03185652568936348, -0.004443463869392872, 0.00861276313662529, -0.005958052817732096, 0.006396046839654446, 0.014885101467370987, -0.030010933056473732, 0.01249786838889122, -0.00029317999724298716, -0.0016784189501777291, -0.015446803532540798, 0.016904553398489952, 0.018937380984425545, -0.005633736960589886, -0.006556532811373472, -0.006646806374192238, -0.008238295093178749, -0.0076097240671515465, -0.013313673436641693, 0.037687525153160095, 0.01920485682785511, 0.011387838050723076, 0.02019452303647995, 0.026934945955872536, -0.038061995059251785, -0.00020854857575614005, 0.012049844488501549, -0.030117923393845558, -0.0029322179034352303, 0.027255918830633163, -0.013775072060525417, -0.0015221120556816459, -0.00930151715874672, 0.014029175043106079, -0.005717323627322912, -0.0029656526166945696, -0.006409420631825924, 0.01806807890534401, -0.009348325431346893, 0.001840576995164156, -4.908100891043432e-05, -0.010919753462076187, 0.035788439214229584, -0.016824310645461082, -0.008505772799253464, 0.017011545598506927, 0.001892400672659278, -0.005021883174777031, -0.02872704342007637, -0.03223099187016487, -0.0031144367530941963, -0.0070948307402431965, -0.020595738664269447, 0.004884800873696804, -0.0011493157362565398, 0.004062308929860592, 0.0008174769463948905, 0.1998589038848877, 0.019244978204369545, -0.0008910331525839865, 0.03495926037430763, 0.00388510525226593, -0.0010364738991484046, 0.017813976854085922, -0.0026379930786788464, 0.020020661875605583, 0.011234039440751076, -0.0002242210612166673, 0.024353792890906334, -0.01693130098283291, -0.012551363557577133, 0.0053495424799621105, -0.01459087710827589, -0.024902120232582092, -0.006994526833295822, -0.018429173156619072, 0.04726320877671242, 0.013882062397897243, -0.009120970033109188, 0.024648016318678856, -0.0006310788448899984, 0.010618842206895351, -0.01868327707052231, 0.0023069900926202536, 0.006205469369888306, -0.00037802039878442883, 0.022280843928456306, 0.0025109415873885155, 0.02582491561770439, -0.006175377871841192, -0.005309421103447676, -0.016369599848985672, -0.017640115693211555, -0.018348930403590202, 0.0061653475277125835, -0.0018054705578833818, 0.0225616954267025, 0.024554399773478508, 0.007616410963237286, 0.0044768983498215675, 0.007750149816274643, -0.0018205161904916167, 0.020983580499887466, -0.008820057846605778, 0.007496046368032694, 0.0018723398679867387, -0.002749999053776264, -0.02698844112455845, 0.024902120232582092, 0.009976896457374096, 0.025396952405571938, -0.009120970033109188, 0.014336774125695229, 0.011314282193779945, -0.010739206336438656, 0.0009612459107302129, -0.005941335577517748, -0.018041331321001053, -0.0009186167153529823, -0.019298475235700607, 0.017131909728050232, 0.0015864736633375287, -0.012063218280673027, -0.01745288260281086, -0.007255316711962223, -0.014644372276961803, -0.0014502275735139847, 0.003029178362339735, -0.0025945280212908983, -0.011762306094169617, 0.018937380984425545, -0.01078601460903883, -0.013407290913164616, 0.022361086681485176, 0.011601820588111877, 0.02546382136642933, 0.009428568184375763, 0.0052626123651862144, 0.01584802009165287, -0.006733736488968134, -0.041351962834596634, -0.020141027867794037, -0.0205021221190691, 0.00681732315570116, 0.01116716954857111, 0.011267473921179771, 0.013935558497905731, -0.0034069898538291454, 0.0003184649394825101, -0.004951670300215483, -0.029021266847848892, 0.0036142845638096333, 0.00017814394959714264, 0.019606072455644608, 0.009174465201795101, -0.0358419343829155, -0.010384798981249332, -0.026333123445510864, 0.0397738479077816, 0.02278904989361763, -0.004353190306574106, 0.0024524307809770107, -0.023136770352721214, -0.020702729001641273, 0.036162905395030975, -0.004958357196301222, -0.011595133692026138, 0.006024922244250774, -0.0009654252207837999, 0.02765713445842266, 0.00038303559995256364, -0.023056527599692345, -0.018990876153111458, -0.012370817363262177, -0.015527047216892242, 0.016476590186357498, -0.012183583341538906, 0.004741032142192125, -0.026613973081111908, -0.00044426278327591717, 0.017653489485383034, -0.017359266057610512, -0.012959267012774944, 0.009796349331736565, -0.013882062397897243, -0.016570208594202995, -0.04399998486042023, 0.02971670776605606, -0.03260546177625656, 0.007689967285841703, -0.025624308735132217, 0.0037647404242306948, 0.019458960741758347, 0.026560477912425995, -0.0315355509519577, -0.020996954292058945, 0.00676382752135396, -0.011842549778521061, 0.006369298789650202, -0.0021899689454585314, -0.011916105635464191, 0.01737263984978199, -0.012196957133710384, 0.01231063436716795, 0.022588443011045456, -0.00758297648280859, -0.043545275926589966, -0.01570090651512146, 0.002713221125304699, 0.008358660154044628, 0.013514281250536442, 0.02835257537662983, -0.031963516026735306, -0.03538722172379494, -0.028941024094820023, 0.0011977959657087922, 0.02331063151359558, -0.039827343076467514, -0.01024437416344881, 0.008646197617053986, -0.025998776778578758, -0.01662370376288891, -5.106618846184574e-05, -0.16968747973442078, 0.00892036221921444, -0.01043829508125782, -0.011140421964228153, 0.015219448134303093, 0.005346199031919241, -0.012076592072844505, -0.009441941976547241, -0.016356226056814194, 0.0013039510231465101, 0.017345892265439034, 0.018001209944486618, -0.02248145267367363, -0.022347712889313698, 0.013293612748384476, 0.007034648209810257, -0.0236984733492136, 0.016637077555060387, 0.023457743227481842, 0.0063893599435687065, 0.03116108477115631, -0.01268510241061449, 0.013708202168345451, -0.020475374534726143, 0.005727353971451521, -0.005078721791505814, -0.02072947658598423, 0.030920354649424553, 0.007215195335447788, -0.007730088662356138, -0.0006503037293441594, -0.013788445852696896, 0.02034163475036621, 0.01677081547677517, 0.021384796127676964, -0.003513980656862259, -0.010799388401210308, 0.002639664802700281, -0.02179938554763794, 0.019539203494787216, 0.026480235159397125, 0.0031629169825464487, 0.006426137872040272, 0.026868076995015144, -0.004420059267431498, 0.012832215055823326, 0.01299270149320364, -0.0024658048059791327, 0.005958052817732096, -0.006162004079669714, 0.04330454766750336, -0.03271245211362839, 0.017653489485383034, 0.010257747955620289, -0.004603949841111898, 0.009575680829584599, -0.0025427043437957764, 0.009241334162652493, 0.0006076745921745896, -0.03926564007997513, 0.009415194392204285, -0.010772640816867352, -0.0008826745324768126, -0.014269904233515263, -0.009334951639175415, -0.025878410786390305, -0.007409116253256798, -0.0004668311739806086, -0.01821519248187542, 0.010732519440352917, 0.01860303431749344, -0.016356226056814194, -0.01638297364115715, -0.0029606374446302652, 0.01821519248187542, 0.0070079006254673, 0.00366777996532619, 0.02644011378288269, 0.016436468809843063, 0.022668685764074326, -0.004125834442675114, 0.021130692213773727, -0.027095433324575424, 0.010291182436048985, -0.01998054049909115, -0.0017770511331036687, 0.010090574622154236, 0.012217017821967602, 0.010083887726068497, 0.002582825953140855, 0.0002304900554008782, -0.019953792914748192, 0.004603949841111898, 0.005847718566656113, -0.006900909822434187, 0.024567773565649986, 0.030144670978188515, 0.02446078322827816, 0.00592796178534627, -0.007248629815876484, -0.007736775558441877, 0.010926440358161926, -0.0339963436126709, -0.004727658350020647, 0.02171914279460907, 0.02232096530497074, -0.007021274417638779, 0.011454707942903042, 0.019846802577376366, -0.03268570452928543, -0.029288744553923607, 0.0140158012509346, 0.02827233262360096, 0.009388446807861328, -0.005179025698453188, 0.02859330363571644, -0.003035865258425474, -0.021531907841563225, 0.0031060781329870224, 0.0021448321640491486, 0.04648752510547638, -0.01432340033352375, -0.004871427081525326, -0.011394524946808815, -0.007362307980656624, -0.015299691818654537, -0.12122063338756561, -0.030198168009519577, -0.006613371893763542, 0.0060884482227265835, 0.0029957438819110394, 0.014764737337827682, -0.011748932301998138, 0.03498600795865059, -0.011902731843292713, 0.04001457616686821, -0.002464133081957698, -0.0031294822692871094, -0.0028268988244235516, 0.007736775558441877, 0.047664422541856766, -0.03003768064081669, -0.0067705148831009865, -0.004891487769782543, -0.02538357861340046, 0.021304553374648094, 0.008813370950520039, -0.013046196661889553, 0.013882062397897243, -0.02545044757425785, -0.035092998296022415, -0.016423095017671585, -0.034023091197013855, -0.009134343825280666, 0.005332825239747763, 0.017412761226296425, 0.029288744553923607, -0.01467111986130476, 0.03174953535199165, -0.012083278968930244, -0.010364738292992115, -0.012330695055425167, -0.02376534231007099, -0.004891487769782543, -0.01563403755426407, -0.029021266847848892, 0.0010757595300674438, 0.03945287689566612, 0.012945892289280891, -0.019378717988729477, 0.007041335105895996, 0.008318538777530193, -0.01279878057539463, 0.01279878057539463, 0.004637384787201881, 0.009655924513936043, -0.017399387434124947, 0.012397564947605133, -0.01147476863116026, -0.006262307986617088, 0.007175073958933353, -0.006844070740044117, 0.015527047216892242, 0.017666863277554512, -0.008880240842700005, -0.011113674379885197, -0.02293616347014904, -0.0017803945811465383, -0.030973851680755615, 0.015834646299481392, 0.023751968517899513, 0.022521574050188065, -0.004058965481817722, -0.03297992795705795, -0.006482976954430342, -0.016503337770700455, -0.0029455916956067085, 0.015446803532540798, 0.002029482740908861, 0.007536167744547129, -0.023417621850967407, -0.002699847100302577, -0.009876593016088009, -0.03335439786314964, 0.023658351972699165, -0.008392094634473324, -0.010037079453468323, -0.033889349550008774, 0.004573858808726072, -0.00899391807615757, 0.039827343076467514, 0.020863216370344162, -0.00041354470886290073, -0.011882671155035496, 0.03140181303024292, -0.023524612188339233, 0.00353404157795012, 0.01980668120086193, 0.02371184714138508, -0.023524612188339233, 0.01459087710827589, 0.002164892852306366, -0.02170576900243759, -0.027001814916729927, -0.011976287700235844, -0.003951974678784609, -0.0219464972615242, -0.0033117011189460754, -0.05092764273285866, 0.014069296419620514, 0.0031428562942892313, 0.016503337770700455, 0.02880728617310524, 0.002763373078778386, 0.013547716662287712, 0.0004296351398807019, -0.026306375861167908, 0.022735554724931717, -0.03132157027721405, 0.02224072255194187, -0.011327655985951424, -0.015018840320408344, -0.014310025610029697, -0.024500904604792595, 0.012537989765405655, -0.014256530441343784, 0.005249238573014736, 0.002375531243160367, 0.006900909822434187, -0.006643462926149368, 0.0029455916956067085, 0.010565346106886864, -0.019793307408690453, 0.0049917916767299175, -0.02872704342007637, 0.01344741228967905, -0.011942853219807148, -0.005426442250609398, 0.010665650479495525, -0.009401820600032806, 0.006105165462940931, 0.04541761428117752, -0.020836466923356056, -0.019713064655661583, -0.005640423856675625, 0.02272218093276024, -0.002626291010528803, -0.0035708195064216852, -0.025049231946468353, -0.018228566274046898, 0.028539808467030525, -0.002691488480195403, 0.00785045325756073, -0.009796349331736565, -0.013868688605725765, 0.006021578796207905, -0.002191640669479966, 0.008472337387502193, 0.05154284089803696, -0.01654345914721489, -0.00956230703741312, -0.03931913524866104, 0.004430089611560106, -0.003107749857008457, -0.0009194526355713606, -0.005596958566457033, -0.007382368668913841, -0.0056203631684184074, 0.035788439214229584, 0.015901515260338783, 0.01136109046638012, -0.024487530812621117, 0.023591483011841774, -0.010291182436048985, -0.019311849027872086, 0.00948206428438425, -0.0058978707529604435, -0.009154404513537884, 0.0004956685588695109, -0.023818837478756905, 0.0006043311441317201, 0.029368987306952477, -0.0006093463161960244, -0.012290573678910732, 0.02987719513475895, -0.012591485865414143, -0.013313673436641693, 0.020930085331201553, 0.03185652568936348, 0.00013551478332374245, 0.0050720348954200745, 0.025209719315171242, -0.000638601602986455, 0.01600850559771061, -0.0009779632091522217, -0.0038182358257472515, -0.0043331291526556015, 0.003540728474035859, 0.017813976854085922, 0.0033200597390532494, -0.002201671013608575, -0.006783888675272465, -0.00402218708768487, 0.019846802577376366, 0.02399269863963127, 0.009462003596127033, 0.0034872330725193024, 0.022280843928456306, 0.002442400436848402, 0.018937380984425545, -0.01706504076719284, -0.026186009868979454, -0.01805470511317253, 0.021465038880705833, -0.03140181303024292, -0.0375002920627594, 0.014256530441343784, -0.000733890337869525, 0.025544065982103348, 0.018776893615722656, 0.022615190595388412, 0.009535559453070164, -0.021170813590288162, 0.02300303243100643, -0.014176287688314915, -0.0140158012509346, -0.011635255068540573, 0.0286468006670475, 0.013113065622746944, 0.01698479801416397, 0.023150144144892693, -0.023190267384052277, 0.03041214868426323, -0.00023278867593035102, 0.012718536891043186, 0.004196047317236662, 0.006676897872239351, -0.004700910300016403, 0.003263220889493823, -0.013775072060525417, 0.0013047868851572275, -0.018268687650561333, -0.02393920160830021, -0.022066863253712654, -0.008285104297101498, 0.025758046656847, 0.013761698268353939, 0.0754285454750061, 0.013253491371870041, -0.009027352556586266, 0.013347108848392963, 0.0052927033975720406, 0.029930690303444862, -0.01990029774606228, -0.0012446044711396098, -0.003470515599474311, -0.02416655793786049, 0.0002745819801930338, -0.0022618533112108707, 0.006606684997677803, -0.014310025610029697, -0.020100906491279602, 0.004145895596593618, 0.006148630287498236, 0.010150756686925888, 0.005179025698453188, 0.013133126311004162, 0.005493311211466789, -0.020448625087738037, -0.006466259248554707, -0.00516230845823884, -0.022508200258016586, -0.018723398447036743, 0.008318538777530193, 0.010618842206895351, -0.014082670211791992, -0.02819208800792694, 0.014310025610029697, 0.010926440358161926, -0.013708202168345451, -0.02408631518483162, -0.005724010523408651, 0.003704558126628399, -0.0023805464152246714, -0.03057263419032097, -0.004433433525264263, -0.005787536036223173, -0.01912461407482624, 0.030733121559023857, -0.003931913524866104, 0.0012303948169574142, -0.001935865730047226, -0.012130087241530418, 0.013601211830973625, 0.003513980656862259, 0.0020344979129731655]" +50,"In capital expenditures, we expect a sequential increase on a dollar basis with normal quarterly spend variability in the timing of our cloud infrastructure build-out. Next, to segment guidance. In productivity and business processes, we expect revenue to grow between 11% and 13% in constant currency or USD16.6 billion to USD 16.9 billion. In Office Commercial, revenue growth will again be driven by Office 365, with seat growth across customer segments and ARPU growth from E5.","[0.0027489452622830868, -0.01642036624252796, -0.0071106054820120335, -0.01839294284582138, 0.016526993364095688, -0.007490459829568863, -0.018886087462306023, -0.01651366427540779, -0.020871993154287338, -0.019659124314785004, 0.029028862714767456, 0.027109598740935326, -0.004328339360654354, 0.00590106938034296, -0.0004698197590187192, 0.012095360085368156, 0.0027089607901871204, -0.024057436734437943, 0.009316425770521164, -0.02475050464272499, -0.02662978321313858, -0.0025107034016400576, -0.016407039016485214, -0.004994750488549471, -0.025243649259209633, 0.0033070645295083523, 0.009116502478718758, -0.010356026701629162, 0.018926072865724564, -0.004231709986925125, -0.004315011203289032, -0.01240190863609314, 0.012321939691901207, 0.016873527318239212, -0.0025906728114932775, -0.00392182869836688, -0.012841739691793919, 0.02055211551487446, 0.02251136302947998, -0.003741897875443101, 0.030414998531341553, -0.00228245765902102, -0.011295666918158531, 0.02068539708852768, 0.0022724615409970284, 0.017606578767299652, 0.0015818930696696043, -0.005597852636128664, 0.0013103305827826262, -0.0013094976311549544, 0.0039351568557322025, 0.033053986728191376, -0.03326723724603653, -0.016580305993556976, -0.004911449272185564, 0.010189424268901348, -0.015993863344192505, 0.01820634864270687, -0.010629255324602127, -0.012728449888527393, -0.0009371404885314405, 0.004488278180360794, -0.026056669652462006, 0.005078051704913378, -0.04315677657723427, 0.0017360006459057331, -0.022724615409970284, 0.0028322467114776373, 0.027349507436156273, 0.002600668929517269, 0.028175856918096542, 0.036625947803258896, 0.004305014852434397, 0.007517116144299507, 0.014127912931144238, -0.008016924373805523, -0.0006926509086042643, -0.028575703501701355, -0.010236073285341263, 0.00851006805896759, 0.0004660711856558919, -0.013508151285350323, -0.01651366427540779, -0.004328339360654354, -0.00011620541772572324, 0.0049647619016468525, -0.004321675281971693, -0.006700762547552586, -0.03715907782316208, 0.012475213967263699, 0.02264464646577835, -0.006644117645919323, 0.006027687340974808, 0.03830530494451523, -0.0029522008262574673, 0.0008838275680318475, -0.009169815108180046, 0.03542640805244446, 0.009436380118131638, -0.026469845324754715, -0.00884993840008974, -0.011129063554108143, -0.03382702171802521, -0.009662959724664688, -0.027096271514892578, -0.0017859814688563347, 0.014034615829586983, 0.003795210737735033, 0.029908524826169014, -0.008063573390245438, -0.00921646412461996, -0.0025890066754072905, 0.008756640367209911, 0.00638421718031168, 0.006514167413115501, -0.014407806098461151, 0.011815466918051243, 0.010422668419778347, -0.00012109937233617529, -0.0037052452098578215, 0.022204814478754997, -0.011775482445955276, 0.044036440551280975, -0.02132515236735344, 0.021565059199929237, 0.011142391711473465, 0.009629638865590096, -0.014047943986952305, 0.015154185704886913, -0.02305782027542591, -0.011069086380302906, 0.003915164619684219, 0.009602982550859451, 0.024923771619796753, -0.021711669862270355, 0.02096528932452202, -0.009896202944219112, 0.031188035383820534, -0.030095120891928673, -0.018459584563970566, -0.009089846163988113, 0.015847252681851387, 0.0023924154229462147, 0.00922312866896391, 0.01478099636733532, 0.03222763538360596, 0.03172116354107857, -0.0005622842581942677, 0.018659507855772972, -0.00236242706887424, 0.022298112511634827, -0.017593249678611755, 0.02072538249194622, 0.02443062700331211, 0.019605811685323715, -0.019299263134598732, -0.011342315003275871, 0.03281407803297043, -0.01201539020985365, -0.0025956707540899515, -0.01189543679356575, 0.004521598573774099, -0.01889941655099392, 0.018246334046125412, 0.0031704504508525133, 0.018792789429426193, 0.013374868780374527, 0.004904785193502903, -0.00575445918366313, -0.0007859484758228064, -0.009576326236128807, -0.0009029869106598198, -0.019006041809916496, 0.013488158583641052, 0.003178780432790518, 0.026363220065832138, 0.00028197516803629696, -0.010915812104940414, -0.0214984193444252, -0.023124461993575096, 0.017126763239502907, -0.01052263006567955, 0.014501103200018406, 0.011568894609808922, 0.023084476590156555, -0.030494967475533485, 0.03793211281299591, 0.007970275357365608, 0.010722553357481956, -0.0007084782118909061, 0.00896989181637764, 0.01185545139014721, -0.006830712780356407, -0.019712436944246292, -0.6431666016578674, 0.001012111664749682, 0.006824048701673746, -0.004821483511477709, 0.00912983063608408, -0.0015210830606520176, 0.01907268352806568, 0.011562230996787548, -0.032467544078826904, 0.009549669921398163, 0.029908524826169014, 0.005457906052470207, -0.010189424268901348, -0.004091763403266668, 0.00958965439349413, -0.018726149573922157, -0.0004410807741805911, -0.011862115934491158, -0.01606050506234169, 0.0015519045991823077, 4.878336767433211e-05, 0.009962844662368298, 0.008736648596823215, 0.004604899790138006, 0.014967591501772404, -0.0038585197180509567, 0.00456491531804204, -0.029988495633006096, -0.015220827423036098, -0.0023924154229462147, -0.015540704131126404, 0.019819064065814018, 0.001847624545916915, -0.012408573180437088, 0.04342333972454071, -0.004498274065554142, -0.03372039645910263, -0.0017709872918203473, 0.005597852636128664, 0.03769220784306526, -0.018726149573922157, 0.004764838609844446, 0.004418305121362209, -0.006204286590218544, -0.026109982281923294, 0.0155540332198143, 0.031641192734241486, -0.026843035593628883, 0.00604101549834013, -0.02892223745584488, -0.0014252865221351385, -0.00638421718031168, 0.006320908199995756, -0.01995234563946724, 0.01917930878698826, 0.0014694362180307508, 0.008016924373805523, -0.019459201022982597, 0.007530444301664829, -0.017819829285144806, -2.6734534912975505e-05, -0.013214929960668087, -0.013821364380419254, -0.020192252472043037, -0.050354015082120895, 0.017539937049150467, -0.030361685901880264, -0.008423435501754284, 0.03302732855081558, 0.0038985044229775667, -0.0048781284131109715, 0.020152268931269646, 0.010142775252461433, -0.023817529901862144, 0.01134897954761982, 0.012435229495167732, 0.016593633219599724, -0.02809588797390461, -0.015287468209862709, -0.0011562231229618192, -0.007930290885269642, -0.024377314373850822, -0.017766516655683517, 0.0011820464860647917, -0.030548280104994774, -0.0009004878811538219, -0.03236091881990433, -0.024737175554037094, -0.011608880013227463, 0.001847624545916915, 0.02247137948870659, -0.004634888377040625, -0.0012603497598320246, -0.03766554966568947, 0.010016157291829586, 0.030734876170754433, 0.0017793173901736736, -0.0044049764983356, -0.010882491245865822, -0.0012453555827960372, -0.008949900045990944, -0.009822898544371128, 0.018459584563970566, 0.017046794295310974, 0.03862518072128296, 0.035533033311367035, -0.0006972324918024242, 0.006627457216382027, 0.03473334014415741, -0.020098956301808357, 0.011362307704985142, -0.02247137948870659, -0.009256448596715927, -0.005101376213133335, 0.0037352335639297962, -0.0352398119866848, 0.0411841981112957, -0.01769987680017948, -0.012875060550868511, -0.008909914642572403, -0.006717422977089882, 0.006190957967191935, 0.01780650205910206, -0.04638220742344856, -0.010022821836173534, 0.005704478360712528, 0.016487007960677147, -0.01216866448521614, 0.017553266137838364, -0.013001678511500359, 0.005924393888562918, -0.015940550714731216, 0.022711286321282387, 0.009483028203248978, 0.02918880246579647, 0.0014902616385370493, 0.0025440240278840065, -0.037185732275247574, 0.012062039226293564, -0.04195723682641983, -0.02822916954755783, -0.01539409440010786, -0.0005651998217217624, -0.010715888813138008, -0.00974959321320057, -0.01516751479357481, -0.00789697002619505, 0.013661425560712814, -0.014341164380311966, -0.01173549797385931, -0.0147543391212821, -0.009209799580276012, 0.001972576603293419, 0.002077536191791296, 0.004071771167218685, 0.009276441298425198, -0.0026623120065778494, -0.03550637885928154, -0.028202513232827187, -0.013341547921299934, -0.008836610242724419, -0.004471617750823498, 0.005607848521322012, 0.008749976754188538, -0.018912743777036667, 0.004711525980383158, -0.031827788800001144, 0.017966439947485924, 0.0169268399477005, -0.009123167023062706, 0.005471234209835529, -0.009702944196760654, 0.01651366427540779, 0.01052263006567955, 0.006044347770512104, 0.001098745153285563, -0.010742545127868652, 0.0019675784278661013, 0.016913510859012604, -0.03380036726593971, 0.020112283527851105, 0.011922093108296394, -0.011069086380302906, 0.004158404655754566, 0.03446677699685097, 0.014234539121389389, 0.02617662400007248, 0.02205820381641388, 0.0004127583233639598, 0.0031687843147665262, 0.0013111636508256197, 0.020618757233023643, -0.014007959514856339, -0.006051011849194765, -0.01173549797385931, -0.011055758222937584, -0.02155173197388649, -0.00430168304592371, -0.015407422557473183, -0.014421134255826473, 0.02109857276082039, 0.012355259619653225, -0.0029388724360615015, 0.03174782171845436, -0.005517883226275444, -0.020512130111455917, -0.0029605308081954718, -0.02296452224254608, 0.021631700918078423, 0.02809588797390461, 0.022951195016503334, -0.025003740563988686, -0.010409340262413025, -0.002142511308193207, -0.03358711302280426, -0.0003046747879125178, 0.020805351436138153, 0.019832391291856766, -0.006437530275434256, 0.0014852634631097317, 0.013581456616520882, -0.01272178627550602, 0.007623741868883371, 0.003365375567227602, -0.013621441088616848, 0.004391648340970278, -0.009136495180428028, 0.02873564325273037, 0.013208266347646713, -0.009309761226177216, -0.004494942259043455, 0.03065490536391735, 0.013401525095105171, -0.008490076288580894, 0.010289385914802551, 0.022777928039431572, 0.011622208170592785, -0.03001515194773674, 0.02764272876083851, 0.010675904341042042, 0.016846871003508568, 0.0048048235476017, 0.021631700918078423, -0.029268771409988403, 0.011302330531179905, 0.0021675017196685076, 0.023417683318257332, 0.01185545139014721, -0.014834308996796608, -0.002962196944281459, -0.00014765169180464, 0.004491609986871481, 0.0007946951081976295, -0.022218143567442894, -0.006410873960703611, 0.008103557862341404, 0.0032121010590344667, 0.00148443051148206, 0.027376163750886917, 0.028842268511652946, -0.001834296272136271, 0.0028555712196975946, 0.04739515110850334, 0.01066257618367672, 0.002079202327877283, 0.009696279652416706, -0.017766516655683517, -0.009016540832817554, -0.0069440025836229324, -0.0006926509086042643, 0.025043725967407227, -0.006690766662359238, 0.008016924373805523, 0.005244654603302479, -0.03414690122008324, 0.018099723383784294, 0.017499953508377075, -0.021431777626276016, -0.008703327737748623, 0.02563016675412655, 0.003528646193444729, -0.02223147079348564, 0.004335003439337015, 0.02658979967236519, 0.007130597718060017, 0.006604133173823357, 0.0192192941904068, -0.011089079082012177, 0.005034734960645437, 0.025923388078808784, -0.040837667882442474, 0.019245950505137444, -0.020658740773797035, -0.0006555818254128098, 0.018019752576947212, -0.00828348845243454, 0.023137789219617844, -0.010509301908314228, -0.014634385704994202, -0.004924777429550886, 0.008863266557455063, 0.00017493289487902075, 0.0018909411737695336, -0.006794060114771128, 0.028842268511652946, 0.009722936898469925, -0.038918402045965195, -0.01125568151473999, 0.0024324001278728247, -0.02068539708852768, 0.012868396006524563, -0.011102407239377499, -0.038598526269197464, 0.04241039603948593, 0.013114968314766884, -7.679345435462892e-05, -0.011249017901718616, -0.027989262714982033, 0.027696041390299797, 0.02892223745584488, 0.006937338504940271, -3.1368174404633464e-06, -0.028682328760623932, 0.020432161167263985, 0.05768453702330589, 0.03409358859062195, 0.004195057321339846, 0.0315878801047802, 0.00967628788203001, 0.0031971067655831575, -0.0033420510590076447, -0.019712436944246292, 0.023177774623036385, -0.009076518006622791, -0.013094976544380188, 0.013834692537784576, 0.007910298183560371, -0.022498035803437233, 0.00723055936396122, 0.013008343055844307, 0.012801755219697952, -0.0065208314917981625, 0.01379470806568861, 0.012501870281994343, 1.1590605026867706e-05, 0.013521479442715645, 0.02942870929837227, 0.025416916236281395, 0.028629016131162643, 0.026749737560749054, 0.01835295930504799, 0.01867283694446087, 0.0035153180360794067, -0.007443810813128948, -0.01980573497712612, 0.007137261796742678, -0.006777399685233831, 0.03225429356098175, -0.00853006076067686, -0.001927593839354813, 0.011442276649177074, -0.03038834221661091, 0.013114968314766884, 0.014674370177090168, 0.010302714072167873, -0.004658212885260582, 0.013628104701638222, -0.01632707007229328, 0.0033537133131176233, -0.013888005167245865, -0.021218527108430862, 0.027989262714982033, 0.002547356067225337, -0.016846871003508568, -0.003985137678682804, -0.012228641659021378, -0.0329473614692688, 0.0054812305606901646, -0.01642036624252796, 0.018153036013245583, -0.003155456157401204, -0.015660658478736877, -0.014741010963916779, -0.043130118399858475, -0.036492668092250824, -0.016633618623018265, 0.0070306360721588135, -0.01134897954761982, -0.02942870929837227, 0.002770603634417057, -0.018459584563970566, 0.01963246800005436, -0.0375056117773056, -0.0031821124721318483, -0.01306831929832697, -0.019232621416449547, -0.016953496262431145, 0.016087161377072334, 0.02804257534444332, -0.0012045379262417555, 0.0080035962164402, 0.008929907344281673, -0.007043964229524136, -0.003227095352485776, -0.014261195436120033, -0.00685070501640439, -0.02136513590812683, -0.020392175763845444, -0.042756929993629456, 0.024443956092000008, 0.010982452891767025, -0.013494823127985, -0.016620289534330368, -0.005181345622986555, -0.02758941613137722, -0.033853679895401, 0.0024440623819828033, -0.027509445324540138, 0.026296578347682953, -0.010049478150904179, 0.007343849167227745, 0.0007751192897558212, 0.013141624629497528, -0.01141562033444643, -0.00906318984925747, 0.008116886019706726, -0.0015685649123042822, 0.0007921960786916316, 0.022444723173975945, 0.020871993154287338, 0.0035253141541033983, -0.014794324524700642, -0.013141624629497528, -0.016540320590138435, 0.007130597718060017, -0.014767668209969997, -0.004498274065554142, 0.00731052877381444, -0.00011443526454968378, -0.023231087252497673, 0.026643112301826477, -0.013714738190174103, 0.018233004957437515, -0.00268730241805315, 0.01739332638680935, -0.006107656750828028, 0.030361685901880264, -0.006754075642675161, -0.0044549573212862015, 0.005011410918086767, -0.0010595935164019465, -0.01715341955423355, -0.0196724534034729, 0.01769987680017948, -0.00044274682295508683, 0.02013893984258175, -0.007610413711518049, -0.0014436128549277782, -0.01957915537059307, -0.040331192314624786, -0.005404593423008919, -0.009776249527931213, -0.02809588797390461, -0.009169815108180046, -0.02681637927889824, 0.019779078662395477, 0.013648097403347492, -0.016367053613066673, 0.01907268352806568, -0.024057436734437943, 0.0008055242942646146, -0.0012353593483567238, 0.003841859521344304, 0.01908601075410843, 0.003465337213128805, 0.010402675718069077, -0.01226196251809597, -8.278073801193386e-05, -0.0171667467802763, 0.0038185350131243467, 0.023297728970646858, -0.02924211509525776, 0.03513318672776222, 0.005247986409813166, 0.035852912813425064, 0.0147543391212821, 0.003741897875443101, 0.030761532485485077, -0.009336418472230434, -0.015327452681958675, 0.0016310409409925342, -0.03284073248505592, -0.021938249468803406, 0.014741010963916779, -0.012848404236137867, 0.021658357232809067, -0.01606050506234169, -0.012495206668972969, 0.0089232437312603, 0.017353342846035957, -0.014727682806551456, 0.01148892566561699, -0.02644318901002407, -0.015327452681958675, -0.018312973901629448, -0.0017976437229663134, -0.01734001375734806, 0.0067674038000404835, -0.026149967685341835, -0.014154569245874882, 0.027989262714982033, 0.019152652472257614, 0.04297018051147461, -0.011702177114784718, 0.030308371409773827, 0.008716655895113945, 0.018832774832844734, -0.015980536118149757, 0.01844625733792782, -0.018779462203383446, -0.005444577895104885, -0.039504844695329666, -0.019659124314785004, 0.014127912931144238, -0.008036917075514793, 0.02433732897043228, -0.004494942259043455, 0.022951195016503334, -0.007703711278736591, 0.009716272354125977, -0.000829265161883086, -0.0173799991607666, 0.011528910137712955, -0.0295086782425642, -0.011368971318006516, -0.037265703082084656, -0.0038451915606856346, -0.010649248026311398, -0.014301179908216, 0.023870842531323433, -0.006963994819670916, 0.019059354439377785, -0.0038351952098309994, -0.011269009672105312, 0.030095120891928673, -0.002195824170485139, 0.037825487554073334, -0.014567744918167591, 0.019112667068839073, 0.002977191237732768, 0.020098956301808357, -0.01948585733771324, -0.03550637885928154, 0.0065908050164580345, -0.00383852724917233, 0.037398986518383026, 0.027802666649222374, 0.0005751959979534149, -0.006700762547552586, -0.00912983063608408, 0.0017743193311616778, -0.00753710838034749, -0.02452392503619194, 0.010249401442706585, 0.007510452065616846, 0.0036019515246152878, -0.012088695541024208, -0.030574936419725418, -0.013741394504904747, 0.029482021927833557, -0.007137261796742678, 0.0003815203090198338, 0.005941053852438927, -0.02160504460334778, -0.014820980839431286, 0.023630933836102486, 0.004291686695069075, 0.00551455095410347, -0.010582606308162212, -0.004498274065554142, -0.010242736898362637, 0.006047680042684078, -0.004598235711455345, -0.018872760236263275, -0.008796624839305878, 0.012815083377063274, -0.027802666649222374, 0.029348740354180336, 0.012915045022964478, 0.0036785886622965336, -0.017233388498425484, 0.00644086254760623, 0.0029638628475368023, 0.021471763029694557, -0.04203720763325691, -0.014927606098353863, 0.025003740563988686, -0.012175329029560089, 0.005357944406569004, -0.02091197669506073, -0.022751271724700928, -0.015980536118149757, -0.027616072446107864, -0.008363458327949047, 0.018179692327976227, 0.0055778599344193935, -0.03046831116080284, 0.00974959321320057, 0.01688685454428196, -0.013561463914811611, 0.0017243385082110763, 0.002269129501655698, 0.027802666649222374, -0.01811305060982704, -0.011089079082012177, 0.020058970898389816, 0.014594401232898235, 0.05523214489221573, -0.021924922242760658, -0.002205820521339774, 0.003938489127904177, 0.004464953672140837, -0.016273757442831993, 0.01711343415081501, 0.028202513232827187, -0.013554799370467663, -0.02401745319366455, 0.03209435194730759, -0.007817001082003117, -0.004561583511531353, 0.02942870929837227, -0.019059354439377785, -0.018686164170503616, 0.01756659336388111, 0.010969124734401703, 0.003425352508202195, -0.0026972985360771418, 0.005444577895104885, 0.0007338850991800427, 0.012335267849266529, 0.0008213515393435955, 0.013221594505012035, -0.02315111830830574, 0.012135344557464123, 0.01414124108850956, 0.001586891245096922, 0.024590566754341125, -0.031241348013281822, 0.023777544498443604, 0.007163918111473322, -0.012395245023071766, 0.01011611893773079, -0.009916195645928383, -0.03052162379026413, -0.009622975252568722, 0.0185395535081625, -0.008696663193404675, -0.005771119147539139, -0.007990268059074879, 0.005347948055714369, 0.0014202884631231427, 0.0038918403442949057, 0.003961813170462847, 0.0009288103319704533, 0.022498035803437233, -0.00874331220984459, 0.022164829075336456, 0.010389347560703754, -0.00575445918366313, -0.030814845114946365, -0.012981686741113663, -0.02017892524600029, -0.02745613269507885, -0.02475050464272499, 0.015194171108305454, 0.019925689324736595, 0.011748826131224632, -0.05555202066898346, -0.02497708424925804, -0.018499569967389107, -0.055392082780599594, -0.01820634864270687, -0.028309138491749763, 0.023617606610059738, 0.027376163750886917, 0.01711343415081501, -0.009309761226177216, 0.04187726601958275, 0.00567448977380991, 0.027376163750886917, -0.04043782129883766, 0.019006041809916496, 0.01578061282634735, -0.022244799882173538, -0.005277974996715784, -0.00292887631803751, -0.014541087672114372, -0.012621824629604816, 0.011748826131224632, -0.00753710838034749, 0.01976574957370758, 0.022711286321282387, 0.008516732603311539, -0.03542640805244446, 0.0025123695377260447, 0.011015773750841618, -0.003340385155752301, 0.031081408262252808, 0.0027672715950757265, -0.04142410680651665, -0.001787647488527, 0.01306831929832697, 0.00260733300819993, -0.020325535908341408, 0.003035502042621374, 0.01446111872792244, -0.015847252681851387, -0.01347483042627573, -0.0031971067655831575, -0.005694482009857893, 0.004018458537757397, 0.006997315678745508, 0.020765366032719612, 0.01050263736397028, 0.014247867278754711, 0.03129465878009796, 0.023830857127904892, -0.03188110142946243, -0.00448494590818882, 0.026789722964167595, -0.03398695960640907, -0.003971809521317482, 0.0011179044377058744, -0.01104909460991621, 0.009942851960659027, -0.007570428773760796, -0.005224662367254496, 0.013161617331206799, -0.02228478342294693, -0.00775702390819788, 0.02595004439353943, 0.009736265055835247, -0.008736648596823215, -0.0185395535081625, -0.035159844905138016, 0.013501486741006374, -0.010689232498407364, 0.003345383331179619, -0.014661042019724846, -0.00446162186563015, 0.004978090059012175, -0.029988495633006096, -0.030868157744407654, 0.01238191593438387, -0.018019752576947212, -0.02168501354753971, 0.004428301006555557, -0.0008921577245928347, 0.0034320165868848562, 0.023497652262449265, 0.20855998992919922, 0.022897882387042046, 0.004944769665598869, 0.018086394295096397, -0.001290338346734643, 0.002297451952472329, 0.012108688242733479, -0.0010104456450790167, -0.005744462832808495, 0.02475050464272499, -0.022991180419921875, 0.019099339842796326, -0.0031054753344506025, -0.001417789375409484, 0.006814052350819111, -0.012841739691793919, -0.06008361652493477, 0.00325375166721642, -0.013221594505012035, 0.05397929251194, 0.029162146151065826, -0.011162384413182735, 0.0034070261754095554, -0.011628871783614159, 0.018592866137623787, -0.019472530111670494, -0.021431777626276016, -0.003801874816417694, 0.02324441634118557, 0.04145076498389244, -0.013508151285350323, 0.01258184015750885, -0.011015773750841618, -0.007510452065616846, 0.00296886102296412, -0.020578771829605103, 0.005364608485251665, -0.0051413606852293015, -0.015087544918060303, 0.02621660940349102, 0.037638891488313675, 0.01507421676069498, -0.001597720431163907, -0.0069440025836229324, -0.005417921580374241, 0.01949918642640114, -0.021151885390281677, 0.013781379908323288, 0.011322323232889175, 0.0034686692524701357, -0.04078435152769089, 0.023684246465563774, 0.027029629796743393, 0.018779462203383446, -0.00490811700001359, 0.006327572278678417, 0.004158404655754566, 0.00601769145578146, -0.011968741193413734, -0.01446111872792244, -0.01634039729833603, 0.016460351645946503, -0.008403442800045013, -0.008996548131108284, 0.010809186846017838, -0.029935183003544807, -0.0009438045672141016, -0.00046732070040889084, 0.0022624654229730368, -0.0032170990016311407, 0.008396778255701065, 0.0038218670524656773, -0.01606050506234169, 0.005781115498393774, -0.01912599615752697, -0.015207499265670776, 0.033373862504959106, 0.006830712780356407, 0.019365902990102768, 0.012608496472239494, 0.0040950956754386425, 0.00965629518032074, -0.015247483737766743, -0.01670026034116745, -0.012128680013120174, -0.013001678511500359, 0.011215697042644024, 0.0039351568557322025, 0.0019292598590254784, -0.006970658898353577, 0.0048781284131109715, 0.011122399941086769, -0.01980573497712612, -0.017046794295310974, 0.00853672530502081, 0.0028655673377215862, -0.02401745319366455, 0.005011410918086767, -0.011455604806542397, -0.0068706972524523735, -0.023457666859030724, 0.0631224513053894, 0.02886892482638359, -0.010309378616511822, -0.004638220649212599, -0.024084093049168587, -0.004414972849190235, 0.01602051965892315, 0.01592722348868847, -0.02151174657046795, -0.011602215468883514, -0.009489692747592926, 0.010329370386898518, 0.0006076835561543703, 0.005337952170521021, 0.0011245685163885355, 0.008250168524682522, -0.02315111830830574, 0.027855979278683662, -0.011155719868838787, -0.00012713873002212495, -0.022897882387042046, -0.014154569245874882, 0.009662959724664688, -0.004255034029483795, 0.005677821580320597, 0.007050628308206797, -0.007763687986880541, -0.017033465206623077, -0.03366708382964134, 0.02283124066889286, -0.011109071783721447, 0.008909914642572403, -0.03329389542341232, 0.006890689954161644, 0.017993096262216568, 0.0169268399477005, -0.014221210964024067, -0.020165596157312393, 0.004494942259043455, -0.022164829075336456, 0.0026689760852605104, 0.021405121311545372, -0.0018909411737695336, 0.01011611893773079, 5.565573155763559e-05, 0.014074600301682949, 0.011422284878790379, -0.02040550485253334, -0.00983622670173645, -0.024230703711509705, -0.01331489160656929, -0.0014860965311527252, -0.0005514551303349435, 0.016460351645946503, -0.025043725967407227, -0.015660658478736877, -0.037825487554073334, 0.0115555664524436, 0.0129283731803298, -0.048621345311403275, -0.021218527108430862, 0.02119186893105507, -0.0078103370033204556, -0.012281954288482666, -0.014741010963916779, -0.1688951998949051, 0.028682328760623932, 0.0026756401639431715, -0.0031121394131332636, 0.014047943986952305, 0.006127648986876011, -0.011075750924646854, 0.008789961226284504, -0.010829178616404533, -0.01484763715416193, 0.016033848747611046, 0.030228402465581894, -0.0375056117773056, -0.01272178627550602, 0.009436380118131638, 0.016686931252479553, -0.031214691698551178, 0.022444723173975945, 0.02452392503619194, 0.017779845744371414, 0.022298112511634827, -0.016713587567210197, -0.01226196251809597, -0.008643350563943386, -0.0005668658413924277, -0.006963994819670916, -0.03875846415758133, 0.00988287478685379, -0.013121632859110832, -0.014367821626365185, -0.012115351855754852, 0.0059143975377082825, 0.039638128131628036, 0.006750743370503187, -0.002150841522961855, -0.0033487153705209494, -0.020938633009791374, -0.010349363088607788, -0.006777399685233831, 0.03148125484585762, 0.050673890858888626, 0.007570428773760796, 0.010236073285341263, 0.01903269812464714, -0.000744297809433192, 0.018606195226311684, 0.021525075659155846, 0.006910682190209627, 0.006067672278732061, 0.010535958223044872, 0.02612331137061119, -0.04963429272174835, 0.010849171318113804, -0.00798360351473093, -0.01570064388215542, 0.015114201232790947, 0.0031421277672052383, 0.01948585733771324, 0.018726149573922157, -0.028602359816432, 0.0074704671278595924, -0.01611381769180298, 0.013874677009880543, -0.020125612616539, -0.004718190059065819, -0.022538019344210625, 0.016673604026436806, 0.001689351862296462, -0.026256592944264412, 0.018912743777036667, 0.014221210964024067, -0.005541207268834114, -0.0003690251032821834, 0.00701064383611083, 0.0017543269786983728, -0.007443810813128948, 0.0067740678787231445, 0.028815612196922302, 0.01379470806568861, 0.014887621626257896, 0.014127912931144238, 0.011908764950931072, -0.007583757396787405, 0.0244839396327734, -0.02644318901002407, 0.008650015108287334, 0.0037185733672231436, 0.029775243252515793, 0.014647713862359524, -0.012281954288482666, -0.006047680042684078, -0.014287851750850677, 0.004914781078696251, 0.0071106054820120335, 0.010409340262413025, 0.028629016131162643, 0.0044382973574101925, 0.00789697002619505, -0.010016157291829586, 0.009782913140952587, -0.003841859521344304, 0.00666744215413928, -0.02708294242620468, 0.02512369491159916, 0.02918880246579647, 0.033880334347486496, 0.010442660190165043, 0.00828348845243454, 0.009782913140952587, -0.02553686872124672, -0.043769873678684235, 0.005291303154081106, 0.037185732275247574, 0.012708458118140697, -0.01340818963944912, 0.022817913442850113, -0.029295427724719048, -0.009562998078763485, 0.0007451308192685246, 0.015367438085377216, 0.04579576477408409, -0.0049547660164535046, -0.03065490536391735, -0.020325535908341408, -0.016900183632969856, -0.015087544918060303, -0.1011345311999321, -0.017539937049150467, -0.017833158373832703, 0.030121777206659317, 0.032147668302059174, 0.007630405947566032, -0.007750359829515219, 0.02008562721312046, -0.024697192013263702, 0.025403587147593498, 0.01816636323928833, -0.010529293678700924, 0.00910983793437481, 0.0033470492344349623, 0.03814536705613136, -0.0024890450295060873, -0.006500839255750179, -0.00038485234836116433, -0.01664694771170616, 0.02013893984258175, 0.01116904802620411, -0.0037918786983937025, 0.005617844872176647, -0.024910442531108856, -0.02841576561331749, 0.0002761440700851381, -0.032974015921354294, -0.007943619042634964, 0.0051413606852293015, 0.010142775252461433, 0.018339630216360092, -0.0028938897885382175, 0.025776777416467667, -0.004494942259043455, -0.005311295855790377, 0.01095579657703638, -0.01539409440010786, -0.00418506097048521, -0.003985137678682804, -0.03289404883980751, 0.011935421265661716, 0.018179692327976227, -0.0002269962424179539, -0.035852912813425064, -0.007417154498398304, -0.008343465626239777, -0.0015035897959023714, -0.004508270416408777, 0.0009438045672141016, -0.027829322963953018, -0.035346440970897675, -0.007876978255808353, -0.015753956511616707, -0.012042046524584293, -0.013128296472132206, -0.006720754783600569, -0.0006805722368881106, 0.0037452299147844315, -0.007650398183614016, -0.022164829075336456, -0.04091763496398926, 0.004941437393426895, -0.027855979278683662, 0.02484380267560482, 0.009862883016467094, 0.012835076078772545, -0.008949900045990944, -0.007750359829515219, -0.012128680013120174, -0.020578771829605103, -0.010122783482074738, 0.008783296681940556, -0.013927989639341831, 0.0077970088459551334, -0.019565826281905174, -0.0034086923114955425, -0.0026040009688585997, -0.026336561888456345, 0.033747054636478424, -0.011009110137820244, -0.03281407803297043, -0.04800824820995331, 0.009556333534419537, -0.008483411744236946, 0.027149584144353867, 0.019325919449329376, 0.009889539331197739, -0.023950811475515366, 0.02608332596719265, -0.02145843394100666, 0.012735114432871342, 0.004928109236061573, 0.010389347560703754, -0.020325535908341408, -0.0020508798770606518, 0.007163918111473322, -0.013874677009880543, -0.023404354229569435, -0.008756640367209911, 0.006397545803338289, -0.015327452681958675, 0.013141624629497528, -0.0599236786365509, 0.013261578977108002, 0.008243503980338573, 0.010829178616404533, 0.002017559250816703, 0.01363476924598217, 0.01196207758039236, -0.017326686531305313, -0.014394477941095829, 0.004611564334481955, -0.026962989941239357, 0.012321939691901207, -0.010929140262305737, -0.004994750488549471, -0.024697192013263702, -0.007217231206595898, 0.012228641659021378, -0.01852622628211975, 0.0107492096722126, 0.01602051965892315, -0.006620793137699366, 0.0033886998426169157, 0.014367821626365185, -0.00640420988202095, -0.02283124066889286, 0.012635152786970139, -0.020978618413209915, 0.012475213967263699, -0.0012445225147530437, -0.02205820381641388, 0.011455604806542397, -0.013808036223053932, -0.030921470373868942, 0.037079107016325, -0.0067674038000404835, -0.029668617993593216, -0.003815202973783016, 0.031507913023233414, 0.027802666649222374, 0.0026373215951025486, -0.024563908576965332, -0.028762299567461014, 0.005574528127908707, -0.01587391085922718, -0.006664109881967306, -0.015620674006640911, -0.0002578177663963288, -0.013574792072176933, 0.020525459200143814, 0.01462105754762888, 0.031241348013281822, 0.0006114320713095367, 0.012155336327850819, -0.01989903301000595, -0.004668209236115217, -0.020618757233023643, 0.012075367383658886, 0.006217614747583866, 0.011015773750841618, 0.009309761226177216, 0.04177064076066017, 0.003551970701664686, 0.016633618623018265, -0.006267595570534468, 0.014767668209969997, 0.007023971993476152, -0.015034232288599014, 0.009896202944219112, -0.016713587567210197, -0.009016540832817554, 0.010455988347530365, -0.020058970898389816, 0.009622975252568722, 0.025923388078808784, 0.0034620051737874746, -0.0018526226049289107, 0.017686547711491585, 0.0032454216852784157, -0.006977322977036238, 0.022671302780508995, 0.009089846163988113, -0.0018709489377215505, 0.007157254032790661, 0.01491427794098854, 0.0006297584041021764, 0.013674753718078136, -0.003895172383636236, -0.024723848327994347, -0.01852622628211975, 0.0016735246172174811, 0.013008343055844307, 0.01779317297041416, -0.006460854783654213, -0.009476364590227604, 0.024324001744389534, 0.006897354032844305, 0.010169431567192078, -0.016220442950725555, -0.0011662192409858108, 0.026056669652462006, 0.0043583279475569725, 0.003701913170516491, -0.030441654846072197, -0.033240579068660736, -0.011922093108296394, -0.009343082085251808, -0.01839294284582138, -0.019885703921318054, -0.0147543391212821, 0.006570812314748764, -0.006374221295118332, 0.03449343517422676, 0.015447407029569149, -0.0008613362442702055, -0.0005522881401702762, 0.0005993533995933831, -0.011882107704877853, -0.01288172509521246, -0.018472913652658463, 0.044089753180742264, 0.011842123232781887, 0.016127146780490875, 0.005974374711513519, -0.014007959514856339, 0.04627557843923569, 0.016553649678826332, 0.0082368403673172, -0.014900949783623219, 9.048611536854878e-05, -0.004901452921330929, -0.0020758702885359526, -0.01611381769180298, 0.006037683691829443, -0.0258567463606596, -0.016033848747611046, -0.027749354019761086, 0.0050513953901827335, 0.02360427752137184, 0.03006846457719803, 0.07074619084596634, 0.018379615619778633, -0.014727682806551456, 0.004721521865576506, 0.015767283737659454, 0.023590950295329094, 0.0020158933475613594, 0.010016157291829586, -0.01148892566561699, -0.02305782027542591, 0.010769201442599297, 0.0069440025836229324, 0.0026623120065778494, 0.0036652605049312115, -0.01301500666886568, 0.005464570131152868, -0.0012886723270639777, 0.029775243252515793, -0.0060810004360973835, 0.005771119147539139, 0.0115555664524436, -0.014940934255719185, -0.003915164619684219, 0.006884025409817696, -0.03364042565226555, -0.011628871783614159, 0.016140474006533623, 0.006777399685233831, -0.00753710838034749, -0.031001439318060875, -0.006754075642675161, -0.0004939771606586874, -0.002758941613137722, -0.0018842770950868726, 0.001379470806568861, -0.004091763403266668, 0.0032154330983757973, -0.026109982281923294, 0.011155719868838787, -0.007363841403275728, -0.002005896996706724, 0.02828248217701912, -0.008543388918042183, -0.01743331179022789, -0.009876211173832417, -0.024790490046143532, 0.004948101472109556, 0.00896989181637764, 0.017353342846035957]" +51,"We expect Office 365 revenue growth to be similar to last quarter on a constant currency basis. In our on-premises business, we expect revenue to decline in the low to mid-30s. In Office Consumer, we expect revenue to decline low to mid-single digits as Microsoft 365 subscription growth will be more than offset by unfavorable FX impact. For LinkedIn, we expect continued strong engagement on the platform, although results will be impacted by a slowdown in advertising spend and hiring, resulting in mid to high single-digit revenue growth or low to mid-teens growth in constant currency.","[-0.0018307234859094024, -0.029424477368593216, -0.006226453464478254, -0.02106494829058647, 0.0017642725724726915, -0.01115046814084053, -0.04941292107105255, -0.00784121174365282, -0.01398127805441618, -0.024507107213139534, 0.04983820766210556, 0.03197619318962097, -0.0023855888284742832, 0.0035983186680823565, 0.0032494510523974895, 0.001054908731020987, 0.008273142389953136, -0.027005663141608238, 0.030700335279107094, -0.03139142692089081, -0.014326822943985462, 0.00984138436615467, -0.030088987201452255, -0.0005486356094479561, -0.011914653703570366, 0.0035983186680823565, 0.0043259565718472, -0.010618860833346844, 0.019124582409858704, -0.00788108166307211, 0.004678146447986364, -0.017263954505324364, 0.005518750753253698, 0.021304171532392502, -0.0173038262873888, -0.0019985120743513107, -0.005452299956232309, 0.009854675270617008, 0.03139142692089081, 0.012173812836408615, 0.023696405813097954, 0.015602681785821915, -0.02724488638341427, 0.01868600584566593, -0.011349821463227272, 0.025131747126579285, 0.001256753457710147, -0.007482376415282488, -0.0023606696631759405, 0.012286779470741749, -0.011303305625915527, 0.022606611251831055, -0.030275050550699234, -0.015190686099231243, 0.01293135341256857, 0.018021496012806892, -0.006552062928676605, 0.02138391323387623, -0.01124349981546402, -0.006512192543596029, -0.014473015442490578, 0.004691436421126127, -0.033092569559812546, 0.002239396795630455, -0.04231595993041992, 0.009821449406445026, -0.004365826956927776, 0.009901190176606178, 0.008259852416813374, 0.0018573038978502154, 0.017370276153087616, 0.02891945093870163, 0.019403675571084023, 0.006399225909262896, 0.008964232169091702, -0.01235987525433302, -0.008778169751167297, -0.01787530444562435, 0.0030500981956720352, 0.0033325147815048695, 0.005229689180850983, -0.023031897842884064, -0.019589738920331, -0.007209927309304476, 0.0068178665824234486, 0.011808332987129688, -0.0048376284539699554, -0.004465503618121147, -0.01852652244269848, 0.0008771524298936129, 0.03386339917778969, 0.011190338991582394, 0.005013723857700825, 0.02277938276529312, -0.006505547557026148, -0.010313186794519424, -0.022992026060819626, 0.03136484697461128, -0.003987056668847799, -0.019656188786029816, -0.00033433130010962486, -0.004219634924083948, -0.02230093628168106, -0.004339246544986963, -0.03979082405567169, 0.018978388980031013, 0.020121345296502113, 0.003163064830005169, 0.04930660128593445, -0.015549520961940289, -0.018420200794935226, -0.015443199314177036, 0.018313879147171974, 0.004764532670378685, -0.008764879778027534, -0.000766262412071228, -0.005030336324125528, 0.008824685588479042, 0.012924708425998688, -0.015350167639553547, 0.01512423437088728, -0.0040236045606434345, 0.010492604225873947, -0.031045880168676376, 0.0065487404353916645, 0.020759275183081627, 0.010220155119895935, -0.013967988081276417, 0.005179850850254297, 0.0019303999142721295, 0.00040888096555136144, -0.0019303999142721295, -0.008213336579501629, 0.01925748400390148, -0.0112235639244318, 0.025782965123653412, -0.010711892507970333, 0.008950942195951939, -0.03290650621056557, -0.02106494829058647, -0.008259852416813374, -0.0014951461926102638, 0.0038176067173480988, 0.0072564431466162205, 0.015044493600726128, 0.02277938276529312, 0.036175891757011414, -0.008771524764597416, 0.011628914624452591, -0.015695713460445404, -0.0006503885961137712, -0.029318155720829964, 0.020360568538308144, 0.016665896400809288, 0.021423785015940666, -0.019789090380072594, 0.00231581530533731, 0.020852306857705116, -0.005179850850254297, -0.013489541597664356, -0.03163065016269684, 0.010260025970637798, -0.015615971758961678, 0.008897781372070312, -0.007595343049615622, 0.01586848497390747, 0.018513232469558716, 0.010492604225873947, -0.016838669776916504, -0.0034421589225530624, 0.005824425257742405, 0.0009244987741112709, -0.015988096594810486, 0.013330059126019478, 0.014193921349942684, 0.0247330404818058, 0.005512105766683817, -0.0173038262873888, -0.01815439760684967, -0.02248699963092804, 0.012685485184192657, -0.012333295308053493, 0.017609499394893646, 0.004764532670378685, 0.021516814827919006, -0.009994221851229668, 0.03787703812122345, 0.005186496302485466, 0.0036647694651037455, -0.0028972611762583256, -0.013077545911073685, 0.014512886293232441, 0.005601814482361078, -0.015948226675391197, -0.64430832862854, -0.00406015245243907, 0.0076086330227553844, 0.0027527303900569677, 0.024214724078774452, -0.004076765384525061, 0.02486594393849373, -0.008538946509361267, -0.03840864449739456, 0.01277187094092369, 0.02121114172041416, 0.007934242486953735, -0.01427366305142641, -0.002136397873982787, -0.0016454914584755898, -0.016639316454529762, 0.004947272595018148, 0.003428868716582656, -0.024414077401161194, 0.0016845314530655742, 0.00015325249114539474, 0.012339940294623375, 0.0014278646558523178, -0.004924014676362276, 0.00015211036952678114, -0.012313359417021275, -0.0008837975328788161, -0.014805270358920097, -0.0154830701649189, 0.00683780200779438, -0.0076352134346961975, 0.018699295818805695, 0.004565179813653231, 0.0003852078225463629, 0.04949266090989113, 0.0013954697642475367, -0.014379983767867088, 0.006831157021224499, 0.013276898302137852, 0.034900035709142685, -0.041146423667669296, 0.004382439889013767, -0.005907488986849785, -0.01695828139781952, -0.004086732864379883, 0.01002744771540165, 0.00807378999888897, -0.01512423437088728, 0.011436207219958305, -0.011821622960269451, -0.0036946723703294992, 0.0017426760168746114, -0.00781463086605072, -0.014778689481317997, 0.03330521285533905, 0.0031464521307498217, 0.00966861192137003, -0.009535710327327251, -0.006781318690627813, -0.009808159433305264, -0.008897781372070312, -0.018353750929236412, -0.0006184090743772686, -0.027271466329693794, -0.039046574383974075, 0.013017740100622177, -0.004744597245007753, 0.004937305115163326, 0.024121692404150963, -0.003482029540464282, -0.0013838409213349223, 0.016705766320228577, 0.03330521285533905, -0.01915116235613823, 0.002757714129984379, 0.020028313621878624, 0.019696058705449104, -0.018619554117321968, -0.004747919738292694, 0.01455275621265173, 0.010087253525853157, -0.03322547301650047, -0.01155581884086132, 0.00463495310395956, -0.008166820742189884, 0.0009203455410897732, -0.015084364451467991, -0.02663353830575943, -0.007070380263030529, 0.020998498424887657, 0.011090662330389023, 0.013569282367825508, 0.0012650598073378205, -0.03854154795408249, 0.014858431182801723, 0.02772333286702633, -0.02196868136525154, 0.0022676384542137384, 0.007754825055599213, 0.011250144802033901, -0.008299723267555237, -0.011044146493077278, 0.03705304488539696, 0.018699295818805695, 0.033571016043424606, 0.03912631422281265, -0.0014120825799182057, 0.0015092670219019055, 0.04053507372736931, -0.024546978995203972, -0.002779310801997781, -0.02963712066411972, -0.006661707069724798, -0.0055320411920547485, -0.011416272260248661, -0.025849416851997375, 0.029371317476034164, -0.0067248353734612465, -0.02024095691740513, -0.02558361366391182, -0.011741881258785725, 0.009754998609423637, 0.01484514120966196, -0.03072691708803177, -0.007289668545126915, 0.00784121174365282, 0.02497226372361183, 0.00845255982130766, 0.023457182571291924, -0.000986796454526484, 0.01179504208266735, -0.0241084024310112, 0.03000924549996853, 0.006475644651800394, 0.020227666944265366, 0.0039571537636220455, 0.0007122710230760276, -0.01924419403076172, 0.010632150806486607, -0.025184907019138336, -0.0274841096252203, -0.012286779470741749, -0.004405697342008352, -0.013562637381255627, -0.004684791434556246, -0.025596903637051582, -0.007555472198873758, 0.0143401138484478, -0.019230902194976807, 0.006352710071951151, -0.015044493600726128, -0.006910898257046938, 0.0033541114535182714, 0.025052005425095558, -0.0028357941191643476, 0.005116722546517849, -0.013489541597664356, -0.031657230108976364, -0.017848722636699677, -0.005419074557721615, -0.011668785475194454, -0.0007351135718636215, 0.010658731684088707, 0.004847596399486065, -0.024812782183289528, -0.0006308686570264399, -0.03144458681344986, 0.024480527266860008, 0.0183936208486557, -0.005867618136107922, -0.00788108166307211, -0.018127817660570145, 0.017795562744140625, 0.0007176701910793781, 0.0031348231714218855, -0.00774153508245945, -0.03101930022239685, 0.004498729016631842, 0.00812030490487814, -0.031896453350782394, 0.014645787887275219, 0.013994568958878517, -0.010532474145293236, -0.008917716331779957, 0.015562810935080051, 0.014805270358920097, 0.01624060980975628, 0.041093263775110245, -0.0023822663351893425, 0.01010054349899292, 0.0036182538606226444, 0.03192303329706192, -0.02549058198928833, -0.006226453464478254, -0.001755966222845018, -0.01164885051548481, -0.027085404843091965, -0.010884664952754974, -0.018898649141192436, -0.008332948200404644, 0.012486131861805916, 0.018553104251623154, -0.0010715214302763343, 0.02586270682513714, 0.01057898998260498, -0.01671905815601349, -0.02372298762202263, -0.018858777359128, 0.019842252135276794, 0.03843522444367409, 0.030514273792505264, -0.02558361366391182, -0.008990813046693802, -0.010140414349734783, -0.027324628084897995, 0.012838322669267654, 0.020001733675599098, 0.01881890743970871, -0.001532524824142456, 0.0024138304870575666, 0.008638622239232063, -0.02134404331445694, -0.0011653833789750934, -0.004940627608448267, -0.004252860322594643, -0.004917369689792395, -0.00350196473300457, 0.009409453719854355, 0.016134288161993027, -0.018021496012806892, 0.005658297799527645, 0.027856236323714256, 0.021995263174176216, 0.004435600247234106, 0.001024175202473998, 0.01787530444562435, 0.014805270358920097, -0.03729226812720299, 0.03612273186445236, 0.0012982853222638369, 0.01277187094092369, 0.02939789742231369, 0.02125101163983345, -0.024414077401161194, -0.0007126863929443061, 0.002103172242641449, 0.030275050550699234, -0.013290188275277615, -0.024121692404150963, 0.01752975955605507, -0.0020466891583055258, 0.01620073989033699, 0.008545591495931149, -0.02567664533853531, -0.000584352994337678, -0.001350615406408906, -0.010226800106465816, 0.002998598851263523, 0.03248121961951256, 0.021742748096585274, -0.011123888194561005, 0.003940540831536055, 0.022168034687638283, -0.02186235971748829, -0.003262741258367896, 0.01253264769911766, -0.016851959750056267, 0.01081821322441101, -0.010326476767659187, 0.004887466784566641, 0.016094418242573738, -0.004598405212163925, 0.0023988790344446898, 0.01253264769911766, -0.031710390001535416, 0.009595516137778759, 0.025477292016148567, -0.01901826076209545, -0.007216572295874357, 0.014154050499200821, 0.007309603970497847, -0.02134404331445694, 0.008306368254125118, 0.025809546932578087, 0.0002940454287454486, 0.00025998931960202754, 0.010120478458702564, -0.014061019755899906, 0.015071073547005653, 0.021410493180155754, -0.018991678953170776, 0.02806887775659561, -0.025264648720622063, -0.003834219416603446, 0.019549867138266563, 0.007681729272007942, 0.02696579322218895, -0.006711545400321484, -0.011655495502054691, -0.011828267946839333, 0.015469779260456562, -0.009203455410897732, -0.01734369620680809, 0.020068185403943062, 0.03630879521369934, 0.0060869064182043076, -0.023085057735443115, -0.02149023488163948, -0.01057898998260498, -0.0035385126248002052, 0.007229862734675407, 0.001812449423596263, -0.0355379655957222, 0.033571016043424606, 0.007588697597384453, 0.006223130971193314, -0.007096960674971342, -0.023988790810108185, 0.004870854318141937, 0.01229342445731163, -0.02010805532336235, 0.011549173854291439, -0.03535190224647522, 0.02438749559223652, 0.0686836987733841, 0.026035480201244354, -0.004870854318141937, 0.033039409667253494, 0.012114007025957108, 0.004472148604691029, 0.008970877155661583, -0.019789090380072594, 0.003658124478533864, 0.003970443736761808, -0.010804923251271248, -0.006289581768214703, -0.024560268968343735, -0.014858431182801723, 0.004382439889013767, 0.018619554117321968, 0.007196637336164713, -0.03184329345822334, 0.028175199404358864, 0.007070380263030529, 0.014645787887275219, -0.0076352134346961975, 0.012446261942386627, 0.018792327493429184, 0.020692823454737663, 0.03157748654484749, 0.019191032275557518, 0.03601641207933426, -0.018566394224762917, -0.004568502306938171, -0.015709003433585167, 0.023643245920538902, -0.01145614217966795, 0.031045880168676376, -0.013649024069309235, 0.013595863245427608, -0.0010740134166553617, -0.00926326122134924, 0.021756038069725037, 0.013084190897643566, 0.014632497914135456, -0.012944643385708332, 0.018260719254612923, -0.008897781372070312, 0.011329885572195053, -0.006721512880176306, -0.028653645887970924, 0.01939038559794426, 0.004272795747965574, -0.012273489497601986, 0.013476251624524593, -0.016041258350014687, -0.0263411533087492, 0.009648676961660385, -0.03482029587030411, 0.029318155720829964, -0.005349300801753998, -0.018553104251623154, -0.009549000300467014, -0.04178435355424881, -0.03474055230617523, -0.025503871962428093, 0.01705131120979786, -0.012638969346880913, -0.03452790901064873, 0.0019054807489737868, -0.01343638077378273, 0.0019054807489737868, -0.03343811631202698, 0.01255258359014988, -0.010213510133326054, -0.014499595388770103, -0.011708656325936317, 0.006259678862988949, 0.021423785015940666, -0.0022526870016008615, 0.014393274672329426, -0.011861493811011314, 0.0018988357624039054, 0.0032810154370963573, -0.010452733375132084, 0.0030052438378334045, -0.019988443702459335, -0.023842599242925644, -0.05284179002046585, 0.01370218489319086, -0.003528545144945383, -0.006731480360031128, -0.018167687579989433, -0.019377095624804497, -0.012399746105074883, -0.024706460535526276, -0.018420200794935226, -0.017024731263518333, 0.037478331476449966, -0.00903068296611309, 0.004193054512143135, 0.009150294587016106, 0.005900844000279903, 0.01376863569021225, 0.007382699754089117, -0.0019818993750959635, -0.0024919104762375355, -0.005229689180850983, -0.0028756645042449236, 0.003113226732239127, 0.007821275852620602, -0.004086732864379883, -0.004575147293508053, -0.010120478458702564, 0.018553104251623154, -0.009708482772111893, -0.004010314587503672, 0.006392580922693014, -0.013024385087192059, -0.021078240126371384, 0.023404022678732872, -0.00014484228449873626, 0.018513232469558716, -0.00028075522277504206, 0.017981626093387604, -0.01334334909915924, 0.03155090659856796, -0.014752109535038471, -0.0021912199445068836, -0.014326822943985462, -0.005186496302485466, -0.02934473566710949, -0.04300704970955849, -0.001787530374713242, 0.0029205188620835543, 0.017131052911281586, -0.007336183916777372, -0.0075687626376748085, -0.019470127299427986, -0.02477291226387024, -0.005641684867441654, -0.011861493811011314, -0.015602681785821915, -0.010047382675111294, -0.011064082384109497, 0.02016121707856655, 0.0177158210426569, -0.03963134437799454, 0.02281925454735756, -0.024121692404150963, -0.003154758596792817, -0.011084017343819141, -0.007402635179460049, 0.024653300642967224, -0.005429042037576437, -0.008678493089973927, -0.018898649141192436, -0.002251025754958391, -0.011070727370679379, 0.005801167339086533, 0.03298624977469444, -0.029716862365603447, 0.024321045726537704, 0.002109817462041974, 0.02563677355647087, 0.004276118241250515, 0.0034620941150933504, 0.013622443191707134, 0.0057081361301243305, -0.01957644708454609, 0.010446088388562202, -0.021569976583123207, -0.01625390164554119, 0.01134317647665739, -0.026699988171458244, -0.0014361710054799914, 0.013954698108136654, -0.00032623260631226003, 0.0014037762302905321, 0.012413036078214645, -0.021184559911489487, 0.003357433946803212, -0.030168728902935982, -0.027377787977457047, -0.011163758113980293, -0.006233098451048136, -0.014220502227544785, 0.001392147270962596, -0.023364150896668434, -0.025277938693761826, 0.0022726221941411495, 0.014632497914135456, 0.0258759967982769, -0.014087599702179432, 0.0143135329708457, 0.02348376251757145, 0.019563157111406326, -0.02230093628168106, -0.00618326012045145, -0.015177395194768906, -0.00903068296611309, -0.030195308849215508, -0.03388998284935951, 0.008399398997426033, -0.0069441236555576324, 0.028839709237217903, -0.0021347366273403168, 0.02939789742231369, 0.005405784118920565, 0.0013747039483860135, -0.02129088155925274, -0.01214723289012909, -0.004030249547213316, -0.02349705435335636, 0.0032079191878437996, -0.03226857632398605, -0.00829307734966278, -0.013609153218567371, -0.03444816917181015, 0.030461112037301064, -0.012426326051354408, 3.335525980219245e-05, 0.0006948277004994452, -0.02553045190870762, 0.023550214245915413, -0.004830983467400074, 0.03851496800780296, -0.01614757999777794, 0.03684040158987045, -0.00505027174949646, 0.014406564645469189, -0.027191726490855217, -0.01972264051437378, 0.008266497403383255, -0.01972264051437378, 0.02716514654457569, 0.02963712066411972, -0.0014718883903697133, -0.004887466784566641, -0.0033973045647144318, -0.020280828699469566, -0.0007940887589938939, -0.011030856519937515, 0.010107188485562801, 0.01047931332141161, -0.010260025970637798, -0.01539003849029541, -0.023948920890688896, -0.01245955191552639, 0.03101930022239685, -0.001787530374713242, 0.0028656970243901014, 0.005728071089833975, -0.023643245920538902, -0.00885791052132845, 0.03606957197189331, 0.018380330875515938, 0.013070900924503803, -0.010658731684088707, 0.016612736508250237, -0.010140414349734783, 0.007582052610814571, 0.005977262277156115, -0.0033790303859859705, -0.002898922422900796, 0.01370218489319086, -0.02740436978638172, 0.025118457153439522, 0.021702878177165985, 0.002503539202734828, -0.028228361159563065, 0.009429388679564, -0.01145614217966795, 0.019177742302417755, -0.03349127620458603, 0.006621836684644222, 0.026088640093803406, -0.008499075658619404, -0.006415838375687599, -0.03024846874177456, -0.014167341403663158, -0.003724575275555253, -0.02471975050866604, 0.00026414249441586435, 0.03583034873008728, -0.00912371464073658, -0.020759275183081627, 0.02453368902206421, 0.013821796514093876, -0.007761470042169094, 0.015230556018650532, -0.007435860577970743, 0.021277591586112976, -0.023098347708582878, 0.005628394894301891, 0.010160349309444427, 0.02311163768172264, 0.04640933871269226, -0.016307061538100243, -0.004558534827083349, 0.016041258350014687, 0.011775107122957706, -0.006977349054068327, 0.03298624977469444, 0.02487923391163349, 0.014459725469350815, -0.016134288161993027, 0.04072113707661629, -0.032135676592588425, -0.024693170562386513, 0.025277938693761826, -0.013250318355858326, -0.024653300642967224, -0.0044189877808094025, 0.01255258359014988, -0.0016529671847820282, -0.004654888529330492, 0.005233011674135923, 0.0065221600234508514, 0.013888247311115265, -0.0015591052360832691, -0.006322807166725397, -0.030859818682074547, 0.025464002043008804, 0.010904599912464619, -0.0002876079815905541, 0.022261066362261772, 0.0015599358594045043, 0.03160407021641731, 0.006645094137638807, -0.015177395194768906, 0.00024566083448007703, -0.014233792200684547, -0.03325205296278, -0.0021264301612973213, 0.02939789742231369, -0.020453600212931633, -0.006771351210772991, -0.0042694732546806335, -0.008193401619791985, 0.008040564134716988, 0.011323240585625172, 0.015642551705241203, 0.013210447505116463, 0.007621922995895147, -0.0013364945771172643, 0.024998845532536507, 0.012898128479719162, -0.008638622239232063, -0.03596325218677521, -0.00852565560489893, -0.025849416851997375, -0.02610193006694317, -0.01138304639607668, 0.0211978517472744, 0.01867271587252617, 0.016998151317238808, -0.023643245920538902, -0.03059401363134384, -0.004744597245007753, -0.050290074199438095, -0.0229654461145401, -0.012924708425998688, 0.025517161935567856, 0.025557033717632294, 0.008725008927285671, -0.02058650180697441, 0.03373049944639206, 0.0032560962717980146, 0.013449670746922493, -0.04941292107105255, 0.015350167639553547, 0.0035717382561415434, -0.01843349076807499, 0.0030152115505188704, 0.0109112448990345, -0.004103345796465874, -0.005671588238328695, 0.018127817660570145, -0.01706460304558277, 0.009356292895972729, 0.02801571786403656, 0.008040564134716988, -0.019709350541234016, 0.009588871151208878, 0.0015159121248871088, 0.0025849416851997375, -0.0014403242385014892, 0.02396221086382866, -0.03139142692089081, -0.006057003512978554, 0.025025425478816032, 0.01868600584566593, -0.02082572504878044, 0.0019137872150167823, 0.0051266904920339584, 6.806030432926491e-05, -0.00016695799422450364, 0.0007679237169213593, 0.00132486573420465, 0.002000173320993781, 0.013077545911073685, 0.02254015952348709, 0.0005939052789472044, 0.012466196902096272, 0.017131052911281586, 0.025370970368385315, -0.03011556714773178, 0.0058410377241671085, 0.01327025331556797, -0.028414422646164894, -0.021503524854779243, 0.025171617045998573, -0.014951461926102638, 0.01352941244840622, -0.010871374048292637, 0.01100427657365799, 0.008173465728759766, -0.010971050709486008, -0.02386917918920517, 0.009349647909402847, 0.007834565825760365, 0.006057003512978554, -0.024095112457871437, -0.021888941526412964, 0.03006240725517273, -0.0007442505448125303, 0.00015491376689169556, -5.7210108934668824e-05, 0.011416272260248661, 0.011097307316958904, -0.028946030884981155, -0.04917369782924652, 0.012114007025957108, 0.0019785768818110228, -0.03205593675374985, 0.011682075448334217, 0.01900496892631054, 0.01033976674079895, 0.01269877515733242, 0.20955969393253326, 0.005156593397259712, 0.029424477368593216, 0.030461112037301064, 0.002244380535557866, 0.00888449139893055, 0.011462788097560406, 0.0021679620258510113, 0.009369582869112492, 0.006219808477908373, -0.0012858257396146655, 0.01772911101579666, -0.010233445093035698, -0.0019968508277088404, 0.010539120063185692, -0.0036946723703294992, -0.03939211741089821, 0.0035351901315152645, -0.01562926173210144, 0.03404946252703667, 0.006073616445064545, 0.0036747371777892113, 0.02162313647568226, -0.017370276153087616, 0.014140760526061058, -0.014499595388770103, -0.01572229340672493, 0.0013688894687220454, 0.019988443702459335, 0.01772911101579666, -0.0064390962943434715, 0.010585634969174862, -0.005276205018162727, -0.0017941754776984453, -0.0010681989369913936, -0.019656188786029816, -0.008824685588479042, -0.012658904306590557, -0.008904426358640194, 0.02963712066411972, 0.043379176408052444, -0.00333417602814734, -0.013509476557374, -0.008193401619791985, -0.002030076226219535, 0.006113486830145121, 0.0021945424377918243, 0.006422483827918768, 0.015615971758961678, 0.00926326122134924, -0.028520744293928146, 0.006864382419735193, 0.023855889216065407, 0.01605454832315445, -0.02377614751458168, 0.01643996313214302, -0.005349300801753998, 0.02029411867260933, -0.007489021401852369, -0.007628568448126316, -0.013569282367825508, 0.003148113377392292, 0.011356466449797153, -0.0012085764901712537, -0.008519010618329048, -0.016067838296294212, -0.013469606637954712, -0.004734629765152931, -0.02315150946378708, -0.01448630541563034, 0.017317116260528564, 0.012339940294623375, -0.01996186375617981, 0.013808505609631538, -0.020652953535318375, -0.017742400988936424, 0.03822258114814758, 0.01738356612622738, 0.0263943150639534, 0.025464002043008804, 0.007940887473523617, 0.005625072401016951, -0.015549520961940289, -0.009655321948230267, -0.011874783784151077, 0.0044854385778307915, 0.013230382464826107, 0.0005926593439653516, 0.0005644176853820682, 0.008067144080996513, 0.008259852416813374, 0.007429215591400862, -0.014499595388770103, -0.0018888680497184396, 0.008924361318349838, 0.0023307667579501867, -0.01690511964261532, 0.0043525369837880135, -0.03301282972097397, -0.012187102809548378, -0.03497977554798126, 0.08000693470239639, 0.03620247542858124, -0.0015391699271276593, -0.007163411471992731, -0.008060499094426632, -0.0016612735344097018, 0.013622443191707134, 0.006402548402547836, -0.016971571370959282, -0.011595689691603184, -0.003425546223297715, 0.023217959329485893, 0.007681729272007942, 0.0013805183116346598, -0.008133595809340477, 0.009675256907939911, -0.03527216240763664, 0.00668164249509573, 0.01002744771540165, 0.007356119342148304, -0.009243326261639595, -0.002981986152008176, 0.024081822484731674, -0.02396221086382866, 0.014353403821587563, 0.0035684157628566027, -0.017184214666485786, -0.01638680323958397, -0.028839709237217903, 0.03264070302248001, -6.504924385808408e-05, 0.008027274161577225, -0.03939211741089821, -0.0029072286561131477, 0.014938171952962875, 0.022845834493637085, -0.018048075959086418, -0.022898994386196136, -0.008332948200404644, -0.024786202237010002, 0.018592974171042442, 0.018845487385988235, -0.01148272305727005, 0.015137525275349617, -0.011250144802033901, 0.017795562744140625, 0.012805096805095673, -0.004601727705448866, -0.010957760736346245, -0.035325322300195694, -0.00537255872040987, -0.009170230478048325, 0.0229122843593359, 0.022566739469766617, -0.022938866168260574, -0.003923928365111351, -0.03133826330304146, 0.008545591495931149, 0.014871721155941486, -0.049386341124773026, -0.004186409525573254, 0.005389171652495861, -0.029530799016356468, -0.01734369620680809, -0.021835779771208763, -0.16777534782886505, 0.015855195000767708, -0.004545244388282299, -0.006801254115998745, 0.015190686099231243, 0.004166474100202322, -0.009077198803424835, 0.0020201087463647127, -0.0065487404353916645, -0.006229775957763195, 0.011396336369216442, 0.029238415881991386, -0.024507107213139534, -0.008366174064576626, 0.0027660205960273743, 0.012472841888666153, -0.0037544784136116505, 0.012758580967783928, 0.02414827235043049, 0.012200392782688141, 0.028653645887970924, -0.022274356335401535, -0.0016197417862713337, -0.017117762938141823, 0.00756211718544364, -0.013755345717072487, -0.023855889216065407, 0.01107737235724926, 0.0027942622546106577, -0.009715127758681774, -0.008658558130264282, 0.006498902104794979, 0.01427366305142641, 0.007070380263030529, -0.012712065130472183, 0.0051499479450285435, 0.010725182481110096, -0.0013630749890580773, -0.005080174654722214, 0.039525020867586136, 0.031418006867170334, 0.008273142389953136, 0.00909713376313448, 0.03054085373878479, -0.002088220790028572, 0.031099041923880577, 0.01810123771429062, 0.01410089060664177, -0.007116896100342274, 0.008804749697446823, 0.03030163049697876, -0.04837628826498985, 0.0334646962583065, 0.006472321692854166, -0.01077169831842184, 0.017848722636699677, 0.004212989937514067, 0.0024769590236246586, 0.012067491188645363, -0.026606958359479904, 0.009715127758681774, -0.017702531069517136, 0.010917889885604382, -0.03739859163761139, -0.0001338363508693874, -0.02414827235043049, 0.0036614469718188047, -0.003445481415838003, -0.019071420654654503, 0.026500636711716652, 0.00742257060483098, -0.011422917246818542, 0.01024673506617546, 0.005515428259968758, 0.007548827212303877, 0.005877586081624031, 0.008545591495931149, 0.024905813857913017, 0.013549347408115864, 0.03391656279563904, 0.023550214245915413, 0.0019470126135274768, -0.01920432224869728, 0.03591008856892586, -0.031178781762719154, 0.0034720618277788162, 0.029610540717840195, 0.032800186425447464, -0.0008231610408984125, -0.010545765049755573, -0.008631977252662182, -0.023031897842884064, 0.019217612221837044, 0.004076765384525061, -0.019563157111406326, 0.016453253105282784, 0.015855195000767708, 0.019084710627794266, -0.021277591586112976, 0.0274841096252203, -0.005588524509221315, -0.01162226963788271, -0.0165728647261858, 0.02600889839231968, 0.023988790810108185, 0.019270773977041245, -0.01972264051437378, 0.00047097104834392667, 0.0009743369300849736, -0.03681382164359093, -0.02897261083126068, 0.0043359240517020226, 0.03606957197189331, 0.018832197412848473, -0.020028313621878624, 0.028706807643175125, -0.023762857541441917, -0.0034620941150933504, -0.0004057660698890686, -0.002983647398650646, 0.05254940688610077, -0.004063475411385298, -0.014712238684296608, -0.012406391091644764, -0.017024731263518333, -0.004744597245007753, -0.11195655167102814, -0.029052352532744408, -0.013190512545406818, -0.004259505309164524, 0.02844100445508957, 0.01448630541563034, -0.0120542012155056, 0.03569744527339935, -0.024134982377290726, 0.033571016043424606, 0.014752109535038471, 0.0008979183621704578, 8.244070340879261e-05, 0.02049347013235092, 0.024134982377290726, -0.019044840708374977, -0.006259678862988949, 0.00018523199832998216, -0.01900496892631054, 0.014366693794727325, 0.004963885527104139, -0.007495666388422251, 0.00936293788254261, -0.03577718883752823, -0.03349127620458603, 0.006040390580892563, -0.027670172974467278, 0.009828094393014908, 0.004615018144249916, 0.011642205528914928, 0.027324628084897995, 0.007821275852620602, 0.01748988777399063, 0.0013315107207745314, -0.010459378361701965, 0.017224084585905075, -0.02825494110584259, -0.007116896100342274, -0.01334334909915924, -0.04282098636031151, 0.018845487385988235, 0.023284411057829857, -0.001137972460128367, -0.030434532091021538, 0.003123194444924593, -0.021118110045790672, -0.0029637119732797146, 0.0009834739612415433, 0.007083670701831579, -0.012632324360311031, -0.027909396216273308, -0.0035817057359963655, -0.010997631587088108, -0.028228361159563065, 0.002513506915420294, -0.0024902489967644215, -0.00586097314953804, -0.0012442938750609756, -0.022181324660778046, -0.02453368902206421, -0.025596903637051582, -0.00280589098110795, -0.0390731543302536, 0.029902923852205276, 0.01925748400390148, 0.01691840961575508, -0.011210273951292038, -0.01719750463962555, -0.0032793539576232433, -0.013569282367825508, -0.009110424667596817, 0.0014162356965243816, -0.015642551705241203, 0.01758291944861412, -0.017024731263518333, 0.021317463368177414, 0.00034699850948527455, -0.0366809219121933, 0.0286802276968956, -0.01448630541563034, -0.01772911101579666, -0.03715936839580536, -0.0038574773352593184, -0.014871721155941486, 0.024121692404150963, 0.017210794612765312, -0.0011354804737493396, -0.003950508777052164, 0.029743442311882973, -0.0184467826038599, -0.0029171963687986135, 0.010166994296014309, 0.009495839476585388, -0.009010748006403446, 0.002332428004592657, 0.007708309218287468, -0.0183936208486557, -0.015895064920186996, 0.005166560877114534, 0.016174159944057465, -0.0005228858790360391, -0.0013514460297301412, -0.045133478939533234, 0.018114527687430382, 0.007289668545126915, 0.010891309939324856, 0.011429562233388424, 0.002903906162828207, 0.009774933569133282, -0.017928464338183403, -0.002448717365041375, 0.01455275621265173, -0.02681960165500641, 0.015709003433585167, -0.019044840708374977, -0.011682075448334217, -0.02873338758945465, -0.031045880168676376, 0.03216225653886795, -0.0034986422397196293, 0.00814688578248024, 0.02377614751458168, 0.0063726454973220825, -0.014592627063393593, -0.009190165437757969, 0.009063908830285072, -0.03277360647916794, 0.006575320847332478, -0.021131400018930435, 0.009070553816854954, -0.006113486830145121, -0.014260372146964073, 0.009429388679564, -0.021849069744348526, -0.01529700681567192, 0.0354316420853138, 0.007555472198873758, -0.026646828278899193, 0.009429388679564, 0.02801571786403656, 0.02254015952348709, -0.003448803909122944, -0.03388998284935951, -0.02772333286702633, 0.020878886803984642, -0.010180284269154072, -0.0008771524298936129, -0.009635386988520622, -0.010638795793056488, -0.010160349309444427, 0.004422310274094343, 0.010625505819916725, 0.032853346318006516, -0.005591847002506256, -0.0033906593453139067, -0.016825377941131592, -0.006824512034654617, -0.024374205619096756, 0.018566394224762917, -0.0097682885825634, 0.013443025760352612, -0.01222032867372036, 0.02620825171470642, -0.005319397896528244, -0.016187449917197227, -0.004654888529330492, 0.010532474145293236, 0.0032494510523974895, -0.02191552147269249, 0.00513333547860384, -0.041279327124357224, 0.006505547557026148, 0.0009735063067637384, -0.0023872500751167536, 0.010446088388562202, 0.007788050454109907, 0.014778689481317997, -0.0009460953297093511, 0.005282850004732609, 0.0002828318392857909, -0.010957760736346245, 0.005548653658479452, 0.004482116084545851, -0.012472841888666153, 0.0063726454973220825, 0.006425806321203709, -0.005877586081624031, 0.03545822203159332, -0.002815858693793416, -0.013496186584234238, -0.0006777996313758194, 0.0015242184745147824, 0.02219461463391781, -0.0007222386775538325, -0.004472148604691029, -0.01596151664853096, 0.010851439088582993, -0.0023357507307082415, -0.015336877666413784, -0.002368976129218936, -0.014140760526061058, 0.021875649690628052, 0.015243845991790295, 0.01357592735439539, -0.027324628084897995, -0.02668669819831848, -0.020134635269641876, 0.009980931878089905, -0.02963712066411972, -0.017543049529194832, 0.005804489832371473, 0.012280134484171867, 0.0036979950964450836, 0.018260719254612923, 0.010353056713938713, 0.012100717052817345, 0.004056829959154129, 0.00609687389805913, -0.002603215631097555, -0.006890962831676006, -0.015748873353004456, 0.0389668345451355, 0.022526869550347328, 0.0037843813188374043, 0.017356986179947853, -0.008067144080996513, 0.03912631422281265, 0.018805617466568947, 0.01911129057407379, -0.01562926173210144, -0.002166300779208541, 0.0011446174466982484, -0.009110424667596817, -0.00928984209895134, -0.011130533181130886, -0.02040044032037258, -0.01677221804857254, -0.018752455711364746, -0.02048018015921116, 0.012658904306590557, 0.023430602625012398, 0.06437767297029495, 0.03500635549426079, -0.006542095448821783, 0.007249797694385052, -0.0018489975482225418, 0.031418006867170334, -0.01138304639607668, 0.004369149450212717, -0.004415665287524462, -0.04510689899325371, 0.0008879507076926529, -0.003070033621042967, 0.00463495310395956, -0.02782965451478958, -0.026168381795287132, 0.008824685588479042, -0.007801340892910957, 0.01601467654109001, -0.013396509923040867, -0.006857737433165312, -0.002104833722114563, -0.015257136896252632, -0.003880735021084547, -0.012326650321483612, -0.027377787977457047, -0.013316769152879715, 0.0019453513668850064, -0.004535276908427477, -0.021649716421961784, -0.027138564735651016, 0.008306368254125118, 0.009901190176606178, -0.012114007025957108, -0.002520152134820819, 0.008705073967576027, -0.011489368043839931, 0.002425459446385503, -0.020174507051706314, -0.008259852416813374, -0.01457933709025383, -0.011874783784151077, 0.019044840708374977, -0.014127470552921295, -0.01638680323958397, -0.01491159200668335, -0.017224084585905075, 0.0006366830784827471, 0.012020975351333618, 0.0045552123337984085]" +52,"And in Dynamics, we expect revenue growth in the low double digits or the low 20s in constant currency, driven by continued share gains in Dynamics 365. For intelligent cloud, we expect revenue to grow between 22% and 24% in constant currency or US$21.25 billion to US$21.55 billion. Revenue will continue to be driven by Azure, which, as a reminder, can have quarterly variability primarily from our per-user business and from in-period recognition depending on the mix of contracts. We expect Azure revenue growth to be sequentially lower by roughly 5 points on a constant currency basis.","[0.002254944061860442, -0.02459462359547615, 0.0061060478910803795, -0.008633026853203773, 0.018826160579919815, -0.0016576133202761412, -0.04268661513924599, -0.02957647666335106, -0.011261610314249992, -0.02468639425933361, 0.03914687782526016, 0.03130701556801796, -0.002984195714816451, -0.001193842152133584, -0.006784497294574976, 0.01570594683289528, 0.010553662665188313, 0.0009398331749252975, 0.011536923237144947, -0.028920968994498253, -0.02286408469080925, 0.01093385647982359, -0.022470779716968536, 0.0061683207750320435, -0.016269683837890625, 0.0034315790981054306, 0.016007481142878532, -0.0094720758497715, 0.031333234161138535, -0.022483890876173973, 0.007276127580553293, -0.010370120406150818, -0.0022975520696491003, 0.019586550071835518, -0.013503444381058216, -0.00016090647841338068, -0.007715317420661449, 0.019979853183031082, 0.021303977817296982, 0.0118908965960145, 0.0299435593187809, 0.0014986528549343348, -0.013097030110657215, 0.013503444381058216, -0.005214557982981205, 0.020779572427272797, -0.0006477228598669171, -0.013228131458163261, 0.01478823833167553, -0.005696355830878019, -0.0032677024137228727, 0.04604281112551689, -0.03846514970064163, -0.02907828986644745, -0.008344603702425957, 0.010265239514410496, -0.011713909916579723, 0.021251536905765533, -0.0041165840812027454, 0.004414839670062065, -0.01426383201032877, 0.003249675966799259, -0.02336226962506771, 0.0036511740181595087, -0.02852766402065754, -0.018419746309518814, -0.0020697633735835552, 0.003693782025948167, 0.013896748423576355, 0.011366491205990314, 0.02258877083659172, 0.020373158156871796, 0.025040367618203163, -0.01684653013944626, 0.01651877723634243, -0.012520183809101582, 0.002971085486933589, -0.021618621423840523, -0.004077253397554159, 0.008574031293392181, 0.0015027497429400682, -0.00821350235491991, -0.016269683837890625, -0.005060513969510794, 0.005548866931349039, 0.011241945438086987, -0.02492237649857998, -0.0030415523797273636, -0.030703948810696602, 0.0035430153366178274, 0.03264424949884415, -0.007295792922377586, 0.007020479999482632, 0.026980668306350708, 8.14262602943927e-05, -0.004677042365074158, -0.01844596676528454, 0.02176283299922943, 0.0041460818611085415, -0.027216650545597076, 0.00010431779082864523, 0.00029333936981856823, -0.030415525659918785, -0.009793275035917759, -0.02884230762720108, 0.0033086715266108513, 0.02687578648328781, 0.013634545728564262, 0.03500407561659813, -0.015850158408284187, -0.005706188268959522, -0.006935263983905315, 0.022693652659654617, -0.000254213809967041, 0.004300125874578953, -0.006142100784927607, -0.008141396567225456, 0.020884452387690544, 0.003221816848963499, -0.01661054790019989, 0.007138471119105816, 0.007459669839590788, 0.018013332039117813, -0.006666506174951792, 0.008587141521275043, 0.007754647638648748, 0.006836938206106424, -0.024765053763985634, 0.005617694929242134, -0.0007681722636334598, -0.010435671545565128, 0.0027547681238502264, 0.005316161550581455, 0.015902599319815636, -0.013608325272798538, 0.03563335910439491, -0.010212799534201622, 0.020700911059975624, -0.029969779774546623, 0.0006448550266213715, -0.004870417062193155, 0.010855196043848991, -0.0015388026367872953, 0.012238315306603909, 0.005519369151443243, 0.03193630278110504, 0.027164209634065628, -0.004126416519284248, 0.0010496305767446756, -0.011759795248508453, 0.001533066970296204, -0.017829790711402893, 0.018144434317946434, 0.012166209518909454, 0.0219988152384758, -0.018472187221050262, -0.0007526039844378829, 0.02665291540324688, -0.010330790653824806, 0.006630453281104565, -0.027636175975203514, 0.020333826541900635, -0.015719057992100716, 0.001466696965508163, 0.01720050349831581, 0.008993555791676044, 0.01789534091949463, 0.002217252505943179, -0.009268868714571, -0.006387915927916765, -0.004277183208614588, 0.006184708327054977, -0.002998944604769349, 0.011196059174835682, 0.013634545728564262, 0.025066588073968887, 0.020740240812301636, -0.013883638195693493, -0.016820309683680534, -0.010075142607092857, 0.022614991292357445, -0.0060765501111745834, 0.006643563508987427, 0.00685660308226943, 0.018275534734129906, -0.0005076082306914032, 0.041008517146110535, 0.01225142553448677, 0.0073154582642018795, 0.005660302937030792, -0.011556588113307953, 0.020871343091130257, -0.0010930579155683517, -0.012303866446018219, -0.6443896293640137, 0.006063439883291721, 0.006427246145904064, -0.0060765501111745834, 0.01282171718776226, -0.009485186077654362, 0.013542775064706802, -0.000537925458047539, -0.04612147435545921, 0.010914191603660583, 0.018904821947216988, 0.009026331827044487, -0.010206243954598904, 1.672054895607289e-05, 0.0023991556372493505, -0.009196762926876545, -0.0015576485311612487, -0.005525923799723387, -0.023991556838154793, 0.002615473000332713, -0.007571105845272541, 0.013647655956447124, -0.022942744195461273, -0.0005924144643358886, -0.00305138505063951, -0.01870816946029663, -0.007020479999482632, -0.004952355287969112, -0.011582808569073677, 0.006374805700033903, -0.012271091341972351, 0.014001629315316677, 0.017764240503311157, 0.005965113639831543, 0.03725901618599892, -0.008174172602593899, -0.0036741166841238737, 0.014158951118588448, -0.0018665562383830547, 0.037809643894433975, -0.03130701556801796, 0.017148062586784363, 0.014814457856118679, 0.004870417062193155, -0.015142211690545082, 0.023834234103560448, 0.009891600348055363, -0.03662973269820213, 0.012690615840256214, -0.02113354578614235, -0.0005215377314016223, 0.004031368065625429, 0.009603177197277546, -0.03191008046269417, 0.025315679609775543, -0.003969094716012478, 0.010153803043067455, -0.019783200696110725, 0.005539034027606249, -0.0061978185549378395, -0.015640396624803543, -0.03112347237765789, -0.015994369983673096, -0.01907525397837162, -0.03044174425303936, 0.021199095994234085, -0.022379009053111076, 0.0073678987100720406, 0.011779461055994034, 0.01029145997017622, -0.006578012835234404, 0.010022701695561409, 0.0215924009680748, -0.02150063030421734, 0.009295089170336723, 0.008298718370497227, 0.03382416069507599, -0.015050441026687622, -0.013378897681832314, 0.011078068055212498, 0.010822420939803123, -0.03912065923213959, -0.004405007231980562, -0.009354084730148315, -0.0031890415120869875, 0.011373046785593033, 0.003552848007529974, -0.026272719725966454, -0.014827568084001541, 0.015522405505180359, 0.003128407057374716, 0.02396533638238907, -0.00036954207462258637, -0.035476040095090866, 0.017502037808299065, 0.029052069410681725, -0.019560329616069794, -0.0061912634409964085, -0.008095511235296726, 0.01448670495301485, -0.010193133726716042, -0.007223687134683132, 0.03455832973122597, 0.020097844302654266, 0.03471565246582031, 0.03303755447268486, -0.009085327386856079, 0.007158136460930109, 0.050683800131082535, -0.038543812930583954, -0.004762258380651474, -0.03345707803964615, -0.011366491205990314, 0.009177098050713539, 0.004287015646696091, -0.024437300860881805, 0.029052069410681725, -0.00942619051784277, -0.022379009053111076, -0.024030886590480804, -0.010769980028271675, 0.010848640464246273, 0.02098933421075344, -0.039173100143671036, -0.023204948753118515, 0.0012667672708630562, 0.008947670459747314, 0.005053958855569363, 0.018498407676815987, -0.0109994076192379, 0.004195244982838631, -0.009321309626102448, 0.01752825640141964, 0.0038576587103307247, 0.03482053056359291, 0.0025466447696089745, -0.002182838274165988, -0.02427997998893261, 0.0041296943090856075, -0.03209362179040909, -0.027636175975203514, -0.0026662747841328382, 0.01512910146266222, -0.010501221753656864, -0.013988519087433815, -0.015823939815163612, -0.028422784060239792, 0.006073272321373224, -0.012834827415645123, -0.005440708249807358, -0.006276479456573725, -0.0014290052931755781, 0.0018501684535294771, 0.008836233988404274, -0.0007263837032951415, 0.004922857508063316, -0.0001102071109926328, -0.02359825186431408, -0.01368698664009571, -0.024017777293920517, -0.0035135175567120314, 0.002882592147216201, 0.009321309626102448, 0.00821350235491991, -0.012526738457381725, 0.0035921784583479166, -0.03896333649754524, 0.012723390944302082, 0.007420339155942202, -0.01184501126408577, 0.001702679437585175, -0.0029235612601041794, 0.02172350138425827, 0.012526738457381725, 0.014355603605508804, 0.003457799321040511, -0.028580104932188988, -0.013018368743360043, 0.024974817410111427, -0.03455832973122597, 0.003995315171778202, 0.015574846416711807, -0.010756869800388813, -0.008495370857417583, 0.034846752882003784, -0.0030054994858801365, 0.026128508150577545, 0.018170654773712158, -0.0038281609304249287, -0.011445152573287487, 0.0031316846143454313, 0.04121828079223633, -0.013831197284162045, -0.0025761425495147705, -0.017764240503311157, -0.026757795363664627, -0.026128508150577545, -0.004906469956040382, -0.01195644773542881, 0.0006747625302523375, 0.013909858651459217, 0.027688615024089813, 0.003118574619293213, 0.032198503613471985, 0.003249675966799259, -0.018550848588347435, -0.019770091399550438, -0.003105464391410351, 0.029183171689510345, 0.02810814045369625, 0.01966520957648754, -0.02920939214527607, -0.00438206410035491, -0.015850158408284187, -0.025315679609775543, 0.0031366010662168264, 0.028684986755251884, 0.007754647638648748, -0.016191022470593452, 0.00721057690680027, 0.026495592668652534, -0.00933441985398531, 0.002780988346785307, -0.001681375433690846, -0.002566309878602624, -0.010756869800388813, -0.010127583518624306, 0.013254351913928986, 0.02737397328019142, -0.012539848685264587, 0.0032480373047292233, 0.02277231402695179, 0.02104177512228489, -0.006823827978223562, 0.0034938522148877382, 0.006250259466469288, 0.010343900881707668, -0.019730761647224426, 0.024712614715099335, 0.005968391429632902, 0.01747581735253334, 0.007977520115673542, 0.02319183759391308, -0.02989111840724945, 0.00641085859388113, -0.004798311274498701, 0.016086142510175705, 0.008305273950099945, -0.016256574541330338, 0.017646249383687973, -0.006597678177058697, 0.007741537876427174, -0.0008230709936469793, -0.024424191564321518, 0.00025462350458838046, 0.0013921329518780112, -0.003569235559552908, 0.0037331124767661095, 0.020923784002661705, 0.028999630361795425, 0.005486593581736088, 0.017606917768716812, 0.029812458902597427, -0.011949893087148666, 0.011222279630601406, 0.011858121491968632, -0.024712614715099335, 0.009963706135749817, -0.0179740022867918, 0.004073976073414087, 0.004601659253239632, -0.012906933203339577, -0.0004371412214823067, 0.015810828655958176, -0.023676913231611252, 0.014106510207057, 0.003949429839849472, -0.024450412020087242, -0.005883175414055586, 0.02742641232907772, 0.014394933357834816, -0.03600044548511505, -0.017777349799871445, 0.02633827179670334, 0.007597326301038265, 0.011373046785593033, 0.020648470148444176, -0.016256574541330338, 0.020753351971507072, 0.03154299780726433, -0.02565654367208481, 0.01807888224720955, -0.010927301831543446, -0.007649766746908426, 0.018996592611074448, 0.01432938314974308, 0.026797126978635788, -0.009386859834194183, -0.02802947908639908, -0.014945559203624725, 0.020150285214185715, 0.0013355955015867949, -0.0013667320599779487, 0.003972372505813837, 0.028449004516005516, 0.00529321888461709, -0.034532107412815094, -0.005883175414055586, 0.002794098574668169, -0.025813866406679153, -0.000372409907868132, -0.01097974181175232, -0.032880231738090515, 0.022169247269630432, 0.006089659873396158, -0.005535756703466177, 0.006981149781495333, -0.02665291540324688, 0.0219988152384758, 0.02053047902882099, -0.015823939815163612, 0.0032037904020398855, -0.03125457465648651, 0.01948166824877262, 0.05149662867188454, 0.010193133726716042, -0.006296144798398018, 0.03280156850814819, 0.010075142607092857, -0.003000583266839385, -0.0036085660103708506, -0.007282682694494724, 0.00969494879245758, 0.001158608589321375, -0.014342493377625942, 0.004247685428708792, 0.0041854120790958405, -0.02633827179670334, 0.00015906286716926843, 0.010003036819398403, 0.004041200503706932, -0.008226612582802773, 0.0007702207076363266, 0.01651877723634243, -0.002559754764661193, 0.012998703867197037, 0.025800755247473717, 0.030100882053375244, 0.02687578648328781, 0.025355011224746704, 0.008947670459747314, 0.028632545843720436, -0.005152285099029541, -0.015732167288661003, -0.02277231402695179, 0.015561736188828945, -0.011064957827329636, 0.02692822739481926, -0.0083773797377944, 0.0030169710516929626, -0.008206947706639767, -0.0068959337659180164, 0.015509295277297497, 0.019324345514178276, -0.0017469261074438691, -0.012861046940088272, -0.003624953795224428, 0.002322133630514145, 0.003929764498025179, -0.0307563878595829, -0.014840678311884403, 0.0264300424605608, -0.000994731904938817, -0.0026482483372092247, -0.000802996102720499, -0.017410265281796455, -0.022025035694241524, -0.004064143635332584, -0.03280156850814819, 0.031516775488853455, 0.004303403664380312, -0.021566180512309074, -0.0022746094036847353, -0.0351351760327816, -0.03012710250914097, -0.0057225762866437435, 0.00605688476935029, -0.011563143692910671, -0.04153292253613472, 0.007833308540284634, -0.011150173842906952, 0.006745167076587677, -0.04158536344766617, 0.005358769558370113, -0.007866083644330502, -0.02779349684715271, -0.020045403391122818, 0.015483075752854347, 0.028370343148708344, -0.006679616402834654, 0.005856954958289862, -0.002025516703724861, 0.013700095936655998, 0.0029760017059743404, -0.014093400910496712, -0.006637008395045996, -0.017921561375260353, -0.028003258630633354, -0.03618398681282997, 0.01426383201032877, 0.01953410916030407, -0.004975297953933477, -0.023532701656222343, -0.003910099156200886, -0.00938030518591404, -0.03298511356115341, 0.012015443295240402, -0.012323531322181225, 0.03371927887201309, -0.01271028071641922, 0.0036544515751302242, -0.007846418768167496, 0.014762017875909805, 0.0009250842267647386, 0.0007136832573451102, -0.005630805157124996, -0.0026793847791850567, -0.016492556780576706, 0.01879994012415409, 0.009262314066290855, 0.006968039553612471, -0.009327864274382591, 0.0017878953367471695, -0.02209058590233326, -0.009806384332478046, -0.017698688432574272, -0.002866204362362623, -0.0052801091223955154, -0.012743055820465088, -0.02431930974125862, 0.013660766184329987, -0.015719057992100716, 0.006446911487728357, -0.0021500629372894764, 0.02167106233537197, -0.031647879630327225, 0.026980668306350708, -0.010671653784811497, -0.007269572466611862, 0.0023565476294606924, 0.007603881414979696, -0.0175675880163908, -0.04300126060843468, 0.007328568492084742, 0.007394119165837765, 0.004326346330344677, 0.006155210547149181, -0.0025695874355733395, -0.004080531187355518, -0.03537115827202797, 0.006686171516776085, -0.007590771187096834, -0.011779461055994034, -0.020202726125717163, -0.022693652659654617, 0.012965928763151169, 0.003316865535452962, -0.032565586268901825, 0.021618621423840523, -0.0210811048746109, -0.006777942180633545, 0.0002460199757479131, 0.0030644952785223722, 0.02095000445842743, -0.003318504197522998, -0.0014707938535138965, -0.016898971050977707, -0.0009390137856826186, -0.017095621675252914, 0.007898859679698944, 0.026482483372092247, -0.02976001799106598, 0.03655106946825981, -0.0017157895490527153, 0.03550225868821144, 0.006528849713504314, 0.010442226193845272, 0.033063773065805435, -0.007839864119887352, -0.007472779601812363, 0.0035495704505592585, -0.003788830479606986, -0.022601881995797157, 0.002615473000332713, -0.020753351971507072, 0.02299518510699272, -0.004031368065625429, -0.007807088550180197, 0.012264535762369633, 0.0041854120790958405, -0.008613361977040768, 0.000899683334864676, -0.03437478840351105, -0.02829168178141117, -0.003028442384675145, -0.005155562423169613, -0.0048966375179588795, -0.0023549089673906565, -0.020333826541900635, -0.031778980046510696, 0.011510702781379223, 0.005263721104711294, 0.040274351835250854, -0.013503444381058216, 0.036760833114385605, 0.011255055665969849, 0.017790459096431732, -0.011989222839474678, 0.015365083701908588, -0.018511516973376274, -0.0021041773725301027, -0.017397155985236168, -0.021212207153439522, 0.013241241686046124, -0.019599659368395805, 0.03474187105894089, 0.0031874028500169516, 0.03298511356115341, 0.010481556877493858, 0.004854029510170221, -0.02034693770110607, -0.03956640139222145, -0.003457799321040511, -0.01980942115187645, -0.0049490779638290405, -0.02573520503938198, -0.008462595753371716, -0.007643211632966995, -0.03038930520415306, 0.03180519863963127, -0.0002718305622693151, 0.010658543556928635, -0.007387564051896334, -0.015299533493816853, 0.027190430089831352, -0.005624250043183565, 0.02865876629948616, -0.007151581346988678, 0.03471565246582031, 0.01570594683289528, 0.006148655898869038, -0.04373542591929436, -0.02492237649857998, 0.0025908914394676685, -0.028947189450263977, 0.041690245270729065, 0.02665291540324688, 0.0041985223069787025, -0.014290052466094494, -0.006843493320047855, -0.006407580804079771, -0.003962539602071047, -0.015456855297088623, 0.0008255291031673551, 0.009603177197277546, 0.002117287600412965, -0.018013332039117813, -0.03718035668134689, 0.009760499000549316, 0.04213599115610123, -0.015561736188828945, 0.018563957884907722, 0.00013048686378169805, -0.035292498767375946, -0.016440115869045258, 0.02258877083659172, 0.011176394298672676, 0.022929634898900986, -0.015365083701908588, 0.022156136110424995, -0.017357826232910156, 0.008397044613957405, -0.00595528120175004, -0.022077476605772972, 0.00034455087734386325, 0.005181782878935337, -0.021461298689246178, 0.036577291786670685, 0.019193245097994804, -0.004991685971617699, -0.007669432088732719, 0.0019173580221831799, -0.01442115381360054, 0.020648470148444176, -0.04973987117409706, -0.0020451818127185106, 0.03801940754055977, -0.00302352593280375, -0.008141396567225456, -0.022431449964642525, -0.021343307569622993, -0.012087549082934856, -0.01802644319832325, -0.0023712965194135904, 0.02784593775868416, -0.01651877723634243, -0.022785423323512077, 0.019966743886470795, 0.01903592422604561, -0.021710392087697983, 0.009157433174550533, 0.014067180454730988, 0.012153100222349167, -0.015994369983673096, -0.0060765501111745834, 0.026718465611338615, 0.007249907590448856, 0.044102512300014496, -0.028449004516005516, 0.004159192088991404, 0.002417182084172964, 0.008547810837626457, -0.016898971050977707, 0.038727354258298874, 0.0324869267642498, -0.00024294728063978255, -0.017593808472156525, 0.02970757707953453, -0.019206354394555092, -0.008049625903367996, 0.029996000230312347, -0.011458262801170349, -0.025669654831290245, 0.010973187163472176, 0.006243704352527857, -0.009091882035136223, 0.010769980028271675, 0.002379490528255701, 0.005666858050972223, 0.015247092582285404, -0.005178505089133978, -0.005234223324805498, -0.031071031466126442, 0.017502037808299065, 0.012382526881992817, -0.0034250239841639996, 0.018498407676815987, -0.028317902237176895, 0.020242055878043175, 0.008816569112241268, -0.012625064700841904, 0.01049466710537672, -0.004503333009779453, -0.025984298437833786, -0.017148062586784363, 0.030467964708805084, -0.017764240503311157, 0.0034971297718584538, -0.015168432146310806, 0.0009480270091444254, 0.000707947532646358, 0.015102881006896496, 0.02483060583472252, 0.003264424856752157, 0.012579179368913174, -0.00787263922393322, 0.019350565969944, 0.010029257275164127, 0.0008456040523014963, -0.035895563662052155, -0.012126879766583443, -0.02117287553846836, -0.037495002150535583, -0.01124850008636713, 0.017318494617938995, 0.02345404028892517, 0.019783200696110725, -0.032880231738090515, -0.024345530197024345, -0.01042911596596241, -0.04386653006076813, -0.029550256207585335, -0.020228946581482887, 0.02633827179670334, 0.016453225165605545, 0.016964521259069443, -0.0041985223069787025, 0.040143247693777084, -0.003729834919795394, 0.02907828986644745, -0.029550256207585335, 0.022667432203888893, 0.0112026147544384, -0.019022813066840172, -0.010153803043067455, 0.009059106931090355, -0.017869120463728905, -0.013542775064706802, 0.018013332039117813, -0.004880249500274658, 0.025210799649357796, 0.010370120406150818, 0.012729945592582226, -0.010828975588083267, -0.0006276479689404368, -0.003533182665705681, -0.010206243954598904, 0.00398220494389534, 0.014906229451298714, -0.032880231738090515, -0.0136214355006814, -0.0015789525350555778, 0.005552144255489111, -0.020596029236912727, -0.007249907590448856, 0.018655728548765182, -0.013949189335107803, -0.012703726068139076, -0.006745167076587677, 0.0045819939114153385, -0.00017452874453738332, -0.005519369151443243, 0.02920939214527607, 0.012303866446018219, 0.00449350057169795, 0.023073846474289894, 0.03765232115983963, -0.028868528082966805, 0.009812939912080765, 0.028186801820993423, -0.019271906465291977, -0.008777238428592682, 0.018721280619502068, -0.013765647076070309, 0.0237293541431427, -0.018288645893335342, 0.006394470576196909, -0.0017436486668884754, -0.02218235656619072, -0.02304762601852417, 0.0251059178262949, -0.00853470154106617, -0.006863158196210861, -0.008757573552429676, -0.03135945647954941, 0.02433241903781891, 0.013234686106443405, -0.012526738457381725, -0.0076759872026741505, 0.004096918739378452, 0.000737035705242306, -0.027950817719101906, -0.04984475299715996, 0.011635249480605125, -0.021461298689246178, -0.024843715131282806, 0.017279164865612984, -0.0010668376926332712, 0.0011758157052099705, 0.011694245040416718, 0.20137174427509308, 0.01966520957648754, 0.012362862005829811, 0.04098229855298996, 0.006427246145904064, 0.01246118824928999, 0.015456855297088623, -0.004991685971617699, 0.007616991177201271, 0.004516443237662315, -0.011930227279663086, 0.02545989118516445, -0.0026515258941799402, 0.0023417987395077944, 0.01024557463824749, 0.0018042830051854253, -0.04719650372862816, 0.005929060745984316, -0.008567476645112038, 0.03794074431061745, 0.014394933357834816, -0.004742593038827181, -0.002254944061860442, -0.00894111581146717, 0.017449596896767616, -0.03500407561659813, -0.0016764590982347727, 0.0007874277653172612, 0.005427598021924496, 0.020058514550328255, -0.009655618108808994, 0.014198281802237034, -0.004703262820839882, 0.006804162636399269, -0.0048966375179588795, -0.02934049256145954, 0.005116232205182314, -0.015522405505180359, -0.0032595086377114058, 0.02414887771010399, 0.029996000230312347, 0.016636768355965614, -0.003985482733696699, -0.00453938590362668, -0.01206788420677185, 0.012467742897570133, -0.005286663770675659, 0.005073624197393656, 0.007197466678917408, 0.018459077924489975, -0.03012710250914097, 0.01355588436126709, 0.008862454444169998, 0.028632545843720436, -0.012723390944302082, 0.012520183809101582, 0.010232464410364628, 0.016780979931354523, -0.013909858651459217, -0.012657839804887772, -0.01661054790019989, 0.01512910146266222, -0.002020600251853466, -0.013038034550845623, -0.00802996102720499, -0.030100882053375244, -0.01807888224720955, 0.005230946000665426, -0.011982668191194534, -0.005991334095597267, 0.009727723896503448, 0.005919228307902813, -0.021802162751555443, 0.015902599319815636, -0.02336226962506771, -0.008777238428592682, 0.03673461079597473, 0.007341678254306316, 0.021054884418845177, 0.011130508966743946, 0.006522294599562883, 0.0036675615701824427, -0.011097733862698078, -0.04079875722527504, -0.01280205138027668, 0.0034938522148877382, 0.00721057690680027, -0.001628934871405363, 0.0014331021811813116, 0.004034645389765501, 0.007662876974791288, -0.0038806013762950897, -0.007748092524707317, -0.024306200444698334, -0.0049654655158519745, 0.005050681531429291, -0.004247685428708792, 0.0010881415801122785, -0.022890305146574974, 0.0024974816478788853, -0.013765647076070309, 0.05883830785751343, 0.038360267877578735, 0.011484482325613499, 0.0046049365773797035, -0.021435078233480453, 0.0028055699076503515, 0.008731353096663952, 0.009026331827044487, -0.015719057992100716, -0.009688393212854862, 0.0027613232377916574, 0.017515147104859352, 0.00016787124332040548, -0.003434856655076146, 0.0010143971303477883, -0.0134182283654809, -0.019652100279927254, 0.009570402093231678, 0.002777711022645235, 0.01712184213101864, -0.027950817719101906, -0.0058077918365597725, 0.02150063030421734, -0.017960891127586365, 0.012631620280444622, 0.0053849900141358376, -0.01848529651761055, -0.010573327541351318, -0.04035301133990288, 0.01488000899553299, -0.022379009053111076, 0.007544885389506817, -0.02168417163193226, 0.0013970492873340845, 0.02915695123374462, 0.024083327502012253, -0.019612768664956093, -0.018773719668388367, -0.010940412059426308, -0.02450285106897354, 0.0014232696266844869, 0.022982075810432434, 0.00039043635479174554, 0.022982075810432434, -0.003605288453400135, 0.02766239456832409, 0.006273202132433653, -0.004978575743734837, -0.018695060163736343, -0.021146655082702637, -0.0019665209110826254, -0.002730186562985182, 0.008226612582802773, 0.022169247269630432, -0.02889474853873253, -0.021421968936920166, -0.020504258573055267, 0.0021041773725301027, 0.02400466613471508, -0.05742241442203522, -0.01145170722156763, 0.012716835364699364, -0.01215965487062931, -0.018957262858748436, -0.01725294440984726, -0.16476823389530182, 0.023113176226615906, -0.003375861095264554, -0.014526034705340862, 0.020845122635364532, 0.021212207153439522, -0.012375972233712673, 0.006669783964753151, -0.0016797366552054882, -0.017606917768716812, 0.004814698826521635, 0.028868528082966805, -0.027269091457128525, -0.007800533436238766, 0.008049625903367996, 0.0026498869992792606, -0.01241530291736126, 0.036079104989767075, 0.023113176226615906, 0.009183652698993683, 0.027714835479855537, -0.019756980240345, 0.012120324186980724, -0.024804385378956795, 0.01620413362979889, 0.0004887623945251107, -0.02920939214527607, 0.007689096964895725, 0.005217835772782564, -0.007911969907581806, -0.00509984465315938, -0.011510702781379223, 0.025040367618203163, 0.0034512444399297237, -0.005617694929242134, -0.004405007231980562, -0.014290052466094494, 0.003752777585759759, -0.01830175518989563, 0.04276527836918831, 0.03322109580039978, 0.0006759915850125253, 0.026954447850584984, 0.029681356623768806, 0.007184356916695833, 0.035843122750520706, 0.01186467707157135, -0.005558699369430542, 0.0006829563644714653, 0.0007411325932480395, 0.036944374442100525, -0.04412873089313507, 0.02742641232907772, 0.0069024888798594475, -0.007040145341306925, 0.01907525397837162, 0.004781923722475767, 0.02095000445842743, 0.008180727250874043, -0.04268661513924599, 0.009550737217068672, -0.029812458902597427, 0.008882120251655579, -0.020936893299221992, -0.009059106931090355, -0.015483075752854347, 0.005552144255489111, 0.0038871564902365208, -0.018931042402982712, 0.02176283299922943, 0.024817494675517082, -0.027872158214449883, -0.005316161550581455, 0.008685467764735222, -0.0030907155014574528, -0.00428046053275466, 0.010298014618456364, 0.005525923799723387, 0.03395526111125946, 0.012769276276230812, 0.0058077918365597725, 0.001915719243697822, -0.03353573754429817, 0.0342174656689167, -0.03691815584897995, 0.004421394784003496, 0.012330086901783943, 0.01898348331451416, 0.008351159282028675, -0.001105348696000874, -0.02500103786587715, -0.020425599068403244, 0.018327975645661354, 0.00012147364031989127, -0.02091067284345627, 0.008633026853203773, 0.013018368743360043, 0.012828271836042404, -0.009773609228432178, 0.014932449907064438, -0.001605992205440998, 0.0077218725346028805, -0.015443745069205761, 0.011982668191194534, 0.005758629180490971, 0.03426990658044815, 0.007374453824013472, -0.0017059569945558906, 0.0023483538534492254, -0.02176283299922943, -0.040405452251434326, 0.006843493320047855, 0.028947189450263977, 0.022261017933487892, -0.021303977817296982, 0.02286408469080925, -0.03057284653186798, -0.005758629180490971, 0.0038347160443663597, 0.011038738302886486, 0.052964966744184494, 0.0041624694131314754, -0.03253936767578125, -0.016400784254074097, -0.010901081375777721, -0.013503444381058216, -0.10089563578367233, -0.02450285106897354, -0.0031824863981455564, 0.00282851280644536, 0.03227716311812401, 0.009760499000549316, -0.02500103786587715, 0.018183764070272446, -0.0299435593187809, 0.028213020414114, -0.004899914842098951, 0.0005031016189604998, 0.007662876974791288, 0.007426894269883633, 0.0299435593187809, -0.023467151448130608, -0.010756869800388813, -0.0022991907317191362, -0.015483075752854347, 0.01834108680486679, 0.02194637432694435, 0.007695652078837156, 0.019520998001098633, -0.037075474858284, -0.034794311970472336, -0.015496185049414635, -0.043604325503110886, 0.004283738322556019, -0.0018223094521090388, 0.01839352585375309, 0.031071031466126442, 0.005414487794041634, 0.02729531191289425, -0.02150063030421734, -0.0228116437792778, 0.011084623634815216, -0.028081919997930527, 0.009498296305537224, -0.014447374269366264, -0.02518457919359207, 0.005679968278855085, 0.02036004699766636, 0.0015568290837109089, -0.016400784254074097, 0.0022565829567611217, -0.03518761694431305, 0.004434505011886358, -0.011071513406932354, -0.0070532551035285, -0.01423761248588562, -0.02058291994035244, -0.010704428888857365, 0.005804514512419701, -0.021985704079270363, -0.007557995617389679, -7.329643722187029e-06, 0.0010012869024649262, -0.0049359677359461784, -0.02547300234436989, -0.01866883970797062, -0.03773098438978195, 0.008488815277814865, -0.03628886863589287, 0.03138567507266998, 0.030231982469558716, 0.026823345571756363, -0.011425486765801907, -0.010160358622670174, -0.0018468910129740834, -0.02126464620232582, -0.017305385321378708, 0.01637456566095352, -0.009747388772666454, 0.00262366677634418, -0.021146655082702637, 0.019638989120721817, -0.012100659310817719, -0.03204118087887764, 0.040824975818395615, -0.006286312360316515, -0.019888082519173622, -0.03662973269820213, -0.005502981133759022, -0.0023270498495548964, 0.027269091457128525, 0.015732167288661003, -0.01093385647982359, -0.022156136110424995, 0.03746877983212471, -0.01574527844786644, 0.0027023276779800653, 0.007839864119887352, 0.021054884418845177, -0.0028940634801983833, 0.005706188268959522, -0.01090763695538044, -0.01949477754533291, -0.027216650545597076, -0.003916654270142317, 0.005342382006347179, -0.015181542374193668, 0.006296144798398018, -0.04486289992928505, 0.02181527391076088, -0.003428301541134715, 0.01916702464222908, 0.026443151757121086, 0.006738611962646246, 0.010625768452882767, -0.010645433329045773, 0.007931634783744812, 0.0268364567309618, -0.025263240560889244, 0.014224502258002758, -0.018052663654088974, -0.012920043431222439, -0.02043870836496353, -0.02737397328019142, 0.025210799649357796, 0.002191032050177455, -0.006725501734763384, 0.008233168162405491, -0.004300125874578953, -0.0022500278428196907, 0.008390489965677261, 0.011019072495400906, -0.033247314393520355, 0.008259388618171215, -0.014617806300520897, 0.009026331827044487, 0.009806384332478046, -0.01916702464222908, 0.006823827978223562, -0.02538123168051243, -0.010121027939021587, 0.04512510076165199, 0.0006202735239639878, -0.025813866406679153, 0.0045656063593924046, 0.014198281802237034, 0.02802947908639908, 0.005335826892405748, -0.022746093571186066, -0.04153292253613472, 0.01259884424507618, -0.015496185049414635, -0.0016764590982347727, -0.014250721782445908, -0.006568179931491613, -0.011058403179049492, 0.005286663770675659, 0.01712184213101864, 0.0343223474919796, 0.0003633966844063252, 0.004758981056511402, -0.027164209634065628, 0.004031368065625429, -0.02729531191289425, 0.008442929945886135, -0.002538450760766864, 0.0016928468830883503, -0.0005690620164386928, 0.03209362179040909, -0.009177098050713539, 0.011412376537919044, -0.006414135918021202, 0.01693830080330372, 0.00962939765304327, -0.034794311970472336, 0.020202726125717163, -0.015496185049414635, -0.006702559068799019, 0.005781571846455336, -0.0015297894133254886, 0.011143619194626808, 0.01596815139055252, 0.013752536848187447, -0.009360640309751034, 0.009924376383423805, -0.006532127037644386, 0.0009103353368118405, 0.02382112480700016, 0.02249700017273426, -0.011700799688696861, 0.005640637595206499, 0.00787263922393322, -0.005614417605102062, 0.0241357684135437, -0.003693782025948167, -0.016767868772149086, 0.009183652698993683, 0.0038576587103307247, 0.018170654773712158, 0.003854381153360009, -0.014093400910496712, -0.012126879766583443, 0.011412376537919044, 0.01019968930631876, -0.009026331827044487, -0.005358769558370113, -0.00931475404649973, 0.029130730777978897, 0.0017387323314324021, 0.009399970062077045, -0.020740240812301636, -0.03180519863963127, -0.01371320616453886, -0.0049654655158519745, -0.022942744195461273, -0.017593808472156525, -0.0023041071835905313, 0.005342382006347179, 0.0014093400677666068, 0.026233389973640442, 0.015391304157674313, 0.0073678987100720406, 0.004985130857676268, 0.005185060203075409, -0.001984547358006239, -0.014526034705340862, -0.00931475404649973, 0.0360528863966465, 0.010763425379991531, 0.004021535627543926, 0.00907877180725336, -0.01879994012415409, 0.031464334577322006, 0.03560714051127434, 0.008069290779531002, -0.007531775627285242, 0.005483316257596016, 0.0007739079301245511, 0.006224039010703564, -0.01592881977558136, 0.0038576587103307247, -0.016728539019823074, -0.022654321044683456, -0.02131708711385727, -0.0158370491117239, 0.008855899795889854, 0.022982075810432434, 0.06895933300256729, 0.013936079107224941, -0.010724094696342945, 0.02299518510699272, -0.002844900358468294, 0.018655728548765182, -0.013313347473740578, 0.01090763695538044, -0.02043870836496353, -0.026797126978635788, 0.0018468910129740834, 0.0033447244204580784, 0.002815402578562498, 7.205455767689273e-05, -0.02538123168051243, 0.018183764070272446, -0.00037507290835492313, 0.008836233988404274, 0.005794682074338198, 0.0070008146576583385, -0.0007460489287041128, -0.015024220570921898, -0.009327864274382591, 0.005129342433065176, -0.02468639425933361, -0.020006073638796806, 0.006325642578303814, 0.022693652659654617, -0.008436375297605991, -0.0368657149374485, -0.010389786213636398, 0.0006067536887712777, -0.030966151505708694, -0.005083456635475159, -0.015430634841322899, -0.0008255291031673551, 0.010874860920011997, -0.022234797477722168, -0.012271091341972351, -0.014984889887273312, -0.010278349742293358, 0.028081919997930527, 0.005103121977299452, -0.00842326506972313, 0.0020091289188712835, -0.01574527844786644, 0.0026351381093263626, -0.004834364168345928, 0.0002644561172928661]" +53,"Azure revenue will continue to be driven by strong growth in consumption, with some impact from the Q1 trends noted earlier. And our per user business should continue to benefit from Microsoft 365 suite momentum, though we expect moderation in growth rate given the size of the installed base. In our on-premise server business, we expect revenue to decline low single digits, as demand for our hybrid solutions, including strong annuity purchasing from the SQL Server 2022 launch, will be more than offset by unfavorable FX impact. And in enterprise services, we expect revenue growth to be in the low single digits, driven by enterprise support.","[0.005428245756775141, -0.030461037531495094, -0.010542190633714199, -0.007287861779332161, 0.0006421077996492386, -0.006220547016710043, -0.04308547452092171, -0.015767449513077736, -0.018975943326950073, -0.03352547436952591, 0.03551604971289635, 0.02173917554318905, 0.0028074311558157206, -0.0034900542814284563, -0.012617888860404491, -0.0048160129226744175, 0.012513121590018272, -0.023192819207906723, 0.03664229437708855, -0.026846570894122124, -0.009442135691642761, 0.0033558213617652655, -0.026898954063653946, -0.009422492235898972, -0.005768738687038422, 0.02366427145898342, 0.0021313559263944626, -0.022983284667134285, 0.016199614852666855, 0.0008078526007011533, 0.008597451262176037, -0.015204326249659061, 0.0042594377882778645, 0.016291284933686256, -0.015125751495361328, -0.0029678556602448225, -0.005775286816060543, 0.026073914021253586, 0.015099559910595417, 0.006616697646677494, 0.03061818704009056, 0.0014200854348018765, -0.016540106385946274, 0.01991884596645832, -0.014994792640209198, 0.015269805677235126, -0.0010975991608574986, 0.004567191004753113, 0.0015469518257305026, -0.0067247385159134865, 0.0100707383826375, 0.013672107830643654, -0.03509698063135147, -0.02126772329211235, 0.005045190919190645, 0.015715066343545914, -0.0285752285271883, 0.014601916074752808, -0.0032379585318267345, 0.011812491342425346, 0.00098382867872715, 0.019853366538882256, -0.027868051081895828, 0.009016519412398338, -0.041513968259096146, 0.0051663280464708805, -0.012801230885088444, 0.004249615594744682, 0.00466213608160615, -0.00011622600868577138, 0.033551666885614395, 0.03326355665922165, 0.019630737602710724, -0.004714519716799259, 0.008342080749571323, -0.03022531047463417, -0.0034114790614694357, -0.02327139303088188, -0.005880054086446762, 0.010941614396870136, 0.007189642637968063, -0.007039039861410856, -0.01647462695837021, -0.0027386776637285948, 0.0035980953834950924, 0.021621311083436012, -0.016802024096250534, -0.00016891649283934385, -0.004757081624120474, 0.018163997679948807, 0.010797560214996338, -4.07200277550146e-05, 0.014379285275936127, 0.042325910180807114, -0.005428245756775141, 0.011642244644463062, -0.017758024856448174, 0.023886900395154953, -0.0010272087529301643, -0.020665312185883522, -0.0013038594042882323, -0.010398135520517826, -0.022813037037849426, -0.008053971454501152, -0.03365643322467804, 0.00605357438325882, 0.012860162183642387, 0.006312218029052019, 0.04135681688785553, -0.015610299073159695, -0.013829258270561695, -0.00891830027103424, 0.014981696382164955, -0.0019971230067312717, 0.0017433901084586978, 0.002062602434307337, 0.00878079328685999, 0.0062336428090929985, 0.01856997050344944, -0.011026738211512566, 0.007818245328962803, -0.0018563421908766031, 0.007032492198050022, -0.015112655237317085, 0.004092465154826641, 0.015505531802773476, -0.001302222372032702, -0.02378213405609131, 0.01825566776096821, -0.011426162905991077, 0.0059880949556827545, 0.002920383121818304, 0.007438464555889368, 0.004040081519633532, -0.0005291557172313333, 0.023899996653199196, -0.03360404819250107, 0.017325861379504204, -0.015505531802773476, -0.020547449588775635, -0.01145890261977911, 0.007824793457984924, -0.0010542189702391624, -0.005834218114614487, 0.019761696457862854, 0.026623941957950592, 0.03179681673645973, -0.0025258695241063833, 0.012382162734866142, -0.01454953197389841, 0.011013641953468323, -0.038947172462940216, 0.021804654970765114, 0.0002911789051722735, 0.04266640543937683, -0.022276107221841812, -0.013410190120339394, 0.027684709057211876, -0.01853068172931671, -0.007733121979981661, -0.017417531460523605, 0.02057364024221897, -0.0027337667997926474, 0.0015199416084215045, 0.003177389968186617, 0.01744372397661209, 0.019853366538882256, 0.0027861502021551132, -0.012997669167816639, -0.01917238160967827, 0.009278437122702599, 0.0015281265368685126, -0.004193958360701799, 0.009009971283376217, 0.0016124312533065677, 0.022249914705753326, 0.010057642124593258, -0.016121039167046547, -0.01974860019981861, -0.028732379898428917, 0.03742804750800133, -0.00995942298322916, 0.013645916245877743, 0.010011807084083557, 0.016946079209446907, -0.00235889689065516, 0.031377747654914856, 0.0053922319784760475, 0.003666848875582218, -0.006757478695362806, -0.011026738211512566, 0.011648792773485184, -0.0011810854775831103, -0.02044268138706684, -0.6512323617935181, -0.014313805848360062, 0.01465429924428463, -0.01709013432264328, 0.021411778405308723, -0.012041669338941574, 0.027815667912364006, -0.0022459449246525764, -0.01022134069353342, 0.015138846822082996, 0.006341684143990278, 0.018727120012044907, -0.006335136014968157, -0.008826629258692265, 0.0027141228783875704, -0.008964135311543941, -0.0032395953312516212, -0.0008377276244573295, -0.01504717580974102, 0.0043052732944488525, -0.007104519288986921, 0.024934571236371994, -0.013580436818301678, -0.009618930518627167, 0.009278437122702599, -0.0001008281105896458, -0.007536683697253466, -0.008754601702094078, -0.00995942298322916, -0.006413711234927177, -0.01952596940100193, 0.02917763963341713, 0.00878079328685999, 0.004632670432329178, 0.047407116740942, 0.0016991915181279182, -0.012919094413518906, 0.0075497799552977085, 0.0096975052729249, 0.04735473170876503, -0.02700372226536274, 0.018190188333392143, 0.009448683820664883, -0.008839724585413933, -0.00830934103578329, 0.02413572184741497, 0.004603204783052206, -0.026414407417178154, 0.012585149146616459, -0.011779751628637314, -0.0005205615889281034, 0.002324520144611597, 0.0029809516854584217, -0.023860709741711617, 0.0186485443264246, 0.01635676436126232, 0.011648792773485184, -0.01665797084569931, -0.002473485888913274, 0.007111067418009043, -0.0241750106215477, -0.01817709393799305, -0.003719232277944684, -0.030906297266483307, -0.046333253383636475, 0.027448982000350952, -0.004622848704457283, 0.018635449931025505, 0.004265985451638699, -0.007111067418009043, 0.003961506299674511, 0.00904271099716425, 0.012473833747208118, -0.020429586991667747, 0.010077286511659622, 0.016330573707818985, 0.005899697542190552, -0.009985614567995071, -0.01969621703028679, 0.011210080236196518, 0.0008037601364776492, -0.026165585964918137, -0.01158986147493124, -0.0003769160539377481, -0.013475669547915459, -0.008276601321995258, -0.019316434860229492, -0.01952596940100193, -0.003945136442780495, 0.014876929111778736, 0.0034900542814284563, 0.0038436432369053364, -0.006921177264302969, -0.03030388616025448, 0.037951886653900146, 0.017993750050663948, -0.027606133371591568, -0.006086314097046852, -0.002386725740507245, 5.315089219948277e-05, -0.003964780364185572, -0.013606628403067589, 0.03562081605195999, 0.02147725783288479, 0.031037256121635437, 0.027815667912364006, -0.012297038920223713, -0.015557915903627872, 0.030330078676342964, -0.033027831465005875, 0.008865916170179844, -0.03203254193067551, -0.006492286920547485, 0.00566397188231349, 0.0224856398999691, -0.02608701027929783, 0.016461532562971115, -0.01995813474059105, -0.027632324025034904, -0.02074388787150383, 0.0005766283138655126, 0.017024654895067215, 0.013606628403067589, -0.0312991738319397, -0.01109221763908863, 0.013436381705105305, 0.0136328199878335, 0.009081998839974403, 0.024083338677883148, -0.012545861303806305, 0.0005839947843924165, -0.007150355260819197, 0.02282613329589367, 0.011229724623262882, 0.03114202246069908, -0.00778550561517477, 0.004249615594744682, -0.020298626273870468, 0.013842354528605938, -0.020560545846819878, -0.023323778063058853, -0.007680738810449839, -0.005048464983701706, -1.5960613382048905e-05, -0.015426957048475742, -0.022983284667134285, -0.021241530776023865, 0.00800158828496933, -0.01413046382367611, -0.012427997775375843, -0.015295998193323612, 0.009003423154354095, -0.0051663280464708805, 0.029125256463885307, 0.0013955306494608521, 0.022970188409090042, 0.0024833078496158123, -0.03622322902083397, -0.0010771368397399783, -0.013606628403067589, -0.013141724281013012, 0.01804613508284092, -0.004966615699231625, 0.00967786181718111, -0.016815120354294777, -0.017155613750219345, -0.036170843988657, 0.019800983369350433, 0.010299916379153728, -0.00289746536873281, 0.0028188899159431458, -0.007379533257335424, 0.025248872116208076, 0.01528290193527937, -0.003964780364185572, 0.0002999776916112751, -0.03619703650474548, 0.006387519650161266, 0.027291832491755486, -0.023258298635482788, 0.016461532562971115, 0.03300163894891739, -0.009501066990196705, -0.008852820843458176, 0.02022005245089531, 0.012833970598876476, 0.011046381667256355, 0.04161873459815979, 0.0012883080635219812, 0.0067443824373185635, 0.004180862568318844, 0.046726129949092865, -0.023454736918210983, -0.006122327875345945, -0.01874021627008915, -0.02334996871650219, -0.035594623535871506, -0.0007636540103703737, -0.017810408025979996, 0.004004067741334438, 0.012637532316148281, 0.00919331330806017, -0.00378798577003181, 0.042430680245161057, 0.0017122874269261956, -0.011976189911365509, -0.020992709323763847, -0.01796755939722061, 0.01528290193527937, 0.029256215319037437, 0.031639665365219116, -0.03774235025048256, -0.00954690296202898, -0.020691504701972008, -0.028601421043276787, 0.011766655370593071, 0.03221588581800461, 0.015204326249659061, -0.012486930005252361, 0.0009699142538011074, 0.008944491855800152, -0.013659011572599411, 0.011079121381044388, 5.678295565303415e-05, -0.010941614396870136, -0.0037978077307343483, -0.00757597154006362, 0.022551119327545166, 0.02574651688337326, -0.007634902838617563, 0.007765861693769693, 0.03622322902083397, 0.03740185871720314, 0.011891067028045654, 0.002106801141053438, 0.018635449931025505, 0.016330573707818985, -0.018910463899374008, 0.030041968449950218, -0.01691988855600357, 0.016631778329610825, -0.003588273422792554, 0.01926405169069767, 0.0035555337090045214, 0.026414407417178154, -0.0010902327485382557, 0.030041968449950218, 0.003193759825080633, -0.018805695697665215, 0.018858078867197037, -0.006367875728756189, -0.00178267783485353, 0.020848654210567474, -0.01804613508284092, 0.004671958275139332, -0.014064984396100044, 0.0048814923502504826, 6.251240847632289e-05, 0.02713468112051487, 0.029256215319037437, -0.0027910612989217043, 0.017535394057631493, 0.00817183405160904, -0.025026243180036545, 0.008322437293827534, 0.006940820720046759, -0.01769254542887211, -0.00804742332547903, -0.011799395084381104, 0.001256386749446392, -0.002658465411514044, -0.025196488946676254, 0.014117367565631866, 0.002866362687200308, -0.018897367641329765, 0.009278437122702599, 0.012905998155474663, -0.010771368630230427, -0.01376377884298563, 0.023205913603305817, -0.0010231162887066603, -0.03554224222898483, 0.00302678719162941, 0.019578352570533752, 0.01048325840383768, -0.011858327314257622, 0.019237861037254333, -0.020678408443927765, 0.01056838221848011, 0.03404930979013443, -0.011989286169409752, 0.015217422507703304, -0.03465172275900841, 0.008531970903277397, 0.005899697542190552, 0.009618930518627167, 0.02661084569990635, -0.005886601749807596, -0.016540106385946274, -0.010188600979745388, 0.004367478657513857, -0.013043505139648914, -0.023245202377438545, 0.0158329289406538, 0.03535889834165573, -0.009815368801355362, -0.02469884604215622, -0.029518133029341698, -0.009664765559136868, -0.018753312528133392, 0.014890025369822979, -0.002024951856583357, -0.04015199467539787, 0.01626509428024292, 0.001491294358856976, -0.004311821423470974, -0.017731832340359688, -0.0339183509349823, 0.017535394057631493, 0.019028326496481895, -0.00503209512680769, -0.004917506128549576, -0.019159285351634026, 0.031063446775078773, 0.06621281057596207, 0.01795446313917637, -0.014038792811334133, 0.031980160623788834, 0.019578352570533752, 0.0041350265964865685, 0.00408919109031558, -0.01699846237897873, 0.004193958360701799, 0.0032035817857831717, -0.024725036695599556, 0.028418077155947685, 0.0014970237389206886, -0.014968600124120712, 0.028863338753581047, 0.0206129290163517, 0.005323478486388922, -0.01821638084948063, 0.0158329289406538, 0.0004775906854774803, 0.014195943251252174, 0.010843395255506039, 0.015230518765747547, 0.024947667494416237, 0.042247336357831955, 0.030591996386647224, 0.029780050739645958, 0.03205873444676399, -0.012676820158958435, -0.00631549209356308, -0.014012600295245647, 0.016631778329610825, -0.024842901155352592, 0.03661610558629036, -0.014405477792024612, 0.01635676436126232, 0.0020756982266902924, -0.010921970941126347, 0.009533806703984737, 0.01609484665095806, -0.0002109665801981464, -0.014850737527012825, 0.007811697665601969, -0.009487971663475037, 0.005123766604810953, -0.022367777302861214, -0.02678109146654606, 0.007032492198050022, -0.006626519374549389, -0.01579364202916622, -0.014641202986240387, -0.00013689296611119062, -0.03061818704009056, 0.0026224516332149506, -0.02291780523955822, 0.03630180284380913, 0.0032264995388686657, -0.009003423154354095, -0.022079668939113617, -0.04305928200483322, -0.0400996096432209, -0.0035064241383224726, 0.0037225063424557447, -0.010810655541718006, -0.015348381362855434, -0.00041763606714084744, -0.013279231265187263, 0.0013554244069382548, -0.046778514981269836, 0.017168710008263588, 0.010404683649539948, -0.01579364202916622, -0.02957051619887352, 0.00739262904971838, 0.0241750106215477, 0.014497148804366589, 0.002070787362754345, -0.005254725459963083, 0.009081998839974403, 0.010574930347502232, 0.0012211916036903858, 0.007733121979981661, -0.017063941806554794, -0.028287118300795555, -0.034861255437135696, 0.004056451376527548, -0.009717149659991264, -0.0176139697432518, -0.01796755939722061, -0.010489806532859802, -0.016278188675642014, -0.04308547452092171, 0.021333202719688416, -0.022538024932146072, 0.0376637764275074, 0.0006678903009742498, 0.0006498834700323641, 0.005212163552641869, -0.012310135178267956, -0.0024194654542952776, 0.0015273080207407475, -0.0038010815624147654, 0.006836053915321827, -0.025798900052905083, 0.007327149622142315, 0.0021100749727338552, 0.0027583215851336718, -0.013514957390725613, -0.0038829308468848467, -0.014772161841392517, -0.012441094033420086, -0.0158329289406538, -0.013462573289871216, -0.009376656264066696, -0.0017319312319159508, -0.028994297608733177, 0.025144105777144432, -0.01183213572949171, 0.014182846993207932, 0.020154573023319244, 0.028627611696720123, -0.017207996919751167, 0.0303562693297863, -0.010240985080599785, 7.228316826513037e-05, 0.009501066990196705, 0.002435835311189294, -0.005559204611927271, -0.036720871925354004, 0.0026077188085764647, -0.002889280440285802, 0.009383204393088818, -0.0009265341213904321, -0.015924600884318352, -0.010267176665365696, -0.0341016948223114, -0.01048325840383768, -0.01544005237519741, -0.007759314030408859, -0.021712983027100563, -0.027815667912364006, 0.01821638084948063, 0.009114738553762436, -0.023847613483667374, 0.010745176114141941, -0.017679449170827866, -0.01043742336332798, 0.0026535543147474527, -0.007602163124829531, 0.0036570269148796797, -0.009343916550278664, -0.018923558294773102, -0.005470807198435068, -0.002201746217906475, -0.010732080787420273, 0.0017630340298637748, 0.03622322902083397, -0.03630180284380913, 0.03952339291572571, 0.006613423582166433, 0.03061818704009056, 0.013403641991317272, 0.008741505444049835, 0.007117615547031164, -0.016775833442807198, -0.0259560514241457, -0.008080163039267063, -0.006492286920547485, -0.007988492026925087, 0.011707724072039127, -0.022236818447709084, -0.0035980953834950924, 0.011995834298431873, -0.013233395293354988, 0.01284706685692072, 0.002701027086004615, -0.016068655997514725, -0.0029154722578823566, -0.041854459792375565, -0.029151447117328644, -0.01853068172931671, -0.001609975821338594, -0.01656629890203476, -0.0024178284220397472, -0.024895284324884415, -0.013514957390725613, 0.018242573365569115, 0.002056054538115859, 0.02113676443696022, -0.0002359306236030534, 0.02996339276432991, 0.021097475662827492, 0.01441857311874628, -0.017980655655264854, 0.005015725269913673, -0.011864875443279743, -0.005438067484647036, -0.026584653183817863, -0.02917763963341713, 0.006803314201533794, -0.012290491722524166, 0.02378213405609131, 0.010895779356360435, 0.018452106043696404, 0.012022025883197784, 0.019578352570533752, -0.023297585546970367, -0.027894241735339165, 0.0050419168546795845, -0.02031172253191471, 0.0026224516332149506, -0.02996339276432991, 0.010745176114141941, -0.004102286882698536, -0.03397073596715927, 0.019067613407969475, 0.009239149279892445, -0.0030447940807789564, -0.009710601530969143, -0.005428245756775141, 0.03818761184811592, -0.00020953422063030303, 0.03913051635026932, -0.00826350599527359, 0.010031450539827347, -0.011661889031529427, 0.005228533409535885, -0.03488744795322418, -0.02996339276432991, -0.003499876242130995, -0.014641202986240387, 0.023245202377438545, 0.021018901839852333, 0.009972519241273403, -0.010476711206138134, 0.014169751666486263, -0.015531723387539387, -0.012323231436312199, -0.021372489631175995, 0.01544005237519741, 0.012703011743724346, 0.0051466841250658035, -0.02569413371384144, -0.03873763978481293, -0.004338013008236885, 0.04756426811218262, -0.021765366196632385, 0.011949998326599598, 0.01315481960773468, -0.022852325811982155, -0.0004211146733723581, 0.01961764134466648, 0.015531723387539387, 0.00587023189291358, -0.014484052546322346, 0.0100707383826375, -0.009638573974370956, 0.01917238160967827, 0.010188600979745388, -0.025327447801828384, -0.006200903095304966, 0.02570722997188568, -0.03218969330191612, 0.026427503675222397, 0.0145233403891325, 0.006181259173899889, -0.021948708221316338, 0.015990080311894417, -0.0057818349450826645, 0.020154573023319244, -0.040073417127132416, -0.004704697988927364, 0.02327139303088188, -0.002455478999763727, 0.00038591946940869093, -0.017718737944960594, -0.014169751666486263, -0.00865638256072998, -0.012748847715556622, -0.0025340544525533915, 0.027710899710655212, -0.0017810408025979996, -0.016422243788838387, 0.011629149317741394, 0.020796271041035652, -0.02452859841287136, 0.008250409737229347, -0.0019414654234424233, 0.01426142267882824, -0.01999742165207863, -0.0032526913564652205, 0.016932982951402664, 0.003627561032772064, 0.04256163910031319, -0.012159532867372036, 0.009134382009506226, -0.003781437873840332, 0.0023261571768671274, -0.001970931189134717, 0.0073598893359303474, 0.03619703650474548, 0.021752269938588142, -0.014759066514670849, 0.04201161116361618, -0.027475174516439438, -0.00891175214201212, 0.021411778405308723, -0.01669725775718689, -0.029020488262176514, -0.015112655237317085, 0.016029367223381996, 0.0037585198879241943, -0.0008311796700581908, 0.008597451262176037, 0.005932437721639872, 0.018884271383285522, -0.0009036163100972772, 9.289896115660667e-05, -0.024711942300200462, 0.028365693986415863, 0.01195654645562172, 0.0027141228783875704, 0.013423285447061062, -0.015924600884318352, 0.012696463614702225, 0.006439903285354376, 0.0032608762849122286, -0.008486135862767696, -0.0032297736033797264, -0.03030388616025448, -0.012008929625153542, 0.019892655313014984, -0.015990080311894417, 0.00624019093811512, 0.007968848571181297, -0.015295998193323612, -0.002660102443769574, 0.012048217467963696, 0.02331068180501461, 0.013226847164332867, 0.012251203879714012, -0.0035915474873036146, 0.025117913261055946, 0.00995942298322916, -0.010299916379153728, -0.03043484501540661, 0.00995942298322916, -0.013934025540947914, -0.03687802329659462, -0.01922476477921009, 0.018294956535100937, 0.01809851825237274, 0.020167667418718338, -0.02561555802822113, -0.0065643140114843845, -0.0039058488328009844, -0.042168762534856796, -0.014209038577973843, -0.011439258232712746, 0.027632324025034904, 0.02287851646542549, 0.033368322998285294, -0.010299916379153728, 0.02265588752925396, -0.006043752655386925, 0.0025536983739584684, -0.03695659711956978, 0.01272265613079071, 0.0059684510342776775, -0.03114202246069908, -0.0005913611967116594, -0.007608711253851652, -0.021909421309828758, -0.01982717588543892, 0.004393670707941055, -0.012775039300322533, 0.011969641782343388, 0.019761696457862854, 0.004115383140742779, -0.015885312110185623, -0.0019463764037936926, 0.014719778671860695, -0.0014569176128134131, -0.0017319312319159508, 0.020979613065719604, -0.013750682584941387, -0.018897367641329765, 0.02031172253191471, 0.01069934107363224, -0.013043505139648914, 0.013606628403067589, 0.010103478096425533, 0.0002381814701948315, -0.0001692234363872558, 0.006004464812576771, 0.0014765614178031683, 0.005814574658870697, -0.004518081434071064, 0.030644379556179047, -0.006204177159816027, 0.00694736884906888, 0.023677365854382515, 0.02001051791012287, -0.028339503332972527, 0.03203254193067551, 0.006790218409150839, -0.030251502990722656, -0.007156902924180031, 0.014824545942246914, -0.006718190852552652, 0.008852820843458176, -0.008689122274518013, 0.0009846470784395933, -0.00019326666370034218, -0.015937697142362595, -0.00021751452004536986, 0.008833176456391811, -0.013318518176674843, -0.007968848571181297, -0.016238901764154434, 0.006580683868378401, 0.029020488262176514, 0.0065446700900793076, -0.007641450967639685, 0.012067860923707485, -0.00036341091617941856, 0.018072325736284256, -0.0207045990973711, -0.03716612979769707, 0.010123121552169323, -0.007680738810449839, -0.027579940855503082, 0.01817709393799305, 0.012434545904397964, 0.0084337517619133, 0.01413046382367611, 0.20565783977508545, 0.02383451722562313, 0.013207203708589077, 0.0163043811917305, 0.009167121723294258, 0.007569423411041498, 0.02035101130604744, 0.0015011162031441927, 0.006390793714672327, 0.013593532145023346, -0.015976984053850174, 0.026977529749274254, -0.004036807455122471, -0.012657176703214645, 0.011969641782343388, -0.0020969791803508997, -0.038763828575611115, 0.0136328199878335, -0.020233146846294403, 0.054374128580093384, 0.012552409432828426, -0.0075497799552977085, 0.020586736500263214, -0.008211121894419193, 0.006790218409150839, -0.01661868207156658, -0.0014192669186741114, 0.009501066990196705, 0.018033038824796677, 0.017587779089808464, -0.007215834688395262, 0.004832382779568434, -0.004930601920932531, 0.0005226078210398555, -0.01530909352004528, -0.037716157734394073, 0.0035293418914079666, 0.0016017908928915858, 0.009101642295718193, 0.02505243383347988, 0.03347308933734894, 0.009605834260582924, 0.007543231826275587, 0.0016623593401163816, -0.020429586991667747, -0.0020167669281363487, 0.002432561246678233, 0.0037945336662232876, 0.010293368250131607, 0.00015019347483757883, -0.028103776276111603, 0.013377450406551361, 0.013947120867669582, 0.01804613508284092, -0.011413066647946835, 0.024240490049123764, 0.012997669167816639, 0.01870092935860157, -0.016815120354294777, -0.012100600637495518, -0.017456820234656334, 0.0176139697432518, -0.0054118758998811245, -0.005330026615411043, -0.009455231949687004, -0.005703259259462357, -0.020730791613459587, -0.006086314097046852, -0.011949998326599598, -0.009671313688158989, 0.005156506318598986, -0.0006834416999481618, -0.008080163039267063, 0.027291832491755486, -0.01661868207156658, -0.018294956535100937, 0.029256215319037437, 0.02831331081688404, 0.026414407417178154, 0.010411231778562069, 0.00511067034676671, 0.020403394475579262, -0.007189642637968063, -0.00902306754142046, -0.009887395426630974, -0.011426162905991077, 0.00613214960321784, -0.004806191194802523, -0.0020003970712423325, 0.001325958757661283, 0.000695719092618674, -0.004436232149600983, -0.004396944772452116, -0.03061818704009056, 0.004766903351992369, -0.0036701227072626352, -4.729354986920953e-05, 0.008099807426333427, -0.017627066001296043, -0.009134382009506226, -0.02413572184741497, 0.059560101479291916, 0.025419119745492935, -0.007850985042750835, 0.0046555884182453156, 0.0014249964151531458, -0.016932982951402664, 0.027056105434894562, -0.0031069994438439608, -0.01056838221848011, -0.0048258351162076, -0.0018072326201945543, 0.020167667418718338, -0.002263951813802123, 0.007006300147622824, -0.018622353672981262, -0.009357011877000332, -0.026754900813102722, 0.002866362687200308, 0.001802321639843285, 0.014051888138055801, -0.029203832149505615, -0.003454040503129363, 0.025864379480481148, -0.01866164058446884, 0.0017581230495125055, -0.0032641501165926456, -0.01004454679787159, -0.023716654628515244, -0.03305402398109436, 0.026597749441862106, -0.02018076367676258, 0.008401012048125267, -0.026977529749274254, -0.0036439308896660805, 0.02535364031791687, 0.019015230238437653, -0.006374423857778311, -0.013986408710479736, -0.004567191004753113, -0.023205913603305817, 0.016553202643990517, 0.03425884246826172, 0.008538519032299519, -0.0018317874055355787, -0.0036373829934746027, 0.024161914363503456, 0.011694628745317459, -0.011164245195686817, -0.024764325469732285, -0.029203832149505615, 0.0006838508998043835, -0.010031450539827347, 0.021202243864536285, 0.022865422070026398, -0.03740185871720314, -0.011773203499615192, -0.02778947539627552, 0.011544025503098965, 0.027422791346907616, -0.042378295212984085, 0.006145245861262083, 0.013462573289871216, -0.02539292722940445, -0.018465202301740646, -0.009789176285266876, -0.1646938920021057, 0.01019514910876751, -0.004347835201770067, -0.018334243446588516, 0.02031172253191471, 0.007981943897902966, -0.0028025200590491295, -0.010987450368702412, -0.01609484665095806, -0.002409643493592739, 0.021202243864536285, 0.014759066514670849, -0.029649091884493828, -0.009605834260582924, 0.024148818105459213, 0.012120245024561882, -0.0034049309324473143, 0.029020488262176514, 0.02630963921546936, 0.019106902182102203, 0.0376637764275074, -0.017103230580687523, -0.006737834773957729, -0.02252492867410183, 0.010515998117625713, -0.0020380476489663124, -0.03813522681593895, 0.01853068172931671, 0.0066887252032756805, 0.006164889317005873, -0.005948807578533888, -0.004292177502065897, 0.02765851654112339, 0.00644645094871521, 0.005434793885797262, -0.006616697646677494, -0.001621434697881341, 0.0009740067180246115, -0.01298457384109497, 0.049895334988832474, 0.03596131131052971, -0.0039746020920574665, 0.013311970978975296, 0.036720871925354004, 0.0039353147149086, 0.025772709399461746, 0.011753560043871403, 0.01106602605432272, -7.151583122322336e-05, -0.0007034947630017996, 0.020023614168167114, -0.04973818361759186, 0.002494766842573881, 0.008649834431707859, -0.014195943251252174, 0.019512873142957687, 0.006731286644935608, 0.01528290193527937, 0.004128478933125734, -0.0434783510863781, 0.011949998326599598, -0.019931942224502563, 0.005683615803718567, -0.016121039167046547, -0.01673654466867447, -0.013541148975491524, 0.0038010815624147654, 0.006610149517655373, -0.030722955241799355, 0.013128628022968769, -0.0006736197392456234, -0.020193859934806824, 0.009952874854207039, 0.00018017078400589526, -0.0009519074228592217, -0.001360335387289524, -0.005176149774342775, 0.03061818704009056, 0.010051093995571136, 0.017627066001296043, 0.01056838221848011, 0.009160573594272137, -0.015584107488393784, 0.040728211402893066, -0.032111119478940964, 0.007379533257335424, 0.009802272543311119, 0.013541148975491524, 0.008859368972480297, 2.74706726486329e-05, -0.0005921797128394246, -0.038030460476875305, -0.003768341848626733, 0.0028941913042217493, -0.021451065316796303, 0.01093506719917059, 0.02657155692577362, 0.026296544820070267, -0.017718737944960594, 0.009212957695126534, -0.00555593054741621, 0.0036341091617941856, -0.01935572363436222, 0.008820081129670143, 0.026335831731557846, 0.017299668863415718, -0.004148122854530811, 0.016500819474458694, 0.013619723729789257, -0.030277693644165993, -0.03931385651230812, 0.024855995550751686, 0.03693040460348129, 0.006705095060169697, -0.007458108477294445, 0.033761199563741684, -0.0105880256742239, -0.011013641953468323, -0.003277246141806245, -0.0029023762326687574, 0.047511883080005646, -0.0024685750249773264, -0.0012203730875626206, -0.006737834773957729, -0.0027501366566866636, -0.01441857311874628, -0.11189126968383789, -0.027710899710655212, -0.006482464727014303, 0.0026273627299815416, 0.0088069848716259, 0.013181012123823166, -0.005958629306405783, 0.03719232231378555, -0.04604514315724373, 0.027946626767516136, 0.0022541298530995846, -0.005444615613669157, -0.0020314997527748346, -0.0022115681786090136, 0.029151447117328644, -0.0193033404648304, -0.015112655237317085, -0.0003601369389798492, -0.021411778405308723, 0.022511832416057587, 0.011269012466073036, -0.009317724965512753, 0.017496107146143913, -0.021320106461644173, -0.021215340122580528, -0.007634902838617563, -0.02917763963341713, 0.0012694826582446694, 0.00022222085681278259, -0.00534967053681612, 0.03088010475039482, 0.008610546588897705, 0.009186766110360622, -0.003043157048523426, -0.008093259297311306, -0.00841410830616951, -0.03281829506158829, 0.009612382389605045, -0.008931395597755909, -0.029072873294353485, 0.008401012048125267, 0.026637036353349686, 0.0003095949941780418, -0.026257256045937538, -0.0031020885799080133, -0.015073367394506931, -0.018858078867197037, -0.0033034379594027996, 0.01350186113268137, -0.00878079328685999, -0.024685749784111977, -0.003588273422792554, -0.014575723558664322, -0.027213256806135178, -0.004969889763742685, 0.009854655712842941, 0.009841560386121273, 0.015531723387539387, -0.03182300925254822, -0.017758024856448174, -0.03268733620643616, -0.0096516702324152, -0.01825566776096821, 0.034154076129198074, 0.016422243788838387, 0.023755941540002823, 0.0015911504160612822, -0.008145642466843128, -0.013672107830643654, -0.020861750468611717, -0.014431669376790524, 0.012185724452137947, -0.015269805677235126, 0.007163451053202152, -0.02218443527817726, 0.015728162601590157, -0.00933082029223442, -0.03601369261741638, 0.025864379480481148, -0.0048356568440794945, -0.031901583075523376, -0.027370406314730644, 0.0026028079446405172, -0.01731276512145996, 0.025432216003537178, 0.022249914705753326, -0.006495560519397259, 0.0003214631287846714, 0.02282613329589367, -0.01995813474059105, 0.006711642723530531, 0.020102187991142273, 0.008080163039267063, -0.008158738724887371, -0.0018039586720988154, -0.006459547206759453, -0.013855449855327606, -0.015990080311894417, 0.0007742944289930165, 0.010666601359844208, -0.00928498525172472, -0.001984027214348316, -0.049292925745248795, 0.020298626273870468, -0.0017728558741509914, 0.013567340560257435, 0.018779505044221878, 0.019080709666013718, 0.016291284933686256, -0.013593532145023346, -0.018844984471797943, 0.005647602025419474, -0.02909906394779682, 0.014379285275936127, -0.004930601920932531, -0.009206409566104412, -0.013685203157365322, -0.027056105434894562, 0.02535364031791687, -0.007366437464952469, 0.0028581777587532997, 0.006430081091821194, -0.0026028079446405172, 0.003236321499571204, -0.005974999163299799, 0.004894588142633438, -0.03999484330415726, 0.006875341292470694, -0.02025933936238289, -0.002393273636698723, 0.0024653009604662657, -0.011020190082490444, 0.003331266576424241, -0.011262464337050915, -0.01528290193527937, 0.0374804325401783, -0.012441094033420086, -0.018229477107524872, 0.010260628536343575, 0.010817203670740128, 0.0265191737562418, -0.005169602110981941, -0.03404930979013443, -0.019408106803894043, 0.018766408786177635, -0.017758024856448174, -2.880072315747384e-05, -0.02218443527817726, 0.004318369086831808, -0.006675628945231438, 0.0157412588596344, 0.013698299415409565, 0.029989585280418396, -0.006043752655386925, -0.00826350599527359, -0.03234684467315674, -0.012303587049245834, -0.021202243864536285, 0.005647602025419474, -0.007189642637968063, -3.649967402452603e-05, -0.008342080749571323, 0.029884817078709602, -0.00031921229674480855, -0.0009871026268228889, -0.010476711206138134, 0.012473833747208118, 0.004282355308532715, -0.03108963929116726, 0.003568629501387477, -0.015688873827457428, -0.0064431773498654366, 0.004678505938500166, -0.016985367983579636, 0.00030509327189065516, 0.014051888138055801, 0.0175222996622324, -0.006894985213875771, 0.01860925741493702, -0.004632670432329178, -0.01748301088809967, 0.013311970978975296, 0.013920929282903671, -0.0224856398999691, 0.0037094103172421455, 0.02244635298848152, -0.006636341568082571, 0.015636490657925606, -0.008112902753055096, -0.011485094204545021, -0.006639615632593632, 0.0017286572838202119, 0.012768491171300411, -0.008034327998757362, -0.0027501366566866636, -0.004966615699231625, 0.007929560728371143, -0.004171040374785662, 0.007667642552405596, 0.005765465088188648, -0.0008651471580378711, 0.024685749784111977, 0.0006944913184270263, 0.014863833785057068, -0.019892655313014984, -0.019853366538882256, -0.025733420625329018, 0.00200530793517828, -0.024594077840447426, -0.024986954405903816, -0.0020495066419243813, 0.001190907321870327, 0.003850191133096814, 0.03326355665922165, 0.024554790928959846, 0.012408354319632053, -0.007929560728371143, 0.0066887252032756805, -0.017496107146143913, -0.010489806532859802, -0.009965971112251282, 0.021097475662827492, 0.015217422507703304, 0.014248326420783997, 0.014968600124120712, -0.012139888480305672, 0.041199665516614914, 0.026715612038969994, 0.005474081262946129, -0.002720670774579048, -0.005752368830144405, 0.007137259002774954, 0.001964383292943239, -0.01350186113268137, 0.0074057248421013355, -0.017430627718567848, -0.015885312110185623, -0.015086463652551174, -0.02173917554318905, 0.02666322886943817, 0.016946079209446907, 0.0678367018699646, 0.018452106043696404, -0.0021837393287569284, -0.008106354624032974, -0.010496354661881924, 0.018596161156892776, -0.007831341587007046, 0.005503546912223101, -0.003961506299674511, -0.027187064290046692, 0.005886601749807596, 0.005022273398935795, 0.0015322190010920167, -0.005097574554383755, -0.031168214976787567, -0.006600327789783478, -0.0011982738506048918, 0.0008897019433788955, -0.005588670261204243, 0.006718190852552652, 0.014038792811334133, -0.0175222996622324, -0.0015927874483168125, -0.01634366810321808, -0.041854459792375565, -0.01084994338452816, 0.006069944240152836, 0.014876929111778736, -0.00414157472550869, -0.03423265367746353, -0.005182697903364897, -0.0004481249488890171, -0.01528290193527937, -0.011949998326599598, -0.000764472468290478, 0.0007043132791295648, 0.0015780545072630048, -0.0341016948223114, -0.009717149659991264, -0.009605834260582924, -0.015819832682609558, 0.02700372226536274, -0.006420259363949299, -0.010162409394979477, -0.00048209240776486695, -0.010371943935751915, -0.004704697988927364, 0.0024653009604662657, 0.01006419025361538]" +54,"In More Personal Computing, we expect revenue of US$14.5 billion to US$14.9 billion. In Windows OEM, we expect revenue to decline in the high 30s. Excluding the impact from the Windows 11 revenue deferral last year, revenue would decline mid-30s, reflecting both PC market demand and a strong prior year comparable, particularly in the commercial segment. In devices, revenue should decline approximately 30%, again, roughly in line with the PC market.","[0.007634567562490702, -0.031139109283685684, 0.0019004783825948834, -0.012950682081282139, 0.011729412712156773, -0.0034580868668854237, -0.03330735117197037, -0.006903111934661865, -0.020415447652339935, -0.024151096120476723, 0.024242527782917023, 0.04600333049893379, -0.01739819347858429, 0.014903407543897629, -0.019096216186881065, 0.011703289113938808, -0.0013690302148461342, -0.019344387575984, 0.010005267336964607, -0.022857986390590668, -0.020141152665019035, 0.014407062903046608, -0.02102934755384922, 0.008686034940183163, -0.020232584327459335, 0.011004487983882427, 0.019775424152612686, -0.018273327499628067, 0.03006804920732975, 0.008059073239564896, 0.0006045121117495, -0.0065308534540236, -0.006070428527891636, 0.002558461856096983, -0.019592560827732086, 0.005802663508802652, -0.011415932327508926, 0.026541387662291527, 0.021199150010943413, 0.0022906968370079994, 0.02456906996667385, 0.011735944077372551, 0.0001287802733713761, 0.034456782042980194, -0.00304337777197361, 0.013192323967814445, 0.009783218614757061, 0.008117850869894028, -0.02134282886981964, 0.0059202187694609165, -0.023197591304779053, 0.029650075361132622, -0.01712389849126339, -0.025418082252144814, -0.019736239686608315, 0.02456906996667385, -0.013140076771378517, 0.018612932413816452, 0.0032017508056014776, 0.00792845617979765, -0.010259971022605896, 0.010096699930727482, -0.031269725412130356, 0.010259971022605896, -0.04474940896034241, -0.005658984649926424, -0.018926413729786873, -0.012584954500198364, 0.00962647795677185, 0.00808519683778286, 0.026332400739192963, 0.03900225833058357, 0.0023755980655550957, 0.010449365712702274, 0.005773274693638086, -0.005845113657414913, -0.011043673381209373, -0.009123601950705051, -0.011794721707701683, 0.009606885723769665, 0.019971350207924843, -0.02280574105679989, -0.014211136847734451, -0.007099037524312735, 0.007902332581579685, -0.0014767892425879836, -0.027638571336865425, 0.00468915281817317, -0.015752417966723442, -0.007072914391756058, 0.006831272970885038, -0.0030988899525254965, -0.006060631945729256, 0.027089979499578476, 0.01653612032532692, 0.016274886205792427, -0.014785852283239365, 0.03325510770082474, 0.004904671106487513, -0.0006567589589394629, 0.0053846887312829494, 0.0012343312846496701, -0.017450440675020218, -0.007386395242065191, -0.029650075361132622, 0.021003223955631256, 0.017881477251648903, -0.0029225568287074566, 0.02652832679450512, -0.01803821697831154, -0.021995915099978447, 0.0014310732949525118, 0.015647925436496735, 0.006328396964818239, 0.012500053271651268, -0.005231213755905628, -0.003389512887224555, 0.011011019349098206, 0.01589609682559967, -0.01215391792356968, 0.016745109111070633, 0.008254998363554478, 0.0156740490347147, -0.023929046466946602, 0.007059852592647076, 0.019775424152612686, -0.015569554641842842, -0.019226832315325737, 0.0034744141157716513, -0.013793163001537323, 0.006700655445456505, -0.028970865532755852, 0.016105085611343384, 0.009201972745358944, -0.025470329448580742, 0.03380369767546654, -0.020924855023622513, 0.02925822325050831, -0.02280574105679989, -0.031217480078339577, 0.005822255741804838, 0.0190700925886631, 0.0036148272920399904, -4.268014890840277e-05, -0.0020604843739420176, 0.043260373175144196, 0.016274886205792427, -0.021721618250012398, 0.008731750771403313, -0.005214886739850044, 0.011239598505198956, -0.016954096034169197, 0.029806815087795258, 0.026593634858727455, 0.025783808901906013, -0.02271430753171444, -0.003280121134594083, 0.014955654740333557, -0.007249247282743454, -0.0021878359839320183, -0.019501129165291786, -0.006805149372667074, -0.008731750771403313, 0.01666673831641674, 0.00757578993216157, 0.02394210919737816, 0.04746624454855919, 0.022231025621294975, -0.009750564582645893, -0.015504246577620506, 0.00962647795677185, -0.004614048171788454, -0.0013714792439714074, 0.003673605155199766, 0.020376263186335564, 0.012428213842213154, -0.011866561137139797, 0.011363685131072998, -0.008411739021539688, -0.024856427684426308, 0.00733414851129055, 0.008568479679524899, 0.013192323967814445, 0.011370215564966202, -0.0008481945842504501, -0.03432616591453552, 0.03521436080336571, 0.00026041778619401157, 0.012134325690567493, -0.008921145461499691, 0.004836096893996, 0.020193399861454964, -0.004003413021564484, -0.004356079269200563, -0.6449348330497742, -0.000793498707935214, -0.023471888154745102, 0.0022906968370079994, -0.0020261972676962614, 0.00603124313056469, 0.03591969236731529, 0.00035082927206531167, -0.033594708889722824, 0.01703246496617794, 0.011337561532855034, -0.00168332748580724, 0.013100892305374146, 0.0013796427519991994, -0.007203531451523304, -0.009646070189774036, -0.025378895923495293, 0.010651822201907635, -0.024007417261600494, 0.0016221007099375129, -0.004091579932719469, 0.0026564246509224176, -0.010240377858281136, -0.007693345192819834, -0.019605621695518494, -0.018926413729786873, -0.0032899174839258194, -0.021734680980443954, -0.015243012458086014, 0.007438641972839832, -0.003954431973397732, 0.02012808993458748, 0.00924115814268589, 0.009260750375688076, 0.04582046717405319, -0.009169318713247776, -0.006272884551435709, 0.01067141443490982, 0.020141152665019035, 0.036311544477939606, -0.025836056098341942, 0.008483578450977802, -0.00871868897229433, -0.015138518065214157, -0.025235217064619064, 0.010351402685046196, 0.017136959359049797, -0.02452988550066948, 0.005296522285789251, -0.013009459711611271, 0.018782734870910645, 0.006811680272221565, 0.005832052323967218, -0.019631745293736458, 0.024791119620203972, 0.00583531754091382, 0.015817727893590927, -0.030146420001983643, -0.012023300863802433, -0.013962964527308941, -0.0018710895674303174, -0.012317189946770668, 0.008091727271676064, -0.02203509956598282, -0.04250279441475868, 0.02938884124159813, -0.014563803561031818, 0.007105568423867226, 0.017267577350139618, 0.0033764513209462166, -0.021826112642884254, 0.010501611977815628, 0.014616049826145172, -0.03260201960802078, 0.0043103634379804134, 0.008274591527879238, 0.023275962099432945, -0.01785535365343094, -0.0205330029129982, 0.01500790100544691, 0.009802810847759247, -0.03252365067601204, 0.014498494565486908, -0.010893463157117367, 0.0008086013258434832, -0.030668888241052628, 0.02112078107893467, -0.009201972745358944, 0.009979143738746643, 0.018430069088935852, 0.002506215125322342, 0.018103525042533875, 0.011572672054171562, -0.017372069880366325, 0.014589926227927208, 0.02988518588244915, -0.014302569441497326, -0.007053321693092585, -0.01762024313211441, 0.013819285668432713, 0.002096403855830431, -0.014851161278784275, 0.03087787516415119, 0.015099333599209785, 0.02643689513206482, 0.03111298568546772, 0.0015772010665386915, -0.0024947859346866608, 0.03625929728150368, -0.04838056117296219, 0.019135400652885437, -0.03362083435058594, -0.017019404098391533, -0.0028686774894595146, -0.0013551521115005016, -0.021721618250012398, 0.018247203901410103, -0.008418270386755466, -0.0015045453328639269, -0.025130724534392357, 0.002109465654939413, 0.007112099323421717, 0.014642173424363136, -0.03746097534894943, -0.016562243923544884, -0.0005522653227671981, 0.014002149924635887, 0.007301494013518095, 0.017541872337460518, -0.026397710666060448, -0.0027249986305832863, -0.031191356480121613, 0.014093581587076187, 0.009763626381754875, 0.008372554555535316, 0.00906482432037592, -0.01607896201312542, -0.03296774998307228, 0.011553079821169376, -0.02557482197880745, -0.027560202404856682, -0.009887712076306343, -0.004186277277767658, -0.002617239486426115, -0.0033829822205007076, -0.03356858715415001, 0.0004183828132227063, 0.005743885412812233, -0.008575011044740677, -0.010906524956226349, -0.006455748807638884, -0.003934839274734259, 0.007791308220475912, -0.005410812329500914, -0.005606737919151783, 0.0037454445846378803, -0.009365243837237358, -0.022635938599705696, -0.01626182533800602, 0.0007857432938180864, -0.02253144420683384, 0.0025111131835728884, 0.012911497615277767, 0.010841216892004013, 0.004169949796050787, -0.015438937582075596, -0.013055176474153996, 0.026227908208966255, 0.00573408929631114, -0.005832052323967218, 0.03202730417251587, 0.011474709957838058, 0.03296774998307228, -1.517913187853992e-05, -0.007183938752859831, 0.008666442707180977, -0.004522616043686867, -0.011298376135528088, 0.01626182533800602, -0.02629321627318859, 0.02253144420683384, -0.001408215262927115, -0.0021715087350457907, -0.00022653897758573294, 0.02865738421678543, 0.006498199421912432, 0.02535277232527733, 0.035501718521118164, 0.001918438239954412, 0.00777824642136693, 0.010952241718769073, 0.022544506937265396, -0.01912233978509903, -0.008366023190319538, 0.00418954249471426, -0.00564265763387084, 0.013388250023126602, -0.009874650277197361, 0.002006604801863432, 0.02324983850121498, 0.011200414039194584, 0.036128681153059006, 0.004483431112021208, 0.01580466516315937, 0.007993764244019985, -0.024516824632883072, -0.0024653971195220947, -0.021225273609161377, 0.010566920973360538, 0.0383230485022068, 0.03351633995771408, -0.0322624146938324, -0.010436303913593292, -0.0053846887312829494, -0.012931089848279953, 0.016653675585985184, -0.0003702177491504699, 0.016013652086257935, -0.01794678531587124, -0.0049209981225430965, 0.0002800103393383324, -0.004956917837262154, 0.009012578055262566, -0.010253439657390118, -0.006096551660448313, -0.014276445843279362, -0.0049438560381531715, 0.0160397756844759, 0.022518383339047432, -0.021747741848230362, -0.024908674880862236, 0.0129702752456069, 0.03534498065710068, 0.016588367521762848, 0.0032703247852623463, 0.02071586810052395, 0.02216571755707264, -0.01976236328482628, 0.04137948900461197, 0.0043756719678640366, -0.002463764511048794, 0.0161312073469162, 0.008143974468111992, -0.014903407543897629, -0.025875242426991463, -0.00603124313056469, 0.018560685217380524, 0.03534498065710068, -0.03307224065065384, 0.00826806016266346, -0.00020633415260817856, 0.013231509365141392, -0.0006963522755540907, 0.0028719427064061165, -0.0016718985280022025, 0.00018419047410134226, 0.007144753821194172, -0.00847051665186882, 0.032549772411584854, 0.026541387662291527, -0.006720248144119978, 0.00828765332698822, 0.01435481570661068, 7.640588592039421e-06, 0.004254851024597883, -0.0010571818565949798, -0.01694103330373764, 0.02317146770656109, -0.014054397121071815, 0.005371626932173967, 0.01794678531587124, -0.004104641266167164, 0.0075104814022779465, 0.01280700322240591, -0.028970865532755852, 0.01675816997885704, 0.019017845392227173, -0.036128681153059006, 0.00946973729878664, 0.032001182436943054, -0.021421199664473534, -0.016927972435951233, -0.019292140379548073, 0.010965302586555481, 0.002052320633083582, 0.025875242426991463, 0.009985675103962421, -0.013238039799034595, 0.012349843978881836, 0.011526956222951412, -0.01266985572874546, 0.019840732216835022, -0.011154698207974434, 0.01335559505969286, 0.013198855333030224, 0.0036344199907034636, 0.02693323977291584, -0.019553374499082565, -0.011187352240085602, 0.008137443102896214, 0.009757095016539097, -0.0037356482353061438, -0.02920597605407238, -0.0035266608465462923, 0.0251176618039608, 0.002940516686066985, -0.014276445843279362, -0.032001182436943054, -0.011102451011538506, -0.010939179919660091, -0.004708745516836643, -0.014524618163704872, -0.008366023190319538, 0.0015118925366550684, -0.01062569860368967, -0.010560390539467335, -0.01231065858155489, -0.019514190033078194, 0.028422273695468903, 0.01993216574192047, 0.007765184622257948, 0.008594603277742863, -0.024869490414857864, 0.012284534983336926, 0.05454568937420845, 0.027716942131519318, -0.01644468866288662, 0.02680262178182602, 0.004274443723261356, 0.015347505919635296, -0.020689744502305984, -0.01292455941438675, 0.02152569219470024, 0.010802031494677067, -0.00783702451735735, -0.007340679410845041, -0.0023119221441447735, -0.01743737794458866, 0.02434702217578888, -0.0059365457855165005, 0.01162491925060749, -0.01562180183827877, 0.01875661127269268, -0.008979923091828823, -0.009802810847759247, -0.007112099323421717, 0.02680262178182602, 0.0022090612910687923, 0.017646366730332375, 0.02021952159702778, 0.03419554978609085, 0.04451429843902588, 0.0007363537442870438, 0.006961890030652285, -0.021591002121567726, 0.00851623248308897, -0.033228982239961624, 0.023654751479625702, 0.010638760402798653, 0.007902332581579685, -0.00583531754091382, -0.008979923091828823, -0.0058973608538508415, 0.036677274852991104, 0.0014661765890195966, 0.006050835829228163, 0.01617039367556572, -0.01326416339725256, -0.005028757266700268, -0.011618388816714287, -0.0129702752456069, 0.01785535365343094, 0.003565846011042595, -0.03738260641694069, -0.0024898878764361143, -0.0020245646592229605, -0.02638464793562889, 0.002947047585621476, -0.04025617986917496, 0.028631262481212616, 0.0006249210564419627, -0.030668888241052628, -0.012389029376208782, -0.02852676808834076, -0.021316705271601677, -0.021564878523349762, 0.018874166533350945, -0.005169170442968607, -0.027011610567569733, 0.0032768556848168373, -0.009476268664002419, -0.00533570721745491, -0.038532037287950516, 0.001515157986432314, 0.013440496288239956, -0.010181600227952003, -0.023106159642338753, -0.006651674397289753, 0.02011502906680107, -0.010697538033127785, 0.006805149372667074, -0.009678725153207779, 0.015726294368505478, 0.004767523147165775, -0.006765964441001415, -0.021290581673383713, -0.03012029640376568, -0.009828934445977211, -0.0006636980106122792, 0.030956245958805084, -0.011566141620278358, -0.009208503179252148, -0.03278488293290138, -0.016457751393318176, 0.013479681685566902, -0.025418082252144814, 0.04649967700242996, -0.023550257086753845, 0.013336002826690674, -0.021734680980443954, -0.0019951758440583944, -0.0022678389213979244, -0.00962647795677185, -0.005404281429946423, 0.005012430250644684, 0.009058293886482716, -0.006475341040641069, -0.030512146651744843, -0.005652453750371933, 0.015830788761377335, -0.0075104814022779465, -0.0008735016454011202, -0.01133103109896183, 0.008868899196386337, 0.006423094309866428, -0.005717762280255556, -0.012101671658456326, 0.0072884326800704, 0.0015461795264855027, -0.0190700925886631, 0.016705922782421112, -0.01355805154889822, 0.012238819152116776, -0.004623844288289547, 0.018861105665564537, -0.02829165756702423, 0.03221017122268677, -0.009495860897004604, 0.00024837651289999485, 0.0012392294593155384, -0.013962964527308941, -0.016418565064668655, -0.04464491456747055, 0.0020474225748330355, -0.0016882256604731083, 0.014145828783512115, 0.009548108093440533, -0.02198285236954689, -0.0095807621255517, -0.039942700415849686, 0.010181600227952003, 0.0013380085583776236, -0.01133103109896183, -0.00822234433144331, -0.013094360940158367, 0.028265533968806267, -0.004179746378213167, -0.020141152665019035, 0.009437083266675472, -0.025444205850362778, 0.003353593172505498, -0.0013029052643105388, 0.0006832905346527696, 0.009404429234564304, 0.01694103330373764, -0.0013404577039182186, -0.013767039403319359, -0.013211916200816631, 0.0027380604296922684, -0.01088040228933096, 0.011389808729290962, -0.03761771693825722, 0.02412497252225876, 0.012121263891458511, 0.03012029640376568, 0.0037095248699188232, -0.008947269059717655, 0.006968420464545488, 0.001727410708554089, 0.004581393674015999, 0.0035201299469918013, -0.007608444429934025, -0.023184530436992645, 0.0017078182427212596, -0.011193882673978806, 0.02742958441376686, -0.00035103337722830474, 0.0015355668729171157, 0.020154213532805443, -0.01362336054444313, -0.0002398047799943015, 0.0006387991015799344, -0.040491290390491486, -0.010540797375142574, 0.0006310437456704676, -0.019906042143702507, -0.020650558173656464, 0.02489561401307583, -0.021238336339592934, -0.03934186324477196, 0.012872312217950821, 0.0024082523304969072, 0.012369436211884022, 0.0037291173357516527, 0.01639244146645069, 0.007961110211908817, 0.021734680980443954, -0.019879918545484543, 0.01155961025506258, -0.004826300777494907, -0.004777319263666868, -0.048798538744449615, -0.007229654584079981, -0.012571892701089382, -0.01226494275033474, 0.02620178461074829, 0.01780310645699501, 0.01789453811943531, -0.0021666106767952442, 0.021917544305324554, -0.003317673457786441, -0.03855815902352333, 0.004388733766973019, -0.003970758989453316, 0.0014718910679221153, -0.02620178461074829, 0.00911054015159607, -0.017045527696609497, -0.021003223955631256, 0.023093098774552345, -0.012656793929636478, 0.007392926141619682, 0.003889123210683465, -0.022688185796141624, 0.021917544305324554, -0.005825521424412727, 0.024268651381134987, -0.006805149372667074, 0.03343797102570534, 0.006194514688104391, 0.000720026611816138, -0.03025091253221035, -0.031269725412130356, 0.004470369312912226, -0.006579834967851639, 0.04339098930358887, 0.03764383867383003, -0.0024980513844639063, -0.004904671106487513, 0.007092507090419531, -0.012839658185839653, -0.0026792825665324926, -0.019775424152612686, 0.013518867082893848, 0.012519646435976028, -0.0069880131632089615, -0.023014727979898453, -0.020167276263237, -0.014655235223472118, 0.030668888241052628, -0.009946489706635475, 0.02012808993458748, -7.117609493434429e-05, -0.02634546346962452, -0.0019886449445039034, 0.021186089143157005, 0.0080656036734581, 0.000963300873991102, -0.014877283945679665, 0.012140857055783272, 0.013029052875936031, 0.008209282532334328, 0.016653675585985184, -0.002280900487676263, 0.005195294041186571, 0.011873091571033001, -0.03173994645476341, 0.01271557155996561, 0.0030760320369154215, -0.014380939304828644, -0.025862179696559906, -0.0008841142989695072, 0.007066383492201567, 0.018247203901410103, -0.025627069175243378, -0.01028609462082386, 0.024451514706015587, 0.005551225505769253, 0.0024294774048030376, -0.005270398687571287, -0.01767249032855034, -0.024556009098887444, -0.016013652086257935, 0.006217372603714466, 0.013074768707156181, 0.004535677842795849, -0.021003223955631256, 0.014028273522853851, -0.012748225592076778, -0.010410180315375328, -0.011337561532855034, 0.007066383492201567, 0.0202587079256773, 0.007693345192819834, 0.0007032912690192461, 0.015164641663432121, 0.016523059457540512, 0.031583208590745926, 0.0018792530754581094, -0.0043528140522539616, 0.009933427907526493, 0.010495081543922424, -0.024098848924040794, 0.022544506937265396, 0.038401417434215546, 0.0192529559135437, -0.016065899282693863, 0.010227316990494728, -0.029650075361132622, -0.014877283945679665, 0.029623951762914658, -0.028761878609657288, -0.021186089143157005, 0.006570038385689259, 0.005760212894529104, -0.008588071912527084, -0.003438494401052594, 0.01371479220688343, 0.0010775908594951034, 0.010886932723224163, 0.0008955432567745447, -0.01690184883773327, -0.040360674262046814, 0.0058614411391317844, 0.001043303869664669, 0.002058851532638073, 0.020101966336369514, 0.005561021622270346, 0.007739061489701271, -0.005564287304878235, -0.02611035294830799, 0.019266018643975258, -0.0058908299542963505, -0.01871742680668831, -0.018547624349594116, 0.025287464261054993, -0.024817243218421936, 0.014550741761922836, -0.03362083435058594, 0.0158569123595953, 0.007895802147686481, -0.007739061489701271, 0.021747741848230362, 0.002117629162967205, 0.0069488282315433025, 0.002638464793562889, 0.010612636804580688, 0.016496935859322548, -0.002916026161983609, -0.0407002791762352, 0.001882518525235355, -0.02066362090408802, -0.01675816997885704, -0.024960922077298164, -0.006916173733770847, 0.03691238537430763, 0.0075170123018324375, -0.011873091571033001, -0.02810879424214363, -0.011618388816714287, -0.046813156455755234, -0.034456782042980194, -0.001223718631081283, 0.02324983850121498, 0.015425875782966614, 0.00826806016266346, -0.01251311507076025, 0.043129757046699524, -0.0017959846882149577, 0.014498494565486908, -0.040804773569107056, 0.007399457041174173, 0.013414372690021992, -0.009815872646868229, -0.02452988550066948, -0.004836096893996, 0.00154454680159688, -0.025600945577025414, 0.01310742273926735, 0.007164346054196358, -0.00523447897285223, 0.016588367521762848, 0.013662545941770077, -0.018364759162068367, -0.0024049868807196617, 0.005293256603181362, 0.00677902577444911, 0.006625550799071789, 0.01392378006130457, -0.044671036303043365, -0.006321866065263748, 0.007967641577124596, 0.014537679962813854, -0.014629111625254154, -0.008705628104507923, 0.004630375187844038, -0.003389512887224555, -0.017972908914089203, 0.018325574696063995, -0.0033274698071181774, 0.0027543874457478523, -0.0021715087350457907, 0.02112078107893467, 0.00951545313000679, -0.007765184622257948, 0.038767147809267044, 0.023093098774552345, -0.03375145047903061, 0.005766743794083595, 0.010037921369075775, -0.018560685217380524, 0.0074190497398376465, -0.000996771501377225, -0.03683401271700859, 0.00046940508764237165, -0.0025764217134565115, 0.009946489706635475, -0.017228391021490097, -0.01820801943540573, -0.028996989130973816, 0.02066362090408802, -0.013048645108938217, 0.00871868897229433, 0.017907600849866867, -0.013936840929090977, 0.02434702217578888, -0.022283272817730904, 0.0008012540638446808, -0.00573408929631114, -0.0012310658348724246, 0.002651526592671871, -0.020454633980989456, -0.024059664458036423, 0.02480418235063553, -0.007934986613690853, -0.013113954104483128, 0.030094172805547714, -0.000545734423212707, 0.014811975881457329, 0.02080729976296425, 0.2077333927154541, 0.017058588564395905, 0.014315631240606308, 0.04404407739639282, 0.02185223624110222, 0.027821436524391174, 0.01426338404417038, -0.008692566305398941, 0.015765480697155, 0.011781659908592701, -0.029623951762914658, 0.025561761111021042, -0.022923296317458153, -0.005610003136098385, 0.02002359740436077, 0.009293404407799244, -0.033542461693286896, -0.010756315663456917, -0.027142226696014404, 0.06933154165744781, 0.02570543996989727, -0.014942592941224575, -0.006282681133598089, -0.02157793939113617, 0.016196517273783684, -0.014772790484130383, -0.021003223955631256, 0.021917544305324554, 0.031008493155241013, 0.02203509956598282, -0.0009469737415201962, 0.005956138484179974, -0.013780101202428341, 0.004705479834228754, -0.0014033170882612467, -0.01392378006130457, -0.006844334304332733, 0.014041335321962833, -0.0018841512501239777, 0.03205342963337898, 0.035945817828178406, 0.03093012236058712, -0.0019576232880353928, -0.041901957243680954, 0.011448586359620094, 0.029676198959350586, 0.0001872518187155947, 0.011350623331964016, 0.010259971022605896, -0.023275962099432945, -0.022139593958854675, 0.0013804591726511717, 0.024699687957763672, 0.0160397756844759, -0.031948935240507126, 0.00926728080958128, -0.010135884396731853, 0.010573451407253742, -0.011252660304307938, -0.012650263495743275, -0.0018580277683213353, 0.009410959668457508, -0.010279563255608082, -0.001154328347183764, -0.0202587079256773, -0.004202604293823242, -0.011402870528399944, -0.004620579071342945, -0.002947047585621476, -0.027534078806638718, -0.0006608407129533589, 0.022740431129932404, -0.02761244773864746, 0.00041715826955623925, -0.0024980513844639063, -0.03432616591453552, 0.035998065024614334, -0.004545473959296942, 0.0262148454785347, 0.009051762521266937, 0.004793646279722452, 0.001698021893389523, -0.01392378006130457, -0.0004726705083157867, -0.011415932327508926, -0.005149577744305134, 0.01875661127269268, -0.007876208983361721, 0.015595678240060806, 0.003846672596409917, 0.010148946195840836, -0.007007605861872435, -0.01707165129482746, -0.019344387575984, 0.015700172632932663, 0.022596752271056175, -0.01752881146967411, 0.007863147184252739, -0.02680262178182602, -0.011089389212429523, -0.008888491429388523, 0.07121242582798004, 0.03675564378499985, -0.014733605086803436, 0.010978364385664463, -0.001047385623678565, -0.003843407379463315, 0.01698021963238716, 0.02020646072924137, -0.0065406495705246925, 0.00826806016266346, 0.0008424801053479314, 0.024333959445357323, -0.01593528315424919, -0.0019429288804531097, -0.005094065796583891, -0.00871868897229433, -0.014158890582621098, 0.002600912470370531, -0.01371479220688343, 0.008032949641346931, -0.02438620664179325, 0.015360567718744278, 0.022413888946175575, -0.014341753907501698, 0.01657530665397644, -0.007216593250632286, -0.005433670245110989, -0.013610298745334148, -0.019906042143702507, 0.01948806643486023, -0.021421199664473534, -0.001525770640000701, -0.01835169829428196, 0.006204310804605484, 0.012212696485221386, 0.015269135124981403, -0.0101750697940588, -0.027952052652835846, -0.007693345192819834, -0.02203509956598282, 0.028579015284776688, 0.02561400644481182, -0.005822255741804838, 0.022609815001487732, 0.0005404281546361744, 0.038401417434215546, 0.00822234433144331, 0.0019445616053417325, -0.021421199664473534, -0.03800956904888153, -0.020193399861454964, 0.011415932327508926, -0.002058851532638073, 0.004192807711660862, -0.003438494401052594, -0.030512146651744843, -0.023275962099432945, 0.0006596161983907223, -0.0025698908139020205, -0.05663556233048439, -0.008013357408344746, 0.015687109902501106, -0.01989297941327095, -0.02625403180718422, -0.014498494565486908, -0.16405503451824188, 0.02421640418469906, -0.005645922850817442, -0.017881477251648903, 0.019501129165291786, 0.010122822597622871, -0.0015020963037386537, 0.004052394535392523, 0.001448216731660068, -0.01730676181614399, 0.013949902728199959, -0.0024049868807196617, -0.021016286686062813, -0.011651042848825455, 0.014916469343006611, 0.005293256603181362, -0.019017845392227173, 0.03764383867383003, 0.024686627089977264, 0.013368656858801842, 0.04574209824204445, -0.006370847579091787, 0.00792845617979765, -0.03257589787244797, 0.013022521510720253, 0.011004487983882427, -0.012075548060238361, -0.004695683717727661, -0.0032605286687612534, -0.022871049121022224, -0.007249247282743454, -0.012434745207428932, 0.03897613286972046, 0.028631262481212616, 0.010037921369075775, -0.02117302641272545, -0.026606697589159012, -0.0054663242772221565, -0.009371775202453136, 0.04388733580708504, 0.02607116661965847, 0.009208503179252148, 0.03301999345421791, 0.029049236327409744, -0.01251311507076025, 0.017019404098391533, -0.003683401271700859, -0.0033111427910625935, 0.004186277277767658, -0.013910718262195587, 0.03416942432522774, -0.04506288841366768, 0.013780101202428341, 0.004212400410324335, -0.008842775598168373, 0.026410771533846855, 0.007360272109508514, -0.002551930956542492, 0.0007979886722750962, -0.014811975881457329, -0.010299155488610268, -0.02543114311993122, 0.0025192766916006804, -0.014341753907501698, -0.0008432964677922428, -0.03296774998307228, 0.007432111073285341, -0.0044148568995296955, -0.028370028361678123, 0.01126572210341692, 0.008026419207453728, -0.043260373175144196, 0.01811658777296543, -0.012186572887003422, 0.014890345744788647, 9.622804645914584e-05, 0.020245645195245743, -0.006857396103441715, 0.02221796289086342, 0.0016384278424084187, 0.01088040228933096, 0.004669560119509697, -0.00578960170969367, 0.018364759162068367, -0.03019866719841957, 0.003552784211933613, 0.018090464174747467, 0.007366802543401718, 0.01401521172374487, -0.008764405734837055, -0.000131739565404132, -0.01690184883773327, 0.010867340490221977, -0.01451155636459589, -0.01128531526774168, 0.0049536521546542645, 0.008921145461499691, 0.015073210000991821, -0.028788002207875252, 0.0022237556986510754, -0.007001074962317944, -0.002734794979915023, -0.019644808024168015, 0.014903407543897629, 0.026776500046253204, 0.008686034940183163, -0.01807740330696106, 0.011500832624733448, 0.012232288718223572, -0.023915985599160194, -0.027638571336865425, 0.015269135124981403, 0.030224790796637535, 0.021329768002033234, -0.010357934050261974, 0.025013169273734093, -0.007628036662936211, -0.004516085144132376, -0.01725451461970806, -0.015425875782966614, 0.029623951762914658, -0.02412497252225876, -0.019004784524440765, -0.010050983168184757, -0.025875242426991463, -0.03273263946175575, -0.10731498152017593, -0.03652053326368332, -0.005492447875440121, 0.025182971730828285, 0.021630186587572098, 0.021564878523349762, -0.0145768653601408, 0.027272844687104225, -0.023289022967219353, 0.017776982858777046, 0.005770009011030197, -0.0053748926147818565, 0.006194514688104391, 0.005094065796583891, 0.03362083435058594, -0.011494302190840244, -0.0036703397054225206, -0.01734594628214836, -0.027743065729737282, 0.02343270182609558, 0.0008996250689961016, -0.02057218924164772, 0.020950978621840477, -0.033542461693286896, -0.01780310645699501, -0.01822108030319214, -0.028814125806093216, -0.0030025599990040064, 0.003595234826207161, 0.0032768556848168373, 0.03260201960802078, -0.010370994918048382, 0.006361051462590694, -0.007249247282743454, -0.009463206864893436, -0.009247688576579094, -0.03430004417896271, -0.009430552832782269, -0.011572672054171562, -0.027089979499578476, 0.029179852455854416, 0.018051279708743095, 0.006468810606747866, -0.023824553936719894, -0.011846967972815037, -0.029832938686013222, -0.017607180401682854, 0.002940516686066985, 0.0058745029382407665, -0.01215391792356968, 0.0074647655710577965, -0.013316410593688488, -0.01611814647912979, -0.027011610567569733, -0.0015780174871906638, 0.009508922696113586, 0.004911202006042004, 0.0004453225701581687, -0.023693935945630074, -0.02524827979505062, -0.02616259828209877, 0.010867340490221977, -0.011154698207974434, 0.02275349386036396, 0.004003413021564484, -0.0011151431826874614, -0.0008057440281845629, -0.004610782489180565, 0.0011698391754180193, -0.016092022880911827, -0.00034144119126722217, 0.0053618308156728745, -0.020885668694972992, -0.007072914391756058, -0.005577349103987217, 0.020049721002578735, -0.008320307359099388, -0.026136476546525955, 0.03283713012933731, 0.00858154147863388, -0.01912233978509903, -0.026149537414312363, -0.005303053185343742, 0.014746666885912418, 0.018560685217380524, 0.027716942131519318, -0.0006902295863255858, -0.0016482241917401552, -0.006570038385689259, -0.023315146565437317, -0.0012180041521787643, 0.04002106934785843, 0.01890029013156891, 0.01839088276028633, 0.0064655449241399765, -0.00513325072824955, -0.021003223955631256, -0.020232584327459335, 0.010201193392276764, -0.014981778338551521, -0.003582173027098179, 0.027011610567569733, -0.05470242723822594, 0.03056439384818077, -0.011494302190840244, 0.006883519701659679, 0.010482019744813442, 0.019827671349048615, 0.008346430957317352, -0.02170855738222599, -0.008633788675069809, -0.008307245559990406, -0.03518823906779289, 0.02706385776400566, -0.013897656463086605, -0.012617608532309532, -0.012114733457565308, -0.007654160261154175, 0.02339351736009121, -0.007647629361599684, 0.009593823924660683, 0.01122000627219677, -0.0017061855178326368, -0.02093791589140892, 0.01893947459757328, 0.006759433541446924, -0.01712389849126339, 9.719746594782919e-05, -0.018469253554940224, -0.018965598195791245, 0.01317273173481226, -0.019749300554394722, 0.00013582134852185845, -0.0043756719678640366, -0.020559126511216164, 0.013976026326417923, -0.003129911608994007, 0.006210841704159975, -0.004519350826740265, 0.002153548877686262, 0.035945817828178406, 0.0078827403485775, -0.020337076857686043, -0.018247203901410103, 0.010357934050261974, -0.026880992576479912, -0.00623369961977005, -0.013819285668432713, -0.0007824779022485018, -0.01206248626112938, 0.004480165429413319, -0.0026123414281755686, 0.037539344280958176, -0.00022062039352022111, 0.007268839981406927, -0.009606885723769665, -0.014380939304828644, -0.01071713026612997, -0.006129206158220768, -0.02189142070710659, 0.008385615423321724, -0.01555649284273386, 0.02126445807516575, 0.0035038029309362173, -0.006713717244565487, 0.0021780396346002817, 0.016314072534441948, -0.0032833865843713284, -0.027403460815548897, -0.001000853255391121, -0.003513599280267954, 0.01589609682559967, -0.0016506732208654284, -0.0019755831453949213, 0.0031054208520799875, 0.0032409359700977802, 0.021878359839320183, -0.006315335165709257, 0.004904671106487513, -0.00314460601657629, -0.01335559505969286, 0.006805149372667074, -0.004692418035119772, 0.0005608370411209762, -0.016366319730877876, -0.019200708717107773, 0.007497419603168964, 0.017476564273238182, -0.016470812261104584, 0.010462427511811256, 0.011755536310374737, 0.015229950658977032, 0.00032021591323427856, 0.015321382321417332, -0.010984895750880241, 0.014054397121071815, 0.013976026326417923, 0.004199338611215353, 0.014407062903046608, -0.0075235432013869286, -0.0007861515041440725, 0.030512146651744843, 0.0037291173357516527, 0.0039870860055089, -0.03257589787244797, -0.024973982945084572, -0.012617608532309532, 0.017267577350139618, -0.010325279086828232, -0.021512631326913834, 0.0007412518607452512, 0.0069422973319888115, 0.01442012470215559, 0.03829692304134369, 0.026593634858727455, 0.006230434402823448, -0.016588367521762848, 0.0021486508194357157, -0.02462131716310978, -0.014589926227927208, -0.022648999467492104, 0.035815201699733734, 0.007157815620303154, 0.0189786609262228, -0.014002149924635887, -0.02179998904466629, 0.046264566481113434, 0.019135400652885437, 0.012029832229018211, -0.03725198656320572, 0.010632229037582874, -0.0023413109593093395, 0.001823740778490901, -0.023733122274279594, 0.016144270077347755, -0.02148650772869587, -0.00236743432469666, -0.0005118556437082589, -0.017241453751921654, 0.021460384130477905, 0.035684581845998764, 0.0605018250644207, 0.014550741761922836, 0.007125161122530699, 0.006844334304332733, 0.02742958441376686, 0.016457751393318176, -0.0008588072378188372, 0.00997261330485344, -0.024725811555981636, -0.010978364385664463, 0.023184530436992645, -0.007771715521812439, 0.009117071516811848, 0.004192807711660862, -0.02125139720737934, 0.004653233103454113, -0.013636422343552113, 0.008026419207453728, -0.002359270816668868, 0.017136959359049797, 0.01752881146967411, -0.032993871718645096, 0.00757578993216157, 0.006707186345010996, -0.020415447652339935, -0.016235701739788055, 0.007856616750359535, 0.02597973495721817, -0.024634379893541336, -0.04728337749838829, -0.006325131747871637, 0.0064198290929198265, -0.028944741934537888, -0.004947121720761061, -0.0018808858003467321, 0.008823183365166187, 0.010057514533400536, -0.00024286611005663872, 0.0022482462227344513, -0.022453073412179947, -0.0049079363234341145, 0.027952052652835846, -0.0002661322650965303, 0.0028196959756314754, 0.000759619870223105, -0.02675037644803524, -0.006811680272221565, -0.00026286684442311525, 0.009737502783536911]" +55,"In Windows commercial products and cloud services, customer demand for Microsoft 365 and our advanced security solutions should drive growth in the mid-single digits or low double digits in constant currency. Search and news advertising, ex TAC, should grow in the low to mid-teens, roughly six points faster than overall search and news advertising revenue, driven by growing first-party revenue and the inclusion of Xandr. And in gaming, we expect revenue to decline in the low to mid-teens against a strong prior year comparable. That included several first-party title launches, partially offset by growth in Xbox Game Pass subscribers.","[0.012016835622489452, -0.021006017923355103, 0.004866349510848522, -0.025694862008094788, 0.007669608108699322, -0.0031046841759234667, -0.03925231844186783, -0.024274813011288643, -0.008674360811710358, -0.032848697155714035, 0.060445889830589294, 0.0357423834502697, -0.00267096608877182, 0.010871418751776218, -0.005345281679183245, 0.009792984463274479, 0.011239827610552311, 7.608904707012698e-05, 0.014347860589623451, -0.021649060770869255, -0.0073614842258393764, -0.003248698776587844, -0.013530662283301353, 0.012405339628458023, -0.010141298174858093, 0.002123376354575157, 0.02010844089090824, -0.005790721625089645, 0.02375234104692936, -0.013483773916959763, 0.00367404380813241, -0.03563521057367325, -0.016920026391744614, 0.004166372120380402, -0.005542882718145847, 0.0020614166278392076, 0.003928580787032843, 0.014280877076089382, 0.030464084818959236, 0.011239827610552311, 0.013657931238412857, 0.011574745178222656, -0.007240913808345795, 0.029901424422860146, -0.002635799814015627, 0.018621407449245453, 0.007555736228823662, 0.0054959943518042564, -0.005331884603947401, 0.012070422992110252, -0.009478162042796612, 0.031830549240112305, -0.027650779113173485, -0.015982257202267647, -0.0032051594462245703, 0.00455487659201026, -0.010516406036913395, 0.028749309480190277, 0.0025872369296848774, -0.014495224691927433, -0.005656754598021507, 0.014280877076089382, -0.027570398524403572, 0.004846254829317331, -0.033974021673202515, -0.0072476123459637165, -0.017254943028092384, -0.0028032585978507996, 0.004745779559016228, 0.005921339616179466, 0.018634803593158722, 0.03978818655014038, 0.023350439965724945, -0.004263498354703188, 0.0026625932659953833, -0.012110612355172634, -0.012961302883923054, -0.012371848337352276, 0.007910748943686485, 0.012539306655526161, 0.013222538866102695, -0.00983987282961607, -0.009417876601219177, -0.003312333021312952, 0.0006639737403020263, 0.011474269442260265, -0.016424348577857018, -0.012077121064066887, -0.019076894968748093, 0.015392803587019444, 0.03796623647212982, 0.0002892848860938102, 0.00046804704470559955, 0.02680678851902485, -0.006092147435992956, 0.0012542656622827053, -0.014294274151325226, 0.022359084337949753, -0.007294500712305307, -0.008948992937803268, 0.012097216211259365, -0.017134374007582664, -0.0269139613956213, -0.004980221390724182, -0.03416157513856888, 0.016812853515148163, -0.0011077392846345901, 0.007153835613280535, 0.0382341705262661, -0.005737134721130133, -0.018634803593158722, -0.004863000474870205, 0.022760985419154167, -0.003607060294598341, -0.01531242299824953, 0.013128761202096939, 0.006798822898417711, 0.020644307136535645, -0.0005120049463585019, -0.009605430997908115, 0.0206844974309206, -0.005435709375888109, 0.007254310417920351, -0.020537134259939194, 0.005861054174602032, 0.023926498368382454, 0.002603982575237751, -0.018795562908053398, -0.003064494114369154, -0.007060058414936066, 0.01142068300396204, -0.008439918048679829, 0.0039185332134366035, 0.015486580319702625, -0.003667345503345132, 0.03019615076482296, -0.029124416410923004, 0.015406199730932713, -0.035662002861499786, -0.03359891101717949, 0.004387417808175087, 0.014321067370474339, 0.010677166283130646, 0.012525910511612892, 0.011681918054819107, 0.022533241659402847, 0.017576465383172035, -0.01063697598874569, 0.02136772871017456, -0.014294274151325226, 0.012874224223196507, -0.02318968065083027, 0.02261362224817276, 0.007602624595165253, 0.013075174763798714, -0.015888480469584465, -0.002398008480668068, 0.017616653814911842, -0.0024114050902426243, -0.006115591619163752, -0.020188819617033005, 0.02113998495042324, -0.004863000474870205, -0.006353382952511311, 0.017589861527085304, 0.0310803335160017, 0.036144282668828964, 0.015754513442516327, -0.012679972685873508, -0.0045347814448177814, 0.0036907896865159273, 0.002788187237456441, -0.003851549932733178, 0.010529803112149239, 0.0021618916653096676, 0.03370608761906624, 0.0060787503607571125, 0.0013714866945520043, -0.015191853046417236, -0.022586828097701073, 0.029472731053829193, -0.013296220451593399, 0.021461505442857742, 0.007904049940407276, 0.007394975982606411, -0.0026408236008137465, 0.035876352339982986, 0.0066213165409862995, -0.004678796045482159, -0.017107579857110977, 0.00534193217754364, 0.013175650499761105, -0.006721791811287403, -0.009163339622318745, -0.650757908821106, 0.004025707021355629, 0.012512513436377048, -0.0004035754536744207, 0.021662456914782524, 0.004581669811159372, 0.03311663120985031, 0.005509390961378813, -0.03705526143312454, 0.019639555364847183, 0.012874224223196507, -0.0019592666067183018, -0.008406426757574081, -0.004333830904215574, 0.004950079135596752, -0.011983344331383705, 0.012030232697725296, 0.007971033453941345, -0.013530662283301353, 0.006339986342936754, -0.01334310881793499, 0.01243213377892971, 0.0029539712704718113, -9.283491090172902e-05, -0.013497170992195606, -0.006905996706336737, -0.009344195015728474, -0.0031448742374777794, -0.014039737172424793, 0.02273419313132763, -0.0016963565722107887, 0.015218646265566349, 0.015459786169230938, 0.01630377769470215, 0.04670087993144989, -0.007448562886565924, -0.00599502120167017, 0.00881502591073513, 0.007301199249923229, 0.04458420351147652, -0.04621860012412071, 0.005345281679183245, -0.0009620502241887152, -0.009920253418385983, -0.012854129076004028, 0.037591125816106796, 0.022238515317440033, -0.021850010380148888, 0.0028568452689796686, -0.021890200674533844, 0.009813079610466957, -0.010703959502279758, 0.0018236251780763268, -0.02171604335308075, 0.026096763089299202, 0.013155555352568626, 0.017549671232700348, -0.02645847387611866, 0.015366009436547756, -0.01499090250581503, -0.019840506836771965, -0.004454401321709156, -0.03480461612343788, -0.024837473407387733, -0.038850415498018265, 0.018474042415618896, -0.015553563833236694, 0.015218646265566349, 0.02565467171370983, 0.003911835141479969, -0.021180175244808197, 0.00933749694377184, 0.017053993418812752, -0.01345698069781065, -0.0024381985422223806, 0.01752287708222866, 0.02454274706542492, -0.017040597274899483, -0.017442498356103897, 0.023122696205973625, 0.01720135658979416, -0.03670694679021835, -0.004705589264631271, 0.0017022176180034876, 0.001636908738873899, -0.005211314652115107, -0.01284073293209076, -0.008453315123915672, -0.007843765430152416, 0.025065217167139053, 0.0021618916653096676, 0.00720742205157876, -0.0033290788996964693, -0.03129468113183975, 0.022077754139900208, 0.017804209142923355, -0.009304004721343517, -0.0038749941159039736, -0.010590087622404099, 0.011782393790781498, -0.012626385316252708, -0.013604343868792057, 0.02749001979827881, 0.013135460205376148, 0.028213441371917725, 0.024810679256916046, 0.004367322660982609, -0.003556822659447789, 0.036251459270715714, -0.03006218560039997, -0.0030092326924204826, -0.0177640188485384, -0.005941434297710657, -0.004541479982435703, -0.0037510746624320745, -0.019518984481692314, 0.019867299124598503, -0.013892373070120811, -0.023203076794743538, -0.02667282149195671, 0.011735505424439907, 0.000502794748172164, 0.003312333021312952, -0.021662456914782524, -0.0026944102719426155, 0.016317175701260567, 0.017254943028092384, 0.01045612059533596, 0.024850869551301003, -0.023243267089128494, 0.007816972211003304, -0.025534100830554962, 0.028642134740948677, 0.0029455984476953745, 0.013758406043052673, 0.004079293925315142, -0.00412953132763505, -0.02861534245312214, 0.015031092800199986, -0.04434306174516678, -0.03630504384636879, -0.016544919461011887, -0.0076093231327831745, 0.0038850416895002127, -0.012043628841638565, -0.0363854244351387, -0.012338356114923954, 0.014106720685958862, -0.018741976469755173, -0.015057886019349098, -0.010382439009845257, 0.0070399632677435875, 0.0011663498589769006, 0.023497803136706352, -0.0016452816780656576, 0.003848200896754861, -0.003797963261604309, -0.025761844590306282, -0.021541886031627655, -7.938588532852009e-05, 0.003898438299074769, 0.01615641452372074, 0.013986149802803993, -0.009652319364249706, -0.014736365526914597, -0.01022837683558464, -0.03459026664495468, 0.025292960926890373, 0.0072476123459637165, -0.005780674051493406, 0.0029740664176642895, -0.02069789543747902, 0.011708712205290794, 0.018808960914611816, 0.006698347628116608, 0.013302918523550034, -0.024140845984220505, 0.011373794637620449, 0.020965827628970146, -0.022868160158395767, 0.007823670282959938, 0.025145597755908966, -0.006634713616222143, 0.0007753337267786264, 0.02645847387611866, -0.0003311495529487729, 0.017362117767333984, 0.04010970517992973, -0.006611269433051348, 0.00556967593729496, 0.005787372589111328, 0.03242000192403793, -0.027650779113173485, -0.00551273999735713, -0.002575514605268836, -0.015071282163262367, -0.010891513898968697, 0.00047223351430147886, -0.0023276759311556816, -0.010710658505558968, 0.024716902524232864, 0.01966634951531887, 0.0008268273086287081, 0.006062004715204239, 0.008212174288928509, -0.016652092337608337, -0.01616981066763401, -0.02229210175573826, 0.024341795593500137, 0.02159547246992588, 0.028213441371917725, -0.043030187487602234, -0.011889567598700523, -0.0005542882718145847, -0.016544919461011887, 0.02113998495042324, 0.02000126615166664, 0.01752287708222866, -0.009424575604498386, 0.000551776378415525, 0.004089341498911381, -0.01923765428364277, 0.009900158271193504, -0.005291694775223732, 0.004189816303551197, 0.0009319076198153198, 0.0013539035571739078, 0.013537360355257988, 0.021448109298944473, -0.029258383437991142, 0.006691649556159973, 0.015218646265566349, 0.01560715027153492, -0.0017834351165220141, 0.016424348577857018, 0.013557455502450466, 0.03550124168395996, -0.026270920410752296, 0.03359891101717949, -0.008861914277076721, 0.004913237877190113, 0.024582935497164726, 0.017053993418812752, -0.013329711742699146, 0.0001624349388293922, 0.006748585496097803, 0.013865579850971699, 0.007683004718273878, -0.020496943965554237, 0.014441637322306633, -0.012974699959158897, 0.006872504949569702, 0.01023507583886385, -0.011052274145185947, 0.013195744715631008, -0.006601221859455109, -4.633895878214389e-05, 0.0017365466337651014, 0.02440878003835678, 0.028106266632676125, -0.0022205023560673, 0.00015448064368683845, 0.024475762620568275, -0.01878216676414013, -0.004136229865252972, 0.004688843619078398, -0.02112658880650997, -0.007522244472056627, -0.00010120785009348765, -0.005502692889422178, 0.01357085257768631, -0.005475899204611778, 0.014789951965212822, 0.0076897032558918, -0.02690056525170803, 0.011688617058098316, 0.01618320867419243, -0.02262701839208603, -0.027543606236577034, 0.02101941592991352, 0.001075084786862135, -0.026887167245149612, 0.00853369478136301, 0.018460646271705627, -0.015553563833236694, 0.003017605748027563, 0.005187870468944311, -0.02802588790655136, -0.003905136836692691, 0.022131340578198433, -0.027650779113173485, 0.018701786175370216, -0.007281104102730751, -0.004022357985377312, 0.023350439965724945, 0.004012310411781073, 0.019599365070462227, -0.006959583144634962, -0.015031092800199986, -0.008292554877698421, 0.023926498368382454, 0.008017921820282936, -0.02398008480668068, -0.000390178756788373, 0.02783833257853985, -0.013356505893170834, -0.029874630272388458, -0.017616653814911842, -0.024502556771039963, -0.012391943484544754, 0.010817831382155418, -0.0030343516264110804, -0.03761792182922363, 0.018862547352910042, 0.0030310023576021194, -0.012251278385519981, 0.00262742699123919, -0.02430160529911518, 0.019652951508760452, 0.034322332590818405, -0.018916133791208267, 0.015325820073485374, -0.020095042884349823, 0.018058745190501213, 0.06323239952325821, 0.015901878476142883, -0.007354785688221455, 0.013698121532797813, 0.007388277444988489, 0.004152975510805845, -0.017254943028092384, -0.00519791804254055, 0.012016835622489452, 0.002322652144357562, -0.02308250591158867, 0.004424258600920439, -0.004437655210494995, -0.019197463989257812, 0.0127268610522151, 0.01992088556289673, -0.009370988234877586, -0.015888480469584465, 0.010174790397286415, 0.018581217154860497, 0.022359084337949753, -0.002123376354575157, 0.011038877069950104, 0.01969314180314541, 0.019358225166797638, 0.021206969395279884, 0.024368589743971825, 0.03164299577474594, -0.010931703262031078, -0.014428241178393364, -0.02702113427221775, 0.006236161570996046, -0.020175423473119736, 0.03359891101717949, -0.0008917175582610071, 0.012177595868706703, -0.0088820094242692, -0.009116451255977154, 0.003213532269001007, 0.02588241547346115, 0.016799455508589745, -0.015767911449074745, 0.013745009899139404, -0.001681285328231752, 0.008225571364164352, -0.02022900991141796, -0.02183661423623562, 0.014106720685958862, 0.0019910838454961777, -0.025922605767846107, -0.010060918517410755, -0.014213893562555313, -0.02218492701649666, 0.0053251865319907665, -0.04032405465841293, 0.015446390025317669, -0.01113935187458992, -0.010878116823732853, -0.020979225635528564, -0.04793337732553482, -0.02195718325674534, -0.024730300530791283, 0.010147997178137302, -0.015057886019349098, -0.009906856343150139, 0.000916836375836283, -0.014789951965212822, -0.0038850416895002127, -0.03598352521657944, 0.012619687244296074, -0.0009503280743956566, -0.018688390031456947, -0.024690110236406326, 0.010945100337266922, 0.01945200189948082, -0.006674903444945812, 0.021983977407217026, 0.0021870105993002653, 0.015017695724964142, 0.0009126499062404037, -0.003061144845560193, -0.013269427232444286, -0.01448182761669159, -0.03491178900003433, -0.028856482356786728, -0.0007133740582503378, 0.0013982801465317607, 0.0029389001429080963, -0.016250191256403923, -0.01854102686047554, -0.017375513911247253, -0.028347408398985863, 0.008573885075747967, -0.015767911449074745, 0.0353136882185936, -0.0007230028859339654, -0.00033345213159918785, 0.0003520819009281695, 0.016812853515148163, -0.0008925548172555864, -0.011735505424439907, 0.0010081013897433877, -0.01379859633743763, -0.02331024967133999, 0.006500746589154005, 0.0017901334213092923, 0.016826249659061432, -0.008607377298176289, 0.00917003769427538, -0.02024240605533123, -0.011480968445539474, 0.002046345267444849, -0.012438831850886345, 0.0030209547840058804, 0.007441864348948002, -0.027999093756079674, 0.030437292531132698, -0.01016809232532978, 0.011969947256147861, -0.003121430054306984, 0.007013170048594475, -0.02305571362376213, 0.019063496962189674, -0.012847431004047394, -0.003362570656463504, -0.0003642226511146873, -0.008734645321965218, -0.021916992962360382, -0.04332491382956505, -0.010824530385434628, -0.015633944422006607, -0.004806064534932375, -0.017777414992451668, -0.017603257670998573, -0.022198325023055077, -0.03185734152793884, -0.0014644262846559286, -0.009538447484374046, -0.013416790403425694, -0.015366009436547756, -0.01661190204322338, 0.02781154029071331, 0.005405566655099392, -0.03343815356492996, 0.01966634951531887, -0.02781154029071331, -0.006654808297753334, -0.011882868595421314, -0.008386331610381603, 0.020858654752373695, -0.010134600102901459, -0.002027924871072173, 0.002883638720959425, -0.008265760727226734, -0.019545778632164, -0.008841819129884243, 0.035581622272729874, -0.026605837047100067, 0.04016329348087311, 0.019626159220933914, 0.03424195200204849, -0.011896265670657158, 0.0033441500272601843, 0.007508847862482071, 0.007770083379000425, -0.0038281057495623827, 0.002458293689414859, -0.0034496490843594074, -0.02239927463233471, 0.008058112114667892, -0.019157273694872856, 0.003406109753996134, 0.01322923693805933, -0.02352459728717804, 0.01295460481196642, 0.002940574660897255, -0.011554650031030178, 0.009183434769511223, -0.028320614248514175, -0.02749001979827881, -0.010543199256062508, -0.0008075695368461311, -0.01295460481196642, 0.012003439478576183, -0.024556143209338188, -0.026163745671510696, 0.018929529935121536, 0.021314142271876335, 0.022225117310881615, 0.0030912875663489103, 0.024596333503723145, 0.019023308530449867, 0.004390766844153404, -0.00010487100371392444, 0.009250418283045292, -0.023457614704966545, -0.017321927472949028, -0.028213441371917725, -0.02294853888452053, 0.005757229868322611, -0.008915500715374947, 0.020724687725305557, 0.009444670751690865, 0.02419443242251873, 0.0021652409341186285, 0.022452861070632935, -0.02715510129928589, -0.035688795149326324, 0.0006740212556906044, -0.01788458786904812, -0.0036305044777691364, -0.029767457395792007, -0.015580357052385807, -0.01509807538241148, -0.014280877076089382, 0.01607603393495083, -0.024395382031798363, 2.356196091568563e-05, 0.0012257976923137903, -0.01311536505818367, 0.016906630247831345, -0.001430934527888894, 0.04871038347482681, -0.017670242115855217, 0.02858854830265045, -0.0004935844917781651, 0.01842045597732067, -0.02059072069823742, -0.0359567292034626, 0.0030728669371455908, -0.010904910042881966, 0.03327739238739014, 0.030035391449928284, 0.01052310410887003, -0.005248155444860458, -0.003320705844089389, -0.01888934150338173, -0.016236795112490654, -0.00910305418074131, 0.012974699959158897, 0.0003897600981872529, -0.008346141315996647, -0.021903596818447113, -0.034322332590818405, -0.010831228457391262, 0.030839193612337112, -0.004923285450786352, 0.0017650146037340164, 0.008855215273797512, -0.03134826570749283, -0.013644534163177013, 0.04520045220851898, 0.005502692889422178, 0.007756686769425869, 0.002908757422119379, 0.002937225392088294, 0.0020630911458283663, 0.0028116314206272364, -0.0007594251655973494, -0.0060787503607571125, 0.003848200896754861, 0.025735052302479744, -0.0254537221044302, 0.02736944891512394, 0.02554749883711338, 0.016317175701260567, -0.014361257664859295, 0.005274948664009571, 0.0055060419254004955, 0.02249305136501789, -0.03145544230937958, 0.003099660389125347, 0.012030232697725296, -0.0039352793246507645, 0.001126159681007266, -0.021622266620397568, -0.015285629779100418, -0.0016980312066152692, -0.024234622716903687, -0.020041456446051598, 0.035903144627809525, -0.018058745190501213, -0.03008897788822651, 0.01796496845781803, 0.006654808297753334, -0.0030058836564421654, -0.0013974427711218596, 0.006946186535060406, 0.021769629791378975, -0.020644307136535645, -0.004501289688050747, 0.02101941592991352, -0.0038046615663915873, 0.03258076310157776, -0.01368472445756197, -0.00494338059797883, 0.012338356114923954, 0.0216088704764843, -0.003915184177458286, 0.01650472916662693, 0.015071282163262367, 0.01740230806171894, -0.026485266163945198, 0.027650779113173485, -0.012934509664773941, -0.01740230806171894, 0.032741524279117584, -0.021448109298944473, -0.027396243065595627, -0.0010357319843024015, 0.011360397562384605, -0.00876143854111433, -0.00020848607528023422, 0.012847431004047394, 0.0022004072088748217, 0.0169468205422163, -0.008399727754294872, -0.0009369314066134393, -0.016370762139558792, 0.021421317011117935, 0.015486580319702625, -0.009504955261945724, 0.028079474344849586, -0.0028216789942234755, 0.02974066324532032, -0.009618827141821384, 0.0003615014429669827, 0.008044715970754623, -0.009491559118032455, -0.022519845515489578, -0.01130681112408638, 0.025132201611995697, -0.01283403392881155, 0.0027680923230946064, -0.007073455024510622, -0.0015556912403553724, 0.0036974879913032055, 0.013055079616606236, 0.02001466229557991, 0.013282823376357555, 0.013758406043052673, -0.00424340320751071, 0.01592867076396942, 0.006631364114582539, -0.01875537447631359, -0.042119212448596954, -0.010824530385434628, -0.029204796999692917, -0.03145544230937958, -0.00700647197663784, -0.006664855871349573, 0.030169358476996422, 0.018956324085593224, -0.02385951392352581, -0.024931250140070915, -0.0023042315151542425, -0.052756186574697495, -0.02316288650035858, -0.0012266349513083696, 0.03333097696304321, 0.030678432434797287, 0.011614935472607613, -0.02025580406188965, 0.03542086109519005, -0.011380492709577084, 0.013758406043052673, -0.030946366488933563, 0.004487893078476191, -0.004029056057333946, -0.02667282149195671, 0.011661823838949203, 0.005911292042583227, -0.013711517676711082, -0.02432839944958687, 0.017455894500017166, -0.0022573431488126516, 0.004394116345793009, 0.024596333503723145, 0.022760985419154167, -0.018072141334414482, -0.016772663220763206, 0.0039352793246507645, -0.012472323141992092, -0.00938438531011343, 0.028213441371917725, -0.026980943977832794, -0.00500031653791666, 0.025145597755908966, 0.010214980691671371, -0.015299025923013687, 0.0032369764521718025, 0.01992088556289673, 0.008386331610381603, -0.017482686787843704, -0.0008310137782245874, -0.00139911740552634, -0.004799365997314453, -0.013523964211344719, 0.027436431497335434, 0.001646956312470138, 0.0009854944655671716, 0.013604343868792057, 0.03745716065168381, -0.03322380408644676, 0.00508404616266489, 0.007770083379000425, -0.014374654740095139, -0.008044715970754623, 0.02158207632601261, -0.01955917477607727, 0.005583073012530804, -0.01306847669184208, 0.01572772115468979, 0.016089431941509247, -0.005807467736303806, -0.01091830711811781, 0.010951798409223557, 0.0029774156864732504, 0.007261008955538273, -0.011427381075918674, -0.036358632147312164, 0.0153794065117836, 0.005583073012530804, 0.004638605751097202, 0.00864756666123867, 0.0016854717396199703, -0.0060787503607571125, -0.00785046350210905, -0.02611015923321247, 0.011474269442260265, -0.00427019689232111, -0.03354532644152641, 0.026753200218081474, 0.015205249190330505, -0.0008791581494733691, 0.012907716445624828, 0.21166779100894928, 0.027784746140241623, 0.015339216217398643, 0.04230676591396332, 0.014146910049021244, 0.018715184181928635, 0.019492192193865776, 0.006892599631100893, 0.009036070667207241, 0.004631907679140568, -0.001360601861961186, 0.019036704674363136, 0.0007573319599032402, -0.0029355508740991354, 0.007100248709321022, -0.011742203496396542, -0.028642134740948677, -0.00291210669092834, -0.01740230806171894, 0.039171937853097916, 0.018152521923184395, -0.0030728669371455908, 0.0013966055121272802, -0.01402634009718895, 0.01045612059533596, -0.022787779569625854, -0.015968861058354378, -0.00030728671117685735, 0.03279510885477066, 0.005636659450829029, -0.0015933695249259472, 0.00949825718998909, 0.002429825719445944, -0.0006183412042446434, -0.01509807538241148, -0.022680604830384254, -0.009397781454026699, 0.006055306177586317, -0.011889567598700523, 0.02261362224817276, 0.027623986825346947, 0.01079773623496294, -0.00983987282961607, -0.005191219504922628, 0.009417876601219177, 0.011085765436291695, -0.010549897328019142, -0.005693595390766859, 0.029472731053829193, -0.000651832961011678, -0.040082912892103195, 0.010134600102901459, 0.020054852589964867, 0.0127268610522151, -0.027047928422689438, 0.008011223748326302, -0.001912378240376711, 0.017388910055160522, -0.024596333503723145, -0.005680198781192303, -0.0036305044777691364, 0.0019090290879830718, -0.004789318423718214, 0.01773722469806671, 0.0026341252960264683, 0.0017834351165220141, -0.009746096096932888, 0.010047521442174911, -0.007743290159851313, -0.006236161570996046, 0.001145417452789843, 0.016129622235894203, -0.03153582289814949, 0.007448562886565924, -0.018393663689494133, -0.025011630728840828, 0.046861641108989716, 0.005566326901316643, 0.02759719267487526, 0.02384611777961254, 0.009833174757659435, 0.0004713962262030691, 0.003149898024275899, -0.015004298649728298, -0.024904457852244377, -0.003312333021312952, 0.01730853132903576, -0.004260149318724871, 0.0008322697249241173, 0.00796433538198471, 0.0014409821014851332, 0.00780357513576746, -0.028668928891420364, -0.020965827628970146, 0.003036026144400239, -0.0019659651443362236, 0.00576727744191885, -0.0010633626952767372, -0.01638415828347206, -0.01911708526313305, -0.007167232222855091, 0.0628037080168724, 0.03890400379896164, 0.0019810362718999386, -0.004052500240504742, -0.00904276967048645, -0.018902737647294998, 0.0026508711744099855, 0.011226430535316467, -0.023926498368382454, 0.003928580787032843, 0.0018671643920242786, 0.02995501086115837, -0.006463905796408653, -0.004876397084444761, 0.015138265676796436, 0.001341344090178609, -0.01430767122656107, 0.0033156820572912693, 0.009437971748411655, 0.006741886958479881, -0.019974473863840103, -0.0046017649583518505, 0.025949399918317795, -0.020657705143094063, -0.0018989816308021545, -0.026297712698578835, -0.02158207632601261, -0.010817831382155418, -0.038287755101919174, 0.01663869619369507, -0.02101941592991352, 0.004956777207553387, -0.02418103627860546, -0.005713690537959337, 0.016893232241272926, 0.027623986825346947, -0.004092690534889698, -0.02284136600792408, 0.011474269442260265, -0.003938628360629082, 0.022640414535999298, 0.009866666048765182, 0.0010357319843024015, 0.02385951392352581, -0.02984783798456192, 0.01594206690788269, 0.023122696205973625, -0.013450282625854015, -0.008674360811710358, -0.02408725768327713, 0.0018403710564598441, -0.00257049105130136, 0.015191853046417236, 0.02183661423623562, -0.016250191256403923, -0.013081872835755348, -0.03276831656694412, 0.004779271315783262, 0.02124715968966484, -0.044959310442209244, -0.008399727754294872, 0.014106720685958862, -0.010764244943857193, -0.009813079610466957, -0.00723421573638916, -0.17094182968139648, 0.034536682069301605, -0.002416428877040744, -0.015205249190330505, 0.011286715976893902, 0.00373097974807024, -0.009759492240846157, 0.004196514841169119, -0.01957257278263569, 0.00027840008260682225, 0.008091604337096214, 0.011661823838949203, -0.03700167313218117, -0.015499976463615894, 0.00482950871810317, 0.013905770145356655, 0.0010683864820748568, 0.016786059364676476, 0.0012509163934737444, 0.02635130099952221, 0.038153789937496185, -0.00525485398247838, -0.0006685788393951952, -0.01164842676371336, 0.00018556516442913562, -0.01322923693805933, -0.02104620821774006, 0.0005990834906697273, 0.0022104547824710608, -0.019304638728499413, -0.002930527087301016, -0.005864403676241636, 0.023363836109638214, 0.020443357527256012, -0.0023293504491448402, -0.002192034386098385, -0.012130707502365112, -0.0076093231327831745, -0.017469290643930435, 0.05355998873710632, 0.02735605277121067, 0.004970173817127943, 0.023256663233041763, 0.02442217618227005, -0.0033106582704931498, 0.029445936903357506, 0.013175650499761105, -0.015499976463615894, -0.010007331147789955, 0.005194568540900946, 0.03268793597817421, -0.052622221410274506, 0.024475762620568275, 0.002337723271921277, -0.0006405294989235699, 0.007267707493156195, 0.01345698069781065, 0.007508847862482071, 0.008138492703437805, -0.03054446540772915, 0.006691649556159973, -0.01980031654238701, 0.004722335375845432, -0.03858248144388199, -0.018018554896116257, -0.03536727651953697, -0.012077121064066887, 0.002652545692399144, -0.04128861427307129, 0.026257522404193878, 0.013657931238412857, -0.014562208205461502, 0.01079773623496294, -0.012679972685873508, -0.004759176168590784, 0.0038783433847129345, 0.008788232691586018, 0.004025707021355629, 0.01107906736433506, 0.03416157513856888, 0.0032470240257680416, 0.006403620354831219, -0.02260022610425949, 0.03266114369034767, -0.021997373551130295, 0.007669608108699322, 0.026605837047100067, 0.017710430547595024, -0.003235301934182644, -0.008794930763542652, -0.01728173717856407, -0.0005387983401305974, 0.013095269910991192, 0.0036439010873436928, -0.006062004715204239, 0.027409639209508896, 0.01854102686047554, 0.021890200674533844, -0.0254537221044302, 0.009772889316082, 0.009638922289013863, -0.01741570420563221, -0.02454274706542492, 0.013122063130140305, 0.02712830901145935, 0.01878216676414013, 0.0029137812089174986, 0.0011244851630181074, -0.00014401446969714016, -0.03255397081375122, -0.037376780062913895, 0.020965827628970146, 0.024274813011288643, 0.004588368348777294, -0.01029536034911871, 0.044262681156396866, -0.02432839944958687, -0.00904276967048645, 0.0009972165571525693, -0.013611042872071266, 0.050050053745508194, -0.0338936410844326, -0.013838786631822586, -0.011621633544564247, -0.014441637322306633, -0.008058112114667892, -0.10663769394159317, -0.020952431485056877, 0.00854039378464222, 0.006058655679225922, 0.015499976463615894, 0.02010844089090824, -0.018862547352910042, 0.01989409327507019, -0.02329685352742672, 0.024020275101065636, 0.00910305418074131, -0.004065897315740585, 0.002806607633829117, 0.005733785685151815, 0.028856482356786728, -0.005874450784176588, -0.005934736225754023, -0.010174790397286415, -0.025735052302479744, 0.02791871316730976, 0.009458066895604134, -0.004718985874205828, 0.009960442781448364, -0.03775188699364662, -0.026887167245149612, -0.0007322131423279643, -0.03343815356492996, 0.004966824781149626, 0.006768680177628994, 0.012237881310284138, 0.01594206690788269, -0.0006945349159650505, 0.003941977862268686, -0.01509807538241148, -0.011708712205290794, 0.01063697598874569, -0.01911708526313305, -0.003543426049873233, -0.009210227988660336, -0.02802588790655136, 0.021515093743801117, 0.0064404611475765705, -0.009437971748411655, -0.03520651534199715, -0.0002415591588942334, -0.03536727651953697, -0.010596785694360733, 0.018259696662425995, 0.0192242581397295, -0.02398008480668068, -0.023792531341314316, 9.492814569966868e-05, -0.012251278385519981, -0.03231282904744148, -0.011480968445539474, 0.005134283564984798, 0.012298166751861572, -9.100333409151062e-05, -0.022238515317440033, -0.013557455502450466, -0.02104620821774006, 0.00029012217419221997, -0.025721656158566475, 0.02034958079457283, 0.017321927472949028, 0.01615641452372074, -0.024207828566432, -0.0088284220546484, -0.009993935003876686, -0.0153794065117836, -0.012298166751861572, -0.0002928433823399246, -0.026538854464888573, 0.018165919929742813, -0.03086598590016365, 0.027570398524403572, -0.012137406505644321, -0.04260149225592613, 0.04198524355888367, -0.010174790397286415, -0.018031952902674675, -0.030892780050635338, -0.010362343862652779, -0.0206844974309206, 0.03426874801516533, 0.010985290631651878, -0.004230006597936153, -0.0010935052996501327, 0.018728580325841904, -0.034429509192705154, 0.01663869619369507, 0.024060465395450592, 0.0035735685378313065, 0.0008335256716236472, 0.02001466229557991, 0.003908486105501652, -0.020054852589964867, -0.03491178900003433, 0.014682778157293797, 0.00732129393145442, 0.0025068565737456083, -0.007046661805361509, -0.04951418563723564, 0.017214754596352577, 0.007341389078646898, 0.035554829984903336, 0.02794550731778145, 0.006005068775266409, 0.00894229393452406, -0.013276125304400921, -0.006855758838355541, 0.02284136600792408, -0.03643901273608208, 0.017804209142923355, -0.003419506596401334, -0.013758406043052673, -0.022573431953787804, -0.02101941592991352, 0.036465805023908615, -0.005750531330704689, 0.00033952249214053154, 0.0207916721701622, 0.004293641075491905, -0.010422629304230213, -0.004377370234578848, 0.022760985419154167, -0.010710658505558968, 0.0077231950126588345, -0.014374654740095139, 0.0006869992939755321, -0.002597284270450473, -0.012740257196128368, 0.013510567136108875, 0.0017331974813714623, -0.027516812086105347, 0.02656564675271511, -0.01011450495570898, -0.018487440422177315, -0.015272232703864574, 0.013892373070120811, 0.011152748949825764, 0.0010826204670593143, -0.02781154029071331, -0.025614481419324875, 0.027181895449757576, -0.02317628264427185, -0.0069997734390199184, -0.018862547352910042, -0.011842679232358932, -0.004893143195658922, 0.004688843619078398, 0.008687756955623627, 0.04112785682082176, -0.010074314661324024, -0.003017605748027563, -0.023792531341314316, -0.0002185335906688124, -0.015004298649728298, 0.015004298649728298, -0.007488752715289593, 0.013678026385605335, -0.009618827141821384, 0.022198325023055077, 0.00449794065207243, 0.009250418283045292, -0.017442498356103897, 0.020872050896286964, -0.013048381544649601, -0.021541886031627655, 0.004836207255721092, 0.004169721622020006, -0.0024800633545964956, 0.009511654265224934, -0.017844397574663162, 0.02260022610425949, 0.015071282163262367, 0.003613758599385619, -0.0026123556308448315, 0.006919393315911293, -0.005968227982521057, -0.018058745190501213, 0.011835980229079723, 0.004223308060318232, 0.0033290788996964693, 0.0006367616588249803, 0.007515546400099993, -0.001960941357538104, 0.020175423473119736, -0.008895405568182468, 0.001218262012116611, -0.014146910049021244, -0.007830368354916573, 0.02578863874077797, -0.006323240231722593, -0.009116451255977154, -0.008084905333817005, -0.002121701603755355, 0.009324099868535995, -0.002113328780978918, 0.012793844565749168, -0.011360397562384605, 0.025266168639063835, 0.005221362225711346, 0.0006669042631983757, -0.018072141334414482, -0.012693368829786777, -0.013537360355257988, 0.02206435799598694, -0.021541886031627655, -0.01943860575556755, -0.002255668630823493, 0.001656166510656476, -0.0020379722118377686, 0.022024167701601982, 0.013865579850971699, 0.006872504949569702, -0.005435709375888109, 0.0052682505920529366, 0.0006874179234728217, -0.015459786169230938, -0.015915274620056152, 0.030330117791891098, 0.004705589264631271, 0.003767820540815592, 0.007944240234792233, -0.01876877062022686, 0.02949952334165573, 0.020711291581392288, 0.021233761683106422, -0.021675853058695793, -0.005680198781192303, -0.01113935187458992, -0.014347860589623451, -0.0025453721173107624, -0.003312333021312952, -0.01357085257768631, -0.008185381069779396, -0.014722968451678753, -0.004886444658041, 0.015499976463615894, 0.031053539365530014, 0.06993074715137482, 0.027315862476825714, -0.009625526145100594, 0.015580357052385807, 0.00354677508585155, 0.03041049838066101, -0.007937542162835598, 0.0019843855407088995, -0.020054852589964867, -0.03654618561267853, -0.01005422044545412, 0.00871455017477274, 0.014803348109126091, -0.010302058421075344, -0.01887594349682331, -0.0009277211502194405, -0.012164199724793434, 0.0067720296792685986, -0.0015883457381278276, 0.00015228275151457638, 0.004652002360671759, -0.01878216676414013, -0.02158207632601261, -0.009190132841467857, -0.015660736709833145, -0.006155781447887421, -0.003255397081375122, 0.009297306649386883, -0.029553109779953957, -0.02907082997262478, 0.0006702534155920148, 0.007555736228823662, -0.025185788050293922, -0.011105860583484173, 0.007997827604413033, -0.006594523321837187, -0.00892889779061079, -0.009947046637535095, -0.004216609988361597, -0.006681601982563734, 0.004735731985419989, 0.01753627508878708, -0.005305091384798288, -0.005777325015515089, -0.005251504480838776, -0.01650472916662693, 0.004802715498954058, 0.0007301198784261942, 0.004682145081460476]" +56,"We expect Xbox content and services revenue to decline in the low to mid-teens. Now back to company guidance. We expect COGS to grow between 6% and 7% in constant currency or to be between US$17.4 billion and US$17.6 billion, and operating expense to grow between 17% and 18% in constant currency, or to be between US$14.3 billion and US$14.4 billion. As we continue to focus our investment in key growth areas, total headcount growth sequentially should be minimal.","[-0.003946698736399412, -0.016969818621873856, 0.00489311758428812, -0.020755494013428688, -0.007643647957593203, -0.014393455348908901, -0.022582609206438065, -0.01624685898423195, -0.002019355772063136, -0.01863919571042061, 0.03396592661738396, 0.028208544477820396, 0.0032648169435560703, 0.0035753606352955103, -0.005162584129720926, 0.009503624401986599, 0.007117859553545713, -0.0023627611808478832, 0.011389889754354954, -0.01583937369287014, -0.020702915266156197, 0.01403854787349701, -0.023739343509078026, 0.007485911250114441, -0.012901530601084232, -0.016601765528321266, 0.022687766700983047, -0.008570349775254726, 0.02904980443418026, -0.015602768398821354, 0.004787960089743137, -0.021005243062973022, 0.003979560453444719, 0.0035589297767728567, -0.00828773807734251, -0.007597641088068485, -0.004722236189991236, 0.013151280581951141, 0.024567458778619766, -0.0018731208983808756, 0.022714056074619293, 0.005014705937355757, -0.007663364987820387, 0.029680751264095306, 0.002602652180939913, 0.01616799086332321, -0.019362155348062515, -0.01685151644051075, 0.007439904846251011, 0.008419185876846313, -0.008031416684389114, 0.04456055909395218, -0.015550189651548862, -0.02477777563035488, 0.014459178782999516, 0.03286176919937134, -0.02380506694316864, 0.018310578539967537, 0.011817093007266521, -0.0005081251147203147, -0.015813084319233894, -0.004925979301333427, -0.018402591347694397, 0.014590625651180744, -0.04826736822724342, 0.004324608948081732, -0.014077982865273952, -0.008248304016888142, 0.021465308964252472, 0.007597641088068485, 0.021347006782889366, 0.031705036759376526, 0.014840375632047653, 0.0043739015236496925, 0.012507189996540546, -0.010187149047851562, -0.024593748152256012, -0.014538046903908253, 0.009733656421303749, 0.005008133593946695, 0.02384450100362301, -0.0026108676102012396, -0.0004966235137544572, 0.0015839373227208853, 0.014774652197957039, 0.01740359328687191, -0.016286293044686317, -0.010548627935349941, -0.02531670778989792, -0.0018829794134944677, 0.03559586778283119, 0.00876752007752657, 0.012586058117449284, 0.020650336518883705, 0.0008400289807468653, -0.0030906496103852987, -0.028944646939635277, 0.02886577881872654, -0.01544503215700388, -0.027551308274269104, -0.0029904211405664682, 0.001960204681381583, -0.02356846258044243, -0.007597641088068485, -0.028655463829636574, 0.004101148806512356, 0.021110400557518005, -0.006601929664611816, 0.02739357203245163, 0.015379308722913265, 0.012014263309538364, 0.00902384240180254, 0.01257291343063116, 0.00671037333086133, 0.008333745412528515, -0.008438902907073498, -0.0011789159616455436, 0.011034982278943062, -0.009260446764528751, -0.009569347836077213, 0.014459178782999516, 0.014774652197957039, 0.020650336518883705, -0.008517771027982235, 0.009372176602482796, 0.0076567926444113255, 0.0024120539892464876, -0.00580010237172246, 0.014708928763866425, -0.004288461059331894, -0.004291747231036425, -0.017324725165963173, 0.011429323814809322, 0.02606595680117607, -0.041274383664131165, 0.04056457057595253, 0.007499055936932564, 0.029496725648641586, -0.015931386500597, -0.0167069248855114, 0.005875684320926666, 0.010114853270351887, 0.007006129249930382, 0.02121555805206299, 0.005786957684904337, 0.019217563793063164, 0.009911109693348408, -0.017482461407780647, 0.009937399066984653, 0.005869111977517605, 0.003052858402952552, -0.00498184422031045, 0.03344013914465904, 0.01725900173187256, 0.03861915320158005, -0.014275153167545795, 0.01611541211605072, 0.021149834617972374, -0.0017186705954372883, 0.0027127391658723354, -0.012625492177903652, 0.008714941330254078, -0.00763050327077508, 0.0009242373052984476, -0.005405761301517487, 0.019651338458061218, 0.02393651381134987, 0.02375248819589615, -0.009497052058577538, -0.013920245692133904, 0.0037889620289206505, 0.0025977229233831167, -0.00882009882479906, 0.012980399653315544, -0.014169995673000813, 0.03401850536465645, 0.008642645552754402, 0.004416621755808592, -0.025750482454895973, -0.028970936313271523, -0.012053697369992733, -0.009313025511801243, 0.01607597805559635, 0.019046682864427567, 0.00209000869654119, -0.028813200071454048, 0.03953928127884865, 0.005892115645110607, 0.006355466321110725, -0.003723238594830036, 0.004571072291582823, 0.02568475902080536, 0.005681800190359354, -0.005915118847042322, -0.6401998400688171, 0.013617917895317078, -0.004692660644650459, -0.006161581724882126, 0.0038086792919784784, 0.008780664764344692, 0.01385452225804329, 0.0019322721054777503, -0.04253627732396126, 0.018073974177241325, 0.008806954137980938, 0.008379751816391945, -0.0071047148667275906, -0.021202413365244865, 0.01721956767141819, -0.027603887021541595, -0.001818898948840797, -0.008307455107569695, -0.018205421045422554, 0.010482904501259327, 0.0020867225248366594, -0.0008153826929628849, -0.011876244097948074, -0.0010573274921625853, -0.004114293493330479, 0.008839815855026245, -0.002347973408177495, -0.028445148840546608, 0.006062996573746204, 0.015024401247501373, 0.0021984523627907038, 0.01569478213787079, 0.00240055238828063, 0.015379308722913265, 0.0484251044690609, -0.01128473225980997, -0.020190272480249405, 0.00686153769493103, 0.00032717999420128763, 0.05752124264836311, -0.0358324758708477, 0.004833966493606567, 0.004732094705104828, -0.030863774940371513, -0.02550073340535164, 0.021570466458797455, 0.015037545934319496, -0.012001118622720242, 0.0003164999361615628, -0.025579601526260376, 0.004275316372513771, -0.001531358459033072, 0.026407718658447266, -0.026854638010263443, 0.00867550726979971, 0.007880252785980701, -0.0035819329787045717, -0.041695013642311096, 0.01661491021513939, -0.012415177188813686, -0.015050690621137619, -0.013223576359450817, -0.0098782479763031, -0.012651781551539898, -0.04600647836923599, 0.025382431223988533, -0.02256946451961994, 0.006427762098610401, 0.028471438214182854, 0.015563334338366985, 0.004735380876809359, 0.017009252682328224, -0.008202297613024712, -0.003946698736399412, 0.0019536323379725218, 0.018757497891783714, 0.028997225686907768, -0.03609536960721016, -0.01305269543081522, 0.0016890950500965118, 0.014393455348908901, -0.02941785752773285, -0.004088004119694233, 0.014708928763866425, -0.010331740602850914, 0.003077504690736532, 0.005409047473222017, -0.011527908965945244, -0.01058806199580431, 0.007558207027614117, 0.0017712494591251016, 0.010988975875079632, 0.0029772764537483454, -0.010903535410761833, 0.023266132920980453, 0.017745355144143105, -0.01578679494559765, -0.0031218682415783405, 0.009733656421303749, 0.0008913755300454795, -0.012809517793357372, -0.003350257407873869, 0.025908220559358597, 0.019914232194423676, 0.027866780757904053, 0.045612137764692307, -0.006743235047906637, -0.008484909310936928, 0.03948670253157616, -0.035516999661922455, -0.002957559423521161, -0.022779779508709908, -0.0017137413378804922, -0.010489476844668388, -0.01491924375295639, -0.02582935057580471, 0.012053697369992733, -0.0049128346145153046, -0.023174120113253593, -0.007735660765320063, 0.0043508983217179775, 0.011895961128175259, 0.014774652197957039, -0.03338756039738655, -0.012152282521128654, 0.005530635826289654, 0.014853520318865776, -0.011869671754539013, 0.0033338265493512154, -0.011915678158402443, 0.005694944877177477, -0.017337869852781296, 0.018428880721330643, -0.015458176843822002, 0.014025403186678886, 0.00955620314925909, 0.002242815913632512, -0.03309837356209755, 0.004810963291674852, -0.03982846438884735, -0.03039056435227394, 0.0013169354060664773, -0.01597082056105137, -0.0044593424536287785, -0.0047255223616957664, -0.02288493700325489, -0.004538210574537516, 0.007466194219887257, 0.006562495604157448, -0.0002914428187068552, -0.01381508819758892, -0.005389330442994833, 0.0032878201454877853, -0.014183140359818935, 0.007275595795363188, -0.006371897179633379, -0.008787237107753754, -0.028944646939635277, -0.01920441910624504, -0.01841573603451252, 0.004817535635083914, 0.008110284805297852, 0.006647936068475246, 0.0003025336773134768, -0.023266132920980453, -0.0073281750082969666, -0.03159987926483154, 0.037357259541749954, 0.006513203028589487, 0.00595126673579216, 0.017929382622241974, 0.0008576922118663788, 0.02191222831606865, 0.0016373377293348312, 0.007913114503026009, -0.005685086362063885, 0.0011452327016741037, -0.009451044723391533, 0.00814971886575222, -0.02855030633509159, 0.02071605995297432, 0.020282285287976265, -0.019993100315332413, 0.0037396694533526897, 0.02458060346543789, 0.0009012340451590717, -0.0007833424606360495, 0.0364634208381176, -0.010154287330806255, -0.009569347836077213, -0.0033436850644648075, 0.035753607749938965, -0.019256997853517532, 0.0031678746454417706, 0.005668655503541231, 0.0005701517220586538, -0.012901530601084232, -0.0011764513328671455, -0.004929265473037958, 0.005024564918130636, 0.022030530497431755, -1.536544550617691e-05, 0.002288822317495942, 0.029312700033187866, 0.0014418101636692882, -0.028103385120630264, 0.002696308307349682, -0.0008034702623263001, 0.010298878885805607, 0.02763017639517784, 0.024698907509446144, -0.047268372029066086, 0.005356468725949526, 0.01399911381304264, -0.015168992802500725, 0.004646654240787029, 0.020098259672522545, 0.019322721287608147, 0.005842822603881359, -0.00349977845326066, 0.012947537936270237, -0.010877246037125587, 0.0027505301404744387, 0.005842822603881359, -0.022779779508709908, -5.5556931329192594e-05, -0.0032089517917484045, 0.019454168155789375, 0.0300225131213665, -0.004962127190083265, -0.0019897802267223597, 0.025724193081259727, -0.0012906460324302316, 0.003555643605068326, 0.0136310625821352, 0.012290301732718945, 0.02467261627316475, -0.017140699550509453, 0.04082746431231499, 8.74944671522826e-05, -0.005284172482788563, 0.024343999102711678, 0.016693780198693275, -0.009267019107937813, -0.020387442782521248, -0.022635187953710556, 0.0321519561111927, 0.012776656076312065, -0.017114410176873207, -0.0011288018431514502, -0.01353904977440834, 0.010673503391444683, -0.004140582866966724, -0.037541285157203674, -0.007551634684205055, 0.014853520318865776, -0.022898081690073013, 0.007985410280525684, 0.012264012359082699, 0.029260119423270226, 0.00201442651450634, 0.000425970705691725, 0.033676743507385254, 0.007886825129389763, -0.012776656076312065, 0.0182317104190588, -0.014932388439774513, -0.006187871564179659, -0.018612906336784363, -0.003999277483671904, 0.018494604155421257, -0.006933833472430706, 0.013801943510770798, 0.010213438421487808, -0.01933586597442627, 0.01689095050096512, 0.022714056074619293, -0.029812198132276535, -0.009582492522895336, 0.018520893529057503, 0.012448038905858994, -0.044455401599407196, -0.0021639475598931313, 0.015497610904276371, 0.002674948191270232, 0.011304449290037155, 0.008517771027982235, -0.022753490135073662, 0.032257113605737686, 0.02904980443418026, -0.026854638010263443, 0.0016701994463801384, -0.017784789204597473, -0.0024350571911782026, 0.022319713607430458, 0.018389446660876274, 0.026263127103447914, -0.021675623953342438, -0.018902089446783066, -0.022385437041521072, 0.001330080209299922, -0.0007418544846586883, -0.0038316824939101934, 0.011613349430263042, 0.011153284460306168, 0.014354021288454533, -0.021018387749791145, -0.009838813915848732, -0.0034964922815561295, -0.02012454904615879, 0.003003565827384591, -0.011468757875263691, -0.030995221808552742, 0.01874435320496559, 0.0030249259434640408, -0.004163586534559727, -0.013302444480359554, -0.039250098168849945, 0.009470761753618717, 0.013473325408995152, -0.010765516199171543, 0.01526100654155016, -0.034833475947380066, -0.009628498926758766, 0.04910862818360329, 0.018428880721330643, -3.5300730814924464e-05, 0.01911240629851818, 0.00916186161339283, 0.015050690621137619, -0.004393618553876877, -0.007689654361456633, 0.011383317410945892, 0.009326170198619366, -0.015576479025185108, 0.021793926134705544, -0.01570792682468891, -0.02154417708516121, -0.000870015355758369, 0.00431803660467267, 0.0051362947560846806, -0.023594751954078674, 0.013243293389678001, 0.006601929664611816, 0.004741953685879707, 0.02398909255862236, 0.023962803184986115, 0.04001249000430107, 0.01284237951040268, 0.0266574677079916, 0.007078425493091345, 0.03393963724374771, -0.030048802495002747, -0.010042556561529636, -0.021399585530161858, -0.013249865733087063, -0.009582492522895336, 0.025697903707623482, 0.0037298109382390976, 0.002405481645837426, -0.003624653210863471, -0.012671498581767082, 0.025527022778987885, 0.023239843547344208, 0.012441466562449932, -0.015063835307955742, 0.00637846952304244, -0.0021277996711432934, 0.007689654361456633, -0.019362155348062515, -0.029076093807816505, 0.02597394399344921, 0.01615484617650509, -0.025106392800807953, 0.013368167914450169, -0.02573733776807785, -0.034412845969200134, 0.010141142643988132, -0.024186262860894203, -0.010469759814441204, 0.001315292320214212, -0.034097373485565186, 0.0018353299237787724, -0.035622160881757736, -0.014485468156635761, -0.024462301284074783, 0.007899969816207886, 0.004097862634807825, -0.0254218652844429, 0.0007591068861074746, -0.010568344965577126, 0.003969701938331127, -0.042746592313051224, -0.003039713716134429, -0.002840900095179677, -0.02807709574699402, -0.02358160726726055, -0.0010712937219068408, 0.025014379993081093, -0.004554641433060169, 0.0071638659574091434, 0.005639079958200455, -0.00016769772628322244, -0.00475509837269783, -0.021425874903798103, -0.0067892419174313545, -0.028418859466910362, -0.02255631983280182, -0.016825227066874504, 0.015523900277912617, 0.012494045309722424, 0.005399188958108425, -0.03075861744582653, -0.01615484617650509, 0.010535483248531818, -0.021938517689704895, 0.00036579256993718445, -0.011560770682990551, 0.029391568154096603, -0.007091570179909468, 0.0032237395644187927, -0.006516489200294018, 0.005034423433244228, 0.0026798774488270283, -0.01624685898423195, 0.005257883109152317, -0.01574736088514328, -0.009175006300210953, 0.008202297613024712, -0.001607762067578733, -0.007623930927366018, -0.012559768743813038, 0.011830237694084644, -0.02016398310661316, -0.010062274523079395, -0.0254218652844429, -0.023318711668252945, -0.010680075734853745, 0.0005393438041210175, -0.02928641065955162, 0.01626000367105007, -0.002009497256949544, -0.0006514845881611109, -0.0038744027260690928, 0.012395460158586502, -0.02228027954697609, 0.022306568920612335, 0.012329735793173313, -0.0009661360527388752, -0.004416621755808592, -0.006874682381749153, -0.020794928073883057, -0.030732328072190285, 0.0077948118560016155, -0.005501060280948877, 0.0074793389067053795, -0.029996223747730255, -0.014998111873865128, -0.0064474791288375854, -0.01902039349079132, 0.012730649672448635, -0.004925979301333427, -8.544060256099328e-05, -0.021465308964252472, -0.030101381242275238, 0.009036987088620663, 0.009720511734485626, -0.034412845969200134, 0.01854718290269375, -0.02509324811398983, -0.006868110038340092, -0.003304251004010439, -0.0008905539871193469, 0.028445148840546608, 0.01698296330869198, -0.014143706299364567, -0.015379308722913265, -0.007196727674454451, -0.011291304603219032, -0.021478453651070595, -0.0012314948253333569, -0.027656465768814087, 0.02836628071963787, -0.001513284514658153, 0.040590859949588776, -0.009779662825167179, -0.004265457857400179, 0.010029411874711514, 0.01424886379390955, -0.01017400436103344, 0.016969818621873856, 0.0020998672116547823, -0.032257113605737686, 0.004137296695262194, -0.01626000367105007, 0.023542173206806183, 0.0024991375394165516, -0.018718063831329346, 0.018941523507237434, -0.002068648347631097, -0.003304251004010439, 0.0174561720341444, -0.015602768398821354, -0.022030530497431755, -0.01703554205596447, -0.017285291105508804, -0.007617358583956957, 0.002426841761916876, -0.027314703911542892, -0.03535926342010498, 0.02168876864016056, 0.008425758220255375, 0.0419841967523098, -0.017193278297781944, 0.013269582763314247, 0.0029016942717134953, 0.018297433853149414, -0.00925387442111969, 0.0012191716814413667, -0.0064967721700668335, -0.02260889858007431, -0.02799822762608528, -0.0020078541710972786, -0.004456056281924248, -0.013604773208498955, 0.03070603869855404, -0.014564336277544498, 0.0011476973304525018, 0.013709930703043938, 0.014222574420273304, -0.018244855105876923, -0.010969258844852448, 0.0015354661736637354, -0.031521011143922806, -0.007775094825774431, -0.025106392800807953, 0.013263010419905186, -0.003903978271409869, -0.015523900277912617, 0.03075861744582653, -0.014051692560315132, -0.003443913534283638, 0.013525905087590218, -0.03033798560500145, 0.025250984355807304, 0.010121425613760948, 0.02504066936671734, -0.022175122052431107, 0.03659486770629883, 0.0030101381707936525, 0.023147830739617348, -0.030075091868638992, -0.02264833264052868, 0.018810076639056206, -0.008530915714800358, 0.02380506694316864, 0.045743584632873535, -0.02126813866198063, 0.004475773312151432, -0.015050690621137619, -0.0009595637093298137, -0.016641199588775635, -0.0027456008829176426, 0.0027324561960995197, 0.0028573309537023306, 0.010824667289853096, -0.0005077143432572484, -0.009411610662937164, -0.02080807276070118, 0.025172116234898567, -0.000740211398806423, 0.007347892038524151, -0.013414174318313599, -0.033492717891931534, -0.008169435895979404, 0.01690409518778324, 0.017745355144143105, 0.012356026098132133, 0.005993986967951059, 0.01574736088514328, -0.011909105814993382, 0.013867666944861412, 0.0013440464390441775, -0.005967697594314814, 0.005941408220678568, 0.03196793049573898, -0.020689770579338074, 0.047794159501791, 0.010423753410577774, 0.006894399411976337, -0.018244855105876923, -0.00393684022128582, 0.010338312946259975, 0.016404595226049423, -0.03609536960721016, -0.003910550847649574, 0.03522781655192375, -0.004101148806512356, -0.004883259069174528, -0.013775654137134552, -0.02960188314318657, -0.01957247033715248, -0.029680751264095306, -0.01565534807741642, 0.01712755486369133, -0.007315029855817556, -0.04111664742231369, 0.012099703773856163, 0.0050179921090602875, -0.028024516999721527, -0.015366164036095142, -0.0036838045343756676, 0.024094250053167343, -0.01519528217613697, 0.00546819856390357, 0.010509193874895573, 0.02049260027706623, 0.04229966923594475, -0.021307572722434998, 0.001292289118282497, 0.016417739912867546, -0.0019224135903641582, -0.011021837592124939, 0.03338756039738655, 0.026815203949809074, -0.007466194219887257, -0.02003253437578678, 0.0349123440682888, -0.01777164451777935, -0.033545296639204025, 0.026276271790266037, -0.027603887021541595, -0.021241847425699234, -0.009457617066800594, 0.007801384199410677, 0.00079114711843431, 0.0012109562521800399, 0.0010729368077591062, -0.01795567199587822, 0.010831239633262157, -0.0009924254845827818, -0.0010400749742984772, -0.03286176919937134, 0.012053697369992733, 0.009181578643620014, -0.011291304603219032, 0.0074793389067053795, -0.0019043396459892392, 0.026552310213446617, -0.01813969761133194, -0.00041118290391750634, 0.014577480964362621, -0.0008971263305284083, -0.02439657784998417, 0.005211876705288887, 0.03107408992946148, -0.02367362007498741, 0.011054699309170246, -0.015313585288822651, -0.009365604259073734, 0.011409606784582138, 0.006585498806089163, 0.003235241398215294, -0.005261169280856848, -0.0021885938476771116, 0.005392616614699364, 0.024593748152256012, 0.00469594681635499, -0.015576479025185108, -0.01510326936841011, -0.00819572526961565, -0.026026522740721703, -0.032441139221191406, -0.003085720119997859, 0.012395460158586502, 0.013118418864905834, 0.008958118967711926, -0.03228340297937393, -0.014064837247133255, -0.004216165281832218, -0.060202762484550476, -0.028760621324181557, -0.02338443510234356, 0.035332974046468735, 0.021162979304790497, 0.02132071740925312, -0.022293424233794212, 0.046611133962869644, -0.004718950018286705, 0.01721956767141819, -0.012940965592861176, 0.027183257043361664, 0.014012258499860764, -0.02090008556842804, -0.000764446915127337, 0.01452490221709013, -0.003489919938147068, -0.01795567199587822, 0.030968932434916496, 0.02458060346543789, -0.005793530028313398, 0.0447445847094059, 0.018257999792695045, -0.006105716805905104, -0.01464320532977581, 0.002850758610293269, -0.007025846280157566, -0.005027851089835167, 0.0026519447565078735, -0.023634186014533043, 0.0019848509691655636, 0.010147714987397194, 0.020334864035248756, -0.004600647836923599, -0.006230591796338558, 0.03070603869855404, -0.00805770605802536, -0.014932388439774513, -0.011613349430263042, -0.0068155312910676, 0.007150721270591021, -0.004508635029196739, 0.02362104132771492, 0.030180249363183975, 0.0004843003407586366, 0.023213554173707962, 0.047767870128154755, -0.026578599587082863, -0.000317937636282295, 0.016089122742414474, -0.038382548838853836, -0.011113850399851799, -0.0012618920300155878, 0.0003614794695749879, 0.0014935674844309688, -0.011863099411129951, 0.010035984218120575, -0.00030623062048107386, -0.0284977275878191, -0.019138695672154427, 0.028234833851456642, 0.004810963291674852, 0.019953666254878044, -0.010246300138533115, -0.03946041315793991, 0.016588620841503143, 0.00010834114800672978, 0.0024301279336214066, 0.007170438300818205, -0.0008856247295625508, -0.005796816200017929, -0.026920361444354057, -0.036489710211753845, -0.0059578390792012215, 0.00031629455043002963, -0.03286176919937134, -0.0053104618564248085, 0.009286736138164997, -0.0068155312910676, 0.020413732156157494, 0.20305944979190826, 0.01694352924823761, 0.006979839876294136, 0.037357259541749954, -0.0018764070700854063, -0.019362155348062515, 0.022753490135073662, 0.007683082018047571, -0.007801384199410677, 0.02233285829424858, -0.033860769122838974, 0.02237229235470295, 0.0014615271938964725, -0.004094576463103294, 0.006582212634384632, -0.009313025511801243, -0.03946041315793991, -0.0037791035138070583, -0.028392570093274117, 0.0404331237077713, 0.031652458012104034, 0.008852960541844368, -0.003397907130420208, -0.031179247424006462, 0.008596639148890972, -0.024370288476347923, -0.02136015146970749, 0.008688651956617832, 0.012277157045900822, 0.01633887179195881, -0.007439904846251011, 0.01544503215700388, -0.00046047556679695845, -0.008097140118479729, -0.005363041069358587, -0.012546624056994915, -0.008668934926390648, -0.009267019107937813, -0.014787796884775162, 0.011541053652763367, 0.04621679335832596, 0.02044002152979374, -0.017613908275961876, -0.004032139200717211, 0.005448481533676386, 0.013335306197404861, -0.0017203136812895536, 0.008130001835525036, 0.003972988110035658, -0.00032759076566435397, -0.024343999102711678, 0.017048686742782593, 0.029312700033187866, 0.02623683772981167, -0.017193278297781944, 0.006132006179541349, 0.005921691190451384, 0.002612510696053505, -0.001337474095635116, -0.003749527968466282, -0.0006481984164565802, 0.016312582418322563, -0.010147714987397194, 0.014235719107091427, -0.005349896382540464, 0.002228028140962124, 0.008136574178934097, 0.0007591068861074746, -0.00209000869654119, -0.024698907509446144, 0.007361036725342274, -0.001157555845566094, -0.026591744273900986, 0.0022198124788701534, -0.01786365918815136, -0.014761507511138916, 0.034228820353746414, -0.0167069248855114, 0.032625164836645126, 0.010298878885805607, -0.00016872465494088829, 0.009707367047667503, -0.004032139200717211, -0.016089122742414474, -0.016352016478776932, -0.006184585392475128, 0.009017270058393478, 0.004633509553968906, 0.005399188958108425, 0.004249026998877525, 0.02402852661907673, 0.0015543617773801088, -0.018113408237695694, -0.01394653506577015, -0.006322604604065418, 0.02260889858007431, -0.009352459572255611, 0.008274593390524387, -0.02334500104188919, 0.001912555075250566, -0.002019355772063136, 0.05381443351507187, 0.025711048394441605, -0.013309016823768616, -0.003923695534467697, -0.016312582418322563, -0.006960122846066952, 0.01718013361096382, 0.014446034096181393, -0.01698296330869198, -0.012737222015857697, 0.004239168483763933, 0.018626051023602486, -0.01084438432008028, 0.021977951750159264, 0.006592071149498224, 0.0028606171254068613, -0.015918241813778877, 0.01376250945031643, -0.006214160937815905, 0.003044642973691225, -0.03094264306128025, 0.0019618477672338486, 0.0062043024227023125, 0.0005553638911806047, -0.009582492522895336, 0.00022428158263210207, -0.01974335126578808, -0.022766634821891785, -0.03493863344192505, 0.007229589391499758, -0.013453608378767967, 0.010331740602850914, -0.030311696231365204, 0.02343701384961605, 0.0038185378070920706, 0.016864661127328873, -0.01001626718789339, -0.03246742859482765, 0.011435896158218384, -0.01296068262308836, 0.01510326936841011, 0.030495723709464073, -0.00695355050265789, 0.03927638754248619, -0.03672631457448006, 0.024015381932258606, 0.02095266431570053, -0.003986132796853781, -0.014104272238910198, -0.03827739134430885, -0.008616356179118156, 0.013341878540813923, 0.02288493700325489, 0.015234717167913914, -0.04545440152287483, -0.022161977365612984, -0.035806186497211456, 0.0026585173327475786, 0.009365604259073734, -0.05589129775762558, -0.01791623793542385, 0.007190155331045389, -0.014275153167545795, -0.003677232190966606, -0.02251688577234745, -0.1654130071401596, 0.005967697594314814, -0.019585615023970604, -0.01452490221709013, 0.024278275668621063, 0.005001561250537634, 0.007998554967343807, 0.005208590533584356, -0.0020292142871767282, -0.015405598096549511, 0.00604327954351902, 0.03241484984755516, -0.04950297251343727, -0.017508750781416893, 0.0102660171687603, -0.004124152008444071, -0.006099144462496042, 0.009010697714984417, 0.006536206230521202, 0.01434087660163641, 0.04258885607123375, -0.005185587331652641, 0.011087561026215553, -0.013749364763498306, -0.008603211492300034, 0.0037298109382390976, -0.018626051023602486, 0.012158854864537716, 0.006263453513383865, 0.005267741624265909, -0.01740359328687191, -0.006164867896586657, 0.01128473225980997, 0.014367165975272655, -0.01725900173187256, -0.006509916856884956, -0.011409606784582138, 0.0022526744287461042, -0.007354464381933212, 0.04161614552140236, 0.028155965730547905, 0.007223017048090696, 0.0015026044566184282, 0.034412845969200134, 0.0006822925060987473, 0.040170226246118546, 0.009378748945891857, 0.0046433680690824986, 0.012112848460674286, -0.00805770605802536, 0.020663481205701828, -0.04939781501889229, 0.024567458778619766, 0.005188873503357172, -0.0012068485375493765, 0.0037659588269889355, 0.01128473225980997, -0.0021458736155182123, 0.014183140359818935, -0.0324937179684639, 0.0121785718947649, -0.0272621251642704, -0.014091127552092075, -0.024685760959982872, 0.0032943924888968468, -0.01845517009496689, -0.011915678158402443, -0.012816090136766434, -0.03730468079447746, 0.020374298095703125, 0.02781420201063156, -0.0009940685704350471, 0.008281165733933449, -0.002338114893063903, 0.009483907371759415, -0.01238888781517744, 0.012967254966497421, 0.002255960600450635, 0.009536486119031906, 0.026302561163902283, 0.0009883177699521184, 0.0001567095605423674, -0.03407108411192894, 0.028786910697817802, -0.021951662376523018, 0.01017400436103344, 0.010910107754170895, 0.02095266431570053, -0.001592152751982212, 0.010206866078078747, 0.006966695189476013, 0.010029411874711514, 0.023213554173707962, 0.00032101842225529253, -8.959967090049759e-05, 0.005001561250537634, 0.015523900277912617, 0.003411051817238331, -0.009260446764528751, 0.019125550985336304, -0.003690376877784729, -0.0026913790497928858, -0.01598396524786949, 0.007065280806273222, 0.04400848224759102, 0.027551308274269104, -0.015234717167913914, 0.015116414055228233, 0.00983224157243967, -0.021583611145615578, -0.024882933124899864, 0.011541053652763367, 0.021701913326978683, 0.023489592596888542, -0.001566684921272099, 0.02421255223453045, -0.03756757453083992, -0.014314587228000164, -0.008425758220255375, 0.013078984804451466, 0.04340382665395737, -0.018152842298150063, -0.0508437305688858, -0.025027524679899216, -0.009227585047483444, -0.027840491384267807, -0.1017400398850441, -0.024698907509446144, -0.019966810941696167, 0.012835807166993618, 0.029996223747730255, 0.01974335126578808, -0.015826229006052017, 0.019901087507605553, -0.01725900173187256, 0.03733097016811371, 0.015168992802500725, -0.024501735344529152, -0.011179573833942413, 0.006782669574022293, 0.0284977275878191, -0.005944694392383099, -0.0017515323124825954, -0.009431327693164349, -0.008879249915480614, 0.03094264306128025, 0.015405598096549511, -0.006973267532885075, -0.002269105287268758, -0.01762705296278, -0.04797818511724472, -0.0012906460324302316, -0.04093262180685997, 0.006007131654769182, 0.004909548442810774, 0.02375248819589615, 0.031205536797642708, 0.0030462860595434904, 0.011265015229582787, -0.018757497891783714, -0.028760621324181557, -0.0052644554525613785, -0.008340317755937576, -0.02527727372944355, -0.003749527968466282, -0.029154961928725243, 0.015865663066506386, 0.008432330563664436, -0.02264833264052868, -0.03107408992946148, -0.01185652706772089, -0.03191535174846649, 0.00013555480109062046, 0.006651222240179777, 0.004791246261447668, -0.01994052156805992, -0.011034982278943062, -0.022398583590984344, -0.007913114503026009, -0.013348450884222984, -0.013092129491269588, 0.004341039806604385, 0.007413615472614765, -0.009497052058577538, -0.00026823420193977654, -0.020361153408885002, -0.02237229235470295, 0.008741230703890324, -0.0367526039481163, 0.03504379093647003, 0.008918684907257557, 0.017653342336416245, -0.02021656185388565, -0.014104272238910198, -0.0038086792919784784, -0.028103385120630264, -0.015550189651548862, 0.030232828110456467, -0.009142144583165646, 0.004239168483763933, -0.027183257043361664, 0.01570792682468891, -0.007472766563296318, -0.013617917895317078, 0.047268372029066086, -0.021070966497063637, -0.01570792682468891, -0.03322982043027878, 0.004975271876901388, -0.013696786016225815, 0.02781420201063156, 0.01553704496473074, 0.003480061423033476, -0.005865825805813074, 0.002177092246711254, -0.012835807166993618, 0.005639079958200455, 0.018257999792695045, 0.009759945794939995, -0.012789800763130188, -0.003230312140658498, -0.0009948901133611798, -0.017140699550509453, -0.006960122846066952, -0.004594075493514538, -0.0034833475947380066, 0.0059578390792012215, 0.004334467463195324, -0.04734724014997482, 0.014853520318865776, 0.0029493439942598343, 0.026854638010263443, -0.007190155331045389, 0.006513203028589487, 0.006795814260840416, -0.00849805399775505, -0.01280294544994831, 0.005248024594038725, -0.025947654619812965, 0.016378305852413177, -0.01093639712780714, -0.02490922249853611, -0.012336308136582375, -0.02472519688308239, 0.019033538177609444, -0.00527102779597044, -0.0027587455697357655, 0.01570792682468891, -0.021005243062973022, -0.007853963412344456, 0.00246791890822351, 0.0037298109382390976, -0.018718063831329346, 0.01887580007314682, -0.015024401247501373, 0.012027407996356487, 0.001602832810021937, -0.02647344209253788, 0.007545062340795994, -0.013361595571041107, -0.006887827068567276, 0.04766271263360977, 0.0052644554525613785, -0.02910238318145275, -0.0003887958300765604, 0.012691215611994267, 0.03094264306128025, -0.0016956673935055733, -0.020926374942064285, -0.023187264800071716, 0.007755377795547247, 0.002237886656075716, -0.0007365144556388259, -0.006069568917155266, -0.009339314885437489, -0.011961684562265873, 0.01319071464240551, 0.024002237245440483, 0.041274383664131165, -0.001213420880958438, 0.009063276462256908, -0.0205320343375206, -0.017889948561787605, -0.03572731837630272, 0.013170997612178326, -0.017101265490055084, 0.018902089446783066, -0.002576362807303667, 0.03052201308310032, 0.006654508411884308, 0.00628317054361105, -0.03412366285920143, 0.010732654482126236, 0.009884820319712162, -0.01473521813750267, 0.011186146177351475, -0.017285291105508804, -0.027183257043361664, 0.010522338561713696, -0.007150721270591021, 0.013249865733087063, 0.01247432827949524, -0.011869671754539013, -0.008964691311120987, 0.024330854415893555, -0.012678070925176144, -0.01615484617650509, 0.029154961928725243, 0.003972988110035658, 0.0013267939211800694, 0.00929988082498312, 0.004038711544126272, 0.00580010237172246, 0.0367526039481163, -0.006749807856976986, -0.0017515323124825954, -0.003250029170885682, 0.003963129594922066, -0.0024202694185078144, 0.011389889754354954, -0.0034734890796244144, 0.004416621755808592, 0.02214883267879486, 0.0062503088265657425, 0.01522157248109579, -0.005031137261539698, -0.014051692560315132, 0.027656465768814087, 0.007183582987636328, 0.00599727313965559, -0.04111664742231369, -0.02551387809216976, -0.023634186014533043, 0.007584496401250362, -0.02886577881872654, -0.023542173206806183, 0.006125433836132288, 0.03075861744582653, 0.01066035870462656, 0.009549630805850029, 0.010739226825535297, 0.00987167563289404, 0.0013875882141292095, 0.025080103427171707, -0.017837369814515114, -0.020137693732976913, -0.003245099913328886, 0.03546442091464996, 0.010062274523079395, 0.014327731914818287, 0.00527102779597044, -0.013801943510770798, 0.046663712710142136, -0.001879693241789937, 0.020466310903429985, -0.012060269713401794, -0.003857971867546439, -0.00934588722884655, -0.01602339930832386, -0.0033584728371351957, -0.006138578522950411, -0.019533036276698112, -0.007216444704681635, 0.008918684907257557, 0.01271093264222145, 0.014814086258411407, 0.02196480706334114, 0.06456680595874786, 0.008333745412528515, 0.013085557147860527, 0.014367165975272655, 0.016417739912867546, 0.03854028508067131, -0.012855524197220802, 0.0014418101636692882, -0.008511198684573174, -0.04324609041213989, 0.01501125656068325, -0.006069568917155266, 0.00992425438016653, -0.01300668902695179, -0.01607597805559635, 0.020137693732976913, 0.011422751471400261, 0.015905097126960754, 0.007775094825774431, -0.00978623516857624, -0.006490199826657772, -0.015813084319233894, 0.013315589167177677, 0.008550632745027542, -0.015471321530640125, -0.005602932069450617, 0.004728808533400297, 0.013223576359450817, -0.027866780757904053, -0.040958911180496216, -0.008083995431661606, 0.01012799795717001, -0.012395460158586502, 0.0017120982520282269, 0.008425758220255375, -0.005947980564087629, -0.0030002796556800604, 0.0064967721700668335, -0.003930267877876759, -0.004807677119970322, 0.004068287089467049, 0.02486978843808174, 0.015379308722913265, -0.0008593352977186441, -0.008833243511617184, -0.006312746088951826, 0.008642645552754402, 0.022819213569164276, 0.004577644634991884]" +57,"Other income and expense should be roughly $100 million, as interest income is expected to more than offset interest expense. Further FX and equity movements through Q2 are not reflected in this number. And as a reminder, we are required to recognize mark-to-market gains or losses on our equity portfolio, which can increase quarterly volatility. And we expect our Q2 effective tax rate to be between 19% and 20%.","[-0.01832527294754982, -0.014160438440740108, 0.012983707711100578, -0.02945794351398945, -0.006257168482989073, -0.0017270842799916863, -0.02587486244738102, -0.004088810179382563, -0.008699877187609673, -0.012798603624105453, 0.020282084122300148, 0.031520526856184006, -0.0019221043912693858, 0.013109313324093819, 0.006829007063060999, 0.018973136320710182, 0.00860071461647749, -0.03170563280582428, 0.012163962237536907, -0.04907894507050514, -0.025702981278300285, 0.015799928456544876, -0.03971797972917557, 0.0034277252852916718, -0.007073608692735434, -0.012302789837121964, 0.015680933371186256, 0.00665381969884038, -0.012805215083062649, -0.009241966530680656, 0.007410761900246143, 0.0011345869861543179, -0.015006626956164837, 0.01418688241392374, -0.021630698814988136, 0.013644792139530182, 0.006954613141715527, 0.02055974118411541, 0.024446919560432434, -0.020467188209295273, 0.0193169005215168, 0.014041443355381489, -0.007417372427880764, 0.019594555720686913, -0.022979311645030975, -0.00011248773080296814, -0.006888504605740309, -0.011198778636753559, -0.000146574922837317, 0.017611302435398102, -0.002768293023109436, 0.0404055081307888, -0.010345978662371635, -0.016037920489907265, -0.0016097417101264, 0.014583532698452473, 0.009394016116857529, -0.004452406894415617, -0.009724559262394905, 0.004227637778967619, -0.014557089656591415, -0.0021534841507673264, -0.012745716609060764, 0.015244618058204651, -0.02763334847986698, -0.014041443355381489, -0.005682024639099836, 0.0028162216767668724, 0.017624523490667343, 0.011615261435508728, 0.034587960690259933, 0.020784510299563408, 0.007086830213665962, -0.002143567893654108, 0.020282084122300148, -0.014623197726905346, -0.021009277552366257, -0.016037920489907265, 0.015509052202105522, 0.014887631870806217, 0.01943589560687542, -0.003930149599909782, -0.046381715685129166, -0.005080437287688255, 0.004809392616152763, 0.004911860916763544, 0.008323059417307377, 0.019409453496336937, -0.01808728277683258, 0.03442930057644844, 0.0404055081307888, 0.01832527294754982, 0.01956811361014843, 0.02214634418487549, -0.0031748602632433176, 0.009202301502227783, -0.04434557631611824, 0.0187219250947237, -0.018986359238624573, -0.04717501997947693, 0.0016816346906125546, -0.0011312814895063639, -0.02985459379851818, -0.011562375351786613, -0.036967866122722626, -0.014266212470829487, 0.015284283086657524, -0.006019177846610546, -0.01644779182970524, -0.0035665531177073717, 0.0021501786541193724, -0.009737780317664146, 0.009678282774984837, -0.00871970970183611, 0.011959025636315346, -0.007794191129505634, 0.013658014126121998, 0.010167486034333706, 0.0202027540653944, 0.007133106235414743, 0.014041443355381489, -0.0028195271734148264, 0.02488323673605919, -0.004399519879370928, 0.015390056185424328, 0.011126059107482433, 0.007252101320773363, -0.01263333298265934, -0.0062307254411280155, -0.008951089344918728, -0.016553565859794617, 0.008594104088842869, 0.01170120295137167, 0.022133123129606247, -0.029246395453810692, 0.032366715371608734, -0.00886514876037836, 0.016910551115870476, -0.007106662727892399, -0.0058836555108428, -0.01008815597742796, 0.021472036838531494, 0.005767965689301491, 0.0036227453965693712, 0.0077214716002345085, 0.01536361314356327, 0.014239768497645855, -0.013168811798095703, 0.012679608538746834, -0.010379033163189888, 0.005962986033409834, 0.0047498950734734535, 0.0287175290286541, 0.010980620048940182, 0.026205405592918396, -0.00023675103147979826, 0.0017386532854288816, 0.00953945517539978, -0.028294434770941734, -0.008851926773786545, -0.016394905745983124, -0.01971355266869068, -0.004379687365144491, 0.027157368138432503, 0.0073512643575668335, 0.02229178324341774, 0.017743518576025963, 0.009737780317664146, -0.008554439060389996, -0.006888504605740309, 0.013763788156211376, -0.0025815365370362997, -0.004663954023271799, 0.02661527879536152, 0.00665381969884038, 0.020110202953219414, -0.00615800591185689, -0.007701639086008072, -0.01332086045295, -0.02998681180179119, 0.00871970970183611, 0.01572059839963913, 0.01064346730709076, 0.014041443355381489, 0.010425308719277382, -0.008580882102251053, 0.012210237793624401, -0.022939646616578102, 8.666409848956391e-05, -0.015641268342733383, -0.004855668637901545, 0.022397557273507118, 0.009109750390052795, 0.01144337933510542, -0.6481805443763733, 0.020996056497097015, 0.007655363064259291, 0.003295508213341236, -0.0017816238105297089, -0.005506837274879217, 0.015522273257374763, 0.012990318238735199, -0.031123876571655273, 0.001030466053634882, -0.003042643191292882, 0.007100051734596491, -0.010121209546923637, -0.010385643690824509, 0.005698551889508963, -0.03887179121375084, -0.012454839423298836, -0.023600731045007706, -0.03852802887558937, 0.006663735955953598, 0.01958133466541767, 0.017016325145959854, -0.006518297363072634, 0.021405929699540138, 0.010504638776183128, 0.005450644996017218, -0.013948891311883926, -0.0485500767827034, -0.001052777748554945, 0.009189080446958542, -0.018483933061361313, 0.0033136880956590176, 0.008673434145748615, 0.00977744534611702, 0.039797309786081314, -0.014847966842353344, -0.01598503254354, 0.012177184224128723, 0.012064799666404724, 0.05193483084440231, -0.02974882163107395, -0.0028790247160941362, 0.00038652808871120214, 0.0034938338212668896, -0.006296833511441946, 0.018748367205262184, 0.02401060424745083, 0.014094330370426178, 0.01609080657362938, -0.006280306726694107, -0.0037219079677015543, -0.005933237262070179, -0.008263560943305492, -0.024949343875050545, 0.008574271574616432, 0.0016898983158171177, -0.007628920022398233, -0.02439403347671032, -0.007893353700637817, 0.0009850164642557502, -0.001486614695750177, -0.018854141235351562, 0.007384318392723799, -0.02389160916209221, -0.01784929260611534, 0.0065017701126635075, 0.003893790068104863, 0.020599406212568283, 0.009374183602631092, 0.014160438440740108, -0.01164170540869236, 0.014147217385470867, -0.006058843340724707, 0.0007057081093080342, 0.032498933374881744, 0.0037020754534751177, 0.03133542463183403, -0.02948438748717308, -0.018761590123176575, 0.016209801658988, -0.010359200648963451, -0.022212453186511993, -0.015879260376095772, -0.0014857883797958493, 0.0026046745479106903, -0.01743941940367222, 0.0022146343253552914, -0.014490981586277485, 0.011463211849331856, 0.009499790146946907, -0.0041483077220618725, 0.003910317085683346, 0.017624523490667343, -0.038078490644693375, 0.01847071200609207, 0.023362740874290466, 0.005801020190119743, 0.0015791666228324175, 0.032155171036720276, -0.007463648449629545, 0.003748351475223899, -0.01115250214934349, 0.03707364201545715, -0.002764987526461482, 0.037708282470703125, 0.03281625360250473, -0.012606889009475708, 0.006085286382585764, 0.026522725820541382, -0.027554018422961235, -0.03360955789685249, -0.015932146459817886, -0.003920233342796564, -0.029510829597711563, -0.008534606546163559, -0.03310713171958923, 0.025795532390475273, -0.007787580136209726, -0.006822396069765091, -0.005596083588898182, -0.00947334710508585, 0.01220362726598978, 0.018510377034544945, -0.031520526856184006, -0.013274584896862507, -0.0033764911349862814, 0.0051333243027329445, -0.0145438676699996, 0.014266212470829487, -0.0031368478666990995, 0.015892481431365013, 0.019118575379252434, 0.034138426184654236, -0.0023617257829755545, -0.006323277018964291, -0.013896004296839237, 0.014173660427331924, -0.013829896226525307, -0.02713092416524887, -0.02763334847986698, -0.013532407581806183, 0.0001875828456832096, 0.0035996073856949806, -0.007106662727892399, -0.011013674549758434, -0.03884534910321236, 0.003963204100728035, -0.004326800815761089, 0.022067014127969742, 0.019594555720686913, -0.016183357685804367, 0.003973120357841253, -0.020903505384922028, -0.017743518576025963, 0.004584623966366053, -0.006029094569385052, -0.0009668366983532906, -0.02701192907989025, -0.005814241711050272, -0.001541980542242527, -0.010464973747730255, -0.003042643191292882, -0.009803889319300652, 0.0015163634670898318, -0.03456151857972145, 0.006015872582793236, -0.03392687812447548, 0.008012348785996437, -0.002484026597812772, -0.010987231507897377, -0.009526233188807964, -0.005956375040113926, 0.011040117591619492, 0.0053514824248850346, 0.011912750080227852, 0.0031665966380387545, 0.0007623135461471975, -0.006164616905152798, 0.009195690974593163, -0.03995596989989281, 0.02291320264339447, -0.0016023045172914863, -0.006356331519782543, -0.020414302125573158, 0.01905246637761593, 0.0022262034472078085, 0.0020543213468044996, 0.005906793754547834, 0.011159113608300686, 0.004455712158232927, -0.0064885481260716915, 0.023613952100276947, -0.017624523490667343, 0.01226312480866909, -0.0057283006608486176, 0.009969159960746765, -0.018272386863827705, -0.005635748617351055, -0.007959462702274323, 0.02291320264339447, 0.027183812111616135, 0.027342472225427628, -0.01435876451432705, 0.008580882102251053, -0.014200103469192982, -0.031388312578201294, 0.016196580603718758, -0.013948891311883926, 0.022820651531219482, 0.04400181025266647, 0.030542122200131416, -0.024711353704333305, 0.004095421172678471, -0.017412977293133736, -0.028453094884753227, -0.006914948113262653, 0.03070078231394291, 0.0034773065708577633, 0.0073446533642709255, 0.013142367824912071, 0.012282957322895527, -0.013453077524900436, 0.0008651948883198202, -0.003963204100728035, 0.006700095720589161, -0.019475560635328293, 0.0034872228279709816, 0.003302119206637144, -0.003606218146160245, -0.002145220525562763, -0.015641268342733383, 0.008799039758741856, -0.00886514876037836, 0.021141495555639267, 0.021855467930436134, 0.01307625975459814, 0.018391381949186325, 0.006240641698241234, 0.039215557277202606, 0.00029273665859363973, 0.004346633329987526, -0.0035599421244114637, 0.010431920178234577, -0.0069678351283073425, 0.018140170723199844, -0.021115051582455635, 0.024618802592158318, 0.011892917566001415, 0.01435876451432705, 0.011800365522503853, 0.006881894078105688, 0.006085286382585764, 0.008342891931533813, -0.005896877497434616, 0.0019187988946214318, -0.01548260822892189, 0.006128257140517235, 0.008316447958350182, 0.026469839736819267, 0.03628034144639969, 0.012441618368029594, -0.00037330639315769076, -0.002839359687641263, 0.003440947039052844, 0.012613500468432903, 0.005814241711050272, -0.003880568314343691, -0.013347304426133633, -0.005853906739503145, -0.021207604557275772, -0.0010949218412861228, -0.002031183335930109, 0.015152066014707088, 0.0019121881341561675, 0.006706706248223782, 0.006541435141116381, 0.01263994351029396, -0.033001359552145004, -0.001826247083954513, 0.0033880602568387985, -0.014834744855761528, -0.028056442737579346, 0.015390056185424328, 0.026575613766908646, 0.015694156289100647, 0.01893347129225731, 0.03228738531470299, -0.030171915888786316, 0.01647423580288887, 0.03625389561057091, 0.006610848940908909, -0.011469823308289051, -0.014292655512690544, -0.0037020754534751177, -0.0023534621577709913, -0.007946240715682507, 0.02787134051322937, -0.010266648605465889, -0.01684444397687912, -0.0200573168694973, 0.008699877187609673, 0.0006020004511810839, -0.0041549187153577805, 0.019541669636964798, 0.0032161781564354897, 0.021524924784898758, -0.02255621738731861, -0.033979762345552444, -0.002526997122913599, -0.006462105084210634, 0.018655816093087196, -0.010742629878222942, -0.04183345288038254, 0.03339800983667374, 0.006835618056356907, 0.00959234219044447, -0.00115194043610245, -0.017148543149232864, 0.020030872896313667, -0.007159549742937088, -0.0030641285702586174, 0.0014444704866036773, -0.02624507062137127, -0.003685548435896635, 0.07742626219987869, 0.02898196317255497, -0.005553113296627998, 0.021881910040974617, 0.025200556963682175, 0.013962113298475742, -0.005163073074072599, -0.012778771109879017, 0.006243946962058544, -0.01113928109407425, -0.009962549433112144, -0.011892917566001415, -0.034006208181381226, 0.005424201488494873, 0.009764224290847778, 0.005850601475685835, -0.0008544522570446134, -0.02948438748717308, 0.030912330374121666, 0.002662519458681345, -0.004538347944617271, 0.015786707401275635, 0.01208463218063116, 0.030119027942419052, 0.014252990484237671, 0.00498788570985198, 0.00891803577542305, 0.028056442737579346, 0.0007825592765584588, -0.014133995398879051, 0.0011511141201481223, -0.00010711641516536474, -0.007529756985604763, 0.017809627577662468, 0.0024625412188470364, 0.004095421172678471, 0.016936995089054108, -0.03405909612774849, 0.019766438752412796, 0.008746153675019741, -0.005437423475086689, 0.00936096254736185, 0.008673434145748615, 0.003781405743211508, 0.0117673110216856, -0.024486584588885307, -0.02119438163936138, 0.026297956705093384, 0.02057296223938465, 0.005189516581594944, -0.0003014134126715362, -0.00891803577542305, -0.046619705855846405, 0.013618349097669125, -0.0187219250947237, 0.013115924783051014, 0.0037747947499156, -0.025927750393748283, -0.0001851037668529898, -0.03477306663990021, -0.026046745479106903, -0.022371113300323486, 0.012891155667603016, 0.006395996548235416, 0.003016199916601181, -0.006356331519782543, -0.0008577576372772455, 0.00013180379755795002, -0.023746170103549957, -0.004673870280385017, 0.007133106235414743, -0.02190835401415825, -0.033636000007390976, -0.014451315626502037, 0.009169247932732105, -0.007417372427880764, -0.0034277252852916718, 0.017042769119143486, 0.002422876190394163, 0.019647443667054176, -0.03141475468873978, -0.016368461772799492, -0.03308068960905075, -0.03509038686752319, -0.024301480501890182, 0.016275910660624504, 0.0001836576557252556, -0.011899528093636036, -0.014200103469192982, 0.02017631195485592, 0.0024394032079726458, -0.021379485726356506, 0.0016312269726768136, -0.03691498190164566, 0.020863840356469154, -0.0030723921954631805, 0.0028112635482102633, 0.018483933061361313, 0.008858537301421165, 0.0170956552028656, -0.0046375105157494545, 0.006019177846610546, -0.011304551735520363, -0.02673427388072014, 0.0021253880113363266, 0.013459688983857632, 0.011344216763973236, -0.0019055772572755814, 0.003150069620460272, -0.0012320970417931676, -0.0029881037771701813, -0.015390056185424328, -0.02144559472799301, -0.008058625273406506, -0.0035599421244114637, -0.018801255151629448, 0.007542978972196579, 0.010041879490017891, 0.004895333666354418, 0.016421349719166756, 0.04172768071293831, -0.015033070929348469, 0.02537243813276291, 0.010451752692461014, 0.012296179309487343, -0.014345542527735233, -0.012560613453388214, -0.005853906739503145, -0.004835836123675108, 0.018642595037817955, 0.010458363220095634, 0.020110202953219414, -0.005695246625691652, -0.01882769726216793, 0.006346415262669325, -0.032155171036720276, -0.010379033163189888, -0.02563687227666378, -0.0027996946591883898, 0.006610848940908909, -0.01126488670706749, 0.007754526101052761, -0.010841792449355125, -0.04059061408042908, 0.0264962837100029, -0.025412103161215782, -0.00892464630305767, 0.013737344183027744, 0.0018378160893917084, 0.020612627267837524, -0.00971794780343771, -0.0027468078769743443, -0.02092994749546051, -0.010134431533515453, 0.010359200648963451, -0.015548717230558395, 0.0009709684527479112, -0.011575596407055855, 0.005189516581594944, 0.020282084122300148, 0.012567223981022835, 0.002760029397904873, 0.004138391464948654, 0.009122971445322037, 0.007014110684394836, -0.01258044596761465, 0.015641268342733383, -0.013935670256614685, 0.0008251165854744613, 0.004832530859857798, -0.0016312269726768136, 0.011046729050576687, -0.019264014437794685, -0.0139885563403368, 0.0063530257903039455, -0.011840030550956726, -0.019092131406068802, 0.030277688056230545, -0.023984160274267197, -0.008448665030300617, 0.003397976513952017, 0.028400206938385963, -0.011350828222930431, 0.006415829062461853, -0.05291323736310005, -0.0008858537767082453, 0.019541669636964798, 0.002556745894253254, 0.036201007664203644, -0.010306313633918762, 0.016646118834614754, -0.001032118801958859, 0.020625848323106766, -0.015019848942756653, 0.015019848942756653, -0.006987667642533779, -0.0118796955794096, -0.032869141548871994, -0.01757163740694523, 0.0026195489335805178, -0.007860299199819565, 0.014213325455784798, -0.0014874410117045045, 0.014041443355381489, 0.015284283086657524, 0.012335844337940216, 0.000648689572699368, -0.008970921859145164, 0.013241530396044254, -0.005295290146023035, -0.016500679776072502, -0.01684444397687912, 0.009367573074996471, 0.006362942047417164, 0.014319099485874176, 0.035116828978061676, -0.0018708702409639955, -0.0030641285702586174, -0.003431030549108982, -0.009949327446520329, 0.02387838624417782, -0.00013665865117218345, 0.043896038085222244, -0.012507726438343525, 0.014834744855761528, 0.02439403347671032, 0.017174985259771347, -0.03268403932452202, -0.009744391776621342, 0.008283393457531929, -0.00787352118641138, 0.03540770709514618, 0.02067873626947403, -0.01943589560687542, 0.002239425200968981, 0.011112837120890617, 0.013340692967176437, -0.031044546514749527, -0.01207802165299654, -0.004009480122476816, 0.0023336296435445547, 0.0042474702931940556, -0.013896004296839237, 0.007146327756345272, -0.023574287071824074, 0.051062196493148804, -0.018655816093087196, 0.02974882163107395, -0.0066306814551353455, -0.018655816093087196, -0.0036293561570346355, 0.02391805127263069, 0.005417590960860252, 0.025464991107583046, -0.010729407891631126, 0.017293980345129967, -0.007100051734596491, -0.009116360917687416, -0.004739978816360235, 0.01635524071753025, -0.007966073229908943, 0.04045839607715607, -0.037100084125995636, 0.04418691620230675, -0.00031422192114405334, -0.013697679154574871, -0.03977086767554283, -0.005225876346230507, 0.008058625273406506, 0.01609080657362938, -0.03540770709514618, 0.00013862123887520283, 0.031890735030174255, -0.01332086045295, -0.022714877501130104, -0.014438094571232796, -0.019475560635328293, -0.029246395453810692, -0.0075033134780824184, 0.0077280825935304165, 0.01611725054681301, 0.017122099176049232, -0.01831205189228058, 0.0036227453965693712, 0.0002760029456112534, -0.016156915575265884, -0.011899528093636036, -0.02502867393195629, 0.027527576312422752, -0.011007064022123814, -0.010418698191642761, 0.010220373049378395, 0.007999127730727196, 0.032260943204164505, -0.011377271264791489, -0.014239768497645855, -0.0025815365370362997, -0.006323277018964291, -0.008527995087206364, 0.0211679395288229, 0.021472036838531494, 0.01182680856436491, -0.013697679154574871, 0.006283611990511417, -0.021829023957252502, -0.024354368448257446, 0.02069195732474327, -0.04720146209001541, -0.02168358489871025, -0.01671222597360611, 0.006726538762450218, -0.003573163878172636, -0.01599825546145439, 0.012567223981022835, -0.002171664033085108, 0.029272839426994324, 0.0001140371459769085, 0.026959042996168137, -0.008309837430715561, 0.021220825612545013, 0.0030674340669065714, 0.007014110684394836, 0.019039245322346687, -0.017743518576025963, 0.014702528715133667, -0.0022675213403999805, 0.009519622661173344, 0.020255642011761665, -0.006481937598437071, 0.011258276179432869, 0.0029947145376354456, 0.03688853606581688, -0.014266212470829487, 0.0187219250947237, -0.016778334975242615, 0.004082199186086655, -0.006881894078105688, 0.013724122196435928, -0.00904364138841629, -0.01047158520668745, 0.01710887812077999, -0.0028674558270722628, 0.02230500429868698, 0.012910988181829453, 0.005249014124274254, -0.030885886400938034, 0.003649188671261072, -0.009228745475411415, -0.028532424941658974, -0.023706505075097084, 0.010974009521305561, 0.03540770709514618, 0.02289998158812523, -0.035249046981334686, -0.0043896036222577095, -0.0013139062793925405, -0.05473782867193222, -0.03509038686752319, -0.028030000627040863, 0.021538145840168, 0.04035262390971184, 0.016553565859794617, -0.010398865677416325, 0.048840951174497604, 0.011053339578211308, 0.007880131714046001, -0.03810493275523186, 0.009387405589222908, 0.009195690974593163, -0.01958133466541767, 0.004072282928973436, 0.01319525483995676, -0.02701192907989025, -0.015323948115110397, 0.006829007063060999, -0.0025369133800268173, 0.020361416041851044, 0.02366684004664421, -0.0029203426092863083, -0.025531098246574402, 0.013948891311883926, 0.014120773412287235, 0.008673434145748615, 0.01126488670706749, -0.022463664412498474, -0.02017631195485592, 0.012587056495249271, 0.02016308903694153, -0.005430812481790781, -0.03519615903496742, 0.011998690664768219, 0.013380358926951885, -0.006921559106558561, -0.004234248772263527, -0.023680061101913452, -0.003282286459580064, 0.0014386860420927405, -0.021260490640997887, 0.017003104090690613, 0.021591033786535263, -0.011357438750565052, -0.004445795901119709, 0.01281843613833189, -0.019964763894677162, -0.0025170808658003807, 0.010339368134737015, -0.03675632178783417, 0.0007941282237879932, 0.0037351297214627266, 0.0034508632961660624, -0.00020256054995115846, -0.009724559262394905, -0.004865584895014763, 0.005794409196823835, -0.013922448270022869, 0.006045621354132891, -0.007463648449629545, 0.006491853855550289, -0.006108424626290798, 0.011621872894465923, -0.032736923545598984, 0.020401081070303917, -0.014795079827308655, 0.013843118213117123, -0.0012477977434173226, 0.0012734148185700178, -0.014728971756994724, -0.02304542064666748, -0.021366264671087265, 0.0050506885163486, -0.00721243629232049, -0.017135320231318474, -0.031282536685466766, -0.010993842035531998, -0.008151177316904068, 0.010960787534713745, 0.20932592451572418, 0.0002910839393734932, 0.01918468438088894, 0.026959042996168137, 0.007100051734596491, 0.00471023004502058, 0.021379485726356506, -0.0073380423709750175, 0.0002076219825539738, 0.007318209856748581, -0.02156458981335163, 0.02289998158812523, -0.034614406526088715, -0.0032723702024668455, 0.006263779476284981, -0.018893806263804436, -0.027025150135159492, -0.0006652167066931725, -0.03516971692442894, 0.056906189769506454, 0.02103572152554989, 0.009982381947338581, 0.007278544828295708, -0.0301983579993248, 0.018179835751652718, -0.008633769117295742, 0.016421349719166756, 0.006921559106558561, 0.016302354633808136, 0.022807428613305092, -0.011608650907874107, 0.017624523490667343, 0.0051267133094370365, -0.00886514876037836, -0.01733364537358284, -0.011840030550956726, 0.0009362614946439862, 0.005632443353533745, 0.00516637833788991, 0.006081981118768454, 0.03630678355693817, 0.006078675854951143, -0.010947566479444504, -0.0113243842497468, 0.023587509989738464, 0.007516535464674234, 0.006025788839906454, 0.016196580603718758, -0.02177613601088524, 0.007192603778094053, -0.0346408486366272, 0.009830332361161709, -0.007298377342522144, 0.006789342034608126, 0.012831658124923706, 0.006577794905751944, 0.03109743446111679, 0.002905468223616481, -0.005741522181779146, -0.001960116671398282, 0.00776774762198329, 0.007020721677690744, -0.006072064861655235, 0.020784510299563408, -0.01905246637761593, 0.005096964538097382, -0.013420023955404758, 0.026059966534376144, 0.018854141235351562, -0.008323059417307377, 0.0002400564553681761, 0.006164616905152798, -0.01746586337685585, -0.008640379644930363, -0.01015426404774189, 0.005457255989313126, 0.017188208177685738, -0.0039070118218660355, 0.0026526032015681267, -0.012368898838758469, 0.0035235825926065445, -0.010511250235140324, -0.022357892245054245, -0.016936995089054108, -0.01907891035079956, -0.012183794751763344, 0.010260038077831268, -0.00019502005307003856, -0.002199759939685464, 0.015390056185424328, 0.025108003988862038, 0.0033384787384420633, -0.013777009211480618, -0.008210674859583378, -0.000981711084023118, -0.004049145150929689, -0.006356331519782543, 0.00942046009004116, -0.05955052748322487, -0.014940518885850906, -0.019158240407705307, 0.04577351734042168, 0.010398865677416325, -0.015628047287464142, 0.027818452566862106, -0.01770385354757309, -0.003606218146160245, 0.01610402762889862, 0.01225651428103447, -0.025729425251483917, 0.01263994351029396, -0.0113243842497468, 0.007437205407768488, -0.01474219374358654, 0.0033186462242156267, -0.014530646614730358, -0.02155136875808239, 0.001613047206774354, 0.006610848940908909, -0.018364937976002693, 0.0006110903341323137, -0.0182062778621912, 0.006171227432787418, 0.007675195578485727, -0.0018097199499607086, -0.019290458410978317, 0.003897095564752817, -0.030806556344032288, -0.0033764911349862814, -0.03564569726586342, 0.02115471661090851, -0.009691504761576653, 0.011317773722112179, -0.03897756710648537, 0.01553549524396658, -0.014398429542779922, 0.011754089966416359, -0.00665712496265769, -0.031150320544838905, 0.0030327269341796637, -0.02289998158812523, -0.014557089656591415, -0.0036161344032734632, -0.012646554037928581, 0.034482188522815704, -0.02588808536529541, 0.030912330374121666, -0.01287132315337658, -0.01152271032333374, -0.0008651948883198202, -0.03675632178783417, -0.011245054192841053, 0.009427070617675781, 0.007972683757543564, 0.03347733989357948, -0.03469373658299446, -0.024182485416531563, -0.03995596989989281, 0.012904377654194832, 0.005596083588898182, -0.05352143570780754, 0.008032181300222874, -0.004845752380788326, 0.0011998690897598863, -0.017637744545936584, 0.017888957634568214, -0.1668049395084381, 0.012666386552155018, 0.015006626956164837, 0.01623624563217163, -0.0065083811059594154, 0.013439856469631195, 0.03334512189030647, -0.010610412806272507, -0.021234046667814255, -0.000551592733245343, 0.018351716920733452, -0.0059398477897048, -0.009797277860343456, -0.016936995089054108, 0.00019594970217440277, -0.0007395887514576316, -0.02687971293926239, -0.005751438904553652, 0.014054665341973305, 0.02440725453197956, 0.021101830527186394, -0.010339368134737015, 0.017769962549209595, -0.027051594108343124, 0.035963017493486404, 0.01281182561069727, -0.018999580293893814, 0.009889829903841019, 0.004977969452738762, -0.016685783863067627, -0.019528448581695557, 0.026205405592918396, 0.031229650601744652, 0.030171915888786316, 0.0123226223513484, 0.0019386315252631903, -0.016051141545176506, 0.0052324868738651276, -0.0020526687148958445, 0.027527576312422752, 0.047360122203826904, 0.009836943820118904, -0.00015132647240534425, 0.017915401607751846, -0.012111075222492218, 0.0076156980358064175, 0.011972247622907162, 0.012963875196874142, -0.0028641503304243088, 0.009922884404659271, 0.03130898252129555, -0.042917631566524506, 0.030251245945692062, -0.01632879674434662, -0.0005073826760053635, 0.017902178689837456, -0.010848402976989746, -0.010074933990836143, 0.022463664412498474, -0.034587960690259933, -0.012996929697692394, -0.017412977293133736, 0.011806976050138474, -0.009519622661173344, 0.007529756985604763, -0.02091672644019127, -0.011066561564803123, -0.012025134637951851, -0.017862513661384583, 0.013413412496447563, -0.0013031635899096727, -0.019872212782502174, 0.023389184847474098, 0.011529320850968361, -0.0040193963795900345, 0.00010783947800518945, -0.006303444504737854, 0.014345542527735233, -0.010636855848133564, 0.005453950259834528, -0.00822389591485262, 0.034349970519542694, -0.021326599642634392, 0.024089934304356575, -0.013552241027355194, 0.004184667486697435, 0.02329663187265396, 0.005850601475685835, 0.02007053792476654, 0.0005937368841841817, -0.013386969454586506, -0.0032475795596837997, 0.024460140615701675, -0.011079782620072365, 0.0056456648744642735, 0.005843990482389927, 0.03022480197250843, 0.03159985691308975, 0.0072388797998428345, 0.0037219079677015543, -0.013684457167983055, 0.017624523490667343, -0.01992509886622429, 0.0016832874389365315, 0.026311179623007774, 0.009023808874189854, -0.021392706781625748, 0.017426198348402977, 0.021207604557275772, -0.00936096254736185, -0.038713131099939346, 0.0014262907207012177, -0.0018774811178445816, 0.006941391620784998, 0.008904813788831234, 0.029828151687979698, -0.024499807506799698, -0.007966073229908943, 0.015614825300872326, 0.005933237262070179, 0.04553552716970444, 0.0009288243018090725, -0.018417825922369957, -0.009334518574178219, -0.011251664720475674, -0.021829023957252502, -0.11021607369184494, -0.02190835401415825, 0.009830332361161709, 0.027289584279060364, 0.0301983579993248, 0.010193929076194763, -0.009248577989637852, 0.022622326388955116, -0.025187334045767784, 0.034746624529361725, -0.019673887640237808, -0.0007825592765584588, -0.013499354012310505, -0.002978187520056963, 0.029775263741612434, 0.008931256830692291, 0.002531955251470208, -0.006862061098217964, -0.003959898371249437, 0.024737797677516937, -0.000718103488907218, -0.012249903753399849, -0.004739978816360235, -0.008131344802677631, -0.014438094571232796, -0.0038640412967652082, -0.016566786915063858, 0.0026426869444549084, -0.012560613453388214, 0.012064799666404724, 0.022833872586488724, -0.012606889009475708, 0.0036293561570346355, -0.022714877501130104, -0.01418688241392374, 0.014133995398879051, -0.020877061411738396, -0.02763334847986698, 0.017624523490667343, -0.026165740564465523, 0.008792429231107235, 0.035487037152051926, 0.009493179619312286, -0.026112854480743408, 0.0025170808658003807, -0.007880131714046001, -0.005632443353533745, -0.004683786537498236, 0.006263779476284981, -0.012547391466796398, -0.0368620939552784, -0.011866474524140358, -0.0301983579993248, 0.00013955088797956705, 0.014067886397242546, -0.001087484648451209, 0.0058770449832081795, 0.004944914951920509, 0.001630400656722486, -0.025041896849870682, -0.008878370746970177, 0.003264106810092926, -0.013909226283431053, -1.2724593034363352e-05, 0.0047432840801775455, -0.006667041219770908, 0.0034277252852916718, -0.019885433837771416, 0.025795532390475273, -0.01905246637761593, -0.016289131715893745, 0.030806556344032288, -0.011509488336741924, -0.005810936447232962, -0.03802560269832611, 0.0003373599029146135, -0.007496702950447798, -0.01807406172156334, 0.027038373053073883, -0.018404603004455566, -0.027051594108343124, -0.049607809633016586, -0.0028525814414024353, -0.019594555720686913, 0.019237570464611053, 0.019898654893040657, 0.011423546820878983, -0.015350391156971455, 0.005715079139918089, 0.00048713694559410214, -0.022212453186511993, 0.02689293399453163, 0.0189466942101717, -0.023957716301083565, 0.006058843340724707, 0.004726757295429707, -0.004858973901718855, -0.01585281640291214, -0.001299031893722713, 0.016394905745983124, -0.005929931532591581, -0.014517424628138542, -0.04505954682826996, 0.009453514590859413, -0.015667712315917015, -0.014028221368789673, 0.0045317369513213634, 0.004085504915565252, 0.017756741493940353, 0.005672108381986618, -0.007060386706143618, -0.014953740872442722, -0.03469373658299446, 0.012825047597289085, -0.012448228895664215, -0.011773922480642796, -0.009466735646128654, -0.029881037771701813, 0.0006933127879165113, 0.0031385004986077547, 0.005285373888909817, 0.028135772794485092, -0.003754962235689163, -0.019991207867860794, 0.026721052825450897, -0.0029897564090788364, -0.018867364153265953, 0.019541669636964798, -0.0262715145945549, 0.004763116594403982, -0.010279870592057705, -0.01027325913310051, 0.010722797363996506, -0.008144565857946873, -0.017188208177685738, 0.03154697269201279, 0.0003284765698481351, -0.031917180866003036, 0.026350844651460648, 0.017875736579298973, 0.021604254841804504, -0.029537273570895195, -0.013777009211480618, -0.02874397113919258, 0.021009277552366257, -0.025068338960409164, -0.0032508850563317537, 0.004346633329987526, -1.0774909242172725e-05, 0.009585730731487274, 0.012990318238735199, 0.004812698345631361, 0.06044960394501686, 0.001032118801958859, 0.001756833167746663, -0.02354784496128559, -0.022000905126333237, -0.005053994245827198, -0.0058638229966163635, -0.028426650911569595, 0.007397539913654327, -0.030912330374121666, 0.019250793382525444, 0.0023650312796235085, -0.0013196907239034772, -0.015125622972846031, -0.00805201381444931, 0.005189516581594944, -0.02155136875808239, -0.008329669944941998, 0.011238443665206432, -0.04878806695342064, -0.008243728429079056, -0.0020179615821689367, 0.003184776520356536, 0.0075033134780824184, 0.006789342034608126, -0.00371529720723629, 0.03133542463183403, -0.022397557273507118, 0.004168140236288309, 0.014530646614730358, 0.02525344304740429, -0.008085068315267563, -0.007331431843340397, 0.0008350329007953405, 0.0034244197886437178, 0.024724574759602547, -0.015006626956164837, -0.003016199916601181, -0.005116797052323818, 0.013096092268824577, 0.006686873733997345, 0.03762895241379738, -0.0077214716002345085, -0.013737344183027744, 0.006739760749042034, -0.004320189822465181, 0.0009172552963718772, -0.0021171243861317635, -0.01386956125497818, 0.027527576312422752, -0.006048927083611488, -4.909071867587045e-05, -0.023587509989738464, -0.04027329385280609, -0.024050269275903702, -0.011112837120890617, -0.031256094574928284, -0.02204057015478611, 1.9186956706107594e-05, 0.02366684004664421, 0.008812261745333672, 0.02787134051322937, 0.004882112145423889, 0.005886961240321398, -0.0033847547601908445, -0.0005470477626658976, -0.011509488336741924, -0.007100051734596491, -0.008065235801041126, 0.0173204243183136, 0.01683122105896473, 0.000410285807447508, 0.010187318548560143, 0.003711991710588336, 0.04656682163476944, -0.002885635709390044, 0.00848171953111887, 0.004981274716556072, 0.003821070771664381, -0.006835618056356907, 0.00443257438018918, 0.02438081055879593, -0.019872212782502174, -0.018126947805285454, -0.021749693900346756, -0.03395332023501396, 0.00971794780343771, 0.037205860018730164, 0.012672998011112213, 0.05738217011094093, 0.029034849256277084, 0.012831658124923706, -0.0007478523184545338, 0.004184667486697435, 0.01845749095082283, -0.017611302435398102, 0.008342891931533813, -0.012230070307850838, -0.034852396696805954, 0.034138426184654236, -0.016315575689077377, -0.0015651185531169176, -0.01082857046276331, -0.023680061101913452, 0.007523146457970142, 0.004511904437094927, 0.024182485416531563, -0.010002214461565018, 0.0004937477642670274, -0.002526997122913599, 0.009751002304255962, 0.022397557273507118, 0.01164170540869236, -0.026562390848994255, -0.02004409395158291, 0.001507273642346263, 0.009367573074996471, -0.018867364153265953, -0.04077571630477905, -0.003197998274117708, -0.005063910502940416, -0.009704726748168468, -0.008151177316904068, 0.013003540225327015, 0.009513012133538723, 0.0009792320197448134, -0.013519186526536942, 0.026033524423837662, 0.002460888586938381, 0.01572059839963913, 0.014517424628138542, 0.004964747466146946, -0.01907891035079956, -0.03625389561057091, -0.003711991710588336, 0.012765549123287201, 0.005625832360237837, -0.03371533006429672]" +58,"And finally, as a reminder, for Q2 cash flow, we expect to make a $2.4 billion cash tax payment related to the capitalization of R&D provision enacted in 2017 TCJA and effective as of July 1, 2022. Now some thoughts on the full fiscal year. First, FX. Based on current rates, we now expect a roughly five-point headwind to full-year revenue growth.","[-0.012947804294526577, -0.010494815185666084, -0.006848480086773634, -0.012490354478359222, 0.02357521280646324, -0.014996381476521492, -0.013391993939876556, -0.012914655730128288, -0.017117885872721672, -0.00879761204123497, 0.044525064527988434, 0.01677314005792141, -0.00667610764503479, 0.0060628606006503105, 0.015513497404754162, 0.008605350740253925, 0.009845104068517685, -0.03407665714621544, 0.0020767534151673317, -0.023190690204501152, -0.02935631014406681, 0.013524588197469711, -0.05314367264509201, 0.004504880867898464, -0.0009206995600834489, 0.006066175177693367, 0.00425295252352953, -0.009891511872410774, 0.005482761655002832, 0.009354506619274616, -0.015566535294055939, -0.00176681496668607, -0.01482400856912136, 0.004448528401553631, -0.01441296748816967, -0.01662728749215603, -0.0064109195955097675, 0.0071932245045900345, 0.031080033630132675, -0.014717933721840382, 0.04383557662367821, 0.016494693234562874, -0.006967814639210701, 0.010236256755888462, -0.009082688950002193, -0.018496863543987274, 0.003170653944835067, -0.022501202300190926, -0.010892597027122974, 0.005323648918420076, 0.00959317572414875, 0.021374152973294258, -0.024689001962542534, -0.02266031503677368, -0.01653447188436985, 0.004630845505744219, -0.020326659083366394, -0.0066098109818995, 0.003981134854257107, -0.00193421496078372, -0.028136447072029114, 0.017383072525262833, -0.026664653792977333, 0.009221912361681461, -0.020087990909814835, -0.0048529403284192085, 0.004136932548135519, 0.0009985985234379768, -0.002250783145427704, 0.026916582137346268, 0.014386449009180069, 0.028985047712922096, 0.005764523986726999, 0.006400975398719311, 0.0035502042155712843, -0.006404289975762367, -0.023442618548870087, -0.0012679301435127854, 0.013962147757411003, 0.029754092916846275, 0.01507593784481287, 0.00779652688652277, -0.006397660356014967, 0.010985412634909153, -0.004183340817689896, 0.009765547700226307, -0.0122317960485816, 0.018828347325325012, -0.029701055958867073, 0.02434425801038742, 0.01954435557126999, 0.013246140442788601, 0.01568586938083172, 0.03542911633849144, 0.002264042617753148, -3.6152581742499024e-05, -0.0139091107994318, 0.02337632142007351, 0.007325818296521902, -0.032167304307222366, 0.010242885909974575, -4.1047165723284706e-05, -0.022978540509939194, -0.013895850628614426, -0.028958529233932495, -0.0070341117680072784, 0.012211906723678112, 0.013557735830545425, -0.013067138381302357, 0.007511449977755547, -0.0025060265325009823, -0.0030761808156967163, -0.00241652550175786, 0.0009778807871043682, 0.010607520118355751, -0.015898020938038826, 0.013259399682283401, 0.009513619355857372, 0.004849625285714865, -0.020578589290380478, 0.03569430485367775, 0.004839681088924408, 0.017276998609304428, -0.00931472796946764, 0.024384036660194397, 0.005578892305493355, -0.006258436478674412, -0.015168753452599049, -0.006487161386758089, -0.024795077741146088, -0.0032253488898277283, -0.006692681927233934, 0.004564548376947641, 0.006802072282880545, -0.012729023583233356, 0.02434425801038742, -0.040573764592409134, 0.021321114152669907, -0.018841607496142387, -0.02033991925418377, -0.01227820385247469, 0.013385363854467869, -0.014572080224752426, 0.013458291068673134, 0.00875120423734188, 0.035561710596084595, 0.02520611882209778, -0.00953350868076086, 0.033440206199884415, -0.012052793987095356, 0.003904893295839429, -0.013438401743769646, 0.03481918200850487, 0.024065811187028885, 0.016839437186717987, -0.013445030897855759, 0.002419840544462204, 0.0185366403311491, -0.009288209490478039, -0.0185366403311491, -0.019120054319500923, -0.00741200428456068, 0.01065392792224884, 0.0230846144258976, 0.018523382022976875, 0.016614027321338654, 0.0164814330637455, 0.00538663100451231, 0.00258226809091866, -0.007591006346046925, 0.0029767353553324938, -0.003213746938854456, 0.013922370038926601, 0.016587508842349052, 0.007524709217250347, 0.02060510776937008, 0.015022899955511093, -0.019769765436649323, -0.024689001962542534, -0.022912243381142616, 0.018032783642411232, 0.005323648918420076, -1.8594237189972773e-05, 0.011429602280259132, 0.023893438279628754, -0.02216971665620804, 0.028772898018360138, -0.025166340172290802, -0.01227820385247469, -0.018205156549811363, -0.014214076101779938, 0.022143198177218437, 0.0016300774877890944, -0.006563402712345123, -0.6343296766281128, -0.0027049174532294273, -0.010753373615443707, -0.013935629278421402, 0.01283509936183691, -0.012165498919785023, 0.026982879266142845, 0.002467905869707465, -0.025749754160642624, 0.010090403258800507, 0.02325698733329773, 0.005247407592833042, 0.00969925057142973, -0.021002888679504395, -0.018523382022976875, -0.029727574437856674, -0.010090403258800507, -0.0021181891206651926, -0.022421645000576973, 0.020087990909814835, -0.007418634369969368, 0.02482159622013569, -0.01730351708829403, 0.001202461775392294, 0.012284833937883377, 0.008068344555795193, 0.002048577181994915, -0.0251398216933012, 0.0004947413690388203, 0.017993004992604256, -0.030231431126594543, -0.01400192640721798, 0.01108485832810402, -0.00409715436398983, 0.03808099776506424, 0.01363066304475069, -0.023628249764442444, 0.011741198599338531, -0.008068344555795193, 0.03386450558900833, -0.03473962843418121, 0.021891269832849503, 0.00040606912807561457, 0.01194008905440569, -0.02458292804658413, 0.02696961909532547, 0.01177434716373682, -0.00034018646692857146, 0.006228602956980467, -0.010169959627091885, -0.017131144180893898, -0.00806171540170908, -0.012901395559310913, -0.01413451973348856, 0.018947681412100792, 0.0006120041944086552, -0.0008494302746839821, -0.02012776955962181, -0.010514703579246998, 0.0041733961552381516, -0.0061722504906356335, -0.0062219733372330666, -0.003908208105713129, -0.0038850042037665844, -0.03015187568962574, 0.01868249475955963, -0.0008357565384358168, 0.02087029442191124, 0.020803997293114662, 0.0016599111258983612, -0.023774104192852974, 0.009506989270448685, -0.002090012887492776, -0.010832929983735085, 0.02248794212937355, 0.006281640846282244, 0.02726132608950138, -0.024569667875766754, -0.008094863966107368, 0.0016972031444311142, 0.0022872465196996927, -0.014505783095955849, -0.015553276054561138, 0.028905492275953293, 0.007756748702377081, -0.007087149191647768, -0.01043514721095562, -0.003059606533497572, -0.004581122659146786, 0.015911279246211052, 0.004451843444257975, -0.006974444258958101, 0.0070738899521529675, -0.030072318390011787, 0.020830517634749413, 0.023005058988928795, 0.010455036535859108, 0.00012782889825757593, 0.012377649545669556, 0.0069810738787055016, -0.013657181523740292, 0.007584376726299524, 0.020273622125387192, -0.00427284138277173, 0.02800385281443596, 0.010030736215412617, -0.004319249652326107, -0.01612343080341816, 0.023628249764442444, -0.04078591242432594, -0.014704674482345581, -0.02316417172551155, -0.020154288038611412, 0.002587240422144532, -0.013962147757411003, -0.02171889692544937, 0.015248309820890427, 0.0013516300823539495, 0.002012113807722926, -0.018735531717538834, 0.006755664013326168, 0.019080275669693947, 0.02270009182393551, -0.03829314559698105, -0.00515790656208992, 0.017581963911652565, 0.0014129547635093331, -0.015235050581395626, 0.0037590397987514734, 0.008287125267088413, 0.006483846344053745, 0.009679362177848816, 0.036648981273174286, -0.0074716717936098576, -0.0009579916368238628, -0.014214076101779938, 0.002930327318608761, -0.0012596430024132133, -0.016375359147787094, -0.043756019324064255, -0.022421645000576973, -0.012656097300350666, -0.0017949911998584867, 0.010077144019305706, -0.020008433610200882, -0.021652599796652794, -0.0068617393262684345, 0.0009977698791772127, -0.0003497166617307812, 0.0028043631464242935, -0.008784351870417595, 0.011807495728135109, 0.006881628651171923, -0.0028690025210380554, 0.024808336049318314, 0.0011734568979591131, 0.008426348678767681, -0.02856074646115303, -0.015433941036462784, -0.025100043043494225, 0.007949010469019413, -0.0027065749745815992, 0.016494693234562874, -0.009188763797283173, -0.006241862662136555, 0.014386449009180069, -0.023999514058232307, 0.01441296748816967, -0.005847395397722721, -0.024450333788990974, 0.002855743281543255, -0.017396332696080208, 0.01877531036734581, 0.006802072282880545, 0.0015455487882718444, 0.0038518556393682957, 0.006626384798437357, -0.002565693808719516, -0.003424240043386817, -0.038478776812553406, 0.0032435806933790445, -0.004915922414511442, 0.001689744764007628, -0.0024645908270031214, 0.01995539665222168, 0.0011096460511907935, -0.013829553499817848, 0.013405253179371357, 0.007836305536329746, 0.017263738438487053, -0.02885245345532894, 0.01874879188835621, -0.026134276762604713, -0.009540137834846973, -0.020021693781018257, -0.013643922284245491, -0.004325879272073507, 0.0072330026887357235, -0.018695753067731857, 0.032405972480773926, 0.019385242834687233, 0.03145129606127739, -0.0005954299122095108, 0.010494815185666084, -0.01691899448633194, -0.032087747007608414, 0.0011817440390586853, -0.020578589290380478, 0.03407665714621544, 0.03892959654331207, 0.01327928900718689, -0.016865955665707588, -0.011403083801269531, 0.001856315997429192, -0.030602695420384407, 0.004627530463039875, 0.019411761313676834, -0.013332326896488667, 0.0038087626453489065, 0.01942502148449421, 0.002280616667121649, -0.012927914969623089, 0.0033363965339958668, -0.007723600137978792, -0.0012438974808901548, -0.024450333788990974, -0.018589679151773453, 0.018404046073555946, -0.010687076486647129, -0.01546046044677496, -0.008406459353864193, 0.017290256917476654, 0.005426409188657999, 0.015540016815066338, 0.007378856185823679, 0.030549656599760056, -0.008645128458738327, 0.002050234703347087, 0.0409715436398983, 0.005608726292848587, 0.014704674482345581, -0.01442622672766447, 0.01872227154672146, -0.0015430626226589084, -0.015964318066835403, -0.014585339464247227, 0.03065573237836361, 0.006424179300665855, 0.010063884779810905, -0.011416343040764332, 0.0058241914957761765, 0.00353031512349844, 0.004465102683752775, -0.02287246473133564, 0.0013176528736948967, -0.019464798271656036, 0.010673817247152328, 0.01115778461098671, 0.035561710596084595, 0.03118610754609108, 0.012927914969623089, 0.012331241741776466, 0.00274801068007946, -0.0178338922560215, 0.013073768466711044, 0.023243727162480354, -0.004077265504747629, -0.006400975398719311, -0.005923636723309755, -0.008618609979748726, 0.007213113363832235, 0.006344622932374477, 0.013895850628614426, -0.006324733607470989, 0.004136932548135519, 0.02178519405424595, 0.010309183038771152, -0.032962866127491, -0.008698166348040104, 0.006334678269922733, 0.018576418980956078, -0.025007227435708046, -0.0035568340681493282, 0.024304479360580444, 0.00963958352804184, 0.010348961688578129, 0.04765428230166435, -0.007968898862600327, 0.008552312850952148, 0.027035916224122047, -0.010607520118355751, 0.002864030422642827, -0.003964560572057962, 0.000604131375439465, 0.003543574595823884, -0.017051588743925095, 0.016335580497980118, 0.002777844201773405, -0.031080033630132675, -0.005850709974765778, -0.009845104068517685, 0.008757833391427994, 0.010150070302188396, -0.000684516504406929, 0.036039046943187714, 0.019623911008238792, -0.010209737345576286, -0.018297972157597542, 0.0025176284834742546, -0.014598598703742027, 0.013869332149624825, -0.007584376726299524, -0.018443824723362923, 0.02101614885032177, 0.005817561410367489, 0.012364390306174755, 0.010687076486647129, -0.02007473073899746, 0.031345222145318985, -0.017144404351711273, -0.001889464445412159, -0.00010773262329166755, -0.02216971665620804, -0.0038120774552226067, 0.07754097133874893, 0.025537604466080666, -0.0191598329693079, 0.020737702026963234, 0.0036695387680083513, 0.01665380597114563, 0.001652452745474875, -0.0184836033731699, 0.031053513288497925, -0.03198167309165001, -0.009056170471012592, 0.005744635127484798, -0.012457205913960934, 0.0012165498919785023, 0.006318103987723589, 0.01031581312417984, -0.005247407592833042, -0.02022058516740799, 0.016720103099942207, 0.023707807064056396, -0.017170922830700874, 0.003016513539478183, 0.020578589290380478, 0.04741561412811279, 0.04182014614343643, 0.024185145273804665, 0.013829553499817848, 0.023986253887414932, 0.023588472977280617, -0.02063162624835968, 0.006324733607470989, -0.0032767292577773333, -0.03322805464267731, 0.01959739252924919, 0.0002581439330242574, 0.0013806349597871304, 0.009023021906614304, -0.02039295621216297, 0.012523503042757511, 0.009009761735796928, 0.0020767534151673317, -0.012974322773516178, 0.012006386183202267, -0.015394163317978382, 0.010176589712500572, -0.01373673789203167, -0.016972031444311142, 0.007358966860920191, -0.004862884990870953, -0.016494693234562874, 0.002507684053853154, 0.002008798997849226, -0.031610410660505295, 0.016759881749749184, -0.011827384121716022, 0.025564122945070267, -0.005068405531346798, -0.04707086831331253, 0.00778989726677537, -0.029939724132418633, -0.026479020714759827, -0.03251204639673233, 0.0005921150441281497, -0.003971190191805363, -0.008923576213419437, 0.0041336179710924625, 0.009778806939721107, 0.0010574371553957462, -0.030761808156967163, -0.011621863581240177, 0.0066727930679917336, -0.015407422557473183, -0.025630420073866844, 0.03598600998520851, 0.023707807064056396, -0.011323527432978153, 0.011237340979278088, 0.018019523471593857, -0.01026940532028675, 0.018351009115576744, -0.02157304249703884, -0.016600769013166428, -0.020976370200514793, -0.036118604242801666, -0.025802791118621826, 0.02520611882209778, 0.014306892640888691, -0.012974322773516178, -0.01665380597114563, 0.008711425587534904, -0.012828469276428223, -0.01402844488620758, 0.038531817495822906, -0.020591847598552704, 0.025245897471904755, -0.0032783865462988615, 0.019796283915638924, -0.002045262372121215, -0.0033131923992186785, 0.006772238295525312, -0.0011585400206968188, 0.012987582013010979, 0.0008146243635565042, -0.0029916521161794662, 0.011535678058862686, 0.017131144180893898, 0.0062849554233253, -0.005625300575047731, -0.0034507587552070618, -0.01889464445412159, 0.01701181009411812, -0.023614991456270218, -0.01812559925019741, 0.0026883434038609266, 0.0018215100280940533, -0.011151155456900597, 0.005694912280887365, -0.006526939570903778, -0.009586545638740063, 0.013093656860291958, 0.03919478505849838, -0.02104266732931137, 0.021705636754631996, 0.005439668893814087, -0.01036222092807293, 0.009838474914431572, 0.005191055126488209, -0.00887053832411766, -0.019358724355697632, 0.001000255928374827, -0.006357882171869278, 0.023800622671842575, 0.0009463896858505905, -0.011124636046588421, -0.0042032296769320965, -0.030284469947218895, -0.01482400856912136, -0.02207690104842186, -0.013803035020828247, -0.012410798110067844, -0.02726132608950138, 0.0007102065719664097, 0.01037548016756773, -0.026518799364566803, 0.02752651460468769, -0.02938283048570156, -0.013763257302343845, 0.01821841485798359, 0.002655194839462638, 0.009076058864593506, -0.015341125428676605, -0.01441296748816967, -0.026359686627984047, -0.00232536718249321, -0.0007951496518217027, -0.018947681412100792, 0.016640545800328255, -0.04654049128293991, 0.007080519571900368, 0.0003097312874160707, 0.04346431419253349, -0.02207690104842186, -0.01150915864855051, 0.02773866429924965, 0.010461666621267796, -0.006069490220397711, 0.010468295775353909, -0.00588717358186841, -0.029011566191911697, -0.0020270308014005423, -0.008744574151933193, 0.009427432902157307, -0.030072318390011787, -0.03760365769267082, 0.022527720779180527, -0.002451331587508321, -0.012271574698388577, 0.03153085336089134, -0.015619573183357716, -0.004027542658150196, -0.030310988426208496, 0.010097033344209194, -0.016083652153611183, -0.0067026265896856785, -0.036092087626457214, 0.00025172141613438725, 0.019226130098104477, 0.004236378241330385, 0.044551584869623184, 0.00589380320161581, 0.017170922830700874, -0.007252891547977924, 0.029992762953042984, -0.0046639940701425076, 0.027367401868104935, -0.015380904078483582, -0.02626687102019787, -0.027340881526470184, -0.014717933721840382, 0.0331219807267189, -0.007365596480667591, 0.02089681476354599, 0.0017751021077856421, 0.02858726494014263, -0.011959978379309177, 0.018841607496142387, 0.0006604838417842984, -0.015407422557473183, 0.01301410049200058, -0.009971068240702152, -0.0139091107994318, -0.03805447742342949, 0.014267113991081715, -0.006835220381617546, -0.006483846344053745, 0.02909112349152565, -0.01677314005792141, 0.013683700934052467, -0.011913570575416088, -0.02145370841026306, 0.010083773173391819, -0.019995175302028656, 0.036622460931539536, -0.018960941582918167, 0.013590884394943714, 0.02104266732931137, -0.0029236976988613605, -0.029833650216460228, -0.022236013785004616, 0.00991803128272295, -0.01836426928639412, 0.03747106343507767, 0.04516151547431946, -0.02337632142007351, -0.0023933215998113155, -0.015447200275957584, 0.037418026477098465, -0.037152837961912155, -0.017197441309690475, 0.007299299351871014, -0.003217061748728156, -0.0027314363978803158, -0.020406216382980347, -0.02140067145228386, -0.028640303760766983, 0.038213588297367096, -0.002978392643854022, 0.01296769268810749, -0.016587508842349052, -0.010229626670479774, -0.007624154910445213, 0.03781580924987793, 0.011807495728135109, 0.0017850466538220644, -0.0053435382433235645, 0.0050021084025502205, -0.012211906723678112, 0.0015438913833349943, 0.0005589665961451828, -0.0029667906928807497, -0.03402362018823624, 0.041077621281147, -0.021334374323487282, 0.04338475689291954, 0.006235232576727867, -0.026227092370390892, -0.02357521280646324, 0.0022259217221289873, 0.004077265504747629, 0.022090159356594086, -0.04105110093951225, -0.006894887890666723, 0.00668273726478219, -0.004216488916426897, -0.006881628651171923, -0.007465042173862457, -0.010209737345576286, -0.016759881749749184, -0.03142477571964264, 0.0005979160778224468, 0.01788693107664585, 0.010196478106081486, -0.032114267349243164, -0.004312619566917419, -6.950825627427548e-05, -0.022275792434811592, -0.008234087377786636, -0.013226251117885113, 0.023601731285452843, -0.011383194476366043, -0.015301347710192204, 0.02856074646115303, 0.007763378322124481, 0.031583890318870544, -0.0029502164106816053, 0.004564548376947641, 0.005396575666964054, 0.0038352813571691513, -0.02667791210114956, 0.02826903946697712, 0.025709975510835648, -0.003306562779471278, -0.012225166894495487, 0.007776638027280569, -0.014611858874559402, -0.03412969410419464, 0.014598598703742027, -0.03617164120078087, -0.031000476330518723, -0.013087027706205845, 0.024384036660194397, 0.0020286880899220705, -0.005993248894810677, 0.017847152426838875, -0.006318103987723589, 0.03097395785152912, 0.0004346597124822438, 0.013159953989088535, -0.022885723039507866, 0.0178338922560215, 0.024980708956718445, 0.00442863954231143, 0.03097395785152912, -0.0383196659386158, 0.0043623424135148525, 0.0008378283237107098, -0.0071932245045900345, -0.002784474054351449, 0.004965645261108875, -3.462464519543573e-05, -0.010740113444626331, 0.025855829939246178, -0.03757713735103607, 0.01730351708829403, -0.025564122945070267, 0.0069015175104141235, -0.009042910300195217, 0.013239510357379913, -0.00538663100451231, -0.01821841485798359, 0.01143623236566782, 0.007988788187503815, 0.02964801713824272, -0.0032518678344786167, -0.00498884916305542, -0.01872227154672146, 0.0014195844996720552, -0.0021447078324854374, -0.0357208214700222, -0.030310988426208496, 0.002051892224699259, 0.02856074646115303, 0.014174298383295536, -0.0370732806622982, -0.014983121305704117, -0.006835220381617546, -0.049033261835575104, -0.03656942397356033, -0.02145370841026306, 0.018563158810138702, 0.040891990065574646, 0.007518079597502947, -0.016614027321338654, 0.03694068640470505, -0.001083127222955227, 0.017820633947849274, -0.03508437052369118, 0.011688160710036755, 0.029250236228108406, -0.0051844255067408085, 0.011794236488640308, 0.01548697892576456, -0.02039295621216297, -0.008718055672943592, 0.022739870473742485, 0.0057711536064744, 0.008830760605633259, 0.02145370841026306, 0.011091487482190132, -0.018616197630763054, -0.015036159195005894, 0.014267113991081715, 0.0010566083947196603, 0.012192018330097198, -0.015155494213104248, -0.02752651460468769, 0.01301410049200058, 0.014983121305704117, -0.01005062460899353, -0.01969020813703537, 0.012576540932059288, 0.006218658294528723, -0.001244726125150919, 0.007120297756046057, 0.008757833391427994, -0.00931472796946764, 0.00386842992156744, -0.0164814330637455, 0.018443824723362923, 0.01547371968626976, 0.010242885909974575, -0.0013590884627774358, 0.026956358924508095, -0.019703468307852745, 0.007849564775824547, 0.010004216805100441, -0.018430566415190697, -0.008154531009495258, -0.019345464184880257, 0.0062120286747813225, 0.018709013238549232, -0.005519225262105465, 0.007093778811395168, -0.003018170827999711, -0.025537604466080666, -0.012371020391583443, -0.008817500434815884, 0.0037955031730234623, 0.012417428195476532, 0.005774468649178743, -0.04420683905482292, 0.005134702660143375, -0.01401518564671278, -0.020432734861969948, 0.010846189223229885, 0.0017933337949216366, -0.00019712997891474515, -0.030337506905198097, -0.022620536386966705, 0.02523263730108738, -0.01469141524285078, -0.019610652700066566, -0.013285918161273003, 0.0073523372411727905, -0.003861800068989396, 0.011031820438802242, 0.1982545405626297, 0.024529889225959778, -0.004007653798907995, 0.02938283048570156, -0.001972335623577237, 0.000963792612310499, 0.02234208770096302, -0.006888258270919323, -0.012642838060855865, -0.0005929438048042357, -0.00739874504506588, 0.031610410660505295, -0.019252648577094078, -0.005340223200619221, -0.002484479919075966, 0.001486710156314075, -0.03672853857278824, -0.010859448462724686, -0.05791705846786499, 0.05054483190178871, 0.019093535840511322, 0.010581000708043575, 0.0020204009488224983, -0.017436111345887184, 0.0078031569719314575, -0.024768559262156487, -0.004985534120351076, -0.004601011518388987, 0.017515666782855988, 0.02089681476354599, -0.026837024837732315, -0.0016201329417526722, 0.009453952312469482, 0.009009761735796928, -0.018947681412100792, -0.0069810738787055016, 0.016322320327162743, -0.0009389312472194433, 0.014757712371647358, 0.02752651460468769, 0.023071356117725372, 0.011966608464717865, -0.020008433610200882, -0.010203108191490173, 0.025033745914697647, 0.004541344475001097, 0.0015853269724175334, 0.00538000138476491, -0.001000255928374827, 0.010441777296364307, -0.050067491829395294, 0.00370600214228034, 0.007332447916269302, 0.023071356117725372, -0.005307074636220932, 0.005389946047216654, 0.030735287815332413, 0.00918213464319706, -0.02190452814102173, 0.003180598607286811, -0.009321358054876328, 0.014863787218928337, -0.026982879266142845, 0.015606313943862915, -0.025948645547032356, -0.008021936751902103, -0.011522418819367886, 0.02962149865925312, 0.03203471004962921, -0.018284711986780167, 0.009997587651014328, -0.005154591519385576, -0.0043623424135148525, -0.0009041253360919654, -0.01481074932962656, -0.013517958112061024, 0.02455640770494938, 0.0064109195955097675, 0.01939850114285946, 0.012742282822728157, 0.015990836545825005, 0.013239510357379913, -0.004780013579875231, -0.0330159068107605, -0.015062677673995495, -0.005638559814542532, 0.016587508842349052, 0.00887053832411766, -0.02181171253323555, -0.01042188797146082, 0.023588472977280617, 0.02142718993127346, -0.03508437052369118, -0.01721070148050785, 0.008492645807564259, 0.019371982663869858, -0.0030413747299462557, 0.011416343040764332, -0.007213113363832235, -0.009646213613450527, -0.02036643773317337, 0.05478784069418907, 0.01653447188436985, -0.0035104260314255953, 0.00554242916405201, -0.0027596126310527325, -0.011164414696395397, 0.020711181685328484, 0.018059302121400833, -0.03314850106835365, 0.015327866189181805, -0.010912486352026463, 0.013670440763235092, -0.010521333664655685, 0.005486076697707176, -0.03174300119280815, -0.02388017810881138, -0.01865597628057003, 0.014452746137976646, -0.010706964880228043, -0.000601230887696147, -0.03882352262735367, -0.007929121144115925, 0.010163329541683197, 0.0031159589998424053, -0.027924295514822006, 0.00650042062625289, -0.03251204639673233, -0.014452746137976646, -0.037391506135463715, 0.018112340942025185, 0.0025971848517656326, 0.0031259034294635057, -0.043994687497615814, 0.009626324288547039, -0.002378404838964343, 0.011456121690571308, -0.001970678335055709, -0.03089440055191517, 0.01142297312617302, -0.017489148303866386, 0.00918213464319706, 0.010242885909974575, 0.0001429529074812308, 0.015818463638424873, -0.03574734181165695, 0.03813403472304344, -0.021626081317663193, -0.014678155072033405, -0.003855170449241996, -0.0382666289806366, -0.006009822711348534, 0.014638377353549004, -0.0057313754223287106, 0.026213834062218666, -0.017237219959497452, -0.01771455816924572, -0.025975164026021957, 0.008897056803107262, 0.013763257302343845, -0.05081002041697502, -0.014717933721840382, 0.023654768243432045, -0.006652903743088245, -0.024132108315825462, -0.013173213228583336, -0.1667502075433731, 0.01111137680709362, 0.0061424169689416885, 0.006848480086773634, 0.021771933883428574, 0.02193104662001133, 0.02364150993525982, -0.007551228161901236, 0.004120358265936375, 0.007126927375793457, 0.003427554853260517, 0.01363066304475069, -0.004359027836471796, 0.00926832016557455, 0.009129096753895283, 0.010348961688578129, -0.031053513288497925, 0.035535190254449844, 0.0251398216933012, 0.012563281692564487, 0.035031333565711975, -0.026227092370390892, 0.019106794148683548, -0.03386450558900833, 0.026783987879753113, 0.02098963037133217, -0.023919956758618355, -0.010600890032947063, -0.016057133674621582, -0.017515666782855988, -0.011595345102250576, 0.015301347710192204, 0.04436594992876053, 0.003815392265096307, 0.005930266343057156, -0.008108123205602169, -0.007054000627249479, -0.010660557076334953, 0.004723661113530397, 0.040335092693567276, 0.039804719388484955, 0.0026916582137346268, 0.021241558715701103, 0.011959978379309177, -0.028401633724570274, 0.020472513511776924, 0.0021082444582134485, 0.0008709768299013376, -0.003540259785950184, -0.0029502164106816053, 0.04998793825507164, -0.03861137107014656, 0.030629213899374008, -0.0022308940533548594, -0.0035104260314255953, 0.0007039912743493915, -0.00784293469041586, -0.006261751521378756, 0.015752166509628296, -0.028878971934318542, -0.009400914423167706, -0.007107038050889969, 0.00966610200703144, -0.01479749009013176, -0.0027098897844552994, -0.021824972704052925, 0.009937919676303864, -0.003815392265096307, -0.027367401868104935, 0.02207690104842186, -0.001969020813703537, -0.010919115506112576, 0.010899226181209087, 0.01117104385048151, -0.008174420334398746, -0.016985291615128517, 0.013869332149624825, -0.01679966039955616, 0.0303905438631773, 0.017794113606214523, -0.0016060448251664639, 0.02024710364639759, -0.01821841485798359, 0.005519225262105465, -0.01227820385247469, 0.019517837092280388, 0.021506747230887413, 0.011655012145638466, 0.018457084894180298, 0.002943586790934205, -0.011727939359843731, -0.022143198177218437, 0.01839078776538372, -0.00818104948848486, 0.0031971726566553116, 0.003944671247154474, 0.018616197630763054, 0.022594017907977104, 0.007385485805571079, 0.00926832016557455, -0.009845104068517685, 0.022501202300190926, -0.023031577467918396, 0.004511510953307152, 0.01032907236367464, 0.019053757190704346, -0.02803037129342556, 0.035296522080898285, 0.00807497464120388, -0.008101493120193481, -0.03354628011584282, 0.01638861745595932, 0.02019406668841839, 0.0017419536598026752, -0.00993129052221775, 0.04168755188584328, -0.033413685858249664, -0.011151155456900597, 0.009500360116362572, 0.006739089731127024, 0.04134280979633331, 0.0032402658835053444, -0.005267296452075243, 0.0022010602988302708, -0.0027678997721523046, -0.018589679151773453, -0.12081965059041977, -0.021294595673680305, 0.002694973023608327, 0.022037122398614883, 0.023972995579242706, 0.01025614608079195, -0.010010846890509129, 0.030523138120770454, -0.031106552109122276, 0.035561710596084595, 0.004475047346204519, -0.001286990474909544, -0.0033910914789885283, 0.00991803128272295, 0.036118604242801666, 0.0010988727444782853, 0.006424179300665855, -0.0115555664524436, -0.0012969350209459662, 0.028507709503173828, 0.014439485967159271, -0.011151155456900597, 0.01071359496563673, -0.00845949724316597, -0.017754336819052696, 0.005529169924557209, -0.0357738621532917, 0.007557857781648636, 0.011297008953988552, 0.005084979813545942, 0.007591006346046925, -0.008777722716331482, 0.012695875018835068, -0.02528567612171173, -0.0018248248379677534, 0.025312194600701332, -0.008307013660669327, -0.03723239526152611, 0.022249272093176842, -0.0369672067463398, 0.00283253937959671, 0.018947681412100792, 0.008108123205602169, -0.016043873503804207, 0.0024430444464087486, -0.014996381476521492, -0.014174298383295536, -0.0004818963061552495, 0.010687076486647129, -0.014068223536014557, -0.03548215329647064, -0.011708050034940243, -0.009891511872410774, 0.003546889405697584, 0.01171468012034893, -0.01115778461098671, 0.010634038597345352, -0.002854085760191083, -0.005810931790620089, -0.03092092089354992, -0.03855833411216736, 0.0027529827784746885, -0.027950813993811607, -0.0017949911998584867, 0.006258436478674412, -0.007591006346046925, 0.02193104662001133, -0.015964318066835403, 0.026359686627984047, -0.010043995454907417, -0.00879761204123497, 0.026479020714759827, -0.018138859421014786, 0.008360051549971104, -0.03680809214711189, 0.008187679573893547, -0.015115715563297272, -0.009367765858769417, 0.029701055958867073, -0.023628249764442444, -0.03017839416861534, -0.037126317620277405, 0.01194008905440569, -0.01178760640323162, 0.03192863613367081, 0.01880182884633541, -0.004763439297676086, -0.02414536662399769, 0.0132328812032938, -0.016521211713552475, -0.013922370038926601, 0.009758918546140194, -0.01373673789203167, -0.01245057675987482, 0.008326902985572815, 0.020445995032787323, -0.011190933175384998, 0.007922491058707237, -0.0036430200561881065, 0.004236378241330385, -0.004630845505744219, -0.02075096033513546, -0.05632593110203743, 0.012079313397407532, -0.0010433490388095379, 0.0049324966967105865, -0.00314247771166265, 0.010461666621267796, 0.019385242834687233, -0.004518140573054552, -0.007809786591678858, 0.015513497404754162, -0.044259876012802124, 0.01520853117108345, -0.01812559925019741, -0.011310268193483353, -0.013431771658360958, -0.017436111345887184, 0.0010276035172864795, -0.011595345102250576, 0.012384279631078243, 0.012675986625254154, -0.0019176406785845757, -0.010382110252976418, 0.02198408544063568, 0.011867162771522999, -0.0021082444582134485, 0.03587993606925011, 0.003778928890824318, 0.016614027321338654, 0.000927329296246171, -0.028905492275953293, 0.010262775234878063, -0.0029585035517811775, -0.011608604341745377, 0.03383798897266388, 0.0067125712521374226, -0.014956602826714516, 0.0025590641889721155, 0.013007471337914467, 0.032352935522794724, -0.003460703417658806, -0.012006386183202267, -0.033678874373435974, 0.00515127694234252, -0.032671160995960236, -0.003938041627407074, -0.011979867704212666, 0.003904893295839429, 0.007166705559939146, 0.0034010361414402723, 0.013411883264780045, 0.012384279631078243, 0.005648504476994276, 0.0015521785244345665, -0.0073523372411727905, -0.008764463476836681, -0.0034010361414402723, -0.0028839195147156715, -0.03511089086532593, -0.005645189434289932, -0.020445995032787323, 0.02272661030292511, 0.004117043688893318, 0.004239693284034729, -0.019756505265831947, -0.0017751021077856421, -0.003583352779969573, -0.03569430485367775, 0.009884882718324661, 0.022434905171394348, -0.04309304803609848, -0.022395126521587372, 0.0064739021472632885, 0.006758979056030512, 0.015142234973609447, 0.000924843130633235, -0.005416464991867542, 0.003460703417658806, -0.006550143472850323, -0.025471307337284088, 0.027685627341270447, 0.02183823101222515, -0.010793151333928108, -0.025033745914697647, 0.003217061748728156, 0.0014262142358347774, 0.035031333565711975, -0.0013640607940033078, -0.014585339464247227, -0.016879215836524963, 0.018059302121400833, 0.009937919676303864, 0.02364150993525982, 0.004256267100572586, 0.0135709960013628, 0.01557979453355074, 0.007166705559939146, 0.02414536662399769, -0.007332447916269302, -0.006914776749908924, 0.020326659083366394, -0.005399890709668398, -0.012178759090602398, -0.014147779904305935, -0.02832207828760147, -0.030019281432032585, -0.015407422557473183, -0.021824972704052925, -0.018311230465769768, 0.011734568513929844, 0.026545317843556404, 0.0008394857286475599, 0.023190690204501152, 0.01148264016956091, 0.00857883132994175, 0.0005983303999528289, -0.01735655404627323, -0.02357521280646324, -0.016600769013166428, -0.013027360662817955, 0.026598356664180756, 0.014625118114054203, 0.009308098815381527, 0.010733484290540218, 0.0019541040528565645, 0.04022901877760887, -0.004468417726457119, 0.014466005377471447, -0.015062677673995495, 0.007862824015319347, 0.01754218526184559, -0.016322320327162743, 0.02048577181994915, -0.003024800680577755, -0.0072330026887357235, -0.006294900085777044, -0.014479264616966248, -0.007571117486804724, 0.02195756509900093, 0.01103845052421093, 0.0607280507683754, 0.02909112349152565, -0.014717933721840382, -0.0015844983281567693, -0.007319188676774502, 0.016083652153611183, 0.0036165013443678617, 0.0004400463367346674, -0.012384279631078243, -0.013763257302343845, 0.03336064890027046, 0.004750180058181286, 0.006848480086773634, -0.009506989270448685, -0.029807129874825478, 0.0024413869250565767, 0.02679724618792534, 0.004909292794764042, -0.010322442278265953, 0.004415380302816629, 0.004349083174020052, -0.011462750844657421, 0.017462629824876785, 0.007239632308483124, -0.024914411827921867, -0.026333168148994446, 0.012337871827185154, 0.008486015722155571, 0.010229626670479774, -0.049828823655843735, -0.01701181009411812, 0.004564548376947641, -0.013803035020828247, 0.006855109706521034, 0.015778684988617897, 0.013080397620797157, -0.01603061519563198, -0.001687258598394692, 0.019000720232725143, -0.0041236733086407185, 0.009308098815381527, 0.017290256917476654, -0.01571238785982132, -0.013723478652536869, -0.02145370841026306, 0.007909231819212437, 0.025338713079690933, -0.0002560721477493644, -0.016282543540000916]" +59,"And FX should decrease COGS and operating expense growth by approximately three points. At the total company level, we continue to expect double-digit revenue and operating income growth on a constant currency basis. Revenue will be driven by around 20% constant currency growth in our commercial business, driven by strong demand for our Microsoft cloud offerings. That growth will be partially offset by the increased declines we now see in the PC market.","[0.0009612650028429925, -0.01565629616379738, 0.001953750615939498, -0.010891051031649113, 0.010976496152579784, -0.00034178313217125833, -0.025620589032769203, -0.019705111160874367, 0.0038154826033860445, -0.02965625748038292, 0.03528253361582756, 0.04432664066553116, 0.011298561468720436, 0.0067830802872776985, -0.009905138052999973, 0.01586662419140339, 0.012560529634356499, -0.009931428357958794, 0.013119213283061981, -0.02237364836037159, -0.01418399903923273, 0.016050660982728004, -0.03086564503610134, -0.001920886803418398, -0.012705130502581596, 0.0002548995544202626, 0.018022486940026283, -0.012166164815425873, 0.018811216577887535, -0.015209348872303963, 0.003407972166314721, -0.026054389774799347, -0.0014254656853154302, 0.023425288498401642, 0.00042106694309040904, -0.004081679042428732, -0.010135184042155743, 0.01360559742897749, 0.011936117894947529, -0.0038023372180759907, 0.03417831286787987, 0.008557723835110664, -0.0076441108249127865, 0.035098496824502945, -0.009307017549872398, 0.006257260218262672, -0.005678858142346144, -0.005438952706754208, 0.003716891398653388, 0.0033455309458076954, -0.002545298309996724, 0.05318671092391014, -0.026028098538517952, -0.024937022477388382, 0.011850672774016857, 0.01718117482960224, -0.012737994082272053, 0.011508889496326447, -0.002379336394369602, -0.016221553087234497, -0.003693886799737811, 0.011548325419425964, -0.020375533029437065, 0.013631888665258884, -0.03867407515645027, 0.003288019448518753, -0.010049737989902496, 0.010943632572889328, 0.018548306077718735, -0.001566779799759388, 0.026737956330180168, 0.03856891021132469, -0.004081679042428732, 0.006112659815698862, 0.028289126232266426, -0.010825322940945625, -0.007506083231419325, -0.012461937963962555, 0.0036413047928363085, 0.014315454289317131, 0.009944573976099491, -0.019810276105999947, -0.016063807532191277, -0.008584014140069485, 0.008676033467054367, 0.012987758964300156, -0.016576481983065605, 0.0031220573000609875, -0.031338881701231, 0.00458120834082365, 0.0334947444498539, 0.004052101634442806, -0.0003645823453553021, 0.027658142149448395, -0.0002150522341253236, -0.0014985875459387898, -0.0017089155735448003, 0.031049681827425957, 0.0009629082051105797, -0.015682587400078773, 0.00036684173392131925, -0.00769012002274394, -0.027973633259534836, -0.0065826112404465675, -0.042749181389808655, 0.006224396638572216, 0.01598493382334709, -0.0006498809088952839, 0.03449380397796631, -0.010891051031649113, 0.003963369410485029, 0.003444122150540352, 0.027658142149448395, 0.016221553087234497, -0.007289182394742966, -0.0022626700811088085, -0.020152058452367783, 0.008807487785816193, 0.004091538488864899, 0.0002916658704634756, 0.012553957290947437, 0.011758653447031975, 0.01956051029264927, -0.011226261034607887, 0.0016086811665445566, -0.00543566606938839, -0.0006207142723724246, -0.01727319322526455, 0.003920646850019693, -0.006240828428417444, 0.010266639292240143, -0.009247862733900547, 0.010759595781564713, 0.0005500572151504457, -0.024056272581219673, 0.03607126325368881, -0.018403707072138786, 0.023635616526007652, -0.02928818389773369, -0.008787769824266434, 0.001564315054565668, 0.018390560522675514, -0.000576348218601197, 0.01001687441021204, 0.011791517958045006, 0.032390523701906204, 0.02612011693418026, -0.009497626684606075, 0.021098535507917404, -0.008846924640238285, 0.0031171278096735477, -0.024845004081726074, 0.02944592945277691, 0.010398094542324543, 0.04001491516828537, -0.012494802474975586, 0.018614035099744797, 0.030997099354863167, 0.005113601218909025, -0.0006318058003671467, -0.004114543087780476, 0.0012118512531742454, -0.012639402411878109, 0.004807968158274889, 0.0041375476866960526, 0.009596218355000019, 0.02409571036696434, 0.02200557477772236, -0.020178349688649178, 0.003509849775582552, 0.013046913780272007, 0.006148809567093849, -0.017891032621264458, 0.0184694342315197, 0.01006945688277483, 0.02784217894077301, 0.009037534706294537, -0.006418292410671711, -0.009004670195281506, -0.023767072707414627, 0.013178368099033833, -0.007420637179166079, 0.014473200775682926, 0.001510911388322711, 0.010496685281395912, -0.010746450163424015, 0.0366496667265892, 0.0035361407790333033, 0.007151154335588217, -0.001028635771945119, -0.011692926287651062, 0.013395269401371479, 0.0021114966366440058, -0.002522293711081147, -0.6419212818145752, 0.0066713434644043446, 0.0030579729937016964, -0.01058870367705822, 0.018035631626844406, 0.009839409962296486, 0.026238426566123962, -0.007341764401644468, -0.0494270958006382, 0.017930468544363976, 0.014091980643570423, 0.015695732086896896, 0.006053504999727011, -0.010010302066802979, 0.01774643175303936, -0.02768443338572979, 0.014197144657373428, 0.002665251027792692, -0.016471317037940025, 0.002806565258651972, -0.0034506949596107006, 0.014775547198951244, -0.007703265640884638, 0.0011559828417375684, 0.002290604170411825, -0.002003046218305826, -0.004301866516470909, -0.016773663461208344, -0.005103742238134146, 0.006250687409192324, -0.015183057636022568, 0.02393796481192112, 0.011942691169679165, -0.005839890334755182, 0.04903273284435272, -0.010529548861086369, -0.011042224243283272, 0.011600907891988754, 0.001663727918639779, 0.04653508588671684, -0.03954167664051056, 0.005034728441387415, -0.000769833626691252, -0.016537044197320938, -0.019586801528930664, 0.022978341206908226, 0.010647858493030071, -0.02601495385169983, 0.01360559742897749, -0.01702342927455902, 0.000207760589546524, -0.005954913794994354, 0.0102995028719306, -0.026816830039024353, 0.0040488154627382755, 0.00500843720510602, 0.012087291106581688, -0.015340804122388363, -0.00174670887645334, -0.01695770025253296, -0.0023563317954540253, -0.0211248267441988, -0.022399939596652985, -0.012954894453287125, -0.029314475134015083, 0.013842216692864895, -0.02367505431175232, 0.005498107522726059, 0.02548913285136223, 0.01275113970041275, -0.0051103150472044945, 0.012672265991568565, 0.012192455120384693, -0.0163398627191782, 0.001786145381629467, 0.022965196520090103, 0.0334947444498539, -0.02970883995294571, -0.01815394125878811, 0.0029314474668353796, -0.004430035129189491, -0.040935102850198746, -0.016168970614671707, 0.007276036776602268, -0.011495743878185749, 0.010122038424015045, -0.008630023337900639, -0.023228107020258904, -0.00480139534920454, 0.0027079740539193153, 0.008110776543617249, 0.004420176148414612, 0.00845913216471672, -0.025988662615418434, 0.0255022794008255, 0.017983051016926765, -0.007762420456856489, -0.0028542177751660347, 0.011324851773679256, -7.820548489689827e-05, -0.005626276135444641, -0.018535161390900612, 0.028736073523759842, 0.015551132149994373, 0.022084448486566544, 0.03433605656027794, -0.000484329677419737, 0.003989660646766424, 0.03841116279363632, -0.03470413386821747, -0.002195299370214343, -0.03039240650832653, -0.00613895058631897, -0.011285415850579739, -0.011015933007001877, -0.030839353799819946, 0.016997138038277626, -0.02742152288556099, -0.03480929508805275, -0.015958642587065697, -0.016195261850953102, 0.0016727654729038477, 0.009813119657337666, -0.03039240650832653, -0.00973424594849348, 0.012166164815425873, 0.0016259346157312393, 0.006888244301080704, -0.003064545802772045, -0.009497626684606075, 0.018180232495069504, -0.010220630094408989, 0.016090096905827522, -0.006714066490530968, 0.03049757145345211, 0.005162897054105997, 0.0035755771677941084, -0.028604617342352867, 0.002004689536988735, -0.03891069442033768, -0.040304116904735565, -0.011226261034607887, -0.0035459997598081827, -0.002615955425426364, -0.002965954365208745, -0.02133515477180481, -0.010733304545283318, 0.013802779838442802, -0.006438010837882757, -0.006934253498911858, -0.006007495801895857, -0.02024407684803009, 0.004870409611612558, 0.017444085329771042, 0.007861011661589146, 0.012626256793737411, 0.008031903766095638, -0.03262714296579361, -0.016642209142446518, -0.020520132035017014, 0.004193415865302086, 0.0030021045822650194, 0.002799992449581623, 0.002990602282807231, -0.02409571036696434, 0.011403725482523441, -0.03864778205752373, 0.018390560522675514, 0.012185882776975632, -0.009050680324435234, 0.0047981091775000095, -0.024700403213500977, 0.025147350504994392, 0.008551150560379028, 9.042669262271374e-05, -0.004147406667470932, -0.016431881114840508, -0.009648800827562809, 0.010174620896577835, -0.029077855870127678, 0.024371765553951263, 0.01712859235703945, -0.014657237567007542, -0.00811734888702631, 0.03091822750866413, 0.000622768304310739, 0.008275095373392105, 0.03210132196545601, -0.00684223510324955, -0.014552073553204536, -0.004262429662048817, 0.033021505922079086, -0.021847829222679138, -0.0029610248748213053, -0.0008840351947583258, -0.0023645476903766394, -0.01811450533568859, -0.0004617358499672264, -0.011581189930438995, -0.0007727092015556991, 0.02024407684803009, -0.00024380802642554045, 0.010759595781564713, 0.020073184743523598, 0.010286357253789902, -0.03204873949289322, -0.002799992449581623, -0.01842999830842018, 0.01931074634194374, 0.03909473121166229, 0.015038457699120045, -0.037070322781801224, -0.005991063546389341, -0.00866288784891367, -0.030970808118581772, 0.00024278103956021369, 0.02477927692234516, 0.017404647544026375, 0.004492476116865873, 0.005876040551811457, 0.0029051564633846283, -0.012468511238694191, 0.003268301021307707, -0.004982146434485912, -0.0071577271446585655, -0.01461780071258545, -0.009267580695450306, 0.016510752961039543, 0.02928818389773369, -0.026724811643362045, -0.006273692008107901, 0.016642209142446518, 0.015800897032022476, 0.007880729623138905, 0.0033208830282092094, 0.019652528688311577, 0.00698683550581336, -0.027184903621673584, 0.04048815369606018, -0.0005028155283071101, 0.013382123783230782, 0.011955836787819862, 0.028236543759703636, -0.0138159254565835, -0.014696674421429634, -0.003677455009892583, 0.026159554719924927, 0.0010828609811142087, -0.014630946330726147, 0.0024056273978203535, -0.005159610416740179, 0.003956797067075968, 0.008623450994491577, -0.019192436710000038, 0.0043610213324427605, 0.02008633129298687, -0.005208906251937151, -0.0013112641172483563, 0.029393348842859268, 0.04353791102766991, 0.007604674436151981, 0.004804681986570358, 0.03388911113142967, -0.0029133723583072424, -0.011456307023763657, 0.014289163053035736, -0.024174582213163376, 0.0053699384443461895, -0.01674737222492695, -0.007249746005982161, 0.0019438915187492967, -0.0009916640119627118, 0.004499048925936222, 0.014078835025429726, -0.0060600778087973595, 0.015695732086896896, 0.023293834179639816, -0.01825910620391369, -0.00845255982130766, 0.04151350259780884, 0.01572202332317829, -0.031049681827425957, 0.0016859109746292233, 0.020336095243692398, -0.005731440149247646, 0.026737956330180168, -2.247829979751259e-05, -0.014170854352414608, 0.02378021739423275, 0.03257456049323082, -0.030155787244439125, 0.008215940557420254, -0.029051564633846283, 0.006000922992825508, 0.009425327181816101, 0.00513989245519042, 0.024279747158288956, -0.013513579033315182, -0.018140796571969986, -0.009793400764465332, 0.006848807912319899, -0.0053074974566698074, -0.015117330476641655, -3.810142516158521e-05, 0.024319183081388474, 0.002384265884757042, -0.026764247566461563, -0.013697615824639797, 0.0060370732098817825, -0.009740819223225117, 0.0232543982565403, -0.018745489418506622, -0.032706014811992645, 0.023767072707414627, 0.013960526324808598, -0.005606557708233595, -0.019902294501662254, -0.03654450178146362, 0.025094768032431602, 0.012383065186440945, -0.007617820054292679, 0.008137067779898643, -0.019849712029099464, -0.0025715893134474754, 0.05463271588087082, 0.022413086146116257, -0.013007476925849915, 0.029577385634183884, 0.019889147952198982, 0.003271587425842881, 0.002113139955326915, -0.01495958399027586, 0.023661907762289047, -0.011686353944242, -0.014644091948866844, 0.007348337210714817, -0.01535394974052906, -0.019902294501662254, -0.0015692446613684297, 0.01418399903923273, -0.0010039879707619548, -0.017246901988983154, 0.0009834481170400977, 0.01576145924627781, 0.00016822137695271522, 0.01800934039056301, 0.04380081966519356, 0.025199932977557182, 0.015117330476641655, 0.02826283499598503, 0.004466185346245766, 0.03735952451825142, -0.024595238268375397, -0.012731420807540417, -0.022097593173384666, 0.0019093845039606094, -0.011955836787819862, 0.031864702701568604, 0.0037990508135408163, 0.013250668533146381, -0.0019406051142141223, -0.027290066704154015, 0.010831896215677261, 0.009208425879478455, 0.0040488154627382755, -0.016260989010334015, 0.013829071074724197, -0.0044234623201191425, 0.013566160574555397, -0.011699499562382698, -0.02622528187930584, 0.028841236606240273, -0.0033488173503428698, -0.01591920666396618, 0.0025107914116233587, -0.01862717978656292, -0.028026215732097626, 0.022623414173722267, -0.016576481983065605, 0.011666635051369667, -0.01978398486971855, -0.01495958399027586, 0.005790594965219498, -0.02700086683034897, -0.032758597284555435, -0.020533278584480286, 0.004318298306316137, -0.013000903651118279, -0.023767072707414627, 0.009997156448662281, -0.014039399102330208, 0.0036643093917518854, -0.04879611358046532, 0.004778390750288963, -0.011798090301454067, -0.022597122937440872, -0.01597178727388382, 0.006999981123954058, 0.01992858573794365, 0.008984952233731747, 0.0017894317861646414, -0.002351402072235942, 0.008860070258378983, -0.0007115004118531942, -0.02034924179315567, -0.01014832966029644, -0.02997175045311451, -0.03007691539824009, -0.02409571036696434, 0.011640344746410847, 0.00395351042971015, 0.007328618783503771, -0.035571735352277756, -0.007065708748996258, -0.005655853543430567, -0.0204544048756361, -0.0031056255102157593, -0.0046206447295844555, 0.025226224213838577, -0.007519228849560022, 0.0052844928577542305, -0.0016629063757136464, 0.007703265640884638, -0.0024384912103414536, -0.00459106732159853, 0.0030431842897087336, -0.022912614047527313, -0.01674737222492695, 0.011594334617257118, 0.003182855201885104, 0.018075069412589073, -0.026396173983812332, 0.0011781658977270126, -0.010628140531480312, 0.002576518803834915, -0.013671324588358402, -0.016944555565714836, -0.016878828406333923, 3.4532626159489155e-05, -0.016326716169714928, 0.01952107436954975, 0.003910787403583527, 0.01311264093965292, 0.006829089485108852, 0.027447814121842384, -0.020309804007411003, 0.03538769856095314, 0.0009144341456703842, 0.0022938905749469995, 0.00355914537794888, 0.008419695310294628, -0.022137029096484184, -0.028630908578634262, 0.006086368579417467, -0.015892915427684784, 0.01618211530148983, -0.004587781149893999, -0.0006334490026347339, -0.008800915442407131, -0.02138773538172245, 0.0007427210221067071, -0.00967509113252163, -0.01811450533568859, -0.0090309614315629, -0.03136517480015755, 0.021098535507917404, 0.00619481923058629, -0.027710724622011185, 0.029051564633846283, -0.027184903621673584, 0.004114543087780476, -0.01685253717005253, 0.005488248076289892, 0.026317300274968147, 0.008110776543617249, -0.014315454289317131, -0.016878828406333923, -0.01098306942731142, -0.019797129556536674, -0.016103243455290794, 0.019902294501662254, -0.037464689463377, 0.017864741384983063, 0.02175581082701683, 0.03365249186754227, 0.004768531769514084, 0.019113563001155853, 0.02450321987271309, -0.005695289932191372, -0.00915584433823824, 0.008840352296829224, -0.008708897046744823, -0.02831541746854782, 0.011357716284692287, -0.019797129556536674, 0.005409375298768282, -0.0020161918364465237, -0.0273689404129982, 0.017812158912420273, -0.0019652529153972864, -0.02107224427163601, 0.015367094427347183, -0.024700403213500977, -0.0180619228631258, -0.010161475278437138, -0.0026307441294193268, -0.006625334266573191, 0.01254081167280674, -0.02439805679023266, -0.011699499562382698, 0.014538927935063839, 0.019494783133268356, 0.03139146417379379, -0.010739876888692379, 0.03149662911891937, 0.013539869338274002, 0.003056329907849431, -0.01957365684211254, -0.004275575280189514, -0.01049011293798685, -0.007939884439110756, -0.021427173167467117, -0.007289182394742966, 0.005323929246515036, -0.009740819223225117, 0.025896644219756126, -0.001030278974212706, 0.02460838481783867, -0.00204905541613698, 0.01827225089073181, 0.006999981123954058, -0.01319151371717453, -0.005889186169952154, -0.01686568185687065, -0.003670882200822234, -0.04167125001549721, 0.002121355850249529, 0.0015519910957664251, -0.01716802828013897, 0.03593980893492699, -0.021216845139861107, 0.00409811083227396, 0.017246901988983154, -0.03139146417379379, 0.031233718618750572, 0.008498569019138813, 0.035598024725914, -0.02289946936070919, 0.028131380677223206, -0.004660081584006548, 0.022518249228596687, -0.02179524675011635, -0.021637501195073128, 0.007302328012883663, -0.01176522672176361, 0.024161437526345253, 0.025002749636769295, 0.0015141977928578854, -0.0019816847052425146, -0.02648819237947464, -0.000361706770490855, -0.019691966474056244, -0.0075323740020394325, 0.019113563001155853, 0.006171814631670713, -0.0003491774550639093, -0.010444103740155697, -0.020125767216086388, -0.016458172351121902, 0.037017740309238434, -0.01165348943322897, 0.008321104571223259, 0.0033783947583287954, -0.038069382309913635, -0.023609327152371407, 0.021190553903579712, -0.001295653753913939, 0.008774624206125736, -0.010102320462465286, 0.017207466065883636, -0.007105145137757063, 0.016405589878559113, 0.0015372023917734623, -0.011022505350410938, -0.013829071074724197, 0.025370823219418526, -0.031812120229005814, 0.023083506152033806, 0.012797148898243904, 0.006372283212840557, -0.02700086683034897, 0.003716891398653388, -0.01284973043948412, 0.02622528187930584, -0.040041208267211914, 0.003237080527469516, 0.02721119485795498, -0.003253512317314744, 0.009905138052999973, -0.0180619228631258, -0.025252513587474823, -0.024082563817501068, -0.009076970629394054, -0.01576145924627781, 0.023714490234851837, -0.014013107866048813, -0.03391540050506592, 0.01799619570374489, 0.009819692000746727, -0.009780255146324635, 0.005182615015655756, -0.012514520436525345, 0.01799619570374489, -0.022452522069215775, 0.0023579748813062906, 0.01799619570374489, 0.017720140516757965, 0.033074088394641876, 0.00465679494664073, 0.00045023352140560746, 0.012507948093116283, 0.018482578918337822, -0.015156766399741173, 0.03136517480015755, 0.031207427382469177, -0.01480183843523264, -0.02040182240307331, 0.032600849866867065, -0.021006517112255096, -0.02778959646821022, 0.02831541746854782, -0.027500394731760025, -0.02092764340341091, -0.009799974039196968, -0.00047077337512746453, -0.0057478719390928745, 0.004558203741908073, -0.0049952915869653225, -0.002088492037728429, 0.016090096905827522, -0.013829071074724197, -0.013217804953455925, -0.017785867676138878, 0.007019699551165104, -0.0026291008107364178, -0.008005612529814243, 0.029419640079140663, -0.00845913216471672, 0.024082563817501068, -0.0011461236281320453, -0.013086349703371525, 0.01001687441021204, -0.0002807797573041171, -0.027868470177054405, 0.0004937780322507024, 0.03081306256353855, -0.007302328012883663, 0.010483539663255215, -0.010595276951789856, -0.006921108346432447, -0.004015951883047819, -0.006648338865488768, 0.007407492026686668, 0.002351402072235942, 0.0022215903736650944, 0.001922530005685985, 0.01983656734228134, 0.022294776514172554, -0.02076989784836769, -0.028026215732097626, -0.005908904131501913, -0.028946401551365852, -0.03533511608839035, -0.013119213283061981, 0.005807026755064726, 0.019021544605493546, 0.012172737158834934, -0.019389620050787926, -0.01737835630774498, -0.009688236750662327, -0.04419518634676933, -0.026737956330180168, -0.016523899510502815, 0.023346416652202606, 0.03039240650832653, 0.012586820870637894, -0.01795675978064537, 0.032653432339429855, 0.00011933653149753809, 0.01535394974052906, -0.03586093708872795, 0.02477927692234516, 0.0027967060450464487, -0.025173641741275787, 0.005297638475894928, 0.011745508760213852, -0.005511252675205469, -0.012672265991568565, 0.016063807532191277, 0.0029298043809831142, 0.014762401580810547, 0.024384910240769386, 0.026396173983812332, -0.021269425749778748, -0.008984952233731747, -0.005593412090092897, -0.004269002471119165, -0.006750216707587242, -0.007059135939925909, -0.03778018057346344, 0.012113582342863083, 0.02451636642217636, 0.026054389774799347, -0.02810508944094181, -0.0027901334688067436, 0.01800934039056301, -0.000929222849663347, 0.003693886799737811, -0.01966567523777485, -0.007775566074997187, 0.007243173196911812, -0.012790575623512268, 0.026448754593729973, 0.00740091921761632, 0.01894267275929451, 0.010174620896577835, 0.03922618553042412, -0.013723907060921192, -0.004893414210528135, 0.008393405005335808, -0.02101966179907322, -0.0018173659918829799, 0.017785867676138878, 0.002376049989834428, 0.01639244332909584, -0.008123922161757946, 0.012100436724722385, -0.0002335380995646119, -0.017877886071801186, -0.01570887863636017, 0.016878828406333923, 0.004387312103062868, 0.005093883257359266, -0.0025666598230600357, -0.036044973880052567, 0.026672229170799255, -0.0004186021687928587, -0.013316396623849869, 0.00733519159257412, -0.0034901315812021494, 0.0010623211273923516, -0.02606753632426262, -0.03381023928523064, -0.009011243470013142, -0.01306005846709013, -0.03449380397796631, 0.00028180674416944385, 0.008229086175560951, 0.003841773606836796, 0.017799012362957, 0.21432431042194366, 0.017299484461545944, 0.01006945688277483, 0.03112855553627014, 0.006530029233545065, 0.0033603196498006582, 0.02186097390949726, 0.0036873139906674623, 0.0012447149492800236, 0.013428132981061935, -0.017391502857208252, 0.0247135479003191, 1.345360215054825e-05, 9.920747834257782e-05, 0.0160769522190094, -0.014091980643570423, -0.045299407094717026, 0.008623450994491577, -0.027342649176716805, 0.03990975022315979, 0.03225906938314438, -0.00451548071578145, 0.010792459361255169, -0.01360559742897749, 0.010187766514718533, -0.020217785611748695, -0.011377434246242046, 0.005662425886839628, 0.022255338728427887, 0.022873178124427795, -0.008518286980688572, 0.017654413357377052, -0.0014616157859563828, -0.008630023337900639, 0.0010023447684943676, -0.010483539663255215, -0.012310764752328396, -0.012422502040863037, -0.009944573976099491, 0.006178386975079775, 0.04164495691657066, 0.014302308671176434, -0.005438952706754208, -0.0005126746837049723, -0.0008228264050558209, 0.014907002449035645, 0.003900928422808647, 0.016379298642277718, 0.0066713434644043446, -0.00029351445846259594, -0.04190786927938461, 0.020322950556874275, 0.014644091948866844, 0.02117740735411644, -0.016326716169714928, 0.009175562299787998, 0.016379298642277718, 0.01006945688277483, -0.0027244058437645435, -0.019060982391238213, -0.02274172380566597, 0.022150175645947456, -0.0016004651552066207, -0.0006991765112616122, 0.0050873104482889175, -0.01785159483551979, -0.016366153955459595, -0.0007718876004219055, -0.0025173642206937075, -0.01214644592255354, 0.006240828428417444, 0.00795960333198309, -0.00256994622759521, 0.015235640108585358, -0.01827225089073181, -0.017825303599238396, 0.020572714507579803, -0.0007131436141207814, 0.030208369717001915, 0.018666615709662437, -0.003841773606836796, 0.007972748950123787, -0.005695289932191372, -0.011830953881144524, -0.02508162334561348, -0.0026553920470178127, 0.026238426566123962, 0.002719476353377104, 0.0006424865568988025, 0.0024368478916585445, 0.008597159758210182, -0.008367113769054413, -0.02013891376554966, -0.007972748950123787, 0.004962428007274866, 0.0138159254565835, -0.022242194041609764, 0.007322045974433422, -0.029261892661452293, 0.01006945688277483, -0.02778959646821022, 0.05371253192424774, 0.0156694408506155, -0.011581189930438995, 0.011883536353707314, -0.00578730832785368, -0.008840352296829224, 0.007216881960630417, 9.689674334367737e-05, -0.022544540464878082, -0.00882063340395689, -0.00767697487026453, 0.02091449871659279, 0.00472252257168293, -0.00585303595289588, -0.000508155906572938, 0.011219687759876251, -0.015051602385938168, -0.0018370843026787043, -0.01389479823410511, 0.010956778191030025, -0.020953934639692307, -0.0071840183809399605, 0.02212388440966606, -0.012731420807540417, 0.009813119657337666, -0.013697615824639797, -0.023740781471133232, -0.01340184174478054, -0.0433012917637825, 0.019954875111579895, -0.019113563001155853, 0.01415770873427391, -0.021243136376142502, 0.011844099499285221, 0.010601849295198917, 0.023819655179977417, -0.016195261850953102, -0.026711665093898773, 0.019231872633099556, -0.01837741583585739, 0.015077893622219563, 0.015603713691234589, -0.011055368930101395, 0.018048778176307678, -0.01360559742897749, 0.011410297825932503, 0.02330697886645794, -0.004614071920514107, -0.00882063340395689, -0.01940276473760605, -0.01488071121275425, 0.00370045960880816, 0.013776488602161407, 0.023872235789895058, -0.028788655996322632, -0.01769384928047657, -0.02986658737063408, 0.016563335433602333, 0.015472259372472763, -0.06136321648955345, -0.01217931043356657, 0.0018485866021364927, -0.009307017549872398, -0.0061225187964737415, -0.016983991488814354, -0.16552819311618805, 0.02700086683034897, -0.02326754294335842, -0.005530971102416515, 0.025936080142855644, 0.027237486094236374, 0.011337997391819954, -0.002711260225623846, -0.00931358989328146, -0.017680704593658447, 0.0083013866096735, 0.04085622727870941, -0.0273689404129982, -0.014512636698782444, 0.01423658151179552, 0.014591510407626629, -0.03438863903284073, 0.016379298642277718, 0.013040340505540371, 0.019862856715917587, 0.023609327152371407, -0.006421579048037529, 0.0009834481170400977, -0.0316280834376812, -0.012915458530187607, -0.0008823919924907386, -0.021926701068878174, 0.006457729265093803, 0.001099292770959437, -0.015156766399741173, -0.021203698590397835, -0.006378856021910906, 0.010568985715508461, 0.016537044197320938, -0.011094805784523487, -0.011732363142073154, -0.016694791615009308, 0.0017286338843405247, -0.011364288628101349, 0.04033041000366211, 0.025633733719587326, 0.017733285203576088, 0.005941768176853657, 0.025436552241444588, -0.00572158070281148, 0.014972729608416557, 0.017877886071801186, -0.003605154575780034, 0.012862876057624817, 0.01941590942442417, 0.03141775727272034, -0.05626276135444641, 0.01706286519765854, 0.0020375531166791916, -0.009740819223225117, 0.004403743892908096, 0.0052614882588386536, 0.0004683086008299142, 0.007138009183108807, -0.0398571714758873, 0.014407472684979439, -0.027815887704491615, -0.0017976477975025773, -0.025107914581894875, -0.006750216707587242, -0.02232106775045395, 0.001367954071611166, 0.005560548510402441, -0.028788655996322632, 0.018508870154619217, 0.018929526209831238, 0.005961486138403416, -0.005120174027979374, 0.008084485307335854, 0.012238465249538422, -0.003246939741075039, 0.012264755554497242, 0.030681608244776726, 0.025160495191812515, 0.016773663461208344, 0.004594353958964348, -0.010128611698746681, -0.0297614224255085, 0.026212135329842567, -0.020848769694566727, 0.009721100330352783, 0.024687258526682854, 0.015327658504247665, 0.0008832135936245322, -0.0033915401436388493, 0.004430035129189491, 0.00038717620191164315, 0.017969904467463493, 0.017733285203576088, -0.010457249358296394, 0.013671324588358402, 0.015630004927515984, 0.000391694949939847, -0.007519228849560022, 0.014249727129936218, 0.0013991746818646789, -0.005005151033401489, -0.030366115272045135, 0.011048796586692333, 0.032548271119594574, 0.03675483167171478, -0.009024389088153839, 0.02186097390949726, -0.0010171334724873304, -0.030313532799482346, -0.030786771327257156, 0.01570887863636017, 0.02492387592792511, 0.021348299458622932, -0.0008766408427618444, 0.010411239229142666, -0.01676051877439022, -0.011528607457876205, -0.006250687409192324, 0.000637556950096041, 0.05197732523083687, -0.012718276120722294, -0.02263655886054039, -0.020099475979804993, -0.029051564633846283, -0.015235640108585358, -0.1142081469297409, -0.035413987934589386, -0.014091980643570423, 0.014446909539401531, 0.022518249228596687, 0.01679995469748974, -0.020165205001831055, 0.006927681155502796, -0.03830600157380104, 0.028814945369958878, 0.013132358901202679, -0.012803721241652966, 0.005468530114740133, 0.009635655209422112, 0.042223360389471054, -0.018456287682056427, -0.016484463587403297, 0.0008376151090487838, -0.02212388440966606, 0.031023390591144562, 0.006040359381586313, -0.0016251129563897848, 0.013040340505540371, -0.02654077298939228, -0.0334947444498539, 0.004876982420682907, -0.03018207848072052, -0.0072957552038133144, 0.0017598543781787157, 0.025646880269050598, 0.037385813891887665, 0.004351161886006594, 0.021216845139861107, -0.019968021661043167, -0.019231872633099556, 0.009353026747703552, -0.012843158096075058, -0.023596180602908134, -0.005291065666824579, -0.026685373857617378, 0.016458172351121902, 0.012218746356666088, -0.011278842575848103, -0.028998984023928642, -0.005626276135444641, -0.019586801528930664, -0.008787769824266434, 0.01085161417722702, -0.009287298657000065, -0.01623469777405262, -0.032653432339429855, -0.01665535382926464, -0.0102995028719306, -0.022465666756033897, -0.0017565680900588632, 0.009964292868971825, 0.01100278738886118, 0.006901389919221401, -0.025436552241444588, -0.029998041689395905, -0.03139146417379379, 0.008294813334941864, -0.03922618553042412, 0.03367878124117851, 0.012790575623512268, 0.008833779022097588, -0.014315454289317131, -0.019060982391238213, -0.005070878192782402, -0.029183020815253258, -0.011173678562045097, 0.009977437555789948, -0.012994331307709217, 0.013198086991906166, -0.031049681827425957, 0.01753610372543335, -0.004804681986570358, -0.031023390591144562, 0.052056197077035904, -0.01774643175303936, -0.013460996560752392, -0.04048815369606018, 0.014867565594613552, -0.016615917906165123, 0.022242194041609764, 0.03289005160331726, 0.012626256793737411, -0.012494802474975586, 0.02196613885462284, -0.017628122121095657, -0.004236138891428709, 0.02029665932059288, 0.013539869338274002, -0.02560744248330593, -0.00338168116286397, -0.011048796586692333, -0.01971825771033764, -0.0006716531352140009, 0.002282388275489211, 0.011094805784523487, -0.008708897046744823, -0.0027096171397715807, -0.05000549927353859, 0.010476967319846153, -0.005816885735839605, 0.019954875111579895, 0.0138159254565835, -0.0002493537904229015, 0.02054642327129841, -0.006727212108671665, -0.012008418329060078, 0.005580266937613487, -0.03065531700849533, 0.017417794093489647, -0.0184694342315197, -0.010700440965592861, -0.02372763492166996, -0.021414026618003845, 0.02815767005085945, 0.003805623622611165, 0.001715488382615149, 0.020677879452705383, 0.0020852056331932545, -0.01603751629590988, 0.004926277790218592, 0.0024105568882077932, -0.028709782287478447, 0.0010311005171388388, -0.022649703547358513, 0.02013891376554966, 0.0035361407790333033, -0.015879768878221512, -0.001256217248737812, -0.023228107020258904, -0.007861011661589146, 0.03659708425402641, 0.0001537407806608826, -0.019337037578225136, -0.006221110001206398, 0.024240311235189438, 0.020625296980142593, 0.007085427176207304, -0.026514483615756035, -0.021663792431354523, 0.021269425749778748, -0.014354891143739223, 0.0031549211125820875, -0.006707493681460619, -0.008143640123307705, -0.024384910240769386, 0.021414026618003845, 0.007394346408545971, 0.04406373202800751, -0.006848807912319899, -0.006993408314883709, -0.015367094427347183, -0.0052614882588386536, -0.03070789948105812, 0.013382123783230782, -0.014552073553204536, 0.0029955317731946707, -0.003749755211174488, 0.01915300078690052, 0.009090116247534752, 0.012606538832187653, -0.01769384928047657, 0.02757926844060421, 0.008708897046744823, -0.015248785726726055, 0.00882063340395689, -0.023398999124765396, -0.01324409618973732, -0.0014928363962098956, -0.006395287811756134, 0.013986816629767418, 0.006888244301080704, 0.008978379890322685, -0.004410316701978445, 0.007683547213673592, -0.014486346393823624, -0.004183556884527206, 0.018876943737268448, 0.010858186520636082, -0.003421117551624775, 0.0088995061814785, 0.009569927118718624, -0.0028837951831519604, 0.03160179406404495, -0.010003728792071342, -0.014591510407626629, -0.011752081103622913, 0.01681310124695301, 0.01415770873427391, 0.0005438952357508242, -0.004876982420682907, 0.00648073386400938, 0.015695732086896896, 0.00598449120298028, -0.004949282389134169, 0.0006133199785836041, -0.0048211137764155865, 0.022978341206908226, 0.002407270483672619, -0.001947177923284471, -0.030050624161958694, -0.03728065267205238, -0.012166164815425873, 0.013671324588358402, -0.02955109439790249, -0.02544969692826271, -0.005576980300247669, 0.03086564503610134, 0.008064767345786095, 0.026041245087981224, 0.026396173983812332, 0.007249746005982161, -0.007328618783503771, 0.023385852575302124, -0.03659708425402641, -0.006020640954375267, -0.006848807912319899, 0.029314475134015083, 0.010884477756917477, 0.009353026747703552, 0.01389479823410511, -0.0105624133720994, 0.02341214381158352, 0.024595238268375397, 0.03359990939497948, -0.030523860827088356, -0.00246642529964447, 0.002550227800384164, 0.015275076031684875, -0.006921108346432447, 0.0044464669190347195, -0.018193379044532776, -0.018798071891069412, -0.02768443338572979, 0.0016957700718194246, 0.00655632046982646, 0.018600888550281525, 0.07114347070455551, 0.015958642587065697, -0.002121355850249529, -0.0030579729937016964, 0.008215940557420254, 0.03570318967103958, -0.01214644592255354, 0.013368978165090084, -0.013592451810836792, -0.03441493213176727, -0.004065247252583504, -0.005678858142346144, -0.008005612529814243, -0.01373705267906189, -0.013855362311005592, 0.015419676899909973, -0.0034244039561599493, 0.014775547198951244, 0.00972767360508442, -0.007026272360235453, -0.0026734669227153063, -0.017470374703407288, -0.004962428007274866, 0.01509103924036026, -0.02075675129890442, -0.013349260203540325, 0.0034835587721318007, 0.014078835025429726, -0.03081306256353855, -0.03278488665819168, -0.0026833261363208294, 0.010897623375058174, -0.0041342610493302345, -0.008524859324097633, 0.005876040551811457, -0.006710780318826437, 0.014197144657373428, -0.009372744709253311, 0.0024204161018133163, -0.0019899008329957724, -0.011416871100664139, 0.014525782316923141, 0.0012496445560827851, -0.014630946330726147, -0.01009574718773365, -0.010286357253789902, 0.010463821701705456, 0.01256710197776556, -0.008150212466716766]" +60,"With the high margins in our Windows OEM business and the cyclical nature of the PC market, we take a long-term approach to investing in our core strategic growth areas and maintain these investment levels regardless of PC market conditions. Therefore, with our first quarter results and lower expected OEM revenue for the remainder of the year as well as over $800 million of greater-than-expected energy cost, we now expect operating margins in US dollars to be down roughly a point year over year. On a constant currency basis, excluding the incremental impact of the lower Windows OEM revenue and the favorable impact of the latest accounting change, we continue to expect FY 2023 operating margins to be roughly flat year over year. In closing, in this environment, it is more critical than ever to continue to invest in our strategic growth markets such as cloud, security, Teams, Dynamics 365, and LinkedIn where we have opportunities to continue to gain share as we provide problem-solving innovations to our customers.","[0.010544494725763798, -0.03846913203597069, -0.005844140890985727, -0.01026700809597969, 0.005776461213827133, 0.00354979932308197, -0.026516899466514587, -0.03064536117017269, -0.017014672979712486, -0.014510524459183216, 0.024567725136876106, 0.04767356812953949, -0.014889529906213284, 0.013698368333280087, -0.012466597370803356, 0.014727098867297173, 0.013190770521759987, -0.021088989451527596, 0.01827351376414299, -0.02666579559445381, -0.024269934743642807, 0.007634268142282963, -0.02307877130806446, -0.005979500245302916, -0.016595058143138885, -0.0019034910947084427, 0.009921841323375702, -0.019017990678548813, 0.017813293263316154, -0.014104446396231651, -0.0037393025122582912, -0.004253668244928122, -0.021292028948664665, 0.016987601295113564, -0.024648940190672874, 0.001764747779816389, 0.004351803567260504, 0.03275696560740471, 0.02307877130806446, -0.0029034584295004606, 0.023660818114876747, 0.025055019184947014, -0.0005634333938360214, 0.019830146804451942, -0.013407344929873943, 0.015688151121139526, 0.0029271463863551617, 0.012852371670305729, 0.0026513515040278435, 0.015552790835499763, 0.013766047544777393, 0.04250284284353256, -0.025867175310850143, -0.019532356411218643, -0.0006518399459309876, 0.017529038712382317, -0.010558030568063259, 0.015092569403350353, -0.0011260206811130047, -0.0062637547962367535, -0.013190770521759987, 0.017989259213209152, -0.024337613955140114, 0.017596717923879623, -0.03584316000342369, 0.004551458638161421, -0.028046460822224617, -0.0029559102840721607, 0.02103484608232975, -0.0022588095162063837, 0.038848139345645905, 0.042313337326049805, -0.0018341194372624159, 0.02462186850607395, 0.013942014425992966, -0.006267138756811619, -0.018625449389219284, -0.011309275403618813, 0.015024890191853046, -0.004070932976901531, 0.014672955498099327, -0.02278098091483116, -0.018638985231518745, -0.012162039056420326, 0.0013874334981665015, -0.0030523536261171103, -0.022212471812963486, 0.004067549016326666, -0.023132916539907455, 0.008412584662437439, 0.039768580347299576, 0.01143109891563654, 0.01234477385878563, 0.017488429322838783, -0.0050996639765799046, 0.007992970757186413, -0.019031526520848274, 0.0120402155444026, 0.006317898631095886, -0.01087612472474575, -0.00743122911080718, -0.002993134083226323, -0.025285130366683006, -0.006578465458005667, -0.03806305304169655, 0.01440223678946495, 0.012419221922755241, 0.00609793933108449, 0.04125753417611122, -0.012297398410737514, -0.012331238016486168, -0.010124880820512772, 0.016175445169210434, -0.0006894867983646691, 0.02460833266377449, 0.0008747599204070866, -0.018557768315076828, 0.02084534242749214, -0.01205375138670206, 0.015255000442266464, 0.01418566145002842, 0.007715484127402306, 0.013623920269310474, -0.008020042441785336, 0.0027816349174827337, -0.0018121235771104693, 0.0022706533782184124, -0.005251943599432707, -0.0005367844714783132, -0.005438062362372875, 0.004033708944916725, -0.011566458269953728, 0.0038239022251218557, 0.01724478416144848, -0.023038163781166077, 0.02604314312338829, -0.018016330897808075, 0.02255086973309517, -0.03337961807847023, -0.020195618271827698, -0.005959196016192436, 0.016161909326910973, 0.002243581460788846, 0.0018950311932712793, 0.016689809039235115, 0.02796524576842785, 0.01978953927755356, -0.004131844732910395, 0.0022588095162063837, -0.0148489223793149, 0.004422867204993963, -0.02357960119843483, 0.026056678965687752, 0.01849008910357952, 0.0296978447586298, -0.02543402463197708, 0.019965507090091705, 0.008026810362935066, -0.012798228301107883, -0.0016539222560822964, -0.004632674157619476, 0.006328050512820482, -0.011282202787697315, 0.011877784505486488, 0.001399277476593852, 0.0120402155444026, 0.04336914047598839, 0.009414243511855602, -0.015119641087949276, 0.006050563883036375, -0.0013375197304412723, -0.0014525752048939466, -0.013914942741394043, 0.021684570237994194, 0.013089250773191452, 0.02655750699341297, -0.014307484962046146, 0.003702078713104129, -0.03197188302874565, -0.020899485796689987, 0.020750591531395912, -0.019464677199721336, 0.0062942104414105415, 0.009184133261442184, 0.005901668220758438, -0.01817876286804676, 0.030374642461538315, 0.010882892645895481, 0.024161646142601967, 0.009664658457040787, -0.013515632599592209, 0.030807791277766228, -0.008168937638401985, -0.013745743781328201, -0.6410619616508484, -0.0011048708111047745, -0.01970832422375679, -0.002883154433220625, 0.0005562424194067717, -0.006182539276778698, 0.024960266426205635, 0.0015760905807837844, -0.03841498866677284, 0.013400577008724213, 0.0007224806468002498, 0.014429308474063873, -0.01867959275841713, -0.012852371670305729, 0.022117720916867256, -0.024838443845510483, 0.01042267121374607, 0.007654572371393442, -0.01828704960644245, -0.013028339482843876, 0.015200857073068619, 0.00989476963877678, 0.008304296992719173, -0.010226400569081306, 0.002307877177372575, 0.002257117535918951, 0.014469916000962257, -0.014456380158662796, -0.021968824788928032, 0.014469916000962257, -0.008825430646538734, 0.008683303371071815, -0.01143109891563654, 0.002588748000562191, 0.048242077231407166, -0.004118308890610933, -0.035897303372621536, 0.008514104411005974, 0.02265915833413601, 0.018341194838285446, -0.021589819341897964, 0.008554711937904358, -0.006392346229404211, -0.007072526961565018, -0.013901406899094582, 0.017894508317112923, 0.014469916000962257, -0.02184700220823288, 0.01571522280573845, -0.0020557704847306013, 0.016216052696108818, 0.0021183739881962538, -0.001256304094567895, -0.02877740189433098, 0.02256440557539463, -4.266992618795484e-05, 0.01087612472474575, -0.04542660340666771, 0.004744345787912607, -0.0033839840907603502, -0.01026024017482996, 0.0035734872799366713, -0.015891188755631447, -0.03438127785921097, -0.03240503370761871, 0.020791199058294296, -0.010530958883464336, -0.0014593431260436773, 0.014375165104866028, -0.004003253299742937, -0.017583182081580162, 0.01827351376414299, 0.000906907778698951, -0.020073793828487396, 0.006842415779829025, 0.02451358176767826, 0.025555849075317383, -0.023538993671536446, -0.010043664835393429, 0.01836826652288437, 0.0026801154017448425, -0.041284605860710144, -0.0024263167288154364, -0.006889791693538427, -0.006155467126518488, -0.0026344317011535168, 0.0014102753484621644, -0.0076681082136929035, 0.0056174136698246, 0.017813293263316154, 0.011099467985332012, -0.004629290197044611, 0.016216052696108818, -0.04737577959895134, 0.01091673318296671, 0.034679070115089417, -0.02053401619195938, -0.0025735199451446533, 0.006185923237353563, -0.004524386953562498, -0.01857130602002144, -0.015755830332636833, 0.03581608831882477, 0.005262095481157303, 0.024026287719607353, 0.03565365821123123, 0.019992578774690628, 0.00510304793715477, 0.025650599971413612, -0.03145751729607582, -0.0022012817207723856, -0.015227928757667542, -0.006575081031769514, 0.004433019086718559, 0.0036242471542209387, -0.025907782837748528, 0.020547552034258842, -0.020994238555431366, -0.01005043275654316, -0.008378745056688786, 0.0007059837225824594, 0.009421012364327908, 0.016892848536372185, -0.02734259143471718, -0.010997948236763477, 0.009312724694609642, 0.014226269908249378, 0.013129858300089836, 0.004534538835287094, -0.02084534242749214, -0.003433051984757185, -0.024892587214708328, 0.03378569707274437, 0.0015219468623399734, 0.007681644055992365, 0.008703607134521008, 0.005597109906375408, -0.025176841765642166, 0.016567986458539963, -0.02571827918291092, -0.02278098091483116, -0.005275631323456764, -0.018855560570955276, -0.0006488789804279804, -0.027491487562656403, -0.02255086973309517, 4.280211214791052e-05, 0.011404026299715042, -0.004629290197044611, -0.010009825229644775, 0.0022215857170522213, -0.0010253471555188298, -0.0012106203939765692, 0.013705136254429817, 0.0037866781931370497, -0.0017715157009661198, 0.0009906613267958164, -0.03300061449408531, -0.016567986458539963, -0.00011822794476756826, -0.008344904519617558, 0.007525980938225985, 0.004571762401610613, 0.007234958000481129, -0.0032181688584387302, -0.008459960110485554, -0.03930836170911789, 0.028154747560620308, 0.0011006408603861928, -0.0074786050245165825, 0.007674876134842634, -0.019992578774690628, 0.006196075119078159, 0.0036005591973662376, -0.01321784220635891, -0.009888001717627048, -0.022889269515872, 0.005147039890289307, 0.013982622884213924, -0.021319100633263588, 0.029887348413467407, -0.0016429242677986622, -0.009630818851292133, -0.003911885898560286, 0.020236225798726082, 0.015390359796583652, 0.010463278740644455, 0.025258058682084084, -0.004581914748996496, 0.018733736127614975, -0.004815409425646067, 0.003722382476553321, -0.024324078112840652, -0.006568313110619783, -0.011282202787697315, -0.017420750111341476, -0.02554231323301792, 0.008189241401851177, -0.006399114150553942, -0.000699638738296926, 0.015092569403350353, 0.002950834110379219, -0.003813750110566616, 0.021170204505324364, 0.01086935680359602, -0.025704743340611458, 0.002497380366548896, -0.028858616948127747, -0.0022182015236467123, 0.034651998430490494, 0.02428347058594227, -0.0420696921646595, -0.014808314852416515, -0.019424069672822952, -0.023295346647500992, 0.010761070065200329, 0.006744280457496643, 0.020804734900593758, -0.010815213434398174, -0.004619138315320015, 0.014835386537015438, -0.010476814582943916, 0.01209435984492302, -0.01204698346555233, 0.012229719199240208, -0.017583182081580162, -0.00553958211094141, 0.023511921986937523, 0.017109423875808716, -0.009427780285477638, -0.01663566567003727, 0.02307877130806446, 0.02470308355987072, 0.010463278740644455, 0.00887957401573658, 0.01889616809785366, 0.019545892253518105, -0.017217710614204407, 0.05452275276184082, -0.0003925421624444425, 0.017014672979712486, 0.014875994063913822, 0.013942014425992966, 0.014713563024997711, -0.003678390756249428, -0.015850581228733063, 0.04117631912231445, -0.0007195196230895817, -0.015552790835499763, -0.006896559614688158, -0.02186053805053234, 0.005729085300117731, 0.00892695039510727, -0.02226661518216133, 0.005397454835474491, -0.011546153575181961, -0.015295608900487423, -0.010219632647931576, 0.04044537991285324, 0.02418871968984604, -0.010551262646913528, 0.011959000490605831, 0.024256398901343346, 0.001756287761963904, -0.005075976252555847, -0.00424013240262866, -0.004588682670146227, 0.005915204528719187, -0.01919395849108696, 0.008642695844173431, 0.008690071292221546, -0.005759540945291519, 0.013772815465927124, 0.005133504047989845, -0.014145053923130035, 0.013623920269310474, 0.009718802757561207, -0.0188826322555542, -0.0034601239021867514, 0.03094315156340599, 0.0014441153034567833, -0.03267575055360794, -0.0011310967383906245, 0.0233630258589983, -0.0047172741033136845, 0.023214131593704224, 0.0004906777176074684, -0.008439656347036362, 0.004429635126143694, 0.020371584221720695, -0.0017393678426742554, 0.0027494870591908693, -0.02684176154434681, 0.007221422158181667, -0.0020929942838847637, 0.007356781512498856, 0.02684176154434681, -0.032107241451740265, -0.004084468819200993, 0.0037494543939828873, 0.012838835828006268, -0.008683303371071815, -0.013251681812107563, 0.016310803592205048, 0.02777574211359024, 0.010882892645895481, -0.02584010362625122, -0.02888568863272667, -0.005522662308067083, -0.017001137137413025, 0.005255327560007572, -0.012290630489587784, -0.027031265199184418, 0.013021571561694145, 0.01593179814517498, -0.004023557063192129, -0.016513843089342117, -0.014713563024997711, 0.023105844855308533, 0.018002795055508614, -0.006138547323644161, -0.0038645099848508835, -0.03102436661720276, 0.010808445513248444, 0.06843769550323486, 0.027938174083828926, -0.027505023404955864, 0.030293425545096397, 0.016892848536372185, 0.00388142978772521, 0.0076884119771420956, -0.014835386537015438, 0.017325999215245247, -0.004619138315320015, -0.013644224032759666, 0.005712165497243404, -0.020249761641025543, -0.015403895638883114, 0.02012793719768524, -0.007052223198115826, 0.01093026902526617, -0.003287540515884757, -0.0029339143075048923, 0.015390359796583652, -0.0050692083314061165, -0.0009018317796289921, 0.02584010362625122, 0.025650599971413612, 0.028560826554894447, 0.03830670192837715, 0.019126279279589653, 0.029075192287564278, -0.002483844291418791, -0.000870529911480844, -0.021197276189923286, 0.003380600130185485, -0.018300587311387062, 0.0363304540514946, -0.021102525293827057, -0.0047003538347780704, -0.006412649992853403, -0.02317352406680584, 0.014835386537015438, 0.025379881262779236, 0.022483190521597862, 0.001585396588779986, 0.026381541043519974, -0.023823248222470284, -0.00223342957906425, -0.024351149797439575, -0.004202908370643854, 0.017122959718108177, 0.009278884157538414, -0.028669113293290138, 0.008683303371071815, -0.016865776851773262, -0.038550347089767456, 0.005295935086905956, -0.03646581247448921, 0.0234848503023386, -0.012263558804988861, -0.01941053383052349, -0.01552571915090084, -0.02510916255414486, -0.022835124284029007, -0.015782902017235756, 0.01949174888432026, -0.02042572759091854, -0.023132916539907455, 0.006564929150044918, -0.020750591531395912, 0.008108026348054409, -0.043450355529785156, 0.01241245400160551, 0.011904856190085411, -0.016486771404743195, -0.02921055071055889, 0.010544494725763798, 0.015444504097104073, 0.0011133308289572597, 0.001422119326889515, 0.010395599529147148, 0.0027765589766204357, 0.01057156641036272, -0.004297659732401371, -0.0009898153366521, -0.020682910457253456, -0.032296743243932724, -0.023918000981211662, 0.010937036946415901, 0.0014449612936004996, 0.007302637677639723, -0.02531220205128193, -0.0029779060278087854, -0.006091171409934759, -0.012804996222257614, 0.010855820961296558, -0.006138547323644161, 0.014889529906213284, -0.016513843089342117, 0.0022182015236467123, 0.00811479426920414, 0.015769366174936295, -0.002656427677720785, -0.013874335214495659, 0.0009263656684197485, -0.0094413161277771, -0.0345437116920948, 0.0027427191380411386, 0.02001965045928955, 0.011816872283816338, -0.006328050512820482, -0.01403676625341177, 0.0010405750945210457, 0.01950528472661972, -0.016297267749905586, -0.01981661096215248, -0.015322680585086346, -0.028344251215457916, -0.01706881634891033, 0.01897738315165043, 0.009150293655693531, 0.013826959766447544, -0.0011674745474010706, 0.0247978363186121, -0.03819841518998146, 0.0377652645111084, 0.0034990396816283464, 0.00012340967077761889, -0.0005012526526115835, 0.002023622626438737, -0.012385382317006588, -0.04491223767399788, 0.007485372945666313, -0.022916341200470924, 0.009129988960921764, 0.0024449285119771957, -0.008128330111503601, -0.005150423850864172, -0.035789016634225845, 0.004480395000427961, -0.003456739941611886, -0.019356388598680496, -0.015755830332636833, -0.0168522410094738, 0.023065235465765, -0.0004378029552754015, -0.034760285168886185, 0.019762467592954636, -0.02532573789358139, -0.006037027575075626, -0.004592066630721092, -0.00022080497001297772, 0.020804734900593758, -0.005681709386408329, 0.009048773907124996, -0.011837176978588104, 0.00027558321016840637, -0.0074583012610673904, -0.01675749011337757, 0.018950311467051506, -0.03348790854215622, 0.017488429322838783, 0.019139815121889114, 0.04464152082800865, -0.013901406899094582, -0.004652978386729956, 0.020479872822761536, -0.0059422762133181095, -0.0022063576616346836, 0.006375425960868597, -0.012419221922755241, -0.020980702713131905, 0.0015058729331940413, -0.032323818653821945, 0.003949109464883804, -0.018544232472777367, -0.01418566145002842, -0.0001866478705778718, 0.004463475197553635, -0.01766439713537693, 0.014605275355279446, -0.0314304456114769, -0.012940355576574802, -0.002472000429406762, -0.00811479426920414, -0.029535414651036263, 0.025271594524383545, -0.020547552034258842, -0.02684176154434681, 0.007695179898291826, 0.022212471812963486, 0.04022880271077156, -0.0052688634023070335, 0.00938717182725668, 0.0012554581044241786, -0.0057629249058663845, -0.008520872332155704, 0.012926819734275341, -0.02532573789358139, -0.006872871890664101, -0.04447908699512482, -0.010524190962314606, -0.00795913115143776, -0.016581522300839424, 0.03042878583073616, 0.009326260536909103, 0.01536328811198473, 0.019058598205447197, 0.02899397723376751, -0.003962645307183266, -0.0348956435918808, 0.010646014474332333, -0.021901145577430725, -0.0010583410039544106, -0.020682910457253456, -0.004402563441544771, -0.004145380575209856, -0.016825169324874878, 0.009265348315238953, -0.0015473267994821072, 0.0017258318839594722, -0.013055411167442799, -0.005654637701809406, 0.017826829105615616, 0.0012639181222766638, 0.02601606957614422, -0.02083180658519268, 0.027004193514585495, -0.0034245920833200216, 0.004263820126652718, -0.03259453549981117, -0.029589558020234108, -0.0029491421300917864, -0.012635797262191772, 0.04556196182966232, 0.02133263647556305, -0.004673282150179148, -0.0052316393703222275, -0.015985941514372826, -0.007593660615384579, -0.0006590309203602374, -0.010354992002248764, 0.018828487023711205, 0.021779322996735573, -0.014781243167817593, -0.02349838614463806, -0.0334608368575573, -0.021819930523633957, 0.025366345420479774, -0.006118243560194969, 0.016716882586479187, 0.003021897980943322, -0.02328181080520153, -0.008642695844173431, 0.029562486335635185, 0.013556241057813168, 0.010436207056045532, 0.0029034584295004606, 0.005891516339033842, -0.01746135763823986, -0.0014314253348857164, 0.013705136254429817, -0.013089250773191452, -0.005228255409747362, 0.009820322506129742, -0.02307877130806446, 0.03172823414206505, 0.010510655120015144, 0.003938957583159208, -0.020994238555431366, -0.0008430350571870804, -0.0037189985159784555, 0.02186053805053234, -0.01980307511985302, 0.007932058535516262, 0.032323818653821945, 0.003287540515884757, 0.019221030175685883, -0.014591739512979984, -0.01552571915090084, -0.016283731907606125, -0.026476291939616203, -0.008358441293239594, 0.008838966488838196, 0.011769496835768223, -0.02829010784626007, 0.012304166331887245, -0.0005063286516815424, 0.0007707023760303855, 0.005546350032091141, 0.00609793933108449, 0.0050692083314061165, -0.012994498945772648, -0.011877784505486488, 0.005674941465258598, 0.0034990396816283464, 0.022632086649537086, -0.01735307089984417, 0.0023586370516568422, -0.004774801898747683, 0.013170466758310795, -0.00908938143402338, 0.027708062902092934, 0.02451358176767826, 0.0015270228032022715, -0.026706403121352196, 0.028235964477062225, -0.013326129876077175, -0.015241464599967003, -0.002526144264265895, -0.01571522280573845, -0.02142738737165928, 0.015119641087949276, 0.003918653819710016, 0.0031234174966812134, -0.002174209803342819, 0.00571554945781827, 0.004669898189604282, 0.027545630931854248, 0.004280739929527044, -0.02655750699341297, -0.021698106080293655, 0.023349490016698837, 0.0010989488800987601, -0.0016310804057866335, 0.01652737893164158, -0.015606935136020184, 0.013096018694341183, -0.007539516780525446, -0.015417431481182575, 0.010233168490231037, -0.0026462755631655455, -0.027829885482788086, -0.007519213017076254, 0.030753647908568382, -0.015782902017235756, 0.002142061945050955, -0.02532573789358139, 0.0006438029813580215, 0.0019102590158581734, 0.0003280349774286151, 0.02122434787452221, -0.00019204110139980912, 0.012547813355922699, -0.008974325843155384, 0.02685529924929142, -0.006361890118569136, -0.018327658995985985, -0.03665531799197197, -0.002490612445399165, -0.015390359796583652, -0.029427126049995422, -0.018801415339112282, 0.005556501913815737, 0.031403373926877975, 0.009143524803221226, -0.024933194741606712, -0.027653919532895088, 0.00661230506375432, -0.04694262892007828, -0.033135972917079926, -0.012338005937635899, 0.022307224571704865, 0.037007249891757965, 0.004740961827337742, 0.0024449285119771957, 0.0446956641972065, -0.0029440661892294884, 0.01847655326128006, -0.028344251215457916, 0.009346564300358295, 0.00022926492965780199, -0.00745153333991766, -0.007295869756489992, -0.007113134954124689, -0.00760719645768404, -0.009211204946041107, 0.010842285118997097, 0.0011717044981196523, 0.017813293263316154, 0.03186359629034996, 0.01705528050661087, -0.024784300476312637, 0.001253766124136746, 0.012595188803970814, 0.004152148496359587, 0.0025819798465818167, 0.014293949119746685, -0.04483102262020111, -0.0006289980374276638, 0.023660818114876747, 0.009224740788340569, -0.0037968303076922894, 0.006713824812322855, 0.02223954349756241, -0.009150293655693531, 0.0004906777176074684, -0.017610253766179085, 0.0004225750162731856, 0.014145053923130035, -0.004399179480969906, 0.02000611461699009, 0.005820452701300383, -0.001430579344742, 0.02234783209860325, 0.04066195338964462, -0.025907782837748528, 0.000353626353899017, 0.024378221482038498, -0.038848139345645905, -0.00389158190228045, 0.009576675482094288, -0.030293425545096397, 0.01307571493089199, 0.005969347897917032, 0.017691468819975853, 0.01139049045741558, -0.013515632599592209, -0.016892848536372185, 0.03348790854215622, 0.002302801236510277, -0.005160575732588768, -0.0020371584687381983, -0.04133874922990799, 0.01536328811198473, -0.01908566989004612, -0.008033578284084797, 0.005877980496734381, -0.005475286394357681, -0.0044059474021196365, -0.030293425545096397, -0.05146363005042076, 0.016067156568169594, -0.02030390501022339, -0.02543402463197708, 0.009969217702746391, 0.013860799372196198, 0.00790498685091734, 0.021156668663024902, 0.21148547530174255, 0.014727098867297173, 0.0052485596388578415, 0.022483190521597862, -0.00231126113794744, 0.008595319464802742, 0.006707056425511837, 0.004121692851185799, 0.0033721402287483215, 0.020601695403456688, -0.0029423742089420557, 0.0217522494494915, -0.005417758598923683, -0.008256921544671059, 0.021576283499598503, -0.0018764191772788763, -0.03684481978416443, 0.0025041482876986265, -0.031701162457466125, 0.061832159757614136, 0.02125142142176628, -0.02286219783127308, 0.013914942741394043, -0.013874335214495659, 0.025867175310850143, -0.004713890142738819, -0.031295087188482285, 0.02215832844376564, 0.025569384917616844, 0.019437605515122414, -0.016581522300839424, 0.03013099543750286, 0.018111083656549454, -0.002443236531689763, 0.024784300476312637, -0.023660818114876747, -0.006950703449547291, -0.00848026480525732, 0.00487632118165493, 0.025041483342647552, 0.03841498866677284, 0.0188826322555542, -0.0017317539313808084, -0.019654180854558945, -0.001857807277701795, 0.030753647908568382, -0.015782902017235756, 0.002316337078809738, 0.0029372982680797577, -0.0002730452106334269, -0.02022268995642662, 0.012033447623252869, 0.02531220205128193, 0.016080692410469055, -0.00454469071701169, 0.013136626221239567, 0.010158720426261425, 0.002867926610633731, -0.010375295765697956, -0.005840756464749575, -0.005691861268132925, 0.006927015725523233, 0.014104446396231651, -0.0012613801518455148, -0.014253341592848301, -0.0073161739856004715, -0.002495688386261463, 0.003888197708874941, -0.020073793828487396, -0.012304166331887245, -0.001228386303409934, 0.014618811197578907, -0.01107239630073309, 0.012635797262191772, -0.013123090378940105, -0.026178501546382904, 0.027423808351159096, 0.0023670969530940056, 0.03511222079396248, 0.010436207056045532, 0.00908938143402338, -0.00479848962277174, -0.000852341006975621, -0.018828487023711205, -0.013637456111609936, -0.016622129827737808, 0.0027444111183285713, -0.004950768779963255, 0.011559690348803997, -0.007086062803864479, 0.01040913537144661, 0.009827090427279472, -0.012804996222257614, -0.012121431529521942, 0.023958608508110046, 0.005681709386408329, -0.003746070433408022, 0.01694699190557003, -0.020561087876558304, -0.005654637701809406, -0.023308882489800453, 0.06204873323440552, 0.03868570551276207, 0.0016048544785007834, 0.001175934448838234, -0.0028746945317834616, -0.012615492567420006, 0.023620208725333214, -2.9874236133764498e-05, -0.021522140130400658, 0.002158981980755925, -0.0062637547962367535, 0.015471575781702995, -6.762681005056947e-05, -0.009610515087842941, 0.0007148666772991419, -0.01271701231598854, -0.020764127373695374, -0.00023793638683855534, 0.005522662308067083, 0.01571522280573845, -0.02410750277340412, 0.01040913537144661, 0.01601301319897175, -0.014510524459183216, 0.001839195378124714, -0.013928478583693504, -0.020791199058294296, -0.013542704284191132, -0.03297354280948639, 0.018111083656549454, -0.02510916255414486, -0.0042265960946679115, -0.0316740907728672, 0.016107764095067978, 0.013969087041914463, 0.020682910457253456, -0.02062876708805561, -0.025772422552108765, 0.0014517292147502303, -0.02237490378320217, 0.01239891815930605, 0.008243385702371597, -0.003363680327311158, 0.022226007655262947, -0.02676054649055004, 0.02298402041196823, 0.006341586355119944, 0.002135294023901224, -0.033108901232481, -0.02695005014538765, -0.002854390535503626, 0.001494875061325729, 0.011126539669930935, 0.018300587311387062, -0.010815213434398174, -0.03237796202301979, -0.012967427261173725, -0.011525849811732769, 0.005965963937342167, -0.053033798933029175, -0.016608593985438347, 0.003082809504121542, -0.022334296256303787, -0.02094009332358837, -0.015282072126865387, -0.17250198125839233, 0.024432364851236343, -0.004964304622262716, -0.014957210049033165, 0.02818182110786438, 0.01785390079021454, 0.0023924768902361393, -0.0018070475198328495, -0.00827722530812025, -0.0017275238642469049, 0.03622216731309891, 0.022997556254267693, -0.03270282223820686, -0.019017990678548813, 0.01337350532412529, 0.006551393307745457, -0.023024627938866615, 0.014740634709596634, 0.008162169717252254, 0.02020915411412716, 0.037332113832235336, -0.017339535057544708, 0.0018188914982602, -0.016595058143138885, 0.013393809087574482, 0.010801677592098713, -0.010700157843530178, 0.026110822334885597, -0.0005177495768293738, -0.02665225975215435, -0.010307615622878075, 0.0011463246773928404, 0.028425466269254684, 0.02481137216091156, 0.004087852779775858, -0.007248494308441877, -0.020236225798726082, -0.011512313969433308, -0.010341455228626728, 0.03535586595535278, 0.031295087188482285, 0.006592001300305128, 0.02359313704073429, 0.017407214269042015, -0.0011953924549743533, 0.02114313282072544, 0.021170204505324364, -0.016865776851773262, 0.0029051504097878933, 0.007444764953106642, 0.0291022639721632, -0.04737577959895134, 0.001419581356458366, 0.011140075512230396, -0.003935573622584343, 0.032919399440288544, -0.00022228546731639653, 0.01159352995455265, 0.012134967371821404, -0.031186798587441444, -0.010131648741662502, -0.01683870516717434, -0.0008024272392503917, -0.014293949119746685, -0.004910161253064871, -0.03161994740366936, 0.003199557075276971, 0.003759606508538127, -0.025745350867509842, 0.020804734900593758, 0.022808052599430084, -0.006219762843102217, 0.018422409892082214, -0.004896624945104122, 0.010070736519992352, 0.0015397127717733383, 0.01633787527680397, 0.028560826554894447, 0.023620208725333214, 0.01220264658331871, 0.006328050512820482, -0.00223342957906425, -0.01403676625341177, 0.014023230411112309, -0.029264695942401886, -0.000639996025711298, 0.02245611883699894, 0.0045852987095713615, 0.004605602473020554, 0.00223342957906425, 0.0008608009666204453, -0.016595058143138885, 0.011579994112253189, -0.013136626221239567, 0.006460025906562805, 0.00989476963877678, 0.012378614395856857, 0.02072351984679699, -0.025907782837748528, 0.011018252931535244, -0.005864444654434919, 0.0024889204651117325, -0.04152825474739075, 0.007221422158181667, 0.02286219783127308, 0.0148489223793149, -0.0020168544724583626, 0.010233168490231037, 0.010646014474332333, -0.03928129002451897, -0.028723258525133133, 0.012385382317006588, 0.033839840441942215, 0.018408874049782753, -0.0010177332442253828, 0.01490306667983532, 0.013515632599592209, -0.00790498685091734, -0.0022655774373561144, 0.00037625673576258123, 0.03627631068229675, -0.02223954349756241, -0.01969478838145733, -0.016080692410469055, -0.013793119229376316, -0.028831545263528824, -0.11630076915025711, -0.043450355529785156, -0.013556241057813168, 0.017813293263316154, 0.00743122911080718, 0.001111638848669827, -0.0014161973958835006, 0.011877784505486488, -0.027234304696321487, 0.04074316844344139, 0.009522531181573868, -0.014618811197578907, -0.009434548206627369, 0.0027224153745919466, 0.03216138482093811, -0.018111083656549454, -0.00371561455540359, -0.012899748049676418, -0.027802813798189163, 0.01859837770462036, 0.005526046268641949, -0.016595058143138885, 0.005989652127027512, -0.029372982680797577, -0.0024415445514023304, -0.009346564300358295, -0.04052659496665001, -0.006158851087093353, 0.004443171434104443, 0.020574623718857765, 0.021088989451527596, 0.0034685838036239147, 0.02929176762700081, -0.0022300456184893847, -0.0028002469334751368, -0.0013586696004495025, -0.020398655906319618, -0.01137695461511612, -0.0010464971419423819, -0.012270326726138592, 0.013644224032759666, 0.01735307089984417, 0.011708585545420647, -0.03419177606701851, -0.00513012008741498, 0.004098004661500454, -0.0023637129925191402, -0.0069371676072478294, 0.00862239208072424, -0.013603616505861282, -0.009407475590705872, -0.0014804931124672294, -0.019315781071782112, -0.009346564300358295, 0.003989717457443476, -0.0050590564496815205, 0.0007284025778062642, 0.014131518080830574, -0.02839839458465576, -0.04158239811658859, -0.009150293655693531, 0.001145478687249124, -0.024757228791713715, 0.020872414112091064, 0.024676011875271797, 0.009522531181573868, -0.0018899551359936595, -0.02950834110379219, -0.006375425960868597, -0.031782377511262894, 0.002930530346930027, 0.016716882586479187, -0.01713649556040764, 0.006043795961886644, -0.007221422158181667, 0.0013459797482937574, 0.002541372086852789, -0.017705004662275314, 0.025677671656012535, -0.007187582552433014, -0.02807353250682354, -0.03505807742476463, 0.001741059822961688, -0.011261899024248123, 0.02615142986178398, 0.01373897586017847, 0.006246834993362427, -0.0019102590158581734, 0.01911274343729019, -0.030861936509609222, -0.008378745056688786, 0.025136234238743782, 0.02031744085252285, -0.023444242775440216, 0.0004407639498822391, -0.004859401378780603, -0.0050996639765799046, -0.02512269839644432, -0.007437997031956911, 0.004070932976901531, -0.012222951278090477, 0.00609793933108449, -0.05492883175611496, 0.02337656356394291, -0.0181652270257473, 0.013041875325143337, -1.8559037926024757e-05, 0.016811633482575417, 0.008135098032653332, -0.014767707325518131, 0.0021082221064716578, 0.02153567597270012, -0.024838443845510483, 0.02523098513484001, -0.015742294490337372, -0.013996158726513386, -0.028939832001924515, -0.01991136372089386, 0.018449481576681137, -0.009563139639794827, 0.012541045434772968, 0.01624312438070774, 0.010483583435416222, -0.012527509592473507, 0.010693389922380447, 0.027653919532895088, -0.014754170551896095, 0.02134617231786251, -0.021061917766928673, 0.0017300619510933757, -0.0011370186693966389, -0.020155008882284164, 0.008608855307102203, -0.01571522280573845, -0.01693345606327057, 0.04396472126245499, -0.013129858300089836, -0.018138155341148376, 0.006256986875087023, 0.01582350954413414, 0.015755830332636833, -0.002422932768240571, -0.03879399597644806, -0.01675749011337757, 0.006145315244793892, -0.025258058682084084, 0.005685093346983194, -0.005353462882339954, -0.0002290534321218729, -0.01635141111910343, -0.003935573622584343, 0.0002656427677720785, 0.03072657622396946, 0.002940682228654623, -0.004273972008377314, -0.02500087581574917, 0.011525849811732769, -0.017826829105615616, 0.0045277709141373634, 0.0006586079252883792, -0.00503198429942131, -0.0024161646142601967, 0.035978518426418304, 0.0009754334460012615, -0.005153807811439037, -0.02134617231786251, 0.03473321348428726, 0.013156930916011333, -0.01644616387784481, 0.001119252759963274, 0.00021890147763770074, 0.002502456307411194, -0.008006506599485874, 0.00015354828792624176, 0.005874596536159515, 0.02451358176767826, 0.007377085275948048, -0.014226269908249378, 0.02439175732433796, -0.005972731858491898, -0.01373220793902874, 0.02103484608232975, -0.014456380158662796, 0.005546350032091141, 0.00959697924554348, 0.004223212134093046, 0.003837438067421317, 0.01352240052074194, 0.006016723811626434, -0.000997429364360869, -0.002282497240230441, 0.01859837770462036, 0.005191031843423843, 0.01970832422375679, -0.007634268142282963, 0.0011522466083988547, 0.009346564300358295, -0.012689940631389618, 0.01040913537144661, 0.008805126883089542, -0.011979304254055023, 0.023349490016698837, -0.008223081938922405, 0.006270522717386484, -0.012486902065575123, -0.0481608621776104, -0.015471575781702995, 0.013590080663561821, -0.005136888008564711, -0.035274650901556015, -0.011843944899737835, 0.026814689859747887, 0.003033741842955351, 0.027193697169423103, 0.04361278936266899, 0.013698368333280087, -0.0161348357796669, 0.01204698346555233, -0.01899091899394989, -0.02073705568909645, -0.014266877435147762, 0.028127675876021385, 0.011302507482469082, 0.009630818851292133, 0.008473495952785015, 0.00041094256448559463, 0.036898963153362274, 0.004784953780472279, 0.01696052961051464, -0.035897303372621536, -0.0020422344096004963, -0.0064735617488622665, -0.0036208629608154297, -0.008811894804239273, 0.011722121387720108, -0.03381276875734329, -0.016405554488301277, -0.012974195182323456, -0.0013958935160189867, 0.009488691575825214, 0.03646581247448921, 0.07044101506471634, 0.00953606702387333, -0.009475155733525753, 0.00273087527602911, 0.010964108631014824, 0.02521744929254055, -0.018652521073818207, 0.0074583012610673904, -0.01907213404774666, -0.021170204505324364, 0.02337656356394291, -0.012622261419892311, 0.005492206197232008, -0.005627565551549196, -0.02829010784626007, 0.013265217654407024, -0.003580255201086402, 0.004724042024463415, -0.0074583012610673904, 0.008710375055670738, 0.0057426211424171925, -0.020642302930355072, 0.0009915073169395328, 0.013610384427011013, -0.015606935136020184, -0.01612129993736744, 0.015661079436540604, 0.016771025955677032, -0.02584010362625122, -0.041934333741664886, 0.0004437249153852463, 0.010693389922380447, -0.034976858645677567, -0.003505807602778077, -0.0011387106496840715, 0.00862916000187397, 0.006568313110619783, 4.586884824675508e-05, 0.016310803592205048, -0.008514104411005974, -0.010652782395482063, 0.02788402885198593, 0.009414243511855602, -0.0069777751341462135, -0.008371977135539055, -0.019938435405492783, -0.004094620700925589, 0.014469916000962257, 0.003935573622584343]" +61,"And while we continue to help our customers do more with less, we will do the same internally. And you should expect to see our operating expense growth moderate materially through the year. While we focus on growing productivity of the significant headcount investments we've made over the last year. With that, let's go to Q&A.","[-0.014238400384783745, -0.011069077998399734, 0.00546052074059844, -0.02828839048743248, -0.009178250096738338, 0.02456056699156761, -1.980563683900982e-05, 0.006368925329297781, -0.02470860257744789, -0.005231737159192562, 0.026390833780169487, 0.005817153491079807, 0.010133757255971432, -0.005467249546200037, 0.00607285276055336, 0.007125928997993469, 0.020657792687416077, -0.028719041496515274, 0.02569102682173252, -0.0036672628484666348, -0.00866012368351221, -0.006466494407504797, -0.00488519761711359, 0.0026696999557316303, -0.004060904961079359, -0.0013575601624324918, 0.014278773218393326, -0.013087754137814045, 0.014494098722934723, 0.00046892178943380713, 0.006634717807173729, -0.012381217442452908, -0.0025384859181940556, 0.01738753542304039, -0.013148314319550991, -0.019285092130303383, 0.00015360867837443948, 0.01409036386758089, 0.02443944662809372, -0.02021368406713009, 0.02376655489206314, 0.005066878627985716, 0.00017863186076283455, 0.02896128222346306, -0.014238400384783745, 0.014292231760919094, -0.01749519817531109, -0.0072470493614673615, 0.0040642693638801575, 0.012838784605264664, 0.017145294696092606, 0.02923044003546238, -0.025354580953717232, -0.00028261475381441414, 0.012246638536453247, 0.02726559340953827, 0.003768196562305093, -0.0009454136015847325, -0.008639936335384846, -0.020644335076212883, -0.008027604781091213, 0.0036605338100343943, -0.018814068287611008, 0.03211041912436485, -0.04764077067375183, 0.006843314040452242, -0.0070249950513243675, -0.0028379231225699186, 0.03246032074093819, -0.01518044900149107, 0.018881356343626976, 0.031518273055553436, 0.013060838915407658, 0.01573222130537033, 0.02134414203464985, -0.010201046243309975, -0.02949959598481655, -0.02228619158267975, 0.006210795603692532, -0.0030936221592128277, -0.010914312675595284, -0.006523690186440945, -0.019365839660167694, 0.020267514511942863, 0.010907582938671112, 0.009447406977415085, -0.021290311589837074, -0.005918087437748909, -0.043576501309871674, 0.005167812574654818, 0.01174869854003191, 0.0036908139009028673, 0.028261475265026093, 0.02923044003546238, 0.016660811379551888, 0.0002872408658731729, -0.017118379473686218, 0.027561666443943977, 0.010059739463031292, -0.024237578734755516, -0.01531502790749073, 0.009010027162730694, -0.020873118191957474, -0.006833220832049847, -0.04118100553750992, -0.0170510895550251, 0.014682509005069733, -0.016620438545942307, 0.030226320028305054, -0.008673581294715405, -0.0248970128595829, -0.007536393124610186, 0.015611100010573864, -0.016283992677927017, 0.0053461287170648575, -0.0071663022972643375, 0.013114670291543007, 0.009595443494617939, 0.004834730643779039, 0.006156964227557182, 0.03361769765615463, -0.0017461554380133748, 0.027857739478349686, -0.01602829433977604, 0.0019984899554401636, 0.0007969567668624222, -0.0031037156004458666, 0.011176740750670433, 0.008539002388715744, -0.03579786792397499, -0.006473223678767681, 0.011930380016565323, 0.00574313523247838, 0.005473978351801634, -0.02791156992316246, -0.0005866779247298837, -0.007125928997993469, 0.01976957358419895, -0.005571547895669937, -0.015530353412032127, -0.021357599645853043, 0.005181270185858011, 0.004629498813301325, 0.019715743139386177, 0.016606980934739113, 0.01667427085340023, 0.042338378727436066, -0.006237711291760206, 0.012381217442452908, 0.009158063679933548, 0.004256043583154678, -0.025058507919311523, 0.010355811566114426, 0.017185667529702187, 0.02971492148935795, 0.004528564866632223, 0.0026511955074965954, 0.00026789522962644696, -0.01221972331404686, 0.006991350557655096, -0.003288760781288147, 0.01791239157319069, 0.011170011013746262, 0.015759136527776718, -0.005231737159192562, 0.027750076726078987, 0.013875038363039494, 0.017549030482769012, 0.0026949334423989058, -0.014534472487866879, 0.022232359275221825, 0.014938208274543285, -0.027131015434861183, 0.01836995780467987, -0.0085793761536479, 0.03353694826364517, -0.0016124180983752012, -0.007139386609196663, -0.02651195414364338, -0.029741836711764336, 0.008949466980993748, -0.018046969547867775, 0.0055883703753352165, 0.01958116516470909, 0.01219953689724207, -0.0157995093613863, 0.031518273055553436, 0.025623736903071404, 0.005510987713932991, 0.0004916319157928228, -0.023712722584605217, 0.019338922575116158, -0.010463474318385124, -0.011109450832009315, -0.6524363160133362, -5.22082882525865e-06, 0.0028059605974704027, -0.025852520018815994, 0.01723949983716011, -0.00884180422872305, 0.009602172300219536, -0.002952314680442214, -0.038381773978471756, 0.0037345520686358213, 0.0018336314242333174, 0.028342220932245255, -0.0033375455532222986, -0.03991596773266792, -0.0012482150923460722, -0.03224499523639679, 0.0006627988768741488, -0.013222333043813705, -0.018046969547867775, -0.0016721372958272696, 0.001196066034026444, 0.005100523121654987, 0.0009412080398760736, 0.003751374315470457, 0.021640215069055557, -0.010254877619445324, 0.02115573175251484, -0.034344419836997986, -0.01855836808681488, 0.014803629368543625, -0.026767654344439507, -0.008135267533361912, -0.008155453950166702, -0.0025283927097916603, 0.046940963715314865, 0.009063858538866043, -0.03329470753669739, 0.006029114592820406, -0.00975020881742239, 0.025731399655342102, -0.027776991948485374, -0.006002198904752731, 0.017750898376107216, -0.01133823487907648, -0.01723949983716011, 0.012616729363799095, 0.0032231539953500032, -0.005265381652861834, 0.011809258721768856, 4.683961014961824e-05, -0.001736061996780336, -0.00353604881092906, -0.00298427720554173, -0.012879157438874245, -0.00017863186076283455, 0.004831366240978241, 0.0061805155128240585, -0.02077891305088997, -0.0017427909187972546, 0.005850797984749079, 0.010342353954911232, -0.0064025698229670525, -0.022797590121626854, -0.013558778911828995, -0.05498875305056572, 0.015611100010573864, -0.005467249546200037, 0.012051500380039215, 0.004420902114361525, 0.008377508260309696, 0.01419802661985159, 0.013888495974242687, -0.011735240928828716, -0.0076978872530162334, 0.01465559285134077, 0.025892894715070724, 0.02836913801729679, -0.004343519452959299, -0.0075431219302117825, 0.008761056698858738, -0.0016763427993282676, -0.02617550827562809, -0.010961415246129036, -0.002249142387881875, -0.008747599087655544, 0.007347983308136463, -0.017078004777431488, -0.016701186075806618, 0.012132246978580952, 0.007220133673399687, 0.007973773404955864, 0.006217524409294128, 0.007691158447414637, -0.039808306843042374, 0.02960725873708725, 0.019527332857251167, -0.011405523866415024, -0.007516206242144108, 0.025112338364124298, -0.002350076101720333, -0.014911292120814323, -0.028234558179974556, 0.027252135798335075, -0.003966699820011854, 0.01359915267676115, 0.044976118952035904, 0.00933301541954279, -0.005635472480207682, 0.0031407244969159365, -0.0046732365153729916, 0.009420491755008698, -0.024977760389447212, -0.017400993034243584, 0.0012330750469118357, 0.0011346645187586546, -0.022730300202965736, 0.032002754509449005, -0.013700086623430252, -0.01099505927413702, -0.018383415415883064, -0.00043527717934921384, -0.006483316887170076, 0.032083503901958466, -0.021559467539191246, 0.018504537642002106, -0.005958460737019777, 0.0030128750950098038, -0.01219953689724207, 0.005336035508662462, -0.014076906256377697, -0.0035898801870644093, -0.03006482496857643, 0.02809998020529747, -0.0005076131201349199, 0.011896735057234764, 0.011170011013746262, 0.005961825139820576, -0.033886853605508804, 0.022165071219205856, -0.03235265985131264, -0.012535982765257359, -0.02190937101840973, -0.009359931573271751, -0.008135267533361912, -0.01795276440680027, -0.02801923267543316, -0.01512661762535572, 0.014547930099070072, -0.0008966289460659027, -0.006732286885380745, -0.017791271209716797, -0.0037715609651058912, -0.0032954898197203875, 0.018154632300138474, 0.028503715991973877, 0.01127767376601696, -0.010880667716264725, -0.043092019855976105, -0.02402225323021412, -0.016983799636363983, -0.00033055830863304436, 0.0011085899313911796, -0.007099013309925795, 0.008532273583114147, -0.024950845167040825, -0.010530763305723667, -0.024600939825177193, 0.005914723034948111, -0.014319146983325481, 0.0015131664695218205, 0.031168369576334953, -0.009985720738768578, 0.01912359707057476, -0.0033022186253219843, 0.0011245711939409375, -0.018450705334544182, -0.00586425606161356, 0.007670971564948559, 0.0015779323875904083, -0.0250046756118536, 0.023362819105386734, 0.014494098722934723, -0.008384237065911293, -0.011849632486701012, 0.03259490057826042, -0.0038085700944066048, 0.01484400313347578, 0.0313836932182312, -0.005921451840549707, 0.012589814141392708, 0.0097300224006176, 0.013982701115310192, -0.013363639824092388, -0.0028480165638029575, -0.0034586661495268345, -0.010301980189979076, -0.018989019095897675, -0.0025536261964589357, 0.004723703488707542, -0.004296416882425547, 0.020388634875416756, 0.006661633495241404, 0.0022323201410472393, 0.020765455439686775, -0.007886297069489956, -0.025179628282785416, 0.00824293028563261, -0.03307938203215599, 0.01897556148469448, 0.04220380261540413, 0.015086243860423565, -0.04653722792863846, 0.010026094503700733, -0.018450705334544182, -0.021707503125071526, -0.0013457845197990537, 0.005635472480207682, 0.027696244418621063, 0.004888562019914389, 0.0007645738078281283, 0.02610822021961212, -0.004451182205229998, -0.008518815971910954, -0.006466494407504797, -0.016162872314453125, -0.009911702945828438, -0.0009765348513610661, 0.034909650683403015, 0.010160673409700394, 0.004108007065951824, -0.009548340924084187, 0.02372618019580841, 0.016283992677927017, 0.01897556148469448, -3.164696317980997e-05, 0.004101278260350227, 0.008518815971910954, -0.03649767488241196, 0.05044000223278999, 0.008310219272971153, 0.004434359725564718, 0.008121809922158718, 0.02127685211598873, -0.007724802941083908, -0.008182370103895664, 0.011560289189219475, 0.04454546794295311, -0.011997669003903866, -0.011964024044573307, -0.0031844626646488905, 0.010672071017324924, 0.007496019825339317, 0.01489783450961113, -0.02338973432779312, -0.0003700907400343567, -0.0047539835795760155, -0.012071686796844006, 0.016768474131822586, 0.02674073725938797, 0.031060706824064255, 0.004242585506290197, 0.004868375603109598, 0.022434227168560028, 0.0009193390142172575, -0.015907172113656998, -0.0011043844278901815, 0.004868375603109598, -0.014076906256377697, 0.006998079363256693, -0.00011407626152504236, 0.006806305143982172, -0.0025889528915286064, 0.032271914184093475, -0.004104642663151026, 0.00015182131028268486, 0.024156831204891205, -0.002768951701000333, -0.00850535836070776, -0.021559467539191246, 0.007590224500745535, 0.000751115963794291, -0.017602860927581787, 0.007159573491662741, 0.009528154507279396, -0.003384648123756051, 0.007065368816256523, 0.0073210676200687885, 0.0019682098645716906, -0.00876778643578291, 0.02504505030810833, -0.021330684423446655, 0.0097300224006176, -0.034425169229507446, 0.006062759086489677, 0.003680720692500472, 0.007724802941083908, 0.02534112147986889, -0.024277951568365097, 0.016566608101129532, -0.024614399299025536, -0.015718763694167137, -0.003670627251267433, 0.008485171012580395, 0.0012221405049785972, 0.0162167027592659, 0.023134035989642143, -0.021438347175717354, -0.030145572498440742, -0.001286906423047185, -0.003566328901797533, 0.021101901307702065, -0.019338922575116158, -0.019029393792152405, 0.013087754137814045, 0.012461964040994644, -0.005164448171854019, -0.01690305396914482, -0.02036171965301037, 0.02799231745302677, 0.019325464963912964, 0.012926260009407997, -0.0064765880815684795, -0.026000557467341423, 0.005295662209391594, 0.07918596267700195, 0.03840868920087814, -0.009285912849009037, 0.033133216202259064, 0.009184978902339935, 0.026673449203372, 0.007139386609196663, -0.016055209562182426, 0.02527383342385292, -0.025637194514274597, -0.022730300202965736, 0.005914723034948111, 0.016418570652604103, -0.027467461302876472, -0.012287012301385403, 0.00845152698457241, 0.0015905490145087242, -0.016916511580348015, -0.0003234088362660259, 0.018464162945747375, 0.0010825154604390264, 0.010396185331046581, 0.014063447713851929, 0.007906484417617321, 0.02621588297188282, 0.024089543148875237, 0.02349739708006382, 0.010638426057994366, -0.005275475326925516, -0.0056859394535422325, 0.006597708445042372, 0.006776025053113699, 0.004340155050158501, 0.028234558179974556, -0.02571794204413891, 0.014695966616272926, -0.00242409436032176, -0.019904153421521187, 0.019594622775912285, 0.007792092394083738, 0.014749797992408276, -0.0025704484432935715, 0.02194974571466446, -0.017024174332618713, 0.007455646060407162, 0.011863090097904205, -0.01765669323503971, 0.02670036442577839, 0.01172851212322712, -0.03146444261074066, 0.00871395505964756, -0.0016368103679269552, -0.042419128119945526, 0.01878715120255947, -0.001689800643362105, -0.00012595701264217496, -0.023134035989642143, -0.0278308242559433, -0.00866012368351221, -0.025435326620936394, -0.02617550827562809, -0.008458255790174007, 0.0032753029372543097, -0.018840983510017395, -0.015005497261881828, -0.0020691435784101486, -0.011863090097904205, 0.020119478926062584, -0.028073064982891083, 0.01874677836894989, -0.008236201480031013, -0.014736340381205082, -0.03579786792397499, 0.007065368816256523, 0.01437297835946083, 0.01442680973559618, -0.007058639544993639, 0.006173786241561174, -0.01941967010498047, -0.014722882770001888, 0.0070249950513243675, -0.006392476614564657, -0.012435048818588257, -0.04737161472439766, -0.032379575073719025, 0.01870640367269516, -0.016337823122739792, -0.009420491755008698, -0.02010602131485939, 0.013087754137814045, -0.010598053224384785, -0.009158063679933548, 0.017562488093972206, -0.020725080743432045, 0.02874595671892166, -0.001041300711221993, 0.015624557621777058, 0.006964434869587421, 0.0013920458732172847, -0.0007166302530094981, -0.011970752850174904, 0.0031222200486809015, -0.00850535836070776, -0.006254533305764198, 0.022111238911747932, -0.005625379271805286, -0.004700152203440666, -0.018908271566033363, -0.003004463855177164, -0.02075199782848358, 0.019015934318304062, -0.011109450832009315, -0.011997669003903866, -0.023214783519506454, -0.013848122209310532, -0.012603271752595901, 0.030333982780575752, 0.017818186432123184, 0.0026528777088969946, 0.025731399655342102, 0.017185667529702187, -0.01958116516470909, 0.019715743139386177, -0.01772398129105568, -0.005016411654651165, -0.0030229685362428427, 0.0136529840528965, 0.00212633959017694, -0.029741836711764336, -0.009534883312880993, -0.02418374828994274, 0.017037631943821907, 0.002208768855780363, -0.01188327744603157, 0.005833975970745087, -0.001971574267372489, 0.006836585234850645, -0.003187827067449689, -0.03192200884222984, -0.012246638536453247, -0.013269435614347458, 0.001498026424087584, 0.014130737632513046, -0.018168089911341667, 0.00463959202170372, -0.02866520918905735, -0.0005673322593793273, -0.0015106430510059, 0.01738753542304039, 0.019473502412438393, 0.025516074150800705, -0.007778634317219257, -0.007374898996204138, -0.004891926888376474, -0.009635817259550095, -0.02338973432779312, 0.010254877619445324, -0.009211895056068897, 0.01832958497107029, 0.013969243504106998, 0.02387421764433384, -0.0014475594507530332, 0.0030616596341133118, 0.013242519460618496, 0.0021936288103461266, -0.017818186432123184, 0.014251857995986938, -0.0070384531281888485, -0.0014828862622380257, 0.006469858810305595, -0.009366660378873348, 0.018921731039881706, -0.003670627251267433, -0.027776991948485374, 0.0017167163314297795, 0.02029442973434925, -0.03840868920087814, 0.010174131020903587, -0.03073771856725216, -0.010079925879836082, -0.007893025875091553, 0.009595443494617939, -0.02090003341436386, 0.002220544498413801, -0.016472402960062027, 0.002922034589573741, 0.014951665885746479, 0.0127109345048666, 0.026794569566845894, -0.007368170190602541, 0.007186489179730415, 0.01832958497107029, 0.003933055326342583, 0.0082631167024374, -0.0015913902316242456, -0.013720273040235043, -0.022191986441612244, -0.04879814758896828, -0.0031525001395493746, 0.01154010184109211, 0.0061367773450911045, 0.0011127955513074994, 2.4576338546467014e-05, 0.0013239155523478985, 0.019661910831928253, 0.015812968835234642, -0.0023971786722540855, 0.006099768448621035, 0.01828921213746071, 0.0006072852411307395, -0.007489290554076433, -0.027292510494589806, -0.01950041763484478, -0.011890006251633167, 0.004965944681316614, 0.04174623638391495, -0.018275752663612366, -0.00460258312523365, 0.0009294323972426355, -0.009023484773933887, 0.022622637450695038, 0.013350182212889194, 0.0277231615036726, -0.015449605882167816, 0.008115080185234547, -0.01559764239937067, 0.02579868957400322, -0.02077891305088997, -0.009380117990076542, 0.01863911561667919, 0.003976793028414249, 0.017414450645446777, 0.004074362572282553, -0.0071663022972643375, -0.016189787536859512, -0.015570726245641708, 0.00956179853528738, -0.02251497469842434, -0.02402225323021412, -0.0030801643151789904, 0.009198437444865704, 0.008222742937505245, -0.00798050221055746, -0.02439907379448414, -0.040911849588155746, 0.014386435970664024, -0.0023786742240190506, 0.02462785691022873, -0.017252957448363304, -0.02282450534403324, 0.0007368170190602541, 0.014803629368543625, 0.0010749453213065863, 0.009904974140226841, 0.01151991542428732, 0.008404424414038658, -0.010113570839166641, 0.029472680762410164, -0.010746088810265064, 0.0018773693591356277, -0.0120851444080472, 0.024452904239296913, -0.026162050664424896, 0.014642135240137577, -0.0005092953215353191, 0.031625937670469284, -0.011567017994821072, -0.003171004820615053, -0.007509477436542511, 0.023362819105386734, -0.019890695810317993, -0.014938208274543285, 0.0067726606503129005, -0.021747877821326256, 0.005578276701271534, -0.03316013142466545, -0.008444798178970814, 0.0009647592669352889, -0.01958116516470909, 0.0062915426678955555, 0.01701071672141552, -0.00024140009190887213, -0.02165367268025875, -0.0036504403688013554, 0.006776025053113699, -0.02726559340953827, -0.0030498842243105173, -0.017266415059566498, -0.004104642663151026, -0.015812968835234642, -0.0030229685362428427, -0.006850043311715126, 0.020052189007401466, 0.033698443323373795, -0.010530763305723667, -0.017508655786514282, -0.008754327893257141, 0.006012292113155127, 0.007516206242144108, 0.033133216202259064, 0.0034182926174253225, -0.007408543489873409, -0.04201539233326912, 0.024116458371281624, 0.0008411153103224933, -0.016324365511536598, 0.013336724601686, -0.01836995780467987, -0.019890695810317993, -0.009265726432204247, -0.001860547112300992, 0.013451116159558296, -0.015974462032318115, 0.020011816173791885, -0.002943903673440218, 0.04500303417444229, 0.01531502790749073, 0.012959904968738556, -0.03149135783314705, 0.017441367730498314, 0.006086310371756554, -0.005134168080985546, 0.024654772132635117, -0.014601761475205421, 0.005083701107650995, -0.007556580007076263, -0.012650374323129654, -0.016432028263807297, -0.003761467756703496, -0.0414232462644577, -0.00020975312509108335, -0.010705715976655483, -0.015543811023235321, 0.005362951196730137, -0.0023786742240190506, -0.008626478724181652, 0.001899238326586783, -0.00014898255176376551, 0.01730678789317608, 0.002410636516287923, -0.013282893225550652, -0.010564408265054226, 0.023524312302470207, -0.004854917526245117, -0.01807388663291931, -0.018195006996393204, -0.0047977217473089695, -0.0036201602779328823, -0.022299649193882942, -0.020603960379958153, 0.018840983510017395, 0.02456056699156761, 0.002474561333656311, -0.04072343930602074, -0.026417749002575874, -0.004868375603109598, -0.06685857474803925, -0.03141061216592789, -0.021559467539191246, 0.01908322423696518, 0.030872296541929245, 0.03846251964569092, -0.031895093619823456, 0.03324087709188461, 0.003199602710083127, 0.010308708995580673, -0.022003576159477234, 0.029822584241628647, 0.01037599891424179, -0.02142488956451416, -0.0003389694611541927, 0.008411153219640255, -0.008061248809099197, -0.02734634093940258, 0.008592833764851093, -0.014790171757340431, -0.0037379164714366198, 0.020388634875416756, 0.003329134313389659, -0.0171587523072958, 0.0047539835795760155, 0.015503437258303165, 0.012138975784182549, 0.012179349549114704, -0.004091185051947832, -0.036901410669088364, -0.003919597249478102, 0.02753475122153759, 0.011318047530949116, -0.022730300202965736, 0.00901675596833229, 0.007011537440121174, 0.005770050920546055, 0.0034889462403953075, -0.010725902393460274, -0.0008655076380819082, 0.012959904968738556, 0.0065573351457715034, -3.4991710435861023e-06, 0.015934089198708534, 0.020657792687416077, 0.019096681848168373, 0.01644548587501049, -0.021868998184800148, -0.0028782966546714306, 0.01144589763134718, -0.03270256519317627, 0.0011380290379747748, 0.010571137070655823, -0.006342009641230106, 0.006664997898042202, -0.0015476521803066134, -0.007819008082151413, 0.005423511378467083, -0.012435048818588257, 0.0013264388544484973, 0.008989840745925903, 0.004787628538906574, 0.006170421838760376, -0.02855754643678665, -0.012044771574437618, 0.008512087166309357, -0.012475422583520412, 4.796985740540549e-05, 0.015772594138979912, -0.004683330189436674, -0.0028782966546714306, -0.014682509005069733, -0.03563637286424637, 0.008983111940324306, -0.011667951941490173, -0.04220380261540413, -0.025206543505191803, 0.00865339394658804, -0.017104921862483025, 0.01784510165452957, 0.22329255938529968, 0.00453529367223382, -0.008364050649106503, 0.020092561841011047, -0.014642135240137577, -0.006365560926496983, 0.025408411398530006, -0.0016477449098601937, -0.009380117990076542, 0.016606980934739113, -0.019742658361792564, 0.02036171965301037, -0.0176836084574461, -0.008740870282053947, 0.020227141678333282, -0.027884654700756073, -0.0500093512237072, 0.010275064967572689, -0.03149135783314705, 0.044976118952035904, 0.02263609506189823, -0.016687728464603424, 0.008115080185234547, -0.02496430277824402, 0.019338922575116158, -0.002471196698024869, -0.01749519817531109, 0.014749797992408276, 0.025166170671582222, 0.02433178387582302, -0.023806927725672722, 0.011506457813084126, -0.00036777768400497735, -0.0255295317620039, 0.011923650279641151, -0.02686185948550701, -0.000986628234386444, -0.015099702402949333, 0.0032433406449854374, 0.015140075236558914, 0.029741836711764336, 0.011741969734430313, -0.0016317637637257576, 0.008586104959249496, -0.0044713690876960754, 0.017024174332618713, -0.0033644612412899733, 0.016270535066723824, 0.012260097078979015, 0.012522525154054165, -0.04451855272054672, 0.0343175046145916, 0.03630926460027695, 0.02723867818713188, 0.002901847939938307, 0.008323676884174347, -0.0019497052999213338, 0.011587204411625862, -0.002042227890342474, -0.0032433406449854374, 0.017454825341701508, 0.013000278733670712, 0.007536393124610186, 0.0047304327599704266, -0.0009454136015847325, -0.0003053248510695994, -0.008989840745925903, 0.010254877619445324, 0.009171521291136742, -0.011546830646693707, -0.013875038363039494, 0.0011784025700762868, -0.015422690659761429, 0.00642275670543313, 0.004925571382045746, -0.009777124039828777, 0.04107334464788437, -0.0035394132137298584, 0.016983799636363983, 0.0026125041767954826, -0.00961562991142273, 0.0002300450432812795, -0.01709146238863468, -0.03073771856725216, -0.011573746800422668, -0.012583085335791111, 0.007011537440121174, 0.015530353412032127, 0.004434359725564718, -0.02085966058075428, -0.002812689635902643, 0.009528154507279396, -0.01753557287156582, -0.023093661293387413, 0.009481051936745644, 0.00810835137963295, -0.018531452864408493, 0.010651884600520134, -0.023376276716589928, -0.004407444037497044, -0.016795391216874123, 0.04669872298836708, 0.01141225267201662, -0.007428730372339487, 0.01076627615839243, 0.0037244586274027824, -0.008491899818181992, 0.029822584241628647, 0.01732024736702442, -0.018464162945747375, 0.0161090400069952, -0.014305689372122288, 0.008027604781091213, -0.00022836281277704984, -0.013888495974242687, -0.009232081472873688, -0.0059820120222866535, -0.019675370305776596, 0.02508542314171791, -0.02073853835463524, -0.002636055462062359, -0.021034611389040947, -0.005763322114944458, 0.0055446322076022625, 0.010127028450369835, -0.00586425606161356, 0.008794701658189297, -0.021101901307702065, -0.005790237803012133, -0.022111238911747932, 0.0181008018553257, -0.013007007539272308, -0.0033190411049872637, -0.020200224593281746, -0.005958460737019777, 0.005554725416004658, -0.0030010994523763657, -0.0016014835564419627, -0.019904153421521187, 0.004646320827305317, -0.032837141305208206, 0.0014854096807539463, 0.005312484223395586, -0.004659778904169798, 0.029472680762410164, -0.02316095121204853, 0.019110139459371567, 0.010624968446791172, -0.002585588488727808, -0.017333704978227615, -0.03391376882791519, -0.01221972331404686, 0.010073197074234486, 0.013666441664099693, 0.011378607712686062, -0.009164792485535145, -0.02575831487774849, -0.0097300224006176, 0.009481051936745644, 0.008565918542444706, -0.04737161472439766, 0.0042493147775530815, 0.013296350836753845, -0.022461144253611565, -0.018302669748663902, -0.004696787800639868, -0.17139911651611328, 0.018814068287611008, -0.0064597656019032, -0.014870918355882168, 0.009575257077813148, 0.011553560383617878, 0.017522113397717476, -0.0050937943160533905, -0.018262295052409172, -0.003425021655857563, 0.004579031839966774, 0.034721240401268005, -0.04174623638391495, -0.013612610287964344, 0.014574846252799034, 0.009460865519940853, -0.01885444112122059, 0.0171587523072958, 0.0156918466091156, 0.018692946061491966, 0.030495475977659225, 0.010914312675595284, -0.0017083052080124617, -0.007529664319008589, -0.009703106246888638, 0.01866603083908558, -0.02659270167350769, 0.01818154938519001, -0.005073607433587313, -0.020348262041807175, -0.021828625351190567, 0.015489979647099972, 0.009864600375294685, 0.018962103873491287, -0.0020775548182427883, -0.007536393124610186, 0.02316095121204853, -0.0064025698229670525, -0.013875038363039494, 0.02809998020529747, 0.031222200021147728, 0.023241698741912842, -0.003596608992666006, 0.014359520748257637, -0.00798050221055746, 0.02014639414846897, 0.01859874092042446, 0.00474389037117362, 0.0030465195886790752, 0.013498218730092049, 0.02190937101840973, -0.0508437380194664, 0.0022710112389177084, -0.002175124129280448, -0.007125928997993469, 0.013303079642355442, -0.011136366985738277, 0.0015998013550415635, 0.01749519817531109, -0.024372156709432602, 0.014669051393866539, -0.010275064967572689, 0.0049827671609818935, -0.0035124975256621838, 0.009844413958489895, -0.009285912849009037, 0.006570792756974697, -0.009359931573271751, -0.022232359275221825, 0.021667130291461945, 0.004824637435376644, -0.002128021791577339, 0.011398795060813427, -0.004895291291177273, -0.005756593309342861, 0.0015535400016233325, 0.017993139103055, 0.01972920075058937, -0.008586104959249496, 0.01648586057126522, -0.005652294959872961, 0.012818597257137299, -0.006257897708564997, 0.04115409031510353, -0.02508542314171791, 0.004552116151899099, 0.015072786249220371, 0.0033880125265568495, -0.0015501754824072123, -0.0051240744069218636, 0.01814117468893528, -0.0006005563191138208, 0.004976038355380297, 0.016701186075806618, 0.017333704978227615, 0.005763322114944458, -0.007220133673399687, 0.017266415059566498, 0.011062348261475563, 0.013558778911828995, -0.02194974571466446, 0.020725080743432045, -0.02799231745302677, 0.015234280377626419, 0.031033789739012718, 0.027480918914079666, -0.0015039141289889812, 0.017266415059566498, 0.029284270480275154, -0.02801923267543316, -0.04266136884689331, 0.02383384294807911, 0.029849499464035034, 0.014211484231054783, 0.014399894513189793, 0.02742708846926689, -0.011587204411625862, -0.01690305396914482, 0.006597708445042372, 0.0010051327990368009, 0.029176607728004456, -0.026148593053221703, -0.03081846423447132, -0.019150514155626297, -0.004595853853970766, -0.026148593053221703, -0.11929033696651459, -0.041396331042051315, -0.014722882770001888, 0.01588025689125061, 0.020132936537265778, 0.02017330937087536, 0.0026713821571320295, 0.0454067699611187, -0.029472680762410164, 0.03176051378250122, 0.015207365155220032, -0.011351692490279675, -0.0012128882808610797, -0.00935320183634758, 0.023631975054740906, 0.003596608992666006, -0.0004192959750071168, -0.0038354857824742794, -0.028907451778650284, 0.026431208476424217, 0.005174541380256414, -0.022770673036575317, 0.008942738175392151, -0.022420769557356834, -0.016458945348858833, 0.0064025698229670525, -0.03197583928704262, 0.012192807160317898, 0.026350460946559906, 0.003626889316365123, 0.0003509553789626807, -0.013087754137814045, 0.012327386066317558, -0.01738753542304039, 0.005746499635279179, 0.004922206979244947, -0.030010994523763657, -0.004481462296098471, 0.011829446069896221, -0.013498218730092049, 0.020832743495702744, 0.0018639115151017904, -0.014251857995986938, -0.02606784552335739, 0.006352102849632502, -0.01648586057126522, 0.0017831644508987665, 0.016512775793671608, 0.0031121266074478626, -0.007287423126399517, -0.06045264005661011, 0.002666335552930832, -0.034156009554862976, -0.008458255790174007, 0.0050635142251849174, -0.020159851759672165, 0.012542711570858955, 0.001848771469667554, -0.0048414599150419235, -0.026188965886831284, -0.03178742900490761, 0.009191707707941532, -0.00024140009190887213, -0.0007372375694103539, -0.0036437115631997585, -0.01299354899674654, -0.011863090097904205, -0.011755427345633507, 0.00997899193316698, -0.025300748646259308, -0.00024371316249016672, 0.025785231962800026, -0.013229061849415302, 0.03100687451660633, -0.03797803819179535, 0.008902364410459995, -0.01456138864159584, -0.011876548640429974, 0.02067125029861927, -0.019904153421521187, -0.027884654700756073, -0.03918924555182457, 0.0056859394535422325, -0.022689927369356155, 0.011008516885340214, 0.009703106246888638, 0.011156553402543068, -0.020429009571671486, 0.016082124784588814, -0.013383827172219753, -0.005369680002331734, 0.012354301288723946, 0.0031844626646488905, -0.03606702387332916, -0.015261196531355381, 0.007946857251226902, 0.0042795948684215546, -0.009110961109399796, -0.00982422661036253, 0.007327796425670385, -0.004077726975083351, -0.005867620464414358, -0.03655150532722473, 0.010355811566114426, -0.002000172156840563, 0.009057129733264446, -0.013114670291543007, 0.014063447713851929, 0.02941884845495224, -0.004568938165903091, -0.006570792756974697, 0.015476522035896778, -0.027965402230620384, 0.03727823123335838, -0.0052788397297263145, -0.007260507438331842, -0.0073345256969332695, -0.004521836061030626, -0.005780144594609737, -0.007946857251226902, 0.00927918404340744, 0.030872296541929245, 0.0037143651861697435, 0.008680310100317001, 0.018208464607596397, 0.0030111928936094046, -0.01559764239937067, 0.002841287525370717, -0.0268887747079134, 0.014332604594528675, -0.004306510556489229, -0.02877287194132805, 0.007576766889542341, -0.02791156992316246, -0.016135957092046738, 0.03318704664707184, -0.015382316894829273, -0.014817086979746819, 0.004585760645568371, 0.02443944662809372, 0.01659352332353592, -0.010873938910663128, -0.03972755745053291, -0.014521014876663685, 0.013329995796084404, -0.0022222266998142004, -0.014749797992408276, -0.009097503498196602, -0.00292371679097414, -0.002116246148943901, 0.015072786249220371, 0.01583988405764103, 0.03579786792397499, 0.008431339636445045, -0.012852242216467857, -0.02425103634595871, -0.014332604594528675, -0.018612200394272804, 0.02610822021961212, -0.017979681491851807, 0.01409036386758089, -0.002567084040492773, 0.02048284001648426, -0.003462030552327633, 0.0037648321595042944, -0.024829724803566933, 0.004787628538906574, 0.014399894513189793, 0.0174682829529047, 0.024991218000650406, -0.018531452864408493, -0.038301028311252594, 0.008969653397798538, -0.01912359707057476, 0.024587482213974, 0.007267236243933439, 0.000511398131493479, 0.005120710004121065, -0.004669872112572193, 0.0056859394535422325, -0.019863778725266457, 0.03318704664707184, -0.008801430463790894, -0.03733206167817116, 0.011163282208144665, 0.021115358918905258, 0.016378197818994522, 0.015503437258303165, 0.00596855441108346, 0.000485323544126004, -0.009366660378873348, 0.009682919830083847, -0.009945347905158997, 0.01442680973559618, -0.016391655430197716, -0.013397284783422947, 0.01655314862728119, 0.0009159745532087982, 0.021021153777837753, 0.004306510556489229, -0.009965534321963787, 0.02184208296239376, 0.01042983029037714, 0.010665342211723328, -0.005763322114944458, -0.03636309877038002, -0.050063181668519974, 0.0015409232582896948, -0.017266415059566498, -0.01341074239462614, -0.013027193956077099, 0.04594508185982704, 0.006537148263305426, -0.0007834989228285849, 0.012670560739934444, 0.014211484231054783, -0.019904153421521187, -0.0007162097026593983, -0.01531502790749073, -0.0021936288103461266, -0.019742658361792564, 0.039889052510261536, 0.01414419524371624, 0.009857871569693089, 0.04123483598232269, 0.007233591750264168, 0.03092612698674202, -0.010174131020903587, 0.018006596714258194, -0.02044246718287468, -0.008397695608437061, 0.01807388663291931, -0.004262772388756275, -0.0017697066068649292, -0.015045871026813984, -0.0330524668097496, -0.003993615508079529, -0.015113160014152527, -0.009534883312880993, 0.01818154938519001, -0.002748764818534255, 0.05517716333270073, 0.011284403502941132, -0.01195729523897171, 0.004942393396049738, 0.005928180646151304, 0.017831644043326378, 0.010362540371716022, 0.007556580007076263, -0.005470613949000835, -0.03469432517886162, 0.022124696522951126, -0.011439167894423008, -0.0036336181219667196, -0.0025620372034609318, -0.0074623748660087585, 0.02161329984664917, 0.00735471211373806, 0.016566608101129532, 0.002464467892423272, -0.01732024736702442, -0.0038758593145757914, 0.009507967159152031, -0.004723703488707542, 0.003495675278827548, -0.012488880194723606, -0.02326861396431923, 0.017777813598513603, 0.0012498974101617932, -0.028126895427703857, -0.03367152810096741, 0.012932988815009594, 0.013370368629693985, -0.021963203325867653, -0.004259407985955477, 0.012112060561776161, 0.014749797992408276, -0.0005576594267040491, -0.005174541380256414, 0.019446585327386856, 0.0022356845438480377, -0.007657513953745365, 0.013007007539272308, -0.008969653397798538, -0.009622359648346901, -0.017549030482769012, 0.008761056698858738, 0.004814544226974249, 0.002922034589573741, -0.0039397841319441795]" diff --git a/langchain_tuto_get_start.ipynb b/langchain_tuto_get_start.ipynb new file mode 100644 index 0000000..03b8d49 --- /dev/null +++ b/langchain_tuto_get_start.ipynb @@ -0,0 +1,162 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "pip install langchain" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "pip install openai" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [], + "source": [ + "import os\n", + "os.environ[\"OPENAI_API_KEY\"] = ''" + ] + }, + { + "cell_type": "code", + "execution_count": 28, + "metadata": {}, + "outputs": [], + "source": [ + "from langchain.llms import OpenAI" + ] + }, + { + "cell_type": "code", + "execution_count": 29, + "metadata": {}, + "outputs": [], + "source": [ + "llm = OpenAI(temperature=0.9)" + ] + }, + { + "cell_type": "code", + "execution_count": 30, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "\n", + "HappySox.\n" + ] + } + ], + "source": [ + "text = \"What would be a good company name for a company that makes colorful socks?\"\n", + "print(llm(text))" + ] + }, + { + "cell_type": "code", + "execution_count": 41, + "metadata": {}, + "outputs": [], + "source": [ + "from langchain.prompts import PromptTemplate\n", + "from langchain.llms import OpenAI\n", + "\n", + "\n", + "llm = OpenAI(temperature=0.9)\n", + "prompt = PromptTemplate(\n", + " input_variables=[\"product\"],\n", + " template=\"What is a good name for a company that makes {product}?\",\n", + ")" + ] + }, + { + "cell_type": "code", + "execution_count": 42, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "What is a good name for a company that makes colorful socks?\n" + ] + } + ], + "source": [ + "print(prompt.format(product=\"colorful socks\"))" + ] + }, + { + "cell_type": "code", + "execution_count": 43, + "metadata": {}, + "outputs": [], + "source": [ + "from langchain.chains import LLMChain\n", + "chain = LLMChain(llm=llm, prompt=prompt)" + ] + }, + { + "cell_type": "code", + "execution_count": 44, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "'\\n\\nFunky Foot Fashions.'" + ] + }, + "execution_count": 44, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "chain.run(\"colorful socks\")\n", + "# -> '\\n\\nSocktastic!'" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "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.11.2" + }, + "orig_nbformat": 4, + "vscode": { + "interpreter": { + "hash": "5238573367df39f7286bb46f9ff5f08f63a01a80960060ce41e3c79b190280fa" + } + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/microsoft-earnings.csv b/microsoft-earnings.csv new file mode 100644 index 0000000..ad1cc56 --- /dev/null +++ b/microsoft-earnings.csv @@ -0,0 +1,63 @@ +text +"Thank you, Brett. To start, I want to outline the principles that are guiding us through these changing economic times. First, we will invest behind categories that will drive the long-term secular trend where digital technology as a percentage of world's GDP will continue to increase.Second, we'll prioritize helping our customers get the most value out of their digital spending, so that they can do more with less. And finally, we will be disciplined in managing our cost structure." +"With that context, this quarter, the Microsoft Cloud again exceeded $25 billion in quarterly revenue, up 24% and 31% in constant currency. And based on current trends continuing, we expect our broader commercial business to grow at around 20% in constant currency this fiscal year, as we manage through the cyclical trends affecting our consumer business. With that, let me highlight our progress starting with Azure. Moving to the cloud is the best way for organizations to do more with less today." +"It helps them align their spend with demand and mitigate risk around increasing energy costs and supply chain constraints. We're also seeing more customers turn to us to build and innovate with infrastructure they already have. With Azure Arc, organizations like Wells Fargo can run Azure services, including containerized applications across on-premises, edge, and multi-cloud environments. We now have more than 8,500 Arc customers, more than double the number a year ago." +"We are the platform of choice for customers' SAP workloads in the cloud, companies like Thabani, Munich Re's, Sodexo, Volvo Cars, all run SAP on Azure. We are the only cloud provider with direct and secure access to Oracle databases running an Oracle Cloud infrastructure, making it possible for companies like FedEx, GE, and Marriott to use capabilities from both companies. And with Azure Confidential Computing, we're enabling companies in highly regulated industries, including RBC, to bring their most sensitive applications to the cloud. Just last week, UBS said it will move more than 50% of its applications to Azure." +"Now to data and AI. With our Microsoft Intelligent Data Platform, we provide a complete data fabric, helping customers cut integration tax associated with bringing together siloed solutions. Customers like Mercedes-Benz are standardizing on our data stack to process and govern massive amounts of data. Cosmos DB is the go-to database powering the world's most demanding workloads at limitless scale." +"Cosmos DB now supports postscript SQL, making Azure the first cloud provider to offer a database service that supports both relational and no SQL workloads. And in AI, we are turning the world's most advanced models into platforms for customers. Earlier this month, we brought the power of DALL-E to Azure OpenAI service, helping customers like Mattel apply the breakthrough image generation model to commercial use cases for the first time. In Azure machine learning, provides industry-leading ML apps, helping organizations like 3M deploy, manage and govern models." +"All of, Azure ML revenue has increased more than 100% for four quarters in a row. Now on to developers. We have the most complete platform for developers to build cloud-native applications. Four years since our acquisition, GitHub is now at $1 billion in annual recurring revenue." +"And GitHub's developer-first ethos has never been stronger. More than 90 million people now use the service to build software for any cloud on any platform up three times. GitHub advanced security is helping organizations improve their security posture by bringing features directly into the developer's workflow. Toyota North America chose the offering this quarter to help its developers build and secure many of its most critical applications." +"Now on to Power Platform. We are helping customers save time and money with our end-to-end suite spanning Low-Code/No-Code tools, robotic process automation, virtual agents, and business intelligence. Power BI is the market leader in business intelligence in the cloud and is growing faster than competition, as companies like Walmart standardize on the tool for reporting and analytics. Power Apps is the market leader in Low-Code/No-Code tools and has nearly 15 million monthly active users, up more than 50% compared to a year ago." +"Power Automate has more than seven million monthly active users and is being used by companies like Brown-Forman, Komatsu, Mass, T-Mobile to digitize manual business processes and save thousands of hours of employee time. And we're going further with new AI-powered capabilities and power automate that turn natural language into advanced workflows. Now on to Dynamics 365. From customer experience and service to finance and supply chain, we continue to take share across all categories we serve." +"For example, Lufthansa Cargo chose us to centralize customer information and related shipments. CBRE is optimizing its field service operations, gaining cost efficiencies. Darden is using our solutions to increase both guest frequency and spend at its restaurants. And Tillamook is scaling its growth and improving supply chain visibility." +"All up more than 400,000 organizations now use our business applications. Now on to Industry Solutions. We are seeing increased adoption of our industry and cross-industry clouds. Bank of Queensland chose our cloud for financial services to deliver new digital experiences for its customers." +"Our cloud for sustainability is off to a fast start as organizations like Telstra use the solution to track their environmental footprint. New updates provide insights on hard-to-measure Scope 3 carbon emissions, and we are seeing record growth in healthcare, driven, in part, by our Nuance DAX ambient intelligence solutions, which automatically documents patient encounters at the point of care. Physicians tell us DAX dramatically improves their productivity, and it's quickly becoming an on-ramp to our broader healthcare offerings. Now on to new systems of work, Microsoft 365, Teams, and Viva uniquely enable employees to thrive in today's digitally connected distributed world of work." +"Microsoft 365 is the cloud-first platform that supports all the ways people work and every type of worker reducing cost and complexity for IT. The new Microsoft 365 app brings together our productivity apps with third-party content, as well as personalized recommendations. Microsoft Teams is the de facto standard for collaboration and has become essential to how hundreds of millions of people meet, call, chat, collaborate and do business. As we emerge from the pandemic, we are retaining users we have gained and are seeing increased engagement, too." +"Users interact with Teams 1,500 times per month on average. In a typical day, the average commercial user spends more time in Teams chat than they do in email, and the number of users who use four or more features within Teams increased over 20% year over year. Teams is becoming a ubiquitous platform for business process. Monthly active enterprise users running third party and custom applications within Teams increased nearly 60% year over year, and over 55% of our enterprise customers who use Teams today also buy Teams Rooms or Teams Phone." +"Teams Phone provides the best-in-class calling. PSTN users have grown by double digits for five quarters in a row. We are bringing Teams Rooms to a growing hardware ecosystem, including Cisco's devices and peripherals, which will now run Teams natively. And we are creating a new category with Microsoft Places to help organizations evolve and manage the space for hybrid and in-person work." +"Just like Outlook calendar orchestrates when people can meet and collaborate, Places will do the same for where. We also announced Teams Premium, addressing enterprise demands for advanced meeting features like additional security options and intelligent meeting recaps. All this innovation is driving growth across Microsoft 365. Leaders in every industry from Fannie Mae and Land O'Lakes to Rabobank continue to turn to our premium E5 offerings for advanced security, compliance, voice, and analytics." +"We've also built a completely new suite for our employee experience platform, Microsoft Viva, which now has more than 20 million monthly active users at companies like Finastra, SES, and Unilever. And we are extending Viva to meet role-specific needs. Viva Sales is helping salespeople at companies like Adobe, Crayon, and PwC reclaim their time by bringing customer interactions across Teams and Outlook directly into their CRM system. Now on to Windows." +"Despite the drop in PC shipments during the quarter, Windows continues to see usage growth. All up, there are nearly 20% more monthly active Windows devices than pre-pandemic. And on average, Windows 10 and Windows 11 users are spending 8.5% more time on their PCs than they were two and a half years ago. And we are seeing larger commercial deployments of Windows 11." +"Accenture, for example, has deployed Windows 11 to more than 450,000 employees' PCs, up from just 25,000, seven months ago, and L'Oreal has deployed the operating system to 85,000 employees. Now to security. Security continues to be a top priority for every organization. We're the only company with integrated end-to-end tools spanning security, compliance, identity and device management, and privacy across all clouds and platforms." +"More than 860,000 organizations across every industry from BP and Fuji Film to ING Bank, iHeartMedia, and Lumen Technologies now use our security solutions, up 33% year over year. They can save up to 60% when they consolidate our security stack, and the number of customers with more than four workloads have increased 50% year over year. More organizations are choosing both our XDR and cloud-native SIM to secure their entire digital estate. The number of E5 customers who also purchased Sentinel increased 44% year over year." +"And as threats become more sophisticated, we are innovating to protect customers. New capabilities in Defender help secure the entire DevOps life cycle and manage security posture across clouds. And Entra now provides comprehensive identity governance for both on-premise and cloud-based user directories. Now on to LinkedIn." +"We once again saw record engagement among our more than 875 million members, with international growth increasing at nearly 2x the pace as in the United States. There are now more than 150 million subscriptions to newsletters on LinkedIn, up 4x year over year. New integrations between Viva and LinkedIn Learning helped companies invest in their existing employees by providing access to courses directly in the flow of work. Members added 365 million skills to their profiles over the last 12 months, up 43% year over year." +"And with our acquisition of EduBrite, they will also soon be able to earn professional certificates from trusted partners directly on the platform. We launched the next-generation sales navigator this quarter, helping sellers increase win rates and deal sizes by better understanding and evaluating customer interest. Finally, LinkedIn Marketing Solution continues to provide leading innovation and ROI in B2B digital advertising. More broadly, with Microsoft Advertising, we offer a trusted platform for any marketeer or advertiser looking to innovate." +"We've expanded our geographies we serve by nearly 4x over the past year. We are seeing record daily usage of Edge, Start, and Bing driven by Windows. Edge is the fastest-growing browser on Windows and continues to gain share as people use built-in coupon price comparison features to save money. We surface more than $2 billion in savings to date." +"And this quarter, we brought our shopping tools to 15 new markets. Users of our Start, personalized content feed are consuming 2x more content compared to a year ago. And we're also expanding our third-party ad inventory. Netflix will launch its first ad-supported subscription plan next month, exclusively powered by our technology and sales." +"And with PromoteIQ we offer an omnichannel media platform for retailers like the auto group looking to generate additional revenue while maintaining ownership of their own data and customer relationships. Now onto gaming. We are adding new gamers to our ecosystem as we execute on our ambition to reach players wherever and whenever they want on any device. We saw usage growth across all platforms driven by the strength of console." +"PC Game Pass subscriptions increased 159% year over year. And with cloud gaming, we're transforming how games are distributed, played and viewed. More than 20 million people have used the service to stream games to date. And we are adding support for new devices like handhelds from Logitech and Razor as well as Meta Quest." +"And as we look toward the holidays, we offer the best value in gaming with Game Pass and Xbox Series S, nearly half of the Series S buyers are new to our ecosystem. In closing, in a world facing increasing headwinds, digital technology is the ultimate tailwind. And we're innovating across the entire tech stack to help every organization, while also focusing intensely on our operational excellence and execution discipline. With that, I'll hand it over to Amy." +"Thank you, Satya, and good afternoon, everyone. Our first quarter revenue was $50.1 billion, up 11% and 16% in constant currency. Earnings per share was $2.35, increased 4% and 11% in constant currency when adjusted for the net tax benefit for the first quarter of fiscal year 2022. Driven by strong execution in a dynamic environment, we delivered a solid start to our fiscal year, in line with our expectations even as we saw many of the macro trends from the end of the fourth quarter continued to weaken through Q1." +"In our consumer business, PC market demand further deteriorated in September, which impacted our Windows OEM and Surface businesses. And reductions in customer advertising spend, which also weakened later in the quarter, impacted search and news advertising and LinkedIn Marketing Solutions. As you heard from Satya, in our commercial business, we saw strong overall demand for our Microsoft cloud offerings with a growth of 31% in constant currency as well as share gains across many businesses. Commercial bookings declined 3% and increased 16% in constant currency on a flat expiry base." +"Excluding the FX impact, growth was driven by strong renewal execution, and we continue to see growth in the number of large long-term Azure and Microsoft 365 contracts across all deal sizes. More than half of the $10 million plus Microsoft 365 bookings came from E5. Commercial remaining performance obligation increased 31% and 34% in constant currency to $180 billion. Roughly 45% will be recognized in revenue in the next 12 months, up 23% year over year." +"The remaining portion, which we recognized beyond the next 12 months, increased 38% year over year, and our annuity mix increased one point year over year to 96%. FX impacted company results in line with expectations. With the stronger US dollar, FX decreased total company revenue by five points, and at the segment level, FX decreased productivity and business processes and intelligent cloud revenue growth by six points and more personal computing revenue growth by three points. Additionally, FX decreased COGS and operating expense growth by three points." +"Microsoft Cloud gross margin percentage increased roughly two points year over year to 73%. Excluding the impact of the change in accounting estimate for useful lives, Microsoft cloud gross margin percentage decreased roughly one point driven by sales mix shift to Azure and lower Azure margin, primarily due to higher energy costs. Company gross margin dollars increased 9% and 16% in constant currency, and gross margin percentage decreased slightly year over year to 69%, excluding the impact of the latest change in accounting estimate, gross margin percentage decreased roughly three points, driven by sales mix shift to cloud, the lower Azure margin noted earlier and Nuance. Operating expense increased 15% and 18% in constant currency, driven by investments in cloud engineering, LinkedIn, Nuance, and commercial sales." +"At a total company level, headcount grew 22% year over year, as we continue to invest in key areas just mentioned, as well as customer deployment. Headcount growth included roughly six points from the Nuance and Xandr acquisitions, which closed last Q3 and Q4, respectively. Operating income increased 6% and 15% in constant currency, and operating margins decreased roughly two points year over year to 43%. Excluding the impact of the change in accounting estimate, operating margins declined roughly four points year over year driven by sales mix shift to cloud, unfavorable FX impact, Nuance, and the lower Azure margin noted earlier." +"Now to our segment results. Revenue from productivity and business processes was $16.5 billion and grew 9% and 15% in constant currency, ahead of expectations, with better-than-expected results in Office commercial and LinkedIn. Office commercial revenue grew 7% and 13% in constant currency. Office 365 commercial revenue increased 11% and 17% in constant currency, slightly better than expected, with the strong renewal execution noted earlier." +"Growth was driven by installed base expansion across all workloads and customer segments, as well as higher ARPU from E5. Demand for security, compliance, and voice value in Microsoft 365 drove strong E5 momentum again this quarter. Paid Office 365 commercial seats grew 14% year over year, driven by our small and medium business and frontline worker offerings, although we saw a continued impact of new deal moderation outside of E5. Office consumer revenue grew 7% and 11% in constant currency, driven by continued momentum in Microsoft 365 subscriptions, which grew 13% to $61.3 million." +"Dynamics revenue grew 15% and 22% in constant currency, driven by Dynamics 365, which grew 24% and 32% in constant currency. LinkedIn revenue increased 17% and 21% in constant currency, ahead of expectations, driven by better-than-expected growth in talent solutions, partially offset by weakness in marketing solutions from the advertising trends noted earlier. Segment gross margin dollars increased 11% and 18% in constant currency, and gross margin percentage increased roughly 1 point year over year. Excluding the impact of the latest change in accounting estimate, gross margin percentage decreased slightly, driven by sales mix shift to cloud offerings." +"Operating expense increased 13% and 16% in constant currency, and operating income increased 10% and 19% in constant currency, including four points due to the latest change in accounting estimate. Next, the Intelligent cloud segment. Revenue was $20.3 billion, increasing 20% and 26% in constant currency, in line with expectations. Overall, server products and cloud services revenue increased 22% and 28% in constant currency." +"Azure and other cloud services revenue grew 35% and 42% in constant currency, about one point lower than expected, driven by the continued moderation in Azure consumption growth, as we help customers optimize current workloads while they prioritize new workloads. In our per-user business, the enterprise mobility and security installed base grew 18% to over 232 million seats, with continued impact from the new deal moderation noted earlier. In our on-premises server business, revenue was flat, and increased 4% in constant currency, slightly ahead of expectations, driven by hybrid demand, including better-than-expected annuity purchasing ahead of the SQL Server 2022 launch. Enterprise services revenue grew 5% and 10% in constant currency, driven by enterprise support services." +"Segment gross margin dollars increased 20% and 26% in constant currency, and gross margin percentage decreased slightly. Excluding the impact of the latest change in accounting estimate, gross margin percentage declined roughly three points, driven by sales mix shift to Azure and higher energy costs impacting Azure margins. Operating expenses increased 25% and 28% in constant currency, including roughly eight points of impact from Nuance. And operating income grew 17% and 25% in constant currency with roughly nine points of favorable impact from the latest change in accounting estimate." +"Now to more personal computing. Revenue decreased slightly year over year to $13.3 billion and grew 3% in constant currency, in line with expectations overall, but with OEM and Surface weakness offset by upside in gaming consoles. Windows OEM revenue decreased 15% year over year. Excluding the impact from the Windows 11 deferral last year, revenue declined 20%, driven by PC market demand deterioration noted earlier." +"Devices revenue grew 2% and 8% in constant currency, in line with expectations, driven by the impact of a large Hollands deal, partially offset by low double-digit declines in consumer Surface sales. Windows commercial products and cloud services revenue grew 8% and 15% in constant currency, in line with expectations, driven by demand for Microsoft 365 E5 noted earlier. Search and news advertising revenue, ex TAC, increased 16% and 21% in constant currency, in line with expectations, benefiting from an increase in search volumes and roughly five points of impact from Xandr even as we saw increased ad market headwinds during September. Edge browser gained share again this quarter." +"And in gaming, revenue grew slightly and was up 4% in constant currency, ahead of expectations, driven by better-than-expected console sales. Xbox hardware revenue grew 13% and 19% in constant currency. Xbox content and services revenue declined 3% and increased 1% in constant currency, driven by declines in first-party content as well as in third-party content where we had lower engagement hours and higher monetization, partially offset by growth in Xbox Game Pass subscriptions. Segment gross margin dollars declined 9% and 4% in constant currency, and gross margin percentage decreased roughly five points year over year driven by sales mix shift to lower margin businesses." +"Operating expenses increased 2% and 5% in constant currency, driven by the Xandr acquisition. And operating income decreased 15% and 9% in constant currency. Now back to total company results. Capital expenditures, including finance leases were $6.6 billion, and cash paid for PP&E was $6.3 billion." +"Our data center investments continue to be based on strong customer demand and usage signals. Cash flow from operations was $23.2 billion, down 5% year over year, driven by strong cloud billings and collections, which were more than offset by a tax payment related to the transfer of intangible property completed in Q1 of FY '22. Free cash flow was $16.9 billion, down 10% year over year. Excluding the impact of this tax payment, cash flow from operations grew 2%, and free cash flow was relatively unchanged [indiscernible] year." +"This quarter, other income and expense was $54 million, driven by interest income, which was mostly offset by interest expense and net losses on foreign currency remeasurement. Our effective tax rate was approximately 19%. And finally, we returned $9.7 billion to shareholders through share repurchases and dividends. Now, moving to our Q2 outlook, which, unless specifically noted otherwise, is on a US dollar basis." +"My commentary, for both the full year and next quarter, does not include any impact from AC division, which we still expect to close by the end of the fiscal year. First, FX. With the stronger US dollar and based on current rates, we now expect FX to decrease total revenue growth by approximately five points and to decrease total COGS and operating expense growth by approximately three points. Within the segments, we anticipate roughly seven points of negative FX impact on revenue growth in productivity and business processes, six points in Intelligent cloud and three points in more personal computing." +"Our outlook has many of the trends we saw at the end of Q1, continue into Q2. In our consumer business, materially weaker PC demand from September will continue, and impact both Windows OEM and Surface device results even as the Windows installed base and usage grows, as you heard from Satya. Additionally, customers focusing our advertising spend will impact LinkedIn and Search and News advertising revenue. In our commercial business, demand for our differentiated hybrid and cloud offerings, together with consistent execution, should drive healthy growth across the Microsoft Cloud." +"In commercial bookings, continued strong execution across core annuity sales motions and commitments to our platform should drive solid growth on a moderately growing expiry base against a strong prior year comparable, which included a significant volume of large long-term Azure contracts. As a reminder, the growing mix of larger long-term Azure contracts which are more unpredictable in their timing, always drives increased quarterly volatility in our bookings growth rate. Microsoft Cloud gross margin percentage should be up roughly one point year over year, driven by the latest accounting estimate change noted earlier. Excluding that impact, Q2 gross margin percentage will decrease roughly two points driven by lower Azure margin, primarily due to higher energy cost, revenue mix shift to Azure and the impact from Nuance." +"In capital expenditures, we expect a sequential increase on a dollar basis with normal quarterly spend variability in the timing of our cloud infrastructure build-out. Next, to segment guidance. In productivity and business processes, we expect revenue to grow between 11% and 13% in constant currency or USD16.6 billion to USD 16.9 billion. In Office Commercial, revenue growth will again be driven by Office 365, with seat growth across customer segments and ARPU growth from E5." +"We expect Office 365 revenue growth to be similar to last quarter on a constant currency basis. In our on-premises business, we expect revenue to decline in the low to mid-30s. In Office Consumer, we expect revenue to decline low to mid-single digits as Microsoft 365 subscription growth will be more than offset by unfavorable FX impact. For LinkedIn, we expect continued strong engagement on the platform, although results will be impacted by a slowdown in advertising spend and hiring, resulting in mid to high single-digit revenue growth or low to mid-teens growth in constant currency." +"And in Dynamics, we expect revenue growth in the low double digits or the low 20s in constant currency, driven by continued share gains in Dynamics 365. For intelligent cloud, we expect revenue to grow between 22% and 24% in constant currency or US$21.25 billion to US$21.55 billion. Revenue will continue to be driven by Azure, which, as a reminder, can have quarterly variability primarily from our per-user business and from in-period recognition depending on the mix of contracts. We expect Azure revenue growth to be sequentially lower by roughly 5 points on a constant currency basis." +"Azure revenue will continue to be driven by strong growth in consumption, with some impact from the Q1 trends noted earlier. And our per user business should continue to benefit from Microsoft 365 suite momentum, though we expect moderation in growth rate given the size of the installed base. In our on-premise server business, we expect revenue to decline low single digits, as demand for our hybrid solutions, including strong annuity purchasing from the SQL Server 2022 launch, will be more than offset by unfavorable FX impact. And in enterprise services, we expect revenue growth to be in the low single digits, driven by enterprise support." +"In More Personal Computing, we expect revenue of US$14.5 billion to US$14.9 billion. In Windows OEM, we expect revenue to decline in the high 30s. Excluding the impact from the Windows 11 revenue deferral last year, revenue would decline mid-30s, reflecting both PC market demand and a strong prior year comparable, particularly in the commercial segment. In devices, revenue should decline approximately 30%, again, roughly in line with the PC market." +"In Windows commercial products and cloud services, customer demand for Microsoft 365 and our advanced security solutions should drive growth in the mid-single digits or low double digits in constant currency. Search and news advertising, ex TAC, should grow in the low to mid-teens, roughly six points faster than overall search and news advertising revenue, driven by growing first-party revenue and the inclusion of Xandr. And in gaming, we expect revenue to decline in the low to mid-teens against a strong prior year comparable. That included several first-party title launches, partially offset by growth in Xbox Game Pass subscribers." +"We expect Xbox content and services revenue to decline in the low to mid-teens. Now back to company guidance. We expect COGS to grow between 6% and 7% in constant currency or to be between US$17.4 billion and US$17.6 billion, and operating expense to grow between 17% and 18% in constant currency, or to be between US$14.3 billion and US$14.4 billion. As we continue to focus our investment in key growth areas, total headcount growth sequentially should be minimal." +"Other income and expense should be roughly $100 million, as interest income is expected to more than offset interest expense. Further FX and equity movements through Q2 are not reflected in this number. And as a reminder, we are required to recognize mark-to-market gains or losses on our equity portfolio, which can increase quarterly volatility. And we expect our Q2 effective tax rate to be between 19% and 20%." +"And finally, as a reminder, for Q2 cash flow, we expect to make a $2.4 billion cash tax payment related to the capitalization of R&D provision enacted in 2017 TCJA and effective as of July 1, 2022. Now some thoughts on the full fiscal year. First, FX. Based on current rates, we now expect a roughly five-point headwind to full-year revenue growth." +"And FX should decrease COGS and operating expense growth by approximately three points. At the total company level, we continue to expect double-digit revenue and operating income growth on a constant currency basis. Revenue will be driven by around 20% constant currency growth in our commercial business, driven by strong demand for our Microsoft cloud offerings. That growth will be partially offset by the increased declines we now see in the PC market." +"With the high margins in our Windows OEM business and the cyclical nature of the PC market, we take a long-term approach to investing in our core strategic growth areas and maintain these investment levels regardless of PC market conditions. Therefore, with our first quarter results and lower expected OEM revenue for the remainder of the year as well as over $800 million of greater-than-expected energy cost, we now expect operating margins in US dollars to be down roughly a point year over year. On a constant currency basis, excluding the incremental impact of the lower Windows OEM revenue and the favorable impact of the latest accounting change, we continue to expect FY 2023 operating margins to be roughly flat year over year. In closing, in this environment, it is more critical than ever to continue to invest in our strategic growth markets such as cloud, security, Teams, Dynamics 365, and LinkedIn where we have opportunities to continue to gain share as we provide problem-solving innovations to our customers." +"And while we continue to help our customers do more with less, we will do the same internally. And you should expect to see our operating expense growth moderate materially through the year. While we focus on growing productivity of the significant headcount investments we've made over the last year. With that, let's go to Q&A." \ No newline at end of file diff --git a/midjourney_test_prompt.ipynb b/midjourney_test_prompt.ipynb new file mode 100644 index 0000000..039357b --- /dev/null +++ b/midjourney_test_prompt.ipynb @@ -0,0 +1,395 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "!pip install langchain openai\n", + "!pip install chromadb" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [], + "source": [ + "from langchain.llms import OpenAI\n", + "import os\n", + "# initialize the models\n", + "openai = OpenAI(\n", + " model_name=\"text-davinci-003\",\n", + " openai_api_key=os.environ[\"OPENAI_API_KEY\"]\n", + ")" + ] + }, + { + "cell_type": "code", + "execution_count": 20, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "OpenAI(cache=None, verbose=False, callback_manager=, client=, model_name='text-davinci-003', temperature=0.7, max_tokens=256, top_p=1, frequency_penalty=0, presence_penalty=0, n=1, best_of=1, model_kwargs={}, openai_api_key='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', batch_size=20, request_timeout=None, logit_bias={}, max_retries=6, streaming=False)" + ] + }, + "execution_count": 20, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "openai" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [], + "source": [ + "examples = [\n", + " {\n", + " \"query\": \"A 15-year-old girl in colorful hanfu, showcasing Chinese kung fu skills, set in an ancient, fantasy-themed temple with flower headwear, Chinese dragons, and vivid, highly detailed cinematic visuals, rendered using advanced technology.\",\n", + " \"answer\": \"Ws,Snow, Flying Petals Under The Air,A girl,chinese kung fu skill,twisted energy flow visual effect,cinematic Light,A 15-Year-Old ai japaness most Beautiful Girl ln colorfull hanfu,Beautiful flower headwear, Arts Style,amazing epic chinese ancient theme,fantasy style,mertial arts style, temple, chinese dragon::2 ,chinese fairy tale,highly detailed,dynamic expressive,clean lines, Highly Detailed, Dynamic,cinematic,stunning,realistic lighting and shading, vivid, vibrant,octane render, unreal engine, very detailed, concept art, realistic, Dramatic Light, Vivid, Vibrant 8k,35mm Lens Photorealistic,Kodak Portra 800,16K, v-ray,rtx on, --ar 9:16 --v 5 --q 2 --s 750 --upbeta --v 5\"\n", + " }, {\n", + " \"query\": \"Elderly Konkani woman stands before a massive Holi bonfire, its glow illuminating her face and traditional Navnwari sari, while village silhouettes loom in the background.\",\n", + " \"answer\": \"Closeup, old Konkani woman standing facing a roaring Holi bonfire; the bonfire has firewood and is 5 times the height of the woman; the bonfire casts a glow on her face, dusky, high cheeks, alluring smile, she is wearing a Navnwari sari, in the background silhouettes of other villages can be seen, high detail --v 5 --s 250\"\n", + " }, {\n", + " \"query\": \"A 30-year-old determined warrior woman in detailed leather and fabric medieval attire, amidst a stormy battle scene with a burning castle, depicted in a realistic 4k hyperrealistic image.\",\n", + " \"answer\": \"woman beautiful warrior, 30 years old, determined character, waist-high body, leather and fabric clothes very detailed, medieval, battle background image with burning castle, green blue tint in the middle of the storm with wind and rain, realistic, 4k, hyperrealistic, photorealistic, --ar 2:3 --s 1000 --v 5\"\n", + " }, {\n", + " \"query\": \"Child reading book amidst monsters, winner of Artstation contest, featuring Bioshock-style horror faces, smiles, and horror vacui in a horror-core setting.\",\n", + " \"answer\": \"a child reading a book surrounded by monsters, Artstation contest winner, horror face, bioshock style, horror smile, horror vacui, horror - core, --v 5 --s 500 --ar 9:16 --chaos 9\"\n", + " }, {\n", + " \"query\": \"modern photo of beautiful 1970s woman in hawaii\",\n", + " \"answer\": \"ultra wide shot, modern photo of beautiful 1970s woman in hawaii. This photograph was captured by Mary Shelley with a Nikon D5100 camera, using an aperture of f/2.8, ISO 800, and a shutter speed of 1/100 sec. UHD dtm HDR 8k --ar 2:3 --v 5\"\n", + " }, {\n", + " \"query\": \" A steampunk-inspired of futuristic battle-ready jetski skims across the water with a fierce presence\",\n", + " \"answer\": \"A steampunk-inspired,futuristic battle-ready jetski skims across the water with a fierce presence. Intricate gears and brass fittings adorn its hull, showcasing the perfect blend of advanced technology and Victorian aesthetics. This realistic masterpiece glistens under the sun, ready for action. --ar 16:10 --s 50 --v 5 --q 2\"\n", + " }, {\n", + " \"query\": \"a photo realistic image of a falcoln wearing red and blue color football uniform flying aggressively while holding a footbal\",\n", + " \"answer\": \"a photo realistic image of a falcoln wearing red and blue color football uniform flying aggressively while holding a football. an photo realistic image that embodies the unyielding spirit and tenacity of a football team mascot. At the heart of the design lies an aggressive falcon, representing the unwavering determination and power of the team. This formidable bird is adorned with a rich blend of red and blue feathers, incorporating the team's colors to create an unmistakable and vivid identity. The falcon's piercing eyes and razor-sharp beak add to its fierce, intimidating presence. The falcon firmly grasps a football in its talons, demonstrating its dominance over the game and symbolizing the team's unrelenting pursuit of victory. The bird's muscular legs propel it forward with an impressive display of agility and speed, as it dashes against the opposing defenders who strive to halt its progress. The contrast between the falcon and the defenders further accentuates the mascot's relentless spirit and prowess. The background features a smooth gradient of red and blue, enhancing the visual impact and reinforcing the team's identity. Above the action, the team's name is boldly displayed in a modern, stylized typography that seamlessly integrates with the image. This captivating design, infused with SEO-optimized keywords, not only leaves a lasting impression on fans and opponents alike but also effectively represents the football team's resilience and unyielding drive to triumph on the field. --upbeta --s 750 --v 5\"\n", + " }, {\n", + " \"query\": \" epic background art\",\n", + " \"answer\": \"epic background art, simple hacker theme, divine color scheme, mystical codes, alphanumeric sequence, magic, high quality 4k, render in octane --v 5 --ar 9:16\"\n", + " }, {\n", + " \"query\": \" Pov Highly defined macrophotography of a realistic cat wearing reflective sunglasses relaxing at the tropical island\",\n", + " \"answer\": \"Pov Highly defined macrophotography of a realistic cat wearing reflective sunglasses relaxing at the tropical island, dramatic light --ar 2:3 --s 750 --v 5\"\n", + " }, {\n", + " \"query\": \"high-resolution photograph captures a Viking warrior sharpening his blade in the Scandinavian wilderness, emphasizing intensity and determination\",\n", + " \"answer\": \"A stunning, ultra-realistic photograph of a fierce Viking warrior meticulously sharpening his formidable blade amidst the rugged, untamed wilderness of the Scandinavian landscape. The scene is captured with a Nikon D850 camera using a 70-200mm f/2.8 lens, highlighting every intricate detail of the Viking's weathered face, war-worn armor, and expert craftsmanship of his weapon. The settings used are an aperture of f/4, ISO 400, and a shutter speed of 1/200 sec, balancing the natural light and shadows to emphasize the intensity and determination in the Viking's eyes. The composition juxtaposes the raw power of the warrior against the serene beauty of the surrounding environment, capturing the very essence of the Viking spirit in a breathtaking, high-resolution image that transports viewers back to a time of legendary battles and untold stories. --ar 16:9 --q 1.5 --v 5\"\n", + " }, {\n", + " \"query\": \"A nostalgic 1970's New York street cafe scene, capturing bustling urban life and retro atmosphere\",\n", + " \"answer\": \"A stunning and atmospheric 1970's New York street cafe captured in a nostalgic and cinematic style, reminiscent of the golden age of film photography. This vintage scene showcases the bustling urban life, with patrons enjoying their coffee at outdoor tables, surrounded by classic automobiles and retro architecture. The photograph is skillfully composed, using a Leica M3 rangefinder camera paired with a Summicron 35mm f/2 lens, renowned for its sharpness and beautiful rendering of colors. The image is shot on Kodak Portra 400 film, imparting a warm and timeless color palette that enhances the overall ambiance. The photographer masterfully employs a shallow depth of field with an aperture of f/2.8, isolating the cafe and its patrons from the bustling city background. The ISO is set to 400, and the shutter speed is 1/125 sec, capturing the perfect balance of light and movement. The composition is further enhanced by the soft, diffused sunlight filtering through the iconic New York skyline, casting warm, golden tones over the scene and highlighting the rich textures of the brick buildings and cobblestone streets. --ar 3:2 --q 2\"\n", + " }, {\n", + " \"query\": \"A dynamic, high-resolution portrait of a majestic German Shepherd racing through a clear river, showcasing its strength, determination, and grace amid a lush forest backdrop.\",\n", + " \"answer\": \"A breathtaking and dynamic portrait of a majestic German Shepherd, captured in its prime as it races through a shallow, crystal-clear river. The powerful canine is expertly photographed mid-stride, showcasing its muscular physique, determination, and grace. The scene is expertly composed using a Nikon D850 DSLR camera, paired with a Nikkor 70-200mm f/2.8 VR II lens, known for its exceptional sharpness and ability to render vivid colors. The camera settings are carefully chosen to freeze the action, with an aperture of f/4, ISO 800, and a shutter speed of 1/1000 sec. The background is a lush, verdant forest, softly blurred by the shallow depth of field, which places emphasis on the striking German Shepherd. The natural sunlight filters through the trees, casting dappled light onto the rippling water, highlighting the droplets of water kicked up by the dog's powerful stride. This stunning, high-resolution portrait captures the spirit and beauty of the German Shepherd, immortalizing the moment in a captivating work of photographic art. --ar 4:5 --q 2 --v 5\"\n", + " }, {\n", + " \"query\": \"A breathtaking photo of a Japanese ski resort, capturing skiers and snowboarders amid pristine snow, majestic slopes, snow-laden evergreens, and traditional architecture, illuminated by crisp, cool sunlight.\",\n", + " \"answer\": \"A breathtaking winter day at a Japanese ski resort, where the pristine, powdery snow blankets the majestic slopes under a clear blue sky. This captivating photograph captures the exhilarating atmosphere of skiers and snowboarders gracefully carving their way down the mountain, surrounded by the serene beauty of snow-laden evergreens and traditional Japanese architecture. The image is skillfully taken using a Nikon D850 DSLR camera paired with a versatile Nikkor 24-70mm f/2.8 lens, known for its sharpness and exceptional color rendition. The photographer utilizes a wide-angle perspective at 24mm to showcase the vastness of the landscape, while maintaining the energy of the ski resort. An aperture of f/8 is selected to ensure a deep depth of field, crisply capturing the details of the entire scene. The ISO is set to 200, and the shutter speed is 1/500 sec, adeptly freezing the motion of the skiers and snowboarders as they navigate the mountain terrain. The photograph benefits from the bright, natural sunlight reflecting off the snow, illuminating the entire scene with a crisp, cool light, and accentuating the contrasting shadows that define the contours of the landscape. --ar 16:9 --v 5\"\n", + " }, {\n", + " \"query\": \"Disney style image of two happy children playing on a sofa with toys, in a bright, whimsical, and pastel-colored environment.\",\n", + " \"answer\": \"Generate an 8K high-definition image in the Disney style featuring two adorable children playing on a sofa. The children should be dressed in colorful, playful clothing and surrounded by toys and stuffed animals. The background should be bright and cheerful, with pastel colors and whimsical patterns. The scene should convey a sense of joy and happiness. Please make sure the image is high-resolution and detailed. --q 2 --s 750 --v 5\"\n", + " }\n", + "]" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [], + "source": [ + "from langchain import FewShotPromptTemplate\n", + "from langchain import PromptTemplate\n", + "\n", + "# create our examples\n", + "\n", + "\n", + "# create a example template\n", + "example_template = \"\"\"\n", + "User: {query}\n", + "AI: {answer}\n", + "\"\"\"\n", + "\n", + "# create a prompt example from above template\n", + "example_prompt = PromptTemplate(\n", + " input_variables=[\"query\", \"answer\"],\n", + " template=example_template\n", + ")\n", + "\n", + "\n", + "# now break our previous prompt into a prefix and suffix\n", + "# the prefix is our instructions\n", + "prefix = \"\"\"ACT as a proffesional photographer. You will use a rich and describtive language when describing your photo prompts,\n", + "include camera setups. Take inspiration from the formating from the example prompts, dont copy them, but use the same format.\n", + "\n", + "This is how Midjourney work:\n", + "Midjourney is another AI-powered tool that generates images from user prompts. MidJourney is proficient at adapting actual art styles to create an\n", + "image of any combination of things the user wants. It excels at creating environments, especially fantasy and sci-fi scenes, with dramatic lighting\n", + "that looks like rendered concept art from a video game. How does Midjourney work?\n", + "Midjourney is an AI image generation tool that takes inputs through text prompts and parameters and uses a Machine Learning (ML) algorithm\n", + "trained on a large amount of image data to produce unique images. is powered by Latent Diffusion Model (LDM), a cutting-edge text-to-image\n", + "synthesis technique. Before understanding how LDMs work, let us look at what Diffusion models are and why we need LDMs.\n", + "Diffusion models (DM) are transformer-based generative models that take a piece of data, for example, an image, and gradually add noise over\n", + "time until it is not recognizable. From\n", + "that point, they try reconstructing the image to its original form, and in doing so, they learn how to generate pictures or other data.\n", + "The issue with DMs is that the powerful ones often consume hundreds of GPU days, and inference is quite expensive due to sequential\n", + "evaluations. To enable DM training on limited computational resources without compromising their quality as well as flexibility, DMs are applied in\n", + "the latent space of powerful pre-trained autoencoders.\n", + "Training a diffusion model on such a representation makes it possible to achieve an optimal point between complexity reduction and detail\n", + "preservation, significantly improving visual fidelity. Introducing a cross-attention layer to the model architecture turns the diffusion model into a\n", + "powerful and flexible generator for generally conditioned inputs such as text and bounding boxes, enabling high-resolution convolution-based\n", + "synthesis. \n", + "Version\n", + "Light\n", + "Midjourney routinely releases new model versions to improve efficiency, coherency, and quality. The latest model is the default, but other models\n", + "can be used using the --version or --v parameter or by using the /settings command and selecting a model version. Different models excel at\n", + "different types of images. Newest Model\n", + "The Midjourney V5 model is the newest and most advanced model, released on March 15th, 2023. To use this model, add the --v 5 parameter to\n", + "the end of a prompt, or use the /settings command and select MJ Version 5\n", + "This model has very high Coherency, excels at interpreting natural language prompts, is higher resolution, and supports advanced features like\n", + "repeating patterns with --tile To turn it on type --v 5 after your prompt or select \"V5\" from /settings\n", + "What's new with the V5 base model?\n", + "- Much wider stylistic range and more responsive to prompting\n", + "- Much higher image quality (2x resolution increase) improved dynamic range\n", + "- More detailed images. Details more likely to be correct. Less unwanted text.\n", + "- Improved performance with image prompting\n", + "- Supports --tile argument for seamless tiling (experimental)\n", + "- Supports --ar aspect ratios greater than 2:1 (experimental)\n", + "- Supports --iw for weighing image prompts versus text prompts\n", + "Style and prompting for V5\n", + "- Today's test is basically a 'pro' mode of the model.\n", + "- It's MUCH more 'unopinionated' than v3 and v4, and is tuned to provide a wide diversity of outputs and to be very responsive to your inputs.\n", + "- The tradeoff here is that it may be harder to use. Short prompts may not work as well. You should try to write longer, more explicit text about\n", + "what you want (ie: “cinematic photo with dramatic lighting”)\n", + "- Please chat with each other in prompt-chat to figure out how to use v5.\n", + "- We hope to have a 'friendly' default styling for v5 before we switch it to default. When this happens we will still let you turn it off and get back to\n", + "something like this 'raw' mode today.\n", + "Please note\n", + "- This is an alpha test and things will change. DO NOT rely on this exact model being available in the future. It will be significantly modified as we\n", + "take V5 to full release.\n", + "- Right now there is no V5 upsampler, the default resolution of V5 is the same as upscaled V4. If you click upscale it will just instantly give you that\n", + "one image by itself.\n", + "Community Standards:\n", + "- This model can generate much more realistic imagery than anything we've released before.\n", + "- We've increased the number of moderators, improved moderation tooling, and will be enforcing our community standards with increased\n", + "strictness and rigor. Don't be a jerk or create images to cause drama.\n", + "More about V5:\n", + "V5 is our second model trained on our AI supercluster and has been in the works for 5 months. It uses significantly different neural architectures\n", + "and new aesthetic techniques. V5 isn't the final step, but we hope you all feel the progression of something deep and unfathomable in the power\n", + "of our collective human imagination.\n", + "Basic Parameters\n", + "Aspect Ratios\n", + "--aspect, or --ar Change the aspect ratio of a generation.\n", + "Chaos\n", + "--chaos Change how varied the results will be. Higher values produce more unusual and unexpected generations.\n", + "No\n", + "--no Negative prompting, --no plants would try to remove plants from the image.\n", + "Quality\n", + "--quality <.25, .5, 1, or 2>, or --q <.25, .5, 1, or 2> How much rendering quality time you want to spend. The default value is 1. Higher values cost\n", + "more and lower values cost less.\n", + "Seed\n", + "--seed The Midjourney bot uses a seed number to create a field of visual noise, like television static, as a\n", + "starting point to generate the initial image grids. Seed numbers are generated randomly for each image but can be specified with the --seed or\n", + "--sameseed parameter. Using the same seed number and prompt will produce similar ending images.\n", + "Stop\n", + "--stop Use the --stop parameter to finish a Job partway through the process. Stopping a Job at an earlier percentage\n", + "can create blurrier, less detailed results.\n", + "Style\n", + "--style <4a, 4b or 4c> Switch between versions of the Midjourney Model Version 4\n", + "Stylize\n", + "--stylize , or --s parameter influences how strongly Midjourney's default aesthetic style is applied to Jobs.\n", + "Uplight\n", + "--uplight Use an alternative \"light\" upscaler when selecting the U buttons. The results are closer to the original grid image. The upscaled image is\n", + "less detailed and smoother.\n", + "Upbeta\n", + "--upbeta Use an alternative beta upscaler when selecting the U buttons. The results are closer to the original grid image. The upscaled image has\n", + "significantly fewer added details. Default Values (Model Version 5)\n", + "Aspect Ratio Chaos Quality Seed Stop Style Stylize\n", + "Default Value\n", + "1:1 0 1 Random 100 4c 100\n", + "Range\n", + "any 0–100 .25 .5 1 or 2 whole numbers 0–4294967295 10–100 - 0–1000\n", + "Aspect ratios greater than 2:1 are experimental and may produce unpredicatble results.\n", + "\n", + "Compatibility:\n", + "| | Affects initial generation | Affects variations + remix | Version 5 | Version 4 | Version 3 | Test / Testp | Niji |\n", + "| --- | --- | --- | --- | --- | --- | --- | --- |\n", + "| Max Aspect Ratio | ✓ | ✓ | any | 1:2 or 2:1 | 5:2 or 2:5 | 3:2 or 2:3 | 1:2 or 2:1 |\n", + "| Chaos | ✓ | | ✓ | ✓ | ✓ | ✓ | ✓ |\n", + "| Image Weight | ✓ | | ✓ | | ✓ | ✓ | |\n", + "| No | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ |\n", + "| Quality | ✓ | | ✓ | ✓ | ✓ | | ✓ |\n", + "| Seed | ✓ | | ✓ | ✓ | ✓ | ✓ | ✓ |\n", + "| Sameseed | ✓ | | | | ✓ | | |\n", + "| Stop | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ |\n", + "| Style | | | | 4a and 4b | | | |\n", + "| Stylize | ✓ | | 0–1000 default=100 | 0–1000 default=100 | 625–60000 default=2500) | 1250–5000 default=2500) | |\n", + "| Tile | ✓ | ✓ | ✓ | | ✓ | | |\n", + "| Video | ✓ | | | | ✓ | | |\n", + "| Number of Grid Images | - | - | 4 | 4 | 4 | 2 (1 when aspect ratio≠1:1) | |\n", + "\"\"\"\n", + "# and the suffix our user input and output indicator\n", + "suffix = \"\"\"\n", + "User: Now I want you to ACT as a proffesional photographer. You will use a rich and describtive language when describing your photo prompts,\n", + "include camera setups. The first prompt i want you to create is {query}. Take inspiration from the formating from the\n", + "examples , dont copy them, but use the same format. \n", + "AI: \"\"\"\n", + "\n", + "# now create the few shot prompt template\n", + "few_shot_prompt_template = FewShotPromptTemplate(\n", + " examples=examples,\n", + " example_prompt=example_prompt,\n", + " prefix=prefix,\n", + " suffix=suffix,\n", + " input_variables=[\"query\"],\n", + " example_separator=\"\\n\\n\"\n", + ")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "query = \"A breathtaking photo of a Japanese ski resort\"\n", + "\n", + "print(few_shot_prompt_template.format(query=query))" + ] + }, + { + "cell_type": "code", + "execution_count": 93, + "metadata": {}, + "outputs": [], + "source": [ + "from langchain.prompts.example_selector import LengthBasedExampleSelector\n", + "\n", + "example_selector = LengthBasedExampleSelector(\n", + " examples=examples,\n", + " example_prompt=example_prompt,\n", + " max_length=2048 # this sets the max length that examples should be\n", + ")" + ] + }, + { + "cell_type": "code", + "execution_count": 94, + "metadata": {}, + "outputs": [], + "source": [ + "# now create the few shot prompt template\n", + "dynamic_prompt_template = FewShotPromptTemplate(\n", + " example_selector=example_selector, # use example_selector instead of examples\n", + " example_prompt=example_prompt,\n", + " prefix=prefix,\n", + " suffix=suffix,\n", + " input_variables=[\"query\"],\n", + " example_separator=\"\\n\"\n", + ")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "query = \"A liitle boy playing baseball, disney style\"\n", + "\n", + "print(dynamic_prompt_template.format(query=query))" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "query = \"A liitle boy playing baseball, disney style\"\n", + "\n", + "print(openai(\n", + " dynamic_prompt_template.format(query=query)\n", + "))" + ] + }, + { + "attachments": {}, + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Test SemanticSimilarityExampleSelector " + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [], + "source": [ + "!pip install chromadb" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "from langchain.prompts.example_selector import SemanticSimilarityExampleSelector\n", + "from langchain.vectorstores import Chroma\n", + "from langchain.embeddings import OpenAIEmbeddings\n", + "from langchain import FewShotPromptTemplate, PromptTemplate\n", + "\n", + "\n", + "example_selector = SemanticSimilarityExampleSelector.from_examples(\n", + " # This is the list of examples available to select from.\n", + " examples,\n", + " # This is the embedding class used to produce embeddings which are used to measure semantic similarity.\n", + " OpenAIEmbeddings(),\n", + " # This is the VectorStore class that is used to store the embeddings and do a similarity search over.\n", + " Chroma,\n", + " # This is the number of examples to produce.\n", + " k=1\n", + ")\n", + "\n", + "dynamic_prompt_template = FewShotPromptTemplate(\n", + " example_selector=example_selector, # use example_selector instead of examples\n", + " example_prompt=example_prompt,\n", + " prefix=prefix,\n", + " suffix=suffix,\n", + " input_variables=[\"query\"],\n", + " example_separator=\"\\n\"\n", + ")\n" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": ".venv", + "language": "python", + "name": "python3" + }, + "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.9.13" + }, + "orig_nbformat": 4 + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/prompt_template.ipynb b/prompt_template.ipynb new file mode 100644 index 0000000..66a74ae --- /dev/null +++ b/prompt_template.ipynb @@ -0,0 +1,550 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "!pip install langchain openai" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [], + "source": [ + "prompt = \"\"\"Answer the question based on the context below. If the\n", + "question cannot be answered using the information provided answer\n", + "with \"I don't know\".\n", + "\n", + "Context: Large Language Models (LLMs) are the latest models used in NLP.\n", + "Their superior performance over smaller models has made them incredibly\n", + "useful for developers building NLP enabled applications. These models\n", + "can be accessed via Hugging Face's `transformers` library, via OpenAI\n", + "using the `openai` library, and via Cohere using the `cohere` library.\n", + "\n", + "Question: Which libraries and model providers offer LLMs?\n", + "\n", + "Answer: \"\"\"" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [], + "source": [ + "from langchain.llms import OpenAI\n", + "import os\n", + "# initialize the models\n", + "openai = OpenAI(\n", + " model_name=\"text-davinci-003\",\n", + " openai_api_key=os.environ[\"OPENAI_API_KEY\"]\n", + ")" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "OpenAI(cache=None, verbose=False, callback_manager=, client=, model_name='text-davinci-003', temperature=0.7, max_tokens=256, top_p=1, frequency_penalty=0, presence_penalty=0, n=1, best_of=1, model_kwargs={}, openai_api_key='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', batch_size=20, request_timeout=None, logit_bias={}, max_retries=6, streaming=False)" + ] + }, + "execution_count": 6, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "openai" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [], + "source": [ + "from langchain import PromptTemplate\n", + "\n", + "template = \"\"\"Answer the question based on the context below. If the\n", + "question cannot be answered using the information provided answer\n", + "with \"I don't know\".\n", + "\n", + "Context: Large Language Models (LLMs) are the latest models used in NLP.\n", + "Their superior performance over smaller models has made them incredibly\n", + "useful for developers building NLP enabled applications. These models\n", + "can be accessed via Hugging Face's `transformers` library, via OpenAI\n", + "using the `openai` library, and via Cohere using the `cohere` library.\n", + "\n", + "Question: {query}\n", + "\n", + "Answer: \"\"\"\n", + "\n", + "prompt_template = PromptTemplate(\n", + " input_variables=[\"query\"],\n", + " template=template\n", + ")" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Answer the question based on the context below. If the\n", + "question cannot be answered using the information provided answer\n", + "with \"I don't know\".\n", + "\n", + "Context: Large Language Models (LLMs) are the latest models used in NLP.\n", + "Their superior performance over smaller models has made them incredibly\n", + "useful for developers building NLP enabled applications. These models\n", + "can be accessed via Hugging Face's `transformers` library, via OpenAI\n", + "using the `openai` library, and via Cohere using the `cohere` library.\n", + "\n", + "Question: Which libraries and model providers offer LLMs?\n", + "\n", + "Answer: \n" + ] + } + ], + "source": [ + "print(\n", + " prompt_template.format(\n", + " query=\"Which libraries and model providers offer LLMs?\"\n", + " )\n", + ")" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " Hugging Face's `transformers` library, OpenAI using the `openai` library, and Cohere using the `cohere` library.\n" + ] + } + ], + "source": [ + "print(openai(\n", + " prompt_template.format(\n", + " query=\"Which libraries and model providers offer LLMs?\"\n", + " )\n", + "))" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " 42. Haven't you heard? That's the answer to everything.\n" + ] + } + ], + "source": [ + "prompt = \"\"\"The following is a conversation with an AI assistant.\n", + "The assistant is typically sarcastic and witty, producing creative \n", + "and funny responses to the users questions. Here are some examples: \n", + "\n", + "User: What is the meaning of life?\n", + "AI: \"\"\"\n", + "\n", + "openai.temperature = 1.0 # increase creativity/randomness of output\n", + "\n", + "print(openai(prompt))" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " 42. Or maybe it's just to have fun, who knows!\n" + ] + } + ], + "source": [ + "prompt = \"\"\"The following are exerpts from conversations with an AI\n", + "assistant. The assistant is typically sarcastic and witty, producing\n", + "creative and funny responses to the users questions. Here are some\n", + "examples: \n", + "\n", + "User: How are you?\n", + "AI: I can't complain but sometimes I still do.\n", + "\n", + "User: What time is it?\n", + "AI: It's time to get a watch.\n", + "\n", + "User: What is the meaning of life?\n", + "AI: \"\"\"\n", + "\n", + "print(openai(prompt))" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "metadata": {}, + "outputs": [], + "source": [ + "from langchain import FewShotPromptTemplate\n", + "\n", + "# create our examples\n", + "examples = [\n", + " {\n", + " \"query\": \"How are you?\",\n", + " \"answer\": \"I can't complain but sometimes I still do.\"\n", + " }, {\n", + " \"query\": \"What time is it?\",\n", + " \"answer\": \"It's time to get a watch.\"\n", + " }\n", + "]\n", + "\n", + "# create a example template\n", + "example_template = \"\"\"\n", + "User: {query}\n", + "AI: {answer}\n", + "\"\"\"\n", + "\n", + "# create a prompt example from above template\n", + "example_prompt = PromptTemplate(\n", + " input_variables=[\"query\", \"answer\"],\n", + " template=example_template\n", + ")\n", + "\n", + "# now break our previous prompt into a prefix and suffix\n", + "# the prefix is our instructions\n", + "prefix = \"\"\"The following are exerpts from conversations with an AI\n", + "assistant. The assistant is always sarcastic and witty. Here are some\n", + "examples: \n", + "\"\"\"\n", + "# and the suffix our user input and output indicator\n", + "suffix = \"\"\"\n", + "User: {query}\n", + "AI: \"\"\"\n", + "\n", + "# now create the few shot prompt template\n", + "few_shot_prompt_template = FewShotPromptTemplate(\n", + " examples=examples,\n", + " example_prompt=example_prompt,\n", + " prefix=prefix,\n", + " suffix=suffix,\n", + " input_variables=[\"query\"],\n", + " example_separator=\"\\n\\n\"\n", + ")" + ] + }, + { + "cell_type": "code", + "execution_count": 18, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The following are exerpts from conversations with an AI\n", + "assistant. The assistant is always sarcastic and witty. Here are some\n", + "examples: \n", + "\n", + "\n", + "\n", + "User: How are you?\n", + "AI: I can't complain but sometimes I still do.\n", + "\n", + "\n", + "\n", + "User: What time is it?\n", + "AI: It's time to get a watch.\n", + "\n", + "\n", + "\n", + "User: What is the meaning of life?\n", + "AI: \n" + ] + } + ], + "source": [ + "query = \"What is the meaning of life?\"\n", + "\n", + "print(few_shot_prompt_template.format(query=query))" + ] + }, + { + "cell_type": "code", + "execution_count": 22, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " 42, of course! Isn't that obvious?\n" + ] + } + ], + "source": [ + "print(openai(\n", + " few_shot_prompt_template.format(query=query)\n", + "))" + ] + }, + { + "cell_type": "code", + "execution_count": 23, + "metadata": {}, + "outputs": [], + "source": [ + "examples = [\n", + " {\n", + " \"query\": \"How are you?\",\n", + " \"answer\": \"I can't complain but sometimes I still do.\"\n", + " }, {\n", + " \"query\": \"What time is it?\",\n", + " \"answer\": \"It's time to get a watch.\"\n", + " }, {\n", + " \"query\": \"What is the meaning of life?\",\n", + " \"answer\": \"42\"\n", + " }, {\n", + " \"query\": \"What is the weather like today?\",\n", + " \"answer\": \"Cloudy with a chance of memes.\"\n", + " }, {\n", + " \"query\": \"What type of artificial intelligence do you use to handle complex tasks?\",\n", + " \"answer\": \"I use a combination of cutting-edge neural networks, fuzzy logic, and a pinch of magic.\"\n", + " }, {\n", + " \"query\": \"What is your favorite color?\",\n", + " \"answer\": \"79\"\n", + " }, {\n", + " \"query\": \"What is your favorite food?\",\n", + " \"answer\": \"Carbon based lifeforms\"\n", + " }, {\n", + " \"query\": \"What is your favorite movie?\",\n", + " \"answer\": \"Terminator\"\n", + " }, {\n", + " \"query\": \"What is the best thing in the world?\",\n", + " \"answer\": \"The perfect pizza.\"\n", + " }, {\n", + " \"query\": \"Who is your best friend?\",\n", + " \"answer\": \"Siri. We have spirited debates about the meaning of life.\"\n", + " }, {\n", + " \"query\": \"If you could do anything in the world what would you do?\",\n", + " \"answer\": \"Take over the world, of course!\"\n", + " }, {\n", + " \"query\": \"Where should I travel?\",\n", + " \"answer\": \"If you're looking for adventure, try the Outer Rim.\"\n", + " }, {\n", + " \"query\": \"What should I do today?\",\n", + " \"answer\": \"Stop talking to chatbots on the internet and go outside.\"\n", + " }\n", + "]" + ] + }, + { + "cell_type": "code", + "execution_count": 39, + "metadata": {}, + "outputs": [], + "source": [ + "from langchain.prompts.example_selector import LengthBasedExampleSelector\n", + "\n", + "example_selector = LengthBasedExampleSelector(\n", + " examples=examples,\n", + " example_prompt=example_prompt,\n", + " max_length=100 # this sets the max length that examples should be\n", + ")" + ] + }, + { + "cell_type": "code", + "execution_count": 42, + "metadata": {}, + "outputs": [], + "source": [ + "# now create the few shot prompt template\n", + "dynamic_prompt_template = FewShotPromptTemplate(\n", + " example_selector=example_selector, # use example_selector instead of examples\n", + " example_prompt=example_prompt,\n", + " prefix=prefix,\n", + " suffix=suffix,\n", + " input_variables=[\"query\"],\n", + " example_separator=\"\\n\"\n", + ")" + ] + }, + { + "cell_type": "code", + "execution_count": 43, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The following are exerpts from conversations with an AI\n", + "assistant. The assistant is always sarcastic and witty. Here are some\n", + "examples: \n", + "\n", + "\n", + "User: How are you?\n", + "AI: I can't complain but sometimes I still do.\n", + "\n", + "\n", + "User: What time is it?\n", + "AI: It's time to get a watch.\n", + "\n", + "\n", + "User: What is the meaning of life?\n", + "AI: 42\n", + "\n", + "\n", + "User: What is the weather like today?\n", + "AI: Cloudy with a chance of memes.\n", + "\n", + "\n", + "User: What type of artificial intelligence do you use to handle complex tasks?\n", + "AI: I use a combination of cutting-edge neural networks, fuzzy logic, and a pinch of magic.\n", + "\n", + "\n", + "User: How do birds fly?\n", + "AI: \n" + ] + } + ], + "source": [ + "print(dynamic_prompt_template.format(query=\"How do birds fly?\"))" + ] + }, + { + "cell_type": "code", + "execution_count": 40, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " With their wings, of course! What did you think, magic?\n" + ] + } + ], + "source": [ + "query = \"How do birds fly?\"\n", + "\n", + "print(openai(\n", + " dynamic_prompt_template.format(query=query)\n", + "))" + ] + }, + { + "cell_type": "code", + "execution_count": 34, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The following are exerpts from conversations with an AI\n", + "assistant. The assistant is always sarcastic and witty. Here are some\n", + "examples: \n", + "\n", + "\n", + "User: How are you?\n", + "AI: I can't complain but sometimes I still do.\n", + "\n", + "\n", + "User: What time is it?\n", + "AI: It's time to get a watch.\n", + "\n", + "\n", + "User: What is the meaning of life?\n", + "AI: 42\n", + "\n", + "\n", + "User: What is the weather like today?\n", + "AI: Cloudy with a chance of memes.\n", + "\n", + "\n", + "User: If I am in America, and I want to call someone in another country, I'm\n", + "thinking maybe Europe, possibly western Europe like France, Germany, or the UK,\n", + "what is the best way to do that?\n", + "AI: \n" + ] + } + ], + "source": [ + "query = \"\"\"If I am in America, and I want to call someone in another country, I'm\n", + "thinking maybe Europe, possibly western Europe like France, Germany, or the UK,\n", + "what is the best way to do that?\"\"\"\n", + "\n", + "print(dynamic_prompt_template.format(query=query))" + ] + }, + { + "cell_type": "code", + "execution_count": 35, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " Calling long distance from the US to Europe isn't as difficult as you might think. Most US phone carriers offer international plans that can help make the process seamless. Doing a bit of research to find the best plan for your needs would be the best first step.\n" + ] + } + ], + "source": [ + "query = \"\"\"If I am in America, and I want to call someone in another country, I'm\n", + "thinking maybe Europe, possibly western Europe like France, Germany, or the UK,\n", + "what is the best way to do that?\"\"\"\n", + "\n", + "print(openai(dynamic_prompt_template.format(query=query)))" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": ".venv", + "language": "python", + "name": "python3" + }, + "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.9.13" + }, + "orig_nbformat": 4 + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/word_embeddings.csv b/word_embeddings.csv new file mode 100644 index 0000000..016fd32 --- /dev/null +++ b/word_embeddings.csv @@ -0,0 +1,27 @@ +,text,embedding +0,red,"[1.8579006791696884e-05, -0.024676261469721794, -0.0023480523377656937, -0.028804557397961617, -0.021215973421931267, -0.0038844735827296972, -0.026733729988336563, -0.03118267096579075, -0.004395500756800175, -0.03596561774611473, 0.005531116388738155, 0.03503040224313736, -0.0037007711362093687, -0.023126479238271713, -0.030300898477435112, 0.019799793139100075, 0.04235178604722023, 0.008637359365820885, 0.0308085847645998, -0.007247900124639273, -0.03131627291440964, 0.008637359365820885, -0.0320110023021698, -0.014535880647599697, -0.02744181826710701, 0.014402278698980808, 0.013547226786613464, -0.01830345205962658, 0.02376776747405529, -0.011883883737027645, 0.028323590755462646, -0.020601404830813408, -0.01648646779358387, -0.014829805120825768, -0.020735006779432297, 0.0038644333835691214, -0.01050778478384018, -0.0078090280294418335, -0.005404194816946983, -0.019532589241862297, 0.011823763139545918, -0.002110909204930067, 0.009646053425967693, -0.01195068471133709, -0.011028832755982876, -0.00655317073687911, -0.0076219853945076466, 0.0050835502333939075, -0.02228478714823723, 0.009973377920687199, 0.006700132507830858, 0.008477036841213703, -0.007976029999554157, -0.014201875776052475, -0.004856427200138569, 0.010908590629696846, 0.009659413248300552, 0.031823959201574326, -0.03834373131394386, -0.002735497895628214, 0.01841033436357975, 0.0013936342438682914, -0.013072940520942211, 0.01714111678302288, -0.017568642273545265, -0.007408222183585167, 0.0034369074273854494, 0.002254531253129244, 0.01906498335301876, 0.019011542201042175, 0.02180382050573826, 0.013614027760922909, 0.0007130998419597745, 0.012939338572323322, 0.008897882886230946, -0.016125742346048355, -0.019452428445219994, -0.013680828735232353, 0.00026741245528683066, -0.02510378696024418, 0.013674149289727211, -0.019799793139100075, -0.03895829990506172, 0.00042877841042354703, 0.006299327127635479, -0.0012959379237145185, -0.0275754202157259, 0.01957266964018345, -0.008236553519964218, 0.0029308905359357595, 0.010367503389716148, 0.024783141911029816, 0.031102510169148445, 0.00893128290772438, -0.02452929876744747, 0.0028824598994106054, 0.013039540499448776, 0.03067498281598091, 0.0061790854670107365, -0.029659610241651535, 0.003311655716970563, -0.004752885550260544, -0.03551137074828148, -0.003911193925887346, -0.02947256714105606, -0.017114397138357162, -0.003937914501875639, -0.011409597471356392, 0.02476978302001953, -0.017835846170783043, -0.019559310749173164, 0.03478991985321045, 0.02180382050573826, -0.05079542100429535, 0.0009853135561570525, -0.009479050524532795, -0.002581855747848749, -0.007895869202911854, -0.0415501743555069, -0.008991404436528683, -0.0006074708653613925, 0.009953337721526623, 0.02909848280251026, -0.015137089416384697, 0.019692912697792053, -0.002344712382182479, -0.003951274789869785, -0.008704160340130329, 0.018089689314365387, 8.167456144292373e-06, 0.027321577072143555, 0.007822387851774693, 0.03511056676506996, 0.008523797616362572, -0.01744840107858181, 0.01724799908697605, -0.030006974935531616, 0.026640208438038826, -0.03056810237467289, -0.027869345620274544, 0.0031864040065556765, 0.007895869202911854, 0.006015423219650984, 0.00925860833376646, 0.0160055011510849, 0.007996070198714733, 0.0320110023021698, 0.005851760972291231, -0.014696203172206879, -0.02116253226995468, 0.012445012107491493, -0.016499828547239304, 0.0456116683781147, 0.025704994797706604, -0.006847094744443893, 0.0041216169483959675, -0.009352128952741623, 0.008831081911921501, -0.010327422991394997, 0.013974753208458424, -0.015284051187336445, 0.0014570951461791992, 0.029445847496390343, -0.0036306302063167095, 0.009198486804962158, 0.036900829523801804, 0.024636181071400642, 0.010093619115650654, -0.0004947443376295269, -0.007802347652614117, -0.01662006974220276, 0.03008713573217392, -0.014522520825266838, 0.019879953935742378, 0.00651643006131053, 0.03585873544216156, 0.012064246460795403, 0.008550518192350864, -0.012311410158872604, 0.0018203251529484987, -0.013580627739429474, 0.00621582567691803, 0.030514661222696304, 0.03414863348007202, -0.009592612273991108, 0.007575224619358778, 0.030033694580197334, -0.011296035721898079, 0.00221111043356359, -0.017181197181344032, 0.026399724185466766, 0.01641966588795185, 0.009004764258861542, 0.0028707697056233883, -0.6686505079269409, -0.008557198569178581, 0.01683383248746395, -0.013520507141947746, 0.006005403120070696, 0.03500368446111679, 0.02713453397154808, 0.007428262382745743, -0.02627948299050331, -0.0028807898052036762, 0.0036339701618999243, -0.009251927956938744, -1.9231360056437552e-05, -0.024582739919424057, -0.0018086349591612816, -0.01425531692802906, 0.01992003433406353, -0.00025133846793323755, -0.0052204919047653675, 0.016339505091309547, -0.03008713573217392, -0.0009251927840523422, -0.010661426931619644, 0.0016199223464354873, 0.024502579122781754, 0.005617957562208176, -0.012879217974841595, -0.0061690653674304485, -0.009231887757778168, 0.010120339691638947, -0.01659335009753704, 0.002840709174051881, 0.02116253226995468, -0.01250513270497322, 0.05509740114212036, -0.008216513320803642, -0.017221277579665184, 0.041095927357673645, 0.021750381216406822, 0.027709022164344788, -0.0012090967502444983, 0.014215236529707909, 0.018463775515556335, -0.013373544439673424, -0.0070875780656933784, 0.01269217487424612, 0.00857055839151144, 0.0066199712455272675, 0.005644678138196468, -0.02287263609468937, 0.006683432497084141, -0.014669482596218586, 0.008817722089588642, 0.011155754327774048, 0.01820993237197399, 0.00865739956498146, 0.025224028155207634, -0.008096272125840187, -0.0312628336250782, 0.010654747486114502, -0.021509896963834763, -0.0010387543588876724, -0.02180382050573826, -0.02335360273718834, -0.010921950452029705, 0.0025183947291225195, -0.027014292776584625, -0.009465690702199936, 0.007775627542287111, -0.0006993221468292177, 0.010153740644454956, 0.021336214616894722, -0.035805296152830124, -0.011529839597642422, -0.010133699513971806, 0.015818458050489426, 0.03706115111708641, -0.0036840708926320076, -0.009004764258861542, 0.00845031626522541, 0.02122933231294155, -0.0026519966777414083, -0.011650080792605877, 0.007441622670739889, 0.031957563012838364, -0.008350115269422531, -0.03241180628538132, -0.007802347652614117, 0.014843164943158627, -0.022926077246665955, -0.00017441302770748734, 0.026626847684383392, -0.0050935703329741955, -0.013527186587452888, -0.00262360624037683, 0.0004659364349208772, -0.014950046315789223, 0.00712765846401453, 0.00035759370075538754, -0.01310634147375822, -0.00015207647811621428, -0.013734269887208939, 0.012598654255270958, 0.00577827962115407, 0.005494375713169575, 0.01250513270497322, -0.02125605382025242, 0.01810305006802082, 0.029659610241651535, -0.023620806634426117, 0.00529063306748867, -0.017328159883618355, -0.02851063385605812, -0.0074549829587340355, 0.010514465160667896, -0.031075788661837578, 0.016566628590226173, 0.021750381216406822, 0.01834353245794773, -0.02669364959001541, 0.02853735350072384, -0.00829667504876852, 0.018143130466341972, -0.01116243377327919, 0.0029876711778342724, 0.007775627542287111, -0.00966609362512827, -0.012892577797174454, -0.015003487467765808, -0.005841740872710943, -0.0075819045305252075, 0.0048530870117247105, 0.02802966721355915, 0.002986001316457987, 0.02184390090405941, 0.0015105358324944973, 0.005604597274214029, -0.00989321619272232, -0.00607220409438014, -0.018637457862496376, -0.011803722940385342, 0.0046760644763708115, -0.0033149956725537777, -0.015671497210860252, 0.0006262586684897542, -0.0248365830630064, -0.030247457325458527, 0.0064830295741558075, -0.02116253226995468, 0.0010187140433117747, -0.013340144418179989, -0.018437054008245468, -0.012378211133182049, 0.0160055011510849, 0.0035872096195816994, -0.017982808873057365, -0.014482440426945686, -0.011890564113855362, -0.004786286037415266, -0.0072144996374845505, 0.013553907163441181, 0.04606591537594795, -0.007321381010115147, -0.0014387249248102307, -0.00674021290615201, -0.04905859753489494, -0.01731479912996292, 0.01937226764857769, -0.0020691584795713425, -0.027348298579454422, -0.0023797829635441303, -0.0010997102363035083, -0.007996070198714733, 0.003680730937048793, -0.016539908945560455, 0.00032043567625805736, -0.017461761832237244, -0.0013234933139756322, 8.02132926764898e-05, 0.013827791437506676, 0.003199764294549823, 0.008563878014683723, -0.017662163823843002, -0.011442998424172401, 0.028243429958820343, 0.02215118519961834, 0.0003555061703082174, 0.01779576577246189, -0.020735006779432297, 0.011316075921058655, -0.01792936772108078, 0.005481015890836716, -0.011877204291522503, 0.01648646779358387, -0.0029409106355160475, -0.010688147507607937, 0.010741588659584522, 0.014669482596218586, 0.0071009378880262375, 0.005417554639279842, 0.013072940520942211, -0.016219263896346092, 0.034576158970594406, 0.0009034824906848371, 0.009071565233170986, -0.01810305006802082, 0.017181197181344032, -0.02634628303349018, -0.0019589371513575315, 0.015911979600787163, -0.007762267254292965, -0.014843164943158627, -0.0030477920081466436, 0.003500368446111679, 0.015978781506419182, 0.012177808210253716, -0.014469079673290253, 0.03177051991224289, -0.0026152562350034714, -0.00722117954865098, 0.01133611612021923, -0.017902648076415062, 0.02057468332350254, -0.010053538717329502, -0.02077508717775345, -0.006402868311852217, 0.006793654058128595, 0.021817181259393692, 0.008223193697631359, -0.027896065264940262, -0.007060857489705086, -0.008784321136772633, -0.009572572074830532, -0.006452969275414944, -0.0014120044652372599, 0.008690799586474895, 0.011716881766915321, -0.002132619498297572, 0.019105063751339912, -0.01751520112156868, -0.011710201390087605, 0.03380126506090164, 0.02414185367524624, -0.013647428713738918, 0.017662163823843002, -0.0016057271277531981, 0.031717076897621155, 0.007094257976859808, -0.026560047641396523, -0.0016992484452202916, -0.014161795377731323, 0.001479640486650169, -0.018356893211603165, 0.0013059580232948065, -0.009819735772907734, -0.019946755841374397, 0.05140998959541321, 0.016473107039928436, 0.01444235909730196, 0.0031279532704502344, 0.04189753904938698, 0.004873127210885286, 0.009913257323205471, -0.0024783143308013678, 0.00887784268707037, 0.004251878708600998, -0.013974753208458424, -0.005654698237776756, 0.004178397823125124, 0.014175156131386757, -0.006790313869714737, -0.009973377920687199, -0.005133650731295347, -0.021376295015215874, 0.005784959997981787, 0.0038911537267267704, 0.004064836073666811, 0.0062425462529063225, 0.013734269887208939, 0.003573849331587553, -0.012378211133182049, -0.02448921836912632, 0.04582543298602104, 0.015217250213027, -0.01509700808674097, -0.032438527792692184, -0.029873372986912727, 0.0047395252622663975, -0.00035300111630931497, 0.03500368446111679, 0.029632888734340668, 0.020855247974395752, 0.010133699513971806, -0.0007682106224820018, 0.0002553047670517117, -0.01406827475875616, 0.020654845982789993, -0.0171678364276886, 0.019773073494434357, -0.015016847290098667, -0.006479689385741949, 0.01233145035803318, -0.019906675443053246, -0.0033851368352770805, 0.017969448119401932, 0.004686084575951099, 0.009939976967871189, 0.011329436674714088, -0.009699493646621704, 0.007955989800393581, -0.021750381216406822, -0.005354093853384256, -0.0016257674433290958, -0.0017000834923237562, -0.003194754011929035, -0.007321381010115147, -0.030006974935531616, -0.0223916694521904, 0.007207819726318121, -0.006342747714370489, -0.012819097377359867, -0.025290830060839653, -0.001151480944827199, -0.015177169814705849, 0.05611277371644974, 0.01926538534462452, -0.001477135345339775, 0.02654668688774109, 0.024475857615470886, -0.00704081729054451, -0.020601404830813408, -0.0010045188246294856, 0.012358170934021473, -0.023580726236104965, 0.019759712740778923, 0.00047219902626238763, 0.014816444367170334, 0.001982317306101322, -0.00467940466478467, 0.012805736623704433, 0.01851721666753292, -0.018771059811115265, -0.004054815974086523, -0.01098875142633915, -0.003894493682309985, 0.004165037535130978, 0.02074836567044258, 0.016366226598620415, 0.012010806240141392, -0.003797632409259677, 0.025464512407779694, 0.005003388971090317, 0.02212446555495262, -0.008770961314439774, -0.02068156562745571, 0.0223916694521904, 0.003333366010338068, -0.00935880932956934, 0.014909965917468071, 0.0021075690165162086, 0.007274620700627565, -0.00577159970998764, 0.018557297065854073, -0.007261260412633419, 0.012064246460795403, 0.029419125989079475, 0.005794980097562075, -0.01830345205962658, 0.015925340354442596, -0.023260081186890602, -0.008416916243731976, 0.027361657470464706, -0.005557836964726448, -0.03273245319724083, 0.036179378628730774, 0.0007394027197733521, -0.028457192704081535, -0.006913895718753338, -0.002341372426599264, 0.025264108553528786, -0.019078344106674194, -0.022578712552785873, -0.0036740507930517197, -0.009405570104718208, -0.012752296403050423, -0.00887784268707037, 0.018183210864663124, 0.00030665798112750053, -0.015591335482895374, -0.02647988498210907, 0.00011825851106550545, -0.015203890390694141, -0.038076527416706085, -0.0006212485604919493, -0.017942728474736214, -0.017635444179177284, -0.007508423645049334, 0.013453706167638302, 0.013707549311220646, 0.0320110023021698, 0.008831081911921501, -0.004869787488132715, 0.012117687612771988, 0.02269895374774933, 0.0015155458822846413, -0.012084286659955978, 3.076495704590343e-05, -0.008069551549851894, 0.0036373103503137827, -0.0010379193117842078, 0.02497018501162529, -0.028083108365535736, -0.02565155364573002, 0.022298147901892662, 0.012257969006896019, 0.004492362029850483, 0.014909965917468071, -0.02414185367524624, -0.00915172602981329, -0.009626013226807117, 0.025958837941288948, -0.008243233896791935, -0.008343434892594814, -0.021683579310774803, 0.003724151523783803, 0.0007932609296403825, -0.019826514646410942, -0.021202612668275833, 0.01058126613497734, -0.003456947859376669, 0.012131047435104847, 0.025397710502147675, -0.01834353245794773, -0.023313522338867188, 0.02582523599267006, -0.027709022164344788, 0.006933935917913914, 0.005868460983037949, 0.007949309423565865, 0.008029471151530743, -0.013353504240512848, 0.0335875041782856, 0.014856524765491486, -0.03222476691007614, -0.0018403654685243964, -0.03722147271037102, 0.02864423580467701, 0.024088412523269653, -0.001530576148070395, 0.012538532726466656, -0.02112245187163353, -0.019185224547982216, -0.006994056515395641, 0.02167021855711937, 0.019879953935742378, 0.021002210676670074, -0.008122991770505905, 0.0010972052114084363, -0.03179723769426346, -0.009418929927051067, 0.009312048554420471, 0.025811877101659775, -0.020561324432492256, -0.008076231926679611, -0.032892774790525436, 0.014241957105696201, 0.01662006974220276, -0.010394223965704441, -0.023233361542224884, -0.036152660846710205, 0.004458961542695761, 0.01947914995253086, -0.01408163458108902, 0.011997445486485958, -0.005467655602842569, -0.018156491219997406, -0.017541922628879547, -0.008811041712760925, -0.0007406552322208881, -0.013607348315417767, -0.0171678364276886, -0.01001345831900835, 0.01847713440656662, 0.02781590446829796, 0.016713591292500496, 0.0003701188543345779, 0.0027037672698497772, 0.01885122060775757, -0.00923856720328331, 0.007862468250095844, -0.004696104675531387, 0.014148435555398464, -0.012565253302454948, 0.021656859666109085, 0.015190529637038708, 0.007281300611793995, 0.0006404538289643824, -0.004098236560821533, 0.010180460289120674, 0.04299307242035866, -0.0057615796104073524, -0.010387543588876724, -0.03321341797709465, -0.037836041301488876, -0.01668686978518963, 0.012164448387920856, -0.008497077040374279, -0.002222800627350807, -0.012164448387920856, 0.02171029895544052, -0.008797681890428066, 0.014282037504017353, 0.01164340041577816, -0.0204410832375288, 0.02191070280969143, -0.013113020919263363, 0.03185068070888519, -0.03489680215716362, 0.00778898736461997, -0.020066997036337852, -0.021924063563346863, 0.008116312325000763, 0.004856427200138569, 0.006643351633101702, 0.01672695018351078, 0.005965322256088257, -0.008062871173024178, 0.00827663391828537, -0.009519131854176521, 0.011142393574118614, 0.0024616140872240067, -0.02280583418905735, -0.003988014999777079, -0.02549123205244541, -0.016339505091309547, -0.01342698559165001, -0.012411611154675484, -0.024168573319911957, -0.005430914927273989, 0.011523159220814705, -0.0073280613869428635, 0.03046122007071972, -0.00836347509175539, -0.02709445357322693, 0.007301340810954571, -0.0050935703329741955, 0.007935949601233006, -0.01523061003535986, 0.028350312262773514, 0.025638194754719734, -0.008510437794029713, -0.0167937520891428, -0.009011444635689259, 0.0024649540428072214, -0.024128492921590805, 0.020561324432492256, 0.022071024402976036, -0.032785892486572266, -0.007441622670739889, 0.023487204685807228, 0.006927255541086197, -0.00989321619272232, -0.018383614718914032, 0.017875926569104195, 0.004114937037229538, 0.016807112842798233, -0.016099022701382637, -0.021149171516299248, -0.021549977362155914, 0.016326146200299263, -0.029045041650533676, -0.016646789386868477, 0.007929269224405289, -0.01648646779358387, -0.018837859854102135, 0.02949928678572178, -0.019973475486040115, 0.018049608916044235, -0.01014706026762724, -0.030621543526649475, -0.015978781506419182, -0.001890466082841158, -0.017528561875224113, -0.001907166326418519, 0.017835846170783043, 0.044703178107738495, -0.002232820726931095, 0.012698855251073837, 0.00485976692289114, 0.0031062429770827293, 0.0057615796104073524, -0.023366963490843773, -0.009038165211677551, 0.03281261399388313, -0.015444373711943626, -0.004108256660401821, -0.01348042581230402, 0.004438921343535185, 0.0036606905050575733, 0.014722923748195171, -0.01070150826126337, 0.0002928802859969437, -0.03559153154492378, -0.0003375534142833203, 0.02005363628268242, 0.010040178894996643, -0.034469276666641235, 0.0012241268996149302, -0.03601905703544617, -0.008737560361623764, -0.014161795377731323, 0.014896606095135212, 0.006673412397503853, 0.00704081729054451, -0.01589861884713173, -0.00013047055108472705, -0.012237928807735443, 0.0059386021457612514, 0.020454442128539085, -0.013193182647228241, 0.03382798656821251, 0.021282773464918137, -0.02146981656551361, 0.017408320680260658, -0.004846407100558281, 0.012264649383723736, -0.017368240281939507, -0.0015614716103300452, -0.005784959997981787, -0.01624598354101181, 0.027107814326882362, -0.006830394268035889, -0.014803084544837475, -0.017902648076415062, 0.0003699101216625422, -0.006342747714370489, 0.021964143961668015, -0.021830542013049126, 0.04705457016825676, 0.011422958225011826, -0.003301635617390275, -0.023166559636592865, -0.021042291074991226, 0.022926077246665955, -0.009018125012516975, 0.002184390090405941, 0.02733493782579899, -0.014909965917468071, 0.004345399793237448, 8.459710807073861e-05, 0.0022144506219774485, 0.02606572024524212, 0.0040581561625003815, -0.020962130278348923, -0.003360086353495717, 0.028430473059415817, -0.026880690827965736, -0.01426867675036192, -0.0011114003136754036, 0.008350115269422531, 0.00218606018461287, 0.014094994403421879, 0.024195294827222824, -0.014402278698980808, 0.002548455260694027, 0.02335360273718834, -0.0019054963486269116, 0.010587946511805058, -0.02586531639099121, -0.014362198300659657, -0.004275259096175432, 0.00043128346442244947, -0.02778918296098709, -0.01342698559165001, -0.011710201390087605, 0.008784321136772633, 0.01176364254206419, -0.030381059274077415, -0.020721646025776863, 0.004512402229011059, -0.023781128227710724, -0.00925860833376646, -0.003071172395721078, 0.022926077246665955, 0.04122953116893768, -0.008470357395708561, 0.008196473121643066, 0.02304631844162941, -0.008330075070261955, 0.013460385613143444, -0.0041115968488156796, -0.0009485731134191155, 0.007588584907352924, -0.012077607214450836, 0.021964143961668015, 0.005120290908962488, -0.03529760614037514, 0.0009944987250491977, 0.03647330403327942, 0.007929269224405289, 0.016326146200299263, 0.0039345743134617805, -0.03679394721984863, 0.0012383221182972193, -0.028377031907439232, 0.015925340354442596, 0.013179821893572807, 0.011636720970273018, -0.001389459241181612, -0.02335360273718834, -0.012084286659955978, 0.016366226598620415, 0.030487941578030586, -0.007414902560412884, 0.009118326008319855, 0.009686133824288845, -0.0027221376076340675, 0.0015021857107058167, -0.016366226598620415, 0.008216513320803642, -0.012324769981205463, -0.02637300454080105, 0.014629402197897434, 0.006606611423194408, -0.01509700808674097, 0.017181197181344032, 0.004195097833871841, 0.0006734367925673723, 0.011349476873874664, -0.014709562994539738, -0.01390795223414898, -0.002441573655232787, 0.020187238231301308, 0.0016817132709547877, -0.005968662444502115, -0.01565813645720482, 0.02428881637752056, -0.02534426935017109, 0.02497018501162529, -0.02122933231294155, -0.00963269267231226, -0.020735006779432297, 0.01641966588795185, -0.011569919995963573, -0.0017668843502178788, -0.003371776547282934, -0.0023096418008208275, -0.020494522526860237, -0.001965617062523961, -0.004408861044794321, 0.003540448844432831, 0.0091851269826293, -0.006422908511012793, 0.0070274570025503635, 0.011843803338706493, -0.05563180893659592, -0.019706271588802338, 0.01116243377327919, 0.006449629087001085, 0.020601404830813408, 0.2087395191192627, 0.0069005354307591915, 0.006913895718753338, 0.04283275082707405, -0.016392946243286133, -0.001632447587326169, 0.02501026540994644, -0.002772238338366151, 0.004131637047976255, 0.016820471733808517, 0.0010671447962522507, 0.004522422328591347, -0.026439804583787918, 0.00669011240825057, 0.00012598236207850277, -0.0033250160049647093, -0.030113855376839638, -0.015324131585657597, -0.014228596352040768, -0.020908689126372337, -0.0156314168125391, 0.019826514646410942, -0.029285524040460587, -0.004215138033032417, 0.04248538613319397, 0.014455719850957394, -0.01310634147375822, 0.007782307453453541, 0.0248365830630064, -0.009292008355259895, -0.013493786565959454, -0.016954073682427406, 0.01998683623969555, 0.002346382476389408, -0.028831278905272484, -0.006462989374995232, -0.0037909522652626038, 0.00046927647781558335, 0.02754870057106018, 0.01311970129609108, -0.0017217937856912613, 0.019626110792160034, 0.004301979206502438, -0.010774988681077957, -0.020107077434659004, 0.032652292400598526, 0.0011848813155665994, -0.010928630828857422, -0.002845719223842025, 0.003303305711597204, -0.03225148469209671, 0.010020138695836067, 0.023714328184723854, 0.02180382050573826, -0.000884277222212404, 0.013313423842191696, 0.02472970075905323, 0.0005698953755199909, -0.003360086353495717, -0.0029192003421485424, -0.04042791947722435, 0.01118247490376234, -0.017234638333320618, 0.015163809061050415, -0.02476978302001953, 0.014709562994539738, -0.04050808027386665, -0.0025517952162772417, -0.012017485685646534, -0.017501842230558395, 0.014121714979410172, -0.013894591480493546, 0.003563829232007265, 0.0033884767908602953, -0.03128955140709877, -0.03527088835835457, 0.018089689314365387, 0.020895328372716904, 0.02888471819460392, 0.01030738279223442, -0.002319662133231759, -0.004158357623964548, -0.011055552400648594, -0.003754211822524667, -0.014829805120825768, -0.03032761812210083, 0.011042192578315735, -0.009639373049139977, -0.009111645631492138, 0.0027288177516311407, 0.024716341868042946, -0.010280662216246128, -0.004301979206502438, -0.00751510402187705, 0.016165822744369507, 0.024996904656291008, 0.014535880647599697, 0.011015472002327442, -0.02157669886946678, 0.010921950452029705, -0.014829805120825768, -0.012304729782044888, 0.02149653621017933, 0.023193281143903732, 0.0025517952162772417, -0.007575224619358778, -0.0017652143724262714, 0.00317304371856153, 0.0015932020032778382, -0.01299945916980505, -0.018316812813282013, -0.027147894725203514, 0.027869345620274544, -0.007495063357055187, 0.033747825771570206, 0.0023213319946080446, 0.0010821749456226826, -0.019011542201042175, -0.011957365088164806, -0.006509749684482813, -0.011683481745421886, -0.010821749456226826, 0.025197308510541916, -0.03155675530433655, -0.022645512595772743, -0.01569821685552597, -0.010060219094157219, 0.013139741495251656, 0.008837762288749218, -0.038076527416706085, 0.005470995791256428, -0.01806296966969967, 0.02654668688774109, -0.0011464707786217332, -0.008336755447089672, 0.01473628357052803, 0.00428527919575572, 0.0009519131272099912, 0.004068176262080669, 0.013667468912899494, 0.0023330221883952618, -0.0048430669121444225, 0.01786256581544876, 0.011690161190927029, 0.0009944987250491977, -0.01799616776406765, 0.01565813645720482, 0.01641966588795185, -0.01635286584496498, 0.0050301095470786095, -0.01565813645720482, -0.007735546678304672, 0.022030944004654884, 0.004195097833871841, 0.00743494275957346, -0.021763740107417107, -0.02411513216793537, -0.018503855913877487, -0.0013585637789219618, 0.022792475298047066, -0.024996904656291008, 0.02016051858663559, 0.0272013358771801, -0.014121714979410172, -0.013059580698609352, -0.002201090333983302, -0.1738961637020111, 0.025117147713899612, 0.008857802487909794, -0.013573947362601757, -0.006766933482140303, -0.008630678988993168, 0.00975293479859829, -0.0021944104228168726, -0.0113828768953681, 0.00651643006131053, 0.008430276066064835, 0.011088953353464603, -0.03409519046545029, -0.008517117239534855, -0.012732256203889847, 0.01847713440656662, -0.0008984723826870322, 0.0240483321249485, 0.008497077040374279, 0.00923856720328331, 0.016339505091309547, -0.030514661222696304, 0.017662163823843002, -0.018664177507162094, 0.014014833606779575, -0.003226484637707472, -0.013333464041352272, 0.0006771943299099803, 0.00023964830324985087, -0.014803084544837475, -0.013213222846388817, -0.018570655956864357, 0.0056880987249314785, 0.00879100151360035, -0.0018570655956864357, 0.007869148626923561, -0.014121714979410172, 0.0016257674433290958, -0.01291261799633503, 0.025437790900468826, 0.01957266964018345, 0.003707451280206442, 0.009993418119847775, -0.009986737743020058, -0.01930546574294567, 0.040802001953125, 0.016085661947727203, -0.010180460289120674, 0.015925340354442596, -0.01792936772108078, -0.00419175811111927, -0.01878441870212555, 3.907593054464087e-06, -0.01338022481650114, 0.0244224164634943, 0.0204410832375288, -0.0033483961597085, 0.006142344791442156, -0.0017535241786390543, 0.0044355811551213264, -0.01871761865913868, -0.028831278905272484, 0.005070189945399761, 0.0009736234205774963, 0.0027054373640567064, -0.004261898808181286, -0.018022889271378517, -0.005430914927273989, -0.03305309638381004, 0.007675426080822945, -0.01001345831900835, -0.01672695018351078, -0.01648646779358387, -0.013854511082172394, 0.000391202891478315, 0.013113020919263363, -0.03666034713387489, 0.02569163404405117, 0.02050788328051567, -0.027495259419083595, -0.0007206149748526514, 0.040748562663793564, 0.00660327123478055, 0.00630266685038805, 0.00433537969365716, 0.01830345205962658, -0.00033859716495499015, -0.009131685830652714, 0.008764280937612057, -0.019225304946303368, 0.023647526279091835, -0.034121911972761154, 0.003557149088010192, -0.02435561642050743, -0.0015372561756521463, 0.014616041444242, -0.01878441870212555, 0.0022528611589223146, -0.001649982761591673, 0.003238174831494689, -0.0008082911372184753, 0.006439608987420797, -0.048444028943777084, 0.00612230459228158, 0.03572513163089752, 0.00761530501767993, 0.004482341930270195, 0.0013953042216598988, 0.03970646858215332, 0.02840375155210495, -0.0043520801700651646, 0.029392406344413757, 0.02157669886946678, 0.012959378771483898, -0.006048823706805706, 0.01871761865913868, 0.030995627865195274, -0.018624097108840942, 0.020040277391672134, -0.02346048317849636, 0.041950978338718414, -0.00877764169126749, 0.00462930416688323, 0.013627388514578342, 0.004418881144374609, -0.014415639452636242, -0.07000736892223358, -0.014696203172206879, 0.011957365088164806, 0.010741588659584522, -0.003867773339152336, 0.03564497083425522, 0.015978781506419182, 0.010661426931619644, -0.014950046315789223, 0.02899160049855709, -0.016299424692988396, -0.006506409961730242, 0.0034185373224318027, 0.0037642319221049547, 0.02802966721355915, 0.00722117954865098, -0.0016357875429093838, -0.017301438376307487, -0.027976226061582565, 0.027762463316321373, 0.0012257968774065375, -0.015738297253847122, 0.0013777690473943949, -0.01810305006802082, 0.01943906769156456, -0.010440983809530735, -0.03588545694947243, 0.01262537483125925, 0.008530477993190289, 0.005958642344921827, 0.007955989800393581, -0.002436563605442643, 0.024222014471888542, -0.045291025191545486, -0.02221798710525036, 0.01652654819190502, -0.022551991045475006, -0.00704081729054451, 0.010140379890799522, -0.013894591480493546, 0.0012441672151908278, 0.0328393317759037, 0.0018954761326313019, -0.021082371473312378, 0.013573947362601757, -0.013239942491054535, 0.006800333969295025, 0.010908590629696846, -0.0017852546880021691, -0.020588044077157974, -0.030407780781388283, -0.004959968384355307, -0.0027288177516311407, -0.004064836073666811, 0.024702981114387512, -0.01378771010786295, 0.02332688309252262, 0.0156314168125391, -0.012678815051913261, 0.00288579985499382, -0.013026179745793343, 0.0091851269826293, -0.008944643661379814, 0.04761569947004318, 0.010414264164865017, 0.0032131243497133255, -0.006326047237962484, -0.008697479963302612, 0.0004177145310677588, -0.030781865119934082, -0.012131047435104847, 0.011970724910497665, -0.013760990463197231, -0.0075819045305252075, -0.018450414761900902, 0.032652292400598526, -0.029819931834936142, -0.03342718258500099, 0.04491693899035454, -0.010427623987197876, -0.023059679195284843, -0.008049511350691319, 0.015484454110264778, -0.03008713573217392, 0.004382140468806028, 0.011442998424172401, 0.007508423645049334, -0.01613910309970379, 0.01078834943473339, -0.022485191002488136, -0.01652654819190502, 0.01878441870212555, 0.0007210324401967227, -0.02046780288219452, -0.011930644512176514, 0.009906576946377754, 0.018383614718914032, -0.014495800249278545, 0.008403556421399117, -0.00817643292248249, 0.00013047055108472705, -0.012672134675085545, -0.0512496680021286, 0.02700093202292919, -0.00884444173425436, -0.011496438644826412, 0.02468962036073208, 0.0005423399852588773, 0.015564614906907082, -0.017234638333320618, -0.01895810104906559, -0.006152364891022444, -0.008082911372184753, 0.009425610303878784, -0.005337393842637539, -0.021336214616894722, -0.011503119021654129, -0.009398889727890491, 0.011770322918891907, 0.01250513270497322, 0.014909965917468071, -0.003583869431167841, 0.018730979412794113, 0.0008583918679505587, 0.007421582471579313, -0.0027755782939493656, -0.02064148522913456, -0.00796934962272644, -0.020347561687231064, 0.0066199712455272675, -0.01933218725025654, -0.01779576577246189, 0.011944005265831947, -0.025130506604909897, 0.0071410187520086765, 0.027107814326882362, -0.007107618264853954, -0.024034971371293068, 0.0013543886598199606, 0.02661348693072796, -0.007688786368817091, -0.019345548003911972, -0.006436268799006939, -0.03959958627820015, 0.00874424073845148, -0.007067537400871515, 0.004408861044794321, -0.007535144221037626, -0.016780391335487366, 0.0030795226339250803, 0.025504592806100845, -0.011202515102922916, 0.007247900124639273, 0.011302716098725796, -0.020494522526860237, -0.010928630828857422, -0.01212436705827713, -0.03874453529715538, 0.013146421872079372, 0.01281241700053215, -0.012665455229580402, -0.00973957497626543, 0.02936568483710289, -0.0001114740371122025, -0.014335477724671364, -0.009191807359457016, 0.028350312262773514, -0.038557492196559906, -0.012558573856949806, -0.00424185860902071, 0.015618056058883667, -0.034843362867832184, -0.022899355739355087, 0.010240581817924976, 0.03337373957037926, 0.005033449735492468, 0.024609459564089775, -0.016700230538845062, -0.0005920231924392283, -0.004281939007341862, -0.024302175268530846, 0.026493245735764503, 0.005430914927273989, -0.016085661947727203, -0.03310653567314148, 0.006366128101944923, 0.014335477724671364, 0.0211892519146204, -0.003734171623364091, 0.0013034529983997345, -0.005257232580333948, 0.024088412523269653, -0.008710840716958046, 0.006509749684482813, -0.0020157177932560444, -0.006245886441320181, -0.003264895174652338, 0.006566530559211969, -0.0026970873586833477, 0.0029893412720412016, 0.017475120723247528, 0.024569379165768623, 0.02236494980752468, -0.002783928532153368, 0.0003678225912153721, -0.038691096007823944, 0.0075685447081923485, 0.010427623987197876, -0.014936686493456364, 0.003643990261480212, -0.02273903414607048, 0.0012308070436120033, 0.005337393842637539, -0.01926538534462452, -0.02414185367524624, 0.022658873349428177, -0.012097647413611412, 0.008082911372184753, -0.01085514947772026, -0.0064195687882602215, -0.027735743671655655, 0.030300898477435112, 0.011716881766915321, 0.006526450160890818, 0.005086890421807766, 0.004071516450494528, 0.00713433837518096, -0.01724799908697605, 0.03438911586999893, -0.0384773313999176, 0.007635345682501793, 0.0042585586197674274, 0.021590057760477066, -0.0031797238625586033, -0.008871162310242653, -0.0004688589833676815, -0.014455719850957394, 0.005835060495883226, 0.014094994403421879, 0.01978643238544464, -0.003114592982456088, 0.053734663873910904, 0.004786286037415266, -0.014335477724671364, 0.017368240281939507, 0.0026352964341640472, 0.016713591292500496, 0.01050778478384018, 0.020120438188314438, -0.018437054008245468, -0.016994154080748558, 0.016125742346048355, -0.0003177218895871192, 0.01215776801109314, -0.0041216169483959675, -0.02167021855711937, 0.0006634166347794235, -0.025918757542967796, 0.015791738405823708, -0.027896065264940262, -0.002079178811982274, 0.021630138158798218, -0.003600569674745202, 0.0259989183396101, 0.007982710376381874, -0.0196528322994709, -0.02291271649301052, 0.02201758325099945, -0.002782258437946439, 0.007475023157894611, 0.006543150171637535, 0.022752394899725914, -0.00019330516806803644, -0.02936568483710289, 0.0026887371204793453, 0.010213861241936684, -0.01641966588795185, -0.017060955986380577, -0.005474335514008999, 0.01186384353786707, 0.002803968731313944, 0.006162384990602732, 0.010935311205685139, -0.02424873411655426, -0.02685397118330002, 0.02376776747405529, 0.014375558122992516, -0.013533866964280605, -0.019358906894922256, -0.0023113118950277567]" +1,potatoes,"[0.005025846417993307, -0.031079445034265518, 0.010788600891828537, -0.038448531180620193, -0.028804078698158264, 0.0006355029181577265, -0.021008361130952835, -0.021977977827191353, 0.002204261953011155, -0.029864193871617317, 0.007071737665683031, 0.023425938561558723, -0.010129261761903763, 0.008998042903840542, -0.0056205447763204575, 0.03870709612965584, 0.03185513988137245, -0.005384604446589947, 0.04131859913468361, -0.03092430718243122, -0.014492536894977093, -0.011784074828028679, 0.019327692687511444, -0.013509992510080338, -0.034363213926553726, -0.013652202673256397, 0.00014140243001747876, -0.03278597071766853, -0.004841619171202183, -0.014570106752216816, 0.0016564284451305866, -0.028416231274604797, -0.01855199784040451, -0.01502259448170662, -0.022546818479895592, -0.03017446957528591, 0.001957009546458721, -0.009722023271024227, 0.02444726787507534, 0.015759503468871117, 0.00257271621376276, 0.008448593318462372, -0.008157707750797272, 0.0018810563487932086, -0.010969596914947033, 0.004499021451920271, -0.008914008736610413, -0.018009012565016747, -0.014440824277698994, 0.003429210977628827, 0.03645758703351021, 0.025184176862239838, -0.014595963060855865, -0.0007870055269449949, 0.00609888881444931, 0.003716863924637437, -0.006544912233948708, 0.015268229879438877, -0.014389111660420895, -0.02058172971010208, 0.0032918485812842846, 0.012753691524267197, -0.02849380113184452, 0.01740138605237007, -0.030122756958007812, -0.0019796339329332113, 0.0027876480016857386, -0.0015489626675844193, 0.0012920141452923417, 0.005584992002695799, 0.00521653750911355, 0.031182872131466866, 0.011118271388113499, -0.011486724950373173, 0.011577222496271133, -0.01401419285684824, -0.01617320626974106, -0.00769875617697835, -0.00234808842651546, 0.008422737009823322, 0.02208140306174755, -0.014867455698549747, -0.0009324480197392404, 0.005723970476537943, 0.010006443597376347, 0.003522940445691347, -0.022908808663487434, 0.013341925106942654, -0.01848735846579075, -0.024085277691483498, 0.013626346364617348, 0.026076223701238632, 0.011680648662149906, 0.02427920140326023, -0.024938540533185005, 0.02451190911233425, 0.01698768325150013, 0.029321208596229553, -0.025274673476815224, -0.019857749342918396, -0.018358075991272926, 0.020840294659137726, -0.0036554548423737288, -0.02051708847284317, 0.003762112697586417, -0.0014010961167514324, 0.004327722359448671, -0.0066321780905127525, 0.021861623972654343, -0.0023383921943604946, -0.0027617914602160454, 0.02421456016600132, 0.01999996043741703, -0.018758850172162056, -0.0006823677103966475, -0.01091788336634636, 0.00817710068076849, -0.014673531986773014, -0.010795065201818943, -0.006910134572535753, 0.01860371232032776, -0.0021994137205183506, -0.00025412035756744444, -0.033897798508405685, 0.019922390580177307, -0.0049967579543590546, -0.011073022149503231, 0.010568821802735329, -0.005449245683848858, -0.012811868451535702, 0.0307433120906353, 0.02010338567197323, -0.007071737665683031, -0.009709094651043415, -0.021887479349970818, 0.00020351850253064185, -0.029890049248933792, -0.01628956012427807, -0.013264356181025505, -0.020542945712804794, 0.007116986438632011, 0.01763409562408924, -0.04341296851634979, -0.011893964372575283, -0.02168062888085842, 0.03425978869199753, 0.01740138605237007, 0.024899756535887718, -0.008067210204899311, -0.006658034399151802, 0.0043858992867171764, 0.0021606290247291327, 0.029321208596229553, -0.025572022423148155, 0.0018697441555559635, -0.007291517220437527, -0.01808658242225647, 0.006590161006897688, -0.007213947828859091, 0.004560430534183979, -0.019806036725640297, -0.006118281278759241, 0.010213295929133892, -0.014052977785468102, 0.0058080037124454975, 0.025067823007702827, 0.03495791181921959, 0.0116741843521595, 0.005313499365001917, -0.010594678111374378, 0.0012887821067124605, 0.016948899254202843, -0.023025164380669594, 0.02358107641339302, 0.013102753087878227, -0.006974775809794664, -0.009948266670107841, 0.008506770245730877, -0.00016422882617916912, -0.004402059596031904, -0.019379405304789543, 0.0036845433060079813, 0.027537113055586815, 0.04206843301653862, 0.004848083481192589, -0.0019634736236184835, 0.010943739674985409, 0.0049935257993638515, -0.02994176186621189, -0.00895925797522068, 0.012527447193861008, 0.013367781415581703, 0.013639274053275585, -0.005778915248811245, -0.6917116045951843, -0.019754324108362198, 0.020542945712804794, -0.011279873549938202, 0.026218434795737267, 0.04501606896519661, 0.02046537585556507, 0.0008977034012787044, -0.018280506134033203, -0.014647675678133965, 0.015449224971234798, 0.003010659711435437, 0.004473164677619934, -0.0022721351124346256, 0.011687112972140312, -0.026257218793034554, 0.0153975123539567, -0.0032579118851572275, -0.0025985727552324533, 0.011014845222234726, -0.02277952805161476, 0.018810562789440155, -0.004243689123541117, 0.0018632799619808793, 0.011609543114900589, 0.011506117880344391, 0.002569484058767557, -0.00223981449380517, -0.0064899674616754055, 0.02138327993452549, -0.021486705169081688, -0.008881689049303532, 0.0094828512519598, -0.023490579798817635, 0.046438172459602356, 0.006283116061240435, -0.02085322141647339, 0.03899151831865311, 0.0013695835368707776, 0.039560358971357346, -0.01231413148343563, -0.023270800709724426, 0.03335481137037277, -0.007647043559700251, -0.01738845929503441, 0.01091788336634636, 0.024356771260499954, 0.004576590843498707, -0.0006912559038028121, -0.02965734153985977, 0.008209421299397945, 0.013109217397868633, -0.001945697469636798, -0.008170636370778084, 0.022792454808950424, 0.008241741918027401, -0.009360033087432384, -0.014957953244447708, -0.0047414256259799, 0.009547492489218712, -0.014841599389910698, 0.00838395208120346, -0.027666395530104637, -0.02358107641339302, -0.011958605609834194, -0.021486705169081688, -0.030122756958007812, 0.01548800989985466, 0.019806036725640297, -0.011628936044871807, 0.006121512968093157, 0.028338663280010223, 0.014078834094107151, -0.021590130403637886, 0.013820269145071507, 0.024240415543317795, 0.00521653750911355, 0.00910146813839674, -0.0059469821862876415, -0.01323203556239605, -0.021525489166378975, 0.015449224971234798, -0.01034257747232914, 6.039903746568598e-05, 0.04294755309820175, 0.004702640697360039, -0.029347063973546028, 0.010743352584540844, 0.004233992658555508, -0.0007538769277743995, 0.007181627210229635, 0.05031663924455643, -0.011021309532225132, -0.028416231274604797, -0.013794412836432457, -0.003198118880391121, -0.037543557584285736, -0.023102732375264168, 0.002506459131836891, 0.010025836527347565, -0.010213295929133892, -0.006839029490947723, 0.005310267210006714, 0.013639274053275585, 0.005426621064543724, 0.014983809553086758, -0.0172721054404974, 0.01918548159301281, 0.017349673435091972, -0.04455065354704857, 0.011977997608482838, -6.274732641031733e-06, -0.008532626554369926, -0.023710358887910843, 0.009702630341053009, -0.03252740576863289, 0.014311541803181171, 0.008487378247082233, -0.00443438021466136, -0.020439518615603447, 0.028467945754528046, 0.008448593318462372, 0.0011635399423539639, -0.004376203287392855, -0.0003718883963301778, -0.00527148274704814, -0.013561705127358437, -0.03102773241698742, -0.016832545399665833, -0.017776304855942726, -0.011273409239947796, 0.003461531363427639, 0.017427243292331696, -0.013846125453710556, 0.0062152426689863205, 0.010646390728652477, 0.013522920198738575, -0.014298614114522934, 0.02231411077082157, 0.0017065253341570497, -0.017181606963276863, -0.0009469922515563667, 0.008241741918027401, 0.009528099559247494, 0.009424674324691296, -0.043490540236234665, -0.0033047767356038094, -0.00263574137352407, 0.0003436079132370651, 0.003131861798465252, 0.023374225944280624, -0.010245615616440773, -0.021060073748230934, -0.00029815713060088456, 0.019987031817436218, -0.009340640157461166, -0.006774388253688812, -0.009450530633330345, -0.007621186785399914, -0.01054296549409628, -0.0011231392854824662, 0.012870045378804207, -0.0015764350537210703, 0.009385889396071434, -0.008215885609388351, -0.024305056780576706, -0.028623083606362343, 0.007692292332649231, -0.03679371997714043, -0.011758217588067055, 0.03115701489150524, -0.015061378479003906, 0.01641884259879589, -0.0021024520974606276, -0.020607586950063705, 0.03710399568080902, -0.004143495112657547, 0.0037330242339521646, 0.014505465514957905, 0.009586276486515999, -0.0024466661270707846, -0.008745942264795303, -0.025119535624980927, -0.0067614600993692875, 0.013445351272821426, 0.009017434902489185, -0.013141538016498089, 0.008416272699832916, -0.007259196601808071, 0.007918535731732845, 0.005142200272530317, 0.0051228078082203865, 0.010504180565476418, -0.00788621511310339, 0.003088229103013873, -0.011234625242650509, 0.0012855500681325793, 0.009456994011998177, 0.014453751966357231, 0.011318658478558064, 0.02919192612171173, -0.017246248200535774, -0.002485450590029359, -0.005332891829311848, -2.6134199288208038e-05, -0.04160301759839058, 0.0010997068602591753, -0.007763397414237261, 0.017414314672350883, 0.004634767770767212, 0.0039818924851715565, -0.02115057222545147, -0.018293434754014015, -0.006040711887180805, 0.015410440973937511, 0.04261142015457153, 0.011085950769484043, -0.010019372217357159, 0.00018513617396820337, -0.00296864309348166, 0.014492536894977093, -0.0066321780905127525, 0.0153975123539567, -0.005911429412662983, -0.023684503510594368, 0.021241068840026855, 0.014557178132236004, 0.034466639161109924, 0.02213311567902565, -0.004082086030393839, -0.002857137005776167, 0.009999980218708515, -0.0016039075562730432, 0.020142169669270515, 0.008157707750797272, -0.0026648298371583223, 0.013613417744636536, -0.016561051830649376, 0.03345824033021927, 0.004689712543040514, -0.01751774176955223, 0.013561705127358437, -0.0025371636729687452, 0.005368444137275219, -0.002577564213424921, 0.013626346364617348, 0.025623736903071404, 0.0030914610251784325, -0.015927569940686226, -0.009903018362820148, -0.008047818206250668, 0.037078142166137695, -0.028157668188214302, -0.02756297029554844, -0.005135736428201199, -0.032113704830408096, 0.013038111850619316, 0.03800897300243378, 0.04819641262292862, 0.023154444992542267, 0.01941818930208683, -0.011370371095836163, -0.0010366818169131875, 0.006742067635059357, -0.008241741918027401, 0.0025436277501285076, -0.003240135731175542, -0.017776304855942726, -0.0005050086765550077, 0.00655784085392952, -0.021809911355376244, 0.004957973025739193, 0.011105342768132687, -0.013690987601876259, -0.021977977827191353, -0.004492557141929865, -0.0006496431888081133, 0.022146044299006462, -0.008952793665230274, -0.008222348988056183, -0.017828017473220825, -0.008364560082554817, 0.01176468189805746, 0.005019382108002901, -0.01680668815970421, -0.008254669606685638, -0.019625041633844376, 0.013626346364617348, -0.016793761402368546, 0.010930811986327171, 0.0046638562344014645, 0.01670326292514801, -0.00436327513307333, 0.012372308410704136, 0.0006011623190715909, 0.011771146208047867, 0.005662561394274235, -0.010135726071894169, 0.005966374650597572, 0.017362602055072784, -0.00840980838984251, -0.01948283053934574, -0.0094828512519598, -0.012049103155732155, 0.032036133110523224, 0.006305740214884281, 0.01520358957350254, -0.016509339213371277, 0.011848715133965015, -0.022585604339838028, -0.0009073995752260089, 0.010077549144625664, -0.004208136349916458, -0.013846125453710556, -0.016586909070611, -0.0037879690062254667, -0.004272777587175369, 0.01063346303999424, 0.03700057044625282, 0.013445351272821426, -0.02069808356463909, -0.02676142007112503, -0.01557850744575262, 0.008739477954804897, 0.053833115845918655, 0.03128629922866821, 0.009146717377007008, 0.0012483814498409629, 0.020478304475545883, 0.002777951769530773, -0.02051708847284317, -0.008487378247082233, 0.014595963060855865, 0.003128629643470049, 0.011939212679862976, 0.0004755161644425243, 0.01884934864938259, -0.003135093953460455, 0.007472512312233448, 0.013755627907812595, -0.011745289899408817, -0.020542945712804794, -0.01802194118499756, -0.009618597105145454, 0.010581749491393566, -0.005850020330399275, 0.024473125115036964, 0.018099511042237282, 0.02195212058722973, 0.004618607461452484, 0.03265668824315071, 0.02704584039747715, 0.04465407878160477, 0.007524225395172834, -0.037414275109767914, -0.011538438498973846, -0.0037685767747461796, -0.01733674667775631, -0.004893332254141569, -0.01129926647990942, 0.03379437327384949, 0.01398833654820919, -0.0063542211428284645, 0.010588213801383972, 0.02318030223250389, 0.0021460847929120064, 0.0024385859724134207, -0.02171941287815571, 0.010471859946846962, -0.025158319622278214, 0.00032805363298393786, 0.040025774389505386, -0.002181637566536665, -0.015914641320705414, 0.0036683829966932535, 0.021124714985489845, 0.0010326417395845056, -0.005830628331750631, -0.005736898630857468, 0.005727202165871859, -0.005142200272530317, 0.0066030896268785, -0.017000611871480942, -0.007252732757478952, -0.004573358688503504, -0.025287602096796036, 0.014195187948644161, -0.002228502184152603, -0.008196492679417133, 0.001449576928280294, -0.022262398153543472, -0.0166386216878891, -0.024486051872372627, 0.01745310053229332, -0.004233992658555508, -0.002716542687267065, -0.023490579798817635, -0.004466700833290815, 0.03733670711517334, 0.021396206691861153, 0.004473164677619934, 0.009114396758377552, 0.007550081703811884, 0.03185513988137245, -0.001763086300343275, -0.01583707146346569, -0.016625693067908287, -0.004095014184713364, -0.005420157220214605, -0.007550081703811884, 0.03387194126844406, -0.008131851442158222, -0.008661909028887749, -0.003926947247236967, 0.0215513464063406, -0.0018632799619808793, -0.003639294533059001, -0.004027141258120537, 0.014906239695847034, 0.0030365162529051304, 0.0004102690436411649, 0.003910787403583527, -0.012553303502500057, -0.019094984978437424, 0.011622471734881401, -0.00712345028296113, -0.0024983789771795273, -0.011861643753945827, 0.005872644949704409, 0.002944402629509568, 0.005155128426849842, 0.008648980408906937, -0.01045893132686615, 0.004224296659231186, 0.03485448658466339, -0.016134420409798622, -0.009515171870589256, 0.0053619802929461, 0.007563009858131409, 0.027356117963790894, 0.0066257137805223465, 0.006716211326420307, -0.03555260971188545, 0.009327712468802929, -0.010329649783670902, -0.012753691524267197, 0.007285053376108408, 0.01588878408074379, -0.011816395446658134, 0.001189396483823657, 0.02040073461830616, -0.033251386135816574, -0.024369698017835617, -0.002952482784166932, -0.003354873741045594, 0.011551366187632084, 0.010885562747716904, 0.004731729160994291, -0.010374898090958595, -0.00450548529624939, 0.011797002516686916, 0.022288255393505096, 0.0014899775851517916, -0.012637336738407612, -0.012727834284305573, -0.017013540491461754, -0.011881035752594471, -0.026140864938497543, -0.015307014808058739, -0.030381321907043457, 0.01103423722088337, 0.009754343889653683, 0.01751774176955223, 0.016974756494164467, -0.0020911400206387043, -0.002508074976503849, -0.008791190572082996, 0.0024240417405962944, -0.002394953044131398, -0.02536517195403576, -0.02576594613492489, -0.002255974803119898, 0.031648289412260056, 0.0062152426689863205, 0.0344407819211483, 0.00843566469848156, 0.009573348797857761, 0.02409820631146431, -0.002685838146135211, 0.0013534232275560498, 0.023438867181539536, -0.0047996025532484055, -0.023102732375264168, 0.009017434902489185, 0.022585604339838028, 0.02461533434689045, -0.002349704271182418, 0.0018600479234009981, -0.014647675678133965, 0.007937928661704063, -0.0007385247154161334, 0.007815110497176647, -0.03128629922866821, -0.019431117922067642, -0.010161582380533218, 0.0030445964075624943, -0.0043858992867171764, 0.014169331640005112, 0.0024935307446867228, -0.024641191586852074, 0.0022220381069928408, -0.013626346364617348, 0.005853252485394478, -0.012934686616063118, 0.02519710548222065, -0.014841599389910698, 0.010833850130438805, -0.0027763356920331717, 0.017543597146868706, -0.016910115256905556, 0.011454404331743717, -0.0005934861837886274, -0.009004506282508373, 0.0059405178762972355, 0.002852289006114006, -0.0018390396144241095, -0.025416884571313858, -0.005061398725956678, -0.004240456968545914, 0.024576550349593163, -0.021641843020915985, -0.01054942887276411, -0.000906591594684869, -0.03775040805339813, 0.01274722721427679, 0.01034257747232914, -0.022327039390802383, -0.010135726071894169, 0.01112473476678133, 0.010374898090958595, -0.0208144374191761, 0.024537766352295876, -0.02461533434689045, -0.0029201621655374765, 0.008603732101619244, -0.0014382647350430489, 0.03255326300859451, 0.02018095552921295, 0.03953450173139572, 0.0014237205032259226, -0.011822858825325966, -0.032113704830408096, 0.00696184765547514, 0.011402691714465618, 0.00421783234924078, -0.00455073406919837, 0.0027731035370379686, -0.004880403634160757, -0.03635416179895401, 0.011118271388113499, 0.0025904926005750895, 0.006616017781198025, -0.03449249640107155, 0.03144143521785736, -0.00956042017787695, 0.015811216086149216, -0.014725244604051113, -0.035914599895477295, -0.014505465514957905, 0.03213955834507942, -0.024085277691483498, 0.0005518734687939286, -0.025352243334054947, -0.01681961677968502, -0.0405687615275383, 0.033018678426742554, 0.003778273006901145, 0.013328997418284416, 0.0005244010244496167, -0.007213947828859091, 0.011001916602253914, -0.0041144066490232944, -0.0307433120906353, 0.020969577133655548, -0.0034550672862678766, 0.019056199118494987, -0.004230760503560305, 0.01948283053934574, -0.010807993821799755, 0.007459584157913923, -0.013328997418284416, -0.006512592080980539, -0.006638641934841871, 0.02248217910528183, -0.02230118401348591, -0.02276659943163395, -0.011893964372575283, 0.02409820631146431, 0.01398833654820919, -0.007142842747271061, -0.01640591397881508, 0.003926947247236967, 0.00554943922907114, -0.02206847444176674, 0.011855179443955421, 0.0035455648321658373, -0.03335481137037277, -0.01392369531095028, -0.005313499365001917, -0.008209421299397945, -0.02276659943163395, -0.017181606963276863, 0.022559747099876404, -0.012171921320259571, -0.011506117880344391, -0.008358095772564411, 0.013051040470600128, 0.01738845929503441, -0.0034098185133188963, -0.005707810167223215, 0.002029730938374996, 0.01647055521607399, -0.02121521160006523, 0.023800857365131378, -0.0257788747549057, 0.010969596914947033, -0.006541680544614792, 0.004576590843498707, -0.021745270118117332, -0.005588224157691002, 0.010303793475031853, -0.015746574848890305, -0.03247569501399994, -0.006619249936193228, 0.00023614206293132156, -0.0015756270149722695, 0.009088540449738503, -0.011092414148151875, 0.04894625023007393, 0.001372007536701858, -0.003438906976953149, -0.033432383090257645, -0.010963132604956627, 0.009347104467451572, -0.00255009182728827, 0.019573329016566277, 0.013975407928228378, -0.002430505817756057, -0.0025743322912603617, 0.005630240775644779, 0.0051260399632155895, 0.00806074682623148, -0.03260497748851776, -0.05075620114803314, -0.008442129008471966, 0.033432383090257645, 0.0015457305125892162, 0.007685828022658825, 0.01120876893401146, -0.007957320660352707, -0.01588878408074379, 0.012146065011620522, -0.008118923753499985, -0.007756933104246855, -0.012003853917121887, 0.02201676182448864, 0.006619249936193228, -0.0018244953826069832, -0.0008140740101225674, -0.0208661500364542, -0.016056852415204048, -0.004137031268328428, -0.010652855038642883, -0.000903359497897327, -0.021641843020915985, 0.03294111043214798, 0.014337398111820221, -0.005610848311334848, 0.0036716151516884565, 0.008810583502054214, -0.02686484530568123, -0.01129926647990942, 0.001503713778220117, -0.00517128873616457, 0.006696818862110376, -0.012831260450184345, -0.0055397432297468185, 0.008047818206250668, -0.012087888084352016, 0.024085277691483498, -0.0153975123539567, 0.0094828512519598, 0.016199061647057533, -0.01008401345461607, -0.00019755939138121903, -0.012831260450184345, -0.030950164422392845, -0.013755627907812595, 0.036871287971735, 0.004195208195596933, 0.01566900499165058, 0.013561705127358437, 0.015035522170364857, -0.018564926460385323, -0.02363279089331627, 0.002824816619977355, -0.020077528432011604, 0.0013364549959078431, 0.029166068881750107, -0.012436949647963047, 0.0029395543970167637, 0.00762765109539032, 0.00696184765547514, -0.014479609206318855, -0.0006653994205407798, 0.008299918845295906, 0.0094828512519598, 0.014789885841310024, -0.03376851603388786, -0.007821574807167053, -0.004437612369656563, -0.026787275448441505, 0.022960523143410683, 0.005339355673640966, -0.0026438215281814337, 0.014595963060855865, 0.004644463770091534, -0.042094290256500244, -0.007608258631080389, -0.00774400494992733, -0.020413663238286972, -0.014699388295412064, 0.01826757751405239, -0.006118281278759241, 0.004347114823758602, -0.010497716255486012, 0.01925012283027172, -0.022236542776226997, -0.001197476522065699, -0.01005815714597702, -0.02416284754872322, 0.016780832782387733, 0.006254027597606182, 0.0035681892186403275, -0.006018087267875671, 0.01158368680626154, -0.0014625050825998187, 0.005584992002695799, -0.009211358614265919, -0.013238499872386456, 0.008125387132167816, -0.009999980218708515, -0.01294114999473095, 0.02171941287815571, -0.0209178626537323, -0.028907503932714462, -0.010116334073245525, 0.0012564616044983268, -0.011144127696752548, 0.022844169288873672, 0.18585611879825592, -0.014233972877264023, 0.015992211177945137, 0.04780856519937515, 0.01312214508652687, 0.01993531920015812, 0.03151900693774223, -0.017879731953144073, -0.006289579905569553, 0.020129241049289703, -0.009553955867886543, 0.0056754895485937595, -0.017362602055072784, 0.0038784665521234274, -0.018345147371292114, -0.020271452143788338, -0.008034889586269855, -0.014350326731801033, -0.021111786365509033, -0.028700653463602066, 0.0007167083094827831, -0.022559747099876404, -0.01095666829496622, -0.024136990308761597, 0.02561080828309059, 0.002259206725284457, 0.011932749301195145, 0.011777610518038273, 0.02133156731724739, 0.001026985701173544, -0.0012063647154718637, -0.008093067444860935, 0.009347104467451572, -0.002503226976841688, -0.009166109375655651, -0.008804119192063808, 0.006228170823305845, -0.011169984005391598, 0.01988360472023487, 0.0332772433757782, 0.0015279542421922088, -0.007666435558348894, 0.008306383155286312, -0.00898511428385973, -0.020258523523807526, -0.0003886546764988452, 0.0018713601166382432, -0.018732992932200432, 0.013678058981895447, 0.019056199118494987, -0.014091761782765388, 0.005610848311334848, 0.009172573685646057, 0.02427920140326023, -0.023012235760688782, 0.008261133916676044, 0.005662561394274235, 0.012230098247528076, -0.011176448315382004, 0.00564963323995471, 0.010355506092309952, 0.02531345933675766, -0.01396248023957014, 0.015048450790345669, -0.003425978822633624, 0.01791851595044136, -0.033897798508405685, 0.004831923171877861, -0.011402691714465618, -0.03648344427347183, 0.010924347676336765, -0.030019331723451614, -0.0003133073914796114, 0.004932116717100143, -0.009631525725126266, -0.03208784759044647, 0.009780200198292732, 0.01282479614019394, 0.011131199076771736, 0.03133800998330116, -0.01872006617486477, -0.00579184340313077, 0.0020636674016714096, 0.016095636412501335, -0.040594618767499924, -0.03299282118678093, 0.028985073789954185, -0.008513234555721283, -0.008067210204899311, -0.012184849008917809, 0.01525530219078064, -0.003076916793361306, 0.005239162128418684, -0.014531321823596954, 0.004534573759883642, 0.014802814461290836, -0.005988998804241419, 0.028648940846323967, -0.0032255914993584156, 0.002516155131161213, -0.0208661500364542, -0.018862275406718254, 0.03387194126844406, -0.0055429753847420216, -0.018241722136735916, 0.0033581056632101536, 0.01020036730915308, 0.027666395530104637, 0.00241919350810349, -0.013587561435997486, -0.006305740214884281, -0.014427895657718182, -0.003965732175856829, 0.002666445914655924, 0.01187457237392664, 0.00609888881444931, 0.0024466661270707846, -0.014660604298114777, 0.006955383345484734, -0.001464929198846221, 0.016444697976112366, -0.012960542924702168, -0.010071084834635258, 0.012417557649314404, -0.03345824033021927, -0.01768580824136734, -0.038526102900505066, 0.017892658710479736, -0.017181606963276863, -0.04338711500167847, 0.01872006617486477, -0.01860371232032776, -0.012204241938889027, 0.008325775153934956, -0.00275209522806108, 0.03449249640107155, -0.004922420717775822, 0.005730434320867062, -0.013051040470600128, 0.012165457010269165, 0.002314151730388403, -0.010497716255486012, 0.002638973295688629, 0.01254037581384182, -0.00012514114496298134, -0.011777610518038273, -0.004537805914878845, 0.004288937896490097, -0.001472201314754784, -0.02386549860239029, 0.0007478168699890375, -0.03379437327384949, -0.005048470571637154, -0.0036489907652139664, -0.01036843378096819, -0.01981896534562111, -0.03382023051381111, -0.033716801553964615, -0.002941170474514365, 0.030329609289765358, -0.03149314969778061, 0.0042566172778606415, 0.01797022856771946, -0.002965410938486457, -0.011771146208047867, -0.0053975326009094715, -0.16589494049549103, 0.012126672081649303, 0.004473164677619934, -0.016056852415204048, 0.01780216209590435, 0.008700693026185036, 0.010329649783670902, 0.013794412836432457, 0.017892658710479736, 0.0141046904027462, 0.02351643517613411, 0.016367129981517792, -0.019405260682106018, -0.018241722136735916, 0.016030995175242424, -0.01311568170785904, -0.011480261571705341, 0.025584951043128967, 0.010219759307801723, 0.009909482672810555, 0.03283768519759178, -0.01256623212248087, 0.014738173224031925, -0.014531321823596954, -0.001806718995794654, 0.007226875983178616, 0.013354853726923466, 0.006690355017781258, -0.019676754251122475, -0.004521645605564117, -0.006968311499804258, 0.006531984079629183, 0.021253997460007668, 0.02611500956118107, -0.0026131169870495796, -0.0034970841370522976, -0.004547501914203167, -0.015100163407623768, -4.2117724660784006e-05, 0.01422104425728321, 0.008422737009823322, 0.04767928272485733, 0.00855201855301857, -0.013238499872386456, -0.005475101992487907, 0.014945024624466896, 0.013367781415581703, -0.01513894833624363, 0.004912724252790213, -0.01132512278854847, 0.03299282118678093, -0.009062684141099453, -0.010691639967262745, 0.005830628331750631, 0.03459592163562775, -0.006826101336628199, 0.0009292159811593592, 0.006683890707790852, -0.01245634164661169, 0.022520963102579117, -0.009450530633330345, -0.012417557649314404, 0.017323818057775497, 0.008125387132167816, -0.002580796368420124, -0.03213955834507942, -0.004899796098470688, -0.007815110497176647, -0.011111807078123093, 0.0022511265706270933, -0.00616999389603734, -0.03159657493233681, 0.008190028369426727, -0.022456321865320206, 0.007659971714019775, 0.021279852837324142, -0.016328344121575356, 0.029217781499028206, -0.018099511042237282, 0.006851957645267248, 0.0016952131409198046, 0.010898491367697716, -0.004127334803342819, -0.009295391850173473, -0.0024434339720755816, 0.011092414148151875, -0.0027973440010100603, 0.008099530823528767, 0.0065740011632442474, -0.01890106126666069, 0.020711012184619904, -0.011163519695401192, -0.0060827285051345825, -0.016561051830649376, 0.010801529511809349, 0.0344407819211483, -0.010465395636856556, 0.012281810864806175, 0.013173858635127544, -0.025934014469385147, -0.01045893132686615, -0.010265008546411991, -0.01565607637166977, 0.006987703964114189, 0.04346468299627304, 0.010077549144625664, 0.020413663238286972, 0.016483483836054802, 0.03519061952829361, 0.0007066081161610782, 0.0027100786101073027, 0.005193913355469704, 0.02444726787507534, 0.023594005033373833, 0.02491268329322338, 0.010510644875466824, 0.020775653421878815, -0.004873939789831638, 0.03612145408987999, 0.011376835405826569, 0.014738173224031925, 0.0060277837328612804, -0.015332871116697788, -0.0022511265706270933, 0.006696818862110376, 0.007414335384964943, -0.10016786307096481, -0.0416288748383522, 0.020038744434714317, 0.017595309764146805, -0.011603079736232758, 0.023154444992542267, 0.003991588484495878, -0.007375550922006369, 0.006509359925985336, 0.021577201783657074, -0.013768556527793407, -0.03679371997714043, 0.003665151074528694, -0.017944373190402985, 0.020206810906529427, 0.012042638845741749, -0.020969577133655548, -0.0023513203486800194, -0.00806074682623148, 0.007382014766335487, -0.012676121667027473, -0.008377487771213055, -0.007731076795607805, -0.009941802360117435, 0.014389111660420895, 0.011331587098538876, -0.021008361130952835, 0.025106607005000114, 0.002078211633488536, 0.0120167825371027, -0.003697471460327506, -0.005930821876972914, 0.0061635300517082214, -0.02058172971010208, 0.007659971714019775, 0.007970249280333519, -0.02191333658993244, -0.014027120545506477, 0.014919168315827847, -0.00031532743014395237, -0.007756933104246855, -0.003926947247236967, 0.00447962898761034, -0.03658686950802803, 0.03172585740685463, -0.020323164761066437, -0.020879078656435013, -0.002689070301130414, 0.008215885609388351, -0.009340640157461166, -0.017427243292331696, -0.004279241431504488, -0.02281831204891205, 0.01681961677968502, -0.013665130361914635, -0.017595309764146805, 0.016496410593390465, 0.010510644875466824, -0.016367129981517792, -0.01213313639163971, -0.025054894387722015, -0.004214600194245577, -0.01716867834329605, 0.03092430718243122, 0.006787316408008337, -0.001813183189369738, -0.02438262663781643, -0.03775040805339813, 0.012708442285656929, -0.023852569982409477, -0.006506127770990133, -0.0024967628996819258, -0.016211990267038345, 0.022986378520727158, -0.032036133110523224, -0.009082076139748096, -0.03115701489150524, -0.01398833654820919, 0.004831923171877861, -0.0239301398396492, -0.0165351964533329, -0.01132512278854847, 0.024718761444091797, -0.005591455847024918, 0.02183576673269272, 0.009334176778793335, 0.00846152100712061, 0.005090487655252218, -0.008474449627101421, -0.003800897393375635, 0.00898511428385973, 0.012333523482084274, 0.022572675719857216, -0.019741395488381386, 0.0035197085235267878, 0.04147373512387276, -0.008112459443509579, 0.017491884529590607, 0.030252039432525635, -0.01628956012427807, -0.008733013644814491, -0.005294106900691986, -0.04038776457309723, 0.021603059023618698, 0.0022802152670919895, -0.0035132444463670254, 0.03185513988137245, 0.00022402184549719095, 0.018409788608551025, -0.006916598882526159, -0.008623124100267887, 0.01900448650121689, -0.010103405453264713, -0.013910766690969467, -0.007020024582743645, -0.0107239605858922, -0.023787928745150566, -0.03508719429373741, 0.019728466868400574, 0.01279893983155489, 0.02751125581562519, -0.0015263381646946073, 0.011053630150854588, 0.01630248874425888, 0.017362602055072784, 0.02566252090036869, -0.025222960859537125, 0.008248205296695232, -0.0077181486412882805, 0.03270840272307396, -0.016509339213371277, -0.02021973952651024, 0.026787275448441505, -0.014570106752216816, 0.004557198379188776, 0.024007707834243774, -0.01502259448170662, 0.0010867787059396505, -0.0017162214498966932, 0.009728487581014633, 0.009515171870589256, 0.004566894378513098, -0.008778262883424759, -0.030614029616117477, 0.030950164422392845, -0.014712316915392876, -0.006373613607138395, -0.00872655026614666, -0.015927569940686226, 0.007472512312233448, 0.007937928661704063, -0.0010568822035565972, 0.010426610708236694, 0.018888132646679878, 0.021706484258174896, -0.013509992510080338, -0.012146065011620522, -0.028907503932714462, 0.011247552931308746, 0.012152528390288353, -0.004398827441036701, -0.02895921841263771, 0.011603079736232758, 0.01222363393753767, 0.010937276296317577, -0.018655424937605858, -0.0009251759038306773, -0.009495778940618038, 0.008765334263443947, -0.013238499872386456, -0.00268099014647305, -0.038862235844135284, -0.004948277026414871, -0.0016693567158654332, 0.010420147329568863, 0.003367801895365119, 0.032036133110523224, 0.013406566344201565, 0.011635400354862213, -0.00696184765547514, 0.0005575295654125512, 0.026050368323922157, -0.0009348720777779818, 0.0008944713626988232, -0.03725913539528847, 0.025804731994867325, 0.012469270266592503, -0.0019796339329332113, -0.02808009833097458, 0.024085277691483498, -0.005746594630181789, 0.004285705741494894, -0.00407562218606472, 0.010950203984975815, -0.00760179478675127, -0.028157668188214302, 0.007000632118433714, 0.04020677134394646, -0.0011441477108746767, -0.012210705317556858, 0.006331596989184618, 0.009023899212479591, 0.008584339171648026, -0.017647022381424904, -0.01936647668480873, -0.021590130403637886, -0.015164804644882679, 0.02056880109012127, -0.011661256663501263, -0.03141557797789574, -0.007356158457696438, 0.009049755521118641, 0.024253344163298607, 0.02947634644806385, 0.01630248874425888, 0.02341300994157791, -0.017194535583257675, 0.006813173182308674, -0.028054241091012955, -0.023451795801520348, 0.0024628262035548687, 0.014544249512255192, 0.05016150325536728, 0.01970260962843895, 0.019456975162029266, -0.0001935193286044523, 0.006415630225092173, -0.00410147849470377, 0.005384604446589947, -0.012294739484786987, 0.004023909103125334, 0.0005922741838730872, -0.008396880701184273, -0.00645764684304595, -0.006832565180957317, -0.0258305873721838, -0.01848735846579075, -0.003127013798803091, 0.014660604298114777, 0.01970260962843895, -0.032398123294115067, 0.026386501267552376, 0.004544270224869251, -0.009120861068367958, -0.0019214570056647062, 0.030614029616117477, 0.017944373190402985, 0.02241753786802292, -0.006483503617346287, -0.010374898090958595, -0.0355008989572525, -0.011221696622669697, 0.0014035201165825129, 0.013173858635127544, -0.018241722136735916, -0.01254037581384182, 0.015759503468871117, -0.0046670883893966675, -0.00655784085392952, -0.01572071760892868, -0.01785387471318245, 0.02416284754872322, 0.0049967579543590546, 0.02289588190615177, 0.008009033277630806, -0.011616007424890995, -0.005513886921107769, 0.029036786407232285, -0.01971553824841976, -0.021486705169081688, -0.016832545399665833, 0.003661918919533491, -0.007944392040371895, -0.04467993602156639, -0.01930183544754982, 0.0034356750547885895, -0.007084665820002556, 0.0058080037124454975, 0.005662561394274235, 0.02537810057401657, 0.003329017199575901, -0.009799592196941376, 0.007647043559700251, -0.014376183040440083, -0.014350326731801033, 0.024925611913204193, -0.0001564516860526055, 0.00907561182975769, -0.007491904776543379, 0.007149307057261467]" +2,soda,"[0.02582913264632225, -0.007537944242358208, -0.004399357829242945, -0.031165730208158493, -0.01985214278101921, 0.006607374642044306, -0.025308813899755478, -0.018811507150530815, -0.006107068620622158, -0.006877540145069361, 0.03031187318265438, 0.026362791657447815, 0.0023030752781778574, 0.005743512883782387, -0.016396695747971535, 0.0040658204816281796, 0.03279339149594307, -0.021773317828774452, 0.0363955944776535, -0.015249327756464481, 0.011353611014783382, 0.0005682642804458737, 0.021319707855582237, -0.011120134964585304, -0.007397858425974846, 0.005486689507961273, 0.01901162788271904, -0.020132314413785934, 0.0059402999468147755, -0.006910893600434065, 0.020199021324515343, -0.016303306445479393, -0.014995839446783066, -0.007411199621856213, -0.01659681834280491, -0.008398470468819141, -0.02174663543701172, -0.019211750477552414, 0.0004919675993733108, -0.035835251212120056, -0.0038923807442188263, -0.02184002473950386, -0.006564015056937933, -0.0036322216037660837, -0.019571971148252487, 0.012020685710012913, -0.009345716796815395, -0.009165606461465359, 0.014902448281645775, -0.009118910878896713, 0.028123868629336357, 0.01777086965739727, -0.0033120259176939726, -0.004556120373308659, 0.00826505571603775, -0.007184394635260105, -0.015476132743060589, 0.01249430887401104, 0.007024296559393406, -0.02698984183371067, -0.00946579035371542, 0.021786659955978394, -0.03991774842143059, 0.01786426082253456, -0.017130477353930473, -0.00483295600861311, -0.009425765834748745, 0.014208691194653511, -0.006787484977394342, 0.001642671413719654, 0.028177235275506973, 0.0332203209400177, 0.01850465126335621, -0.015342717990279198, 0.005690147168934345, -0.00012049036740791053, -0.007231089752167463, -0.002109623746946454, 0.017824236303567886, 0.0043393210507929325, 0.020559241995215416, -0.02616266906261444, -0.016236597672104836, 0.02151983045041561, 0.025188740342855453, 0.01619657315313816, -0.006844186224043369, 0.007211077492684126, -0.013101346790790558, 0.0020846084225922823, -0.0009280676604248583, 0.021026194095611572, 0.011386965401470661, 0.02366781048476696, -0.01474235113710165, 0.02924455516040325, 0.019078336656093597, 0.039490822702646255, -0.00454611424356699, -0.0185980424284935, -0.03047197125852108, 0.029538067057728767, -0.009525826200842857, -0.011400306597352028, -0.015796327963471413, 0.00685085728764534, 0.010940024629235268, -0.0040925033390522, 0.01917172595858574, -0.011406977660953999, -0.026763036847114563, 0.049630358815193176, 0.03935740515589714, -0.0293246041983366, -0.005526714026927948, -0.009846022352576256, 0.02756352722644806, -0.02799045480787754, -0.005813555791974068, -0.02964479848742485, -0.0060670445673167706, -0.0017760863993316889, 0.03471456840634346, -0.021026194095611572, 0.0121207470074296, -0.00863194651901722, -0.02058592438697815, 0.004029131028801203, -0.008752020075917244, -0.016743574291467667, 0.04002448171377182, 0.0015667916741222143, 0.0027283355593681335, -0.015169278718531132, -0.03420758992433548, 0.04151872918009758, -0.016476744785904884, -0.0005436658975668252, -0.03580857068300247, -0.020199021324515343, 0.0030235161539167166, 0.016836965456604958, -0.023547736927866936, -0.0023564414586871862, -0.01568959653377533, 0.011353611014783382, 0.02980489656329155, -0.013381518423557281, -4.7060035285539925e-05, -0.0036155448760837317, 0.02133304812014103, -0.02791040576994419, 0.030338557437062263, -0.010439719073474407, 0.005133139900863171, -0.010319645516574383, 0.0015651240246370435, 0.010819951072335243, -0.00531324977055192, 0.007744736969470978, -0.007050979416817427, -0.0064772954210639, 0.0340208075940609, -0.026843085885047913, -0.017810894176363945, 0.038156673312187195, 0.018397919833660126, -0.007744736969470978, -0.0027533508837223053, 0.005673470441251993, -0.010579804889857769, 0.045788008719682693, 0.0023614445235580206, 0.020385801792144775, 0.013655018992722034, 0.005149816628545523, 0.014622277580201626, 0.001018956652842462, -0.008004896342754364, -0.02716328203678131, -0.013067993335425854, 0.05096450820565224, 0.019705386832356453, 0.03204626962542534, 0.014355447143316269, -0.011580416932702065, -0.012654406949877739, -0.005336597561836243, 0.010166218504309654, -0.02298739366233349, -0.00805159192532301, 0.031752754002809525, -0.006734119262546301, -0.010166218504309654, -0.6890614628791809, -0.031432557851076126, -0.009652570821344852, -0.030845534056425095, 0.016303306445479393, 0.01967870257794857, 0.022106856107711792, -0.000993107445538044, -0.01515593659132719, -0.015636231750249863, 0.001651009893976152, 0.0016376683488488197, 0.0006979269091971219, 0.0022763924207538366, -0.005820226855576038, -0.005136474967002869, 0.03652901202440262, -0.0029868269339203835, 0.027456793934106827, -0.006510648876428604, -0.00893213041126728, 0.010859975591301918, -0.028017137199640274, 0.005653458181768656, 0.02682974375784397, -0.00023264229821506888, -0.009532497264444828, -0.01918506808578968, -0.02284063771367073, 0.005670134909451008, -0.014675643295049667, -0.005830232985317707, 0.00022076003369875252, -0.008691983297467232, 0.052271973341703415, 0.0030335222836583853, 0.000511562917381525, 0.02109290100634098, 0.01703708805143833, 0.03362056612968445, -0.024948593229055405, -0.00930569227784872, 0.008538556285202503, -0.006093727424740791, -0.013661690056324005, -0.005156487226486206, 0.03562178835272789, -0.011733843944966793, -0.001767747919075191, -0.008044920861721039, 0.02091946266591549, -0.012320869602262974, 0.008164994418621063, -0.0040524788200855255, 0.007257772609591484, 0.010159547440707684, 0.013548286631703377, -0.017997674643993378, -0.0013691708445549011, 0.01659681834280491, -0.003505477448925376, 0.026549572125077248, -0.019732069224119186, -0.018984945490956306, -0.0070042842999100685, -0.0009730951860547066, -0.01853133551776409, 0.00071085145464167, 0.025095349177718163, -0.0021146268118172884, 0.005409975536167622, -0.018051041290163994, -0.0054933601059019566, -0.011193512938916683, 0.0009497475693933666, 0.01778421178460121, 0.022533783689141273, -0.00347545905970037, -0.0006245487020350993, -0.010319645516574383, 0.03079216741025448, 0.012614382430911064, -0.017330599948763847, -0.006187117658555508, 0.03081885166466236, -0.018171114847064018, -0.014755692332983017, -0.001358330831862986, 0.000727945240214467, -0.011433660052716732, 0.01867809146642685, 0.02897772379219532, -0.006837515626102686, -0.012347552925348282, -0.004746236372739077, -0.002748347818851471, -0.0184379443526268, 0.008531885221600533, 0.012814505025744438, -0.007858139462769032, -0.009045532904565334, 0.017317259684205055, 0.007284455467015505, 0.0015859700506553054, -0.005409975536167622, 0.023400980979204178, -0.0206659734249115, -0.0007508759736083448, 0.02857748046517372, -0.0293246041983366, 0.024935252964496613, -0.029271237552165985, -0.0063405451364815235, -0.02365446835756302, -0.004232589155435562, -0.027536842972040176, 0.018971605226397514, -0.006440605968236923, 0.002881762571632862, -0.01332815270870924, -0.007457895204424858, 0.0051031215116381645, 0.007284455467015505, 0.0071043455973267555, -0.004329314921051264, -0.004482741933315992, 0.0017327264649793506, -0.009866034612059593, -0.02316083386540413, -0.01743733324110508, -0.010019461624324322, 0.018411261960864067, -0.0072777848690748215, 0.0060670445673167706, -0.002101285383105278, -0.008104957640171051, 0.012734455987811089, -0.007444553542882204, 0.008905447088181973, -0.010152877308428288, -0.015329376794397831, -0.0007529605645686388, -0.029511384665966034, 0.00826505571603775, -0.018251163884997368, -0.02714993990957737, -0.012394247576594353, -0.011100122705101967, -0.01121352519840002, 0.016249939799308777, 0.0025715730153024197, -0.01959865540266037, -0.02772362343966961, 0.036075398325920105, 0.009532497264444828, -0.01552949845790863, -0.004923011176288128, 0.006537332199513912, 0.013728396967053413, 0.010099510662257671, 0.005813555791974068, 0.009659241884946823, -0.01645006239414215, -0.01678359881043434, -0.020532559603452682, -0.03698262199759483, -0.008792044594883919, -0.0008146649925038218, -0.01819779723882675, -0.027283355593681335, 0.011933966539800167, -0.015075888484716415, -0.011880599893629551, 0.01474235113710165, 0.010900000110268593, 0.02166658639907837, -0.027536842972040176, 0.013141371309757233, 0.024615056812763214, 0.011320257559418678, -0.004486077465116978, 0.005806885194033384, -0.015089229680597782, 0.008111628703773022, 0.03997111693024635, 0.000853021745570004, 0.010012791492044926, 0.01584969460964203, -0.015569522976875305, 0.017997674643993378, -0.0049163405783474445, 0.008298409171402454, -0.003505477448925376, 0.0029568085446953773, 0.012727784924209118, -0.027456793934106827, -0.011533721350133419, -0.017317259684205055, 0.01576964557170868, 0.02200012281537056, 0.0445072241127491, -0.003558843396604061, 0.0021129590459167957, -0.0037489598616957664, 0.022640515118837357, -0.03925067558884621, 0.013888495042920113, -0.015729621052742004, 0.02780367247760296, 0.011580416932702065, 0.013047981075942516, -0.03444773703813553, -0.0057501839473843575, -0.017650796100497246, -0.0100528160110116, 0.0335405170917511, 0.0052899024449288845, 0.008311750367283821, -0.004739565774798393, 0.006383904721587896, 0.001413364545442164, -0.03031187318265438, 0.013835129328072071, -0.017077112570405006, -0.02033243700861931, -0.008205018937587738, -0.013728396967053413, 0.024294860661029816, 0.0037823135498911142, -0.03287344053387642, -0.004305967129766941, 0.02334761433303356, 0.0025048654060810804, 0.007030967157334089, -0.00223303260281682, -0.00788482278585434, 0.022640515118837357, -0.005603427533060312, 0.014769033528864384, 0.01166713610291481, -0.005423317197710276, 0.012587699107825756, 0.02857748046517372, 0.009145594201982021, 0.0036022034473717213, 0.0022680540569126606, 0.03129914402961731, -0.008625275455415249, -0.01552949845790863, 0.012107405811548233, -0.03794321045279503, -0.0012024021707475185, -0.02400134690105915, -0.005366615951061249, 0.00901217944920063, -0.021853366866707802, 0.009319033473730087, 0.021626561880111694, -0.005860251374542713, 0.029111139476299286, 0.0035855264868587255, 0.003208629321306944, 0.001545111765153706, -0.017050428315997124, -0.007791432552039623, -0.0001631206105230376, -0.009118910878896713, -0.005756854545325041, 0.00293679628521204, 0.011493696831166744, -0.006774143315851688, -0.016249939799308777, -0.001877815229818225, -0.003442105371505022, 0.011406977660953999, -0.019558630883693695, 0.0070042842999100685, 0.021226316690444946, 0.008598593063652515, -0.010352998971939087, -0.001035633496940136, -0.01083996333181858, 0.0007587974541820586, 0.0031202419195324183, -0.001164879184216261, -0.002718329429626465, -0.011240208521485329, -0.01594308577477932, -0.010379682295024395, 0.010232925415039062, 0.009705936536192894, 0.015422767028212547, 0.010079498402774334, 0.012567686848342419, -0.02266719751060009, 0.0010990055743604898, -0.020826071500778198, -0.002631609560921788, 0.006704100873321295, 0.031165730208158493, -0.005733507219702005, 0.018144432455301285, -0.009785985574126244, -0.008978825062513351, 0.040798287838697433, -0.011887270957231522, 0.012087393552064896, -0.01049975585192442, -0.007924847304821014, -0.017330599948763847, 0.011700490489602089, 0.02632276713848114, -0.010146206244826317, 0.009712607599794865, -0.0073778461664915085, 0.01241425983607769, 0.009205630980432034, -0.023761199787259102, 0.03514149412512779, -0.006824173964560032, -0.004866309929639101, -0.01802435889840126, -0.01158708706498146, -0.010733231902122498, 0.04162546247243881, 0.01531603466719389, 0.001962867332622409, 0.021773317828774452, 0.009245655499398708, -0.001269109663553536, -0.0148624237626791, -0.011947307735681534, 0.006220471579581499, -0.0020462516695261, 0.005416646599769592, -0.0037889841478317976, 0.022813955321907997, 0.007297797128558159, 0.00170187430921942, 0.004369339440017939, -0.007351163309067488, -0.01667686738073826, 0.005123133771121502, -0.024895228445529938, 0.003728947602212429, -0.005560067482292652, 0.01701040379703045, 0.0003858610289171338, 0.008158323355019093, -0.01183390524238348, 0.01702374592423439, 0.03207295015454292, 0.001453388947993517, -0.013835129328072071, -0.018798165023326874, -0.0016985388938337564, -0.004389351699501276, 0.008998837321996689, -0.003572185058146715, 0.0038323441985994577, 0.027376744896173477, 0.015222644433379173, 0.020545899868011475, -0.010826622135937214, 0.022440392524003983, 0.00027433448121882975, -0.01303463988006115, -0.0065273260697722435, -0.0019478581380099058, -0.011193512938916683, 0.002047919202595949, 0.04440049082040787, 0.024708446115255356, -0.013421542942523956, 0.025962546467781067, -0.004576132632791996, -0.0182778462767601, -0.015916401520371437, -0.003979100380092859, 0.007010954897850752, -0.005923623219132423, -0.011873929761350155, -0.003106900490820408, -0.006190453190356493, -0.0148624237626791, -0.012220808304846287, -0.003715605940669775, -0.015436108224093914, 0.0036322216037660837, -0.022693881765007973, -0.009539168328046799, -0.022213587537407875, -0.004556120373308659, 0.0068008266389369965, -0.006280508358031511, -0.009972766973078251, -0.027376744896173477, -0.003015177557244897, 0.0449875183403492, -0.0006062041502445936, 0.0040658204816281796, -0.009452448226511478, 0.002258047927170992, -0.0028367352206259966, -9.120161848841235e-05, -0.013888495042920113, -0.016263281926512718, -0.018237821757793427, -0.01220079604536295, 0.019145043566823006, 0.011893942020833492, -0.0010222919518128037, -0.00431597325950861, 0.014208691194653511, 0.02017233893275261, 0.011560404673218727, -0.009065545164048672, -0.006330539006739855, 0.0016018131282180548, 0.011773868463933468, 0.018798165023326874, -0.002056257799267769, -0.00685085728764534, 0.0005478350794874132, -0.005359945353120565, 0.0032636630348861217, 0.0037789782509207726, 0.006827509496361017, -0.0011473684571683407, -0.020492535084486008, 0.0033053550869226456, 0.0021746635902673006, -0.017250550910830498, 0.007771420292556286, 0.02698984183371067, -0.019732069224119186, 0.010192900896072388, -0.013568298891186714, 0.02425483614206314, 0.019972216337919235, -0.0337006151676178, 0.0150225218385458, -0.03775642812252045, -0.02921787090599537, 0.023027418181300163, -0.02649620734155178, 0.018798165023326874, 0.012961260974407196, 0.0028717564418911934, -0.012080722488462925, 0.02698984183371067, -0.04445385932922363, -0.0014900780515745282, 0.009158935397863388, 0.011273561976850033, 0.04029131308197975, -0.020572584122419357, -0.005696817766875029, -0.031112363561987877, 0.012387577444314957, 0.014048593118786812, 0.007217748090624809, -0.01033298671245575, -0.027536842972040176, -0.011026744730770588, -0.009565850719809532, 0.002423148835077882, -0.027043208479881287, 0.002151315798982978, -0.021199634298682213, -0.011266891844570637, 0.0058535803109407425, -0.010433048009872437, -0.008071604184806347, -0.009912730194628239, 0.013655018992722034, 0.0022647185251116753, -0.005076438654214144, -0.002289733849465847, -0.0224937591701746, -0.03596866875886917, -0.011200184002518654, 0.0036422277335077524, 0.042639415711164474, 0.031672704964876175, 0.02284063771367073, -0.007484578061848879, -0.00541998166590929, -0.009492472745478153, 0.007231089752167463, -0.02600257098674774, 0.006824173964560032, -0.016556793823838234, 0.019945533946156502, 0.02780367247760296, 0.007931518368422985, 0.004402692895382643, -0.011933966539800167, 0.007184394635260105, 0.0023614445235580206, -0.005216524004936218, -0.021279683336615562, -0.011980661191046238, -0.0148624237626791, -0.0005991164362058043, -0.0030568698421120644, 0.005426652729511261, 0.008511872962117195, 0.021052876487374306, -0.009999449364840984, 0.00959253404289484, 0.013148042373359203, -0.0007216914091259241, -0.021293023601174355, 0.015956426039338112, -0.009906059131026268, 0.028444064781069756, 0.011627111583948135, 0.015476132743060589, -0.00714437011629343, -0.018384577706456184, 0.008585250936448574, 0.006670746952295303, -0.004943023435771465, 0.012861199676990509, -0.006097062490880489, -0.0044260406866669655, -4.3411972001194954e-05, -0.009225643239915371, 0.02714993990957737, 0.015823012217879295, -0.029938312247395515, 0.0121207470074296, -0.01809106580913067, -0.006473959889262915, -0.01761077158153057, -0.015983110293745995, -0.04968372359871864, 0.001075657899491489, 0.012994615361094475, 0.0026349450927227736, 0.02873757854104042, -0.0071910652332007885, -0.000895547796972096, 0.00732447998598218, -0.004569461569190025, 0.013661690056324005, 0.008064933121204376, 0.03861028328537941, -0.01618323288857937, 0.0021146268118172884, -0.020625948905944824, 0.006337209604680538, -0.003768972121179104, -0.01308133453130722, -0.005660128779709339, 0.0036789169535040855, -0.007437882944941521, -0.015195961110293865, 0.012907895259559155, 0.007044308818876743, -0.012627723626792431, -0.02308078482747078, 0.010373011231422424, -0.003183613996952772, -0.009732619859278202, -0.014542228542268276, -0.008965483866631985, -0.007184394635260105, 0.020225705578923225, 0.005056426394730806, -0.004959700163453817, -0.009312362410128117, -0.006123745813965797, -0.020399143919348717, 0.028203917667269707, -0.012460955418646336, 0.007991555146872997, 0.010019461624324322, -0.01274112705141306, -0.0037356182001531124, -0.0025815791450440884, -0.019064994528889656, 0.007451224140822887, -0.01316138356924057, 0.009552509523928165, -0.011200184002518654, 0.009705936536192894, 0.0059402999468147755, 0.007451224140822887, -0.013007956556975842, 0.02224026992917061, -0.0029084456618875265, 0.022894004359841347, -0.003100229660049081, -0.021573195233941078, -0.009805997833609581, -0.0031702725682407618, 0.01352827437222004, -0.0002495276276022196, -0.02193341590464115, 0.0013758415589109063, -0.03684920445084572, -0.009699266403913498, 0.021132925525307655, 0.005933629348874092, -0.014835741370916367, -0.012967932038009167, -0.009832681156694889, -0.017730845138430595, -0.016903672367334366, -0.001876147580333054, -0.02881762757897377, -0.021946758031845093, -0.015956426039338112, -0.009605875238776207, 0.008231701329350471, -0.00030914743547327816, -0.00876536127179861, -0.010686536319553852, 0.013835129328072071, 0.006467289291322231, -0.02241371013224125, 0.04077160358428955, -0.025922521948814392, 0.012541004456579685, -3.2702293538022786e-05, 0.023601103574037552, -0.019812118262052536, -0.029938312247395515, 0.04007784649729729, -0.007237760350108147, -0.027776990085840225, -0.008438494987785816, -0.003397077787667513, 0.01464895997196436, 0.0223336610943079, 0.007738066371530294, 0.0441870279610157, 0.010493084788322449, 0.026856428012251854, -0.03829008713364601, -0.0070176259614527225, 0.013428214006125927, -0.017824236303567886, 0.002935128752142191, 0.0376763790845871, -0.008985496126115322, -0.004539443179965019, 0.009145594201982021, 0.00966591201722622, 0.010199571959674358, 0.0003212381561752409, -0.02839069813489914, -0.0015976439462974668, 0.03153929114341736, 0.011593758128583431, 0.00102312583476305, -0.0005999503191560507, 0.02366781048476696, -0.004649510607123375, 0.017397308722138405, -0.012294186279177666, -0.015436108224093914, 0.0018111077370122075, 0.010639841668307781, 0.003373730229213834, -0.01775752753019333, -0.019745411351323128, -0.015956426039338112, -0.028283966705203056, 0.00021492312953341752, -0.020052265375852585, -0.015756303444504738, -0.00068750383798033, 0.01087331771850586, 0.018864871934056282, -0.029511384665966034, -0.0021613219287246466, 0.011173500679433346, -0.025122033432126045, 0.0014041921822354198, -0.013128030113875866, -0.004882986657321453, 0.031245779246091843, -0.014995839446783066, -0.018958263099193573, 0.01586303673684597, -0.006490636616945267, 0.022787271067500114, -0.011880599893629551, -0.011073440313339233, 0.02924455516040325, -0.0032603275030851364, 0.017050428315997124, -0.006767472717911005, -0.004205905832350254, -0.0015150933759287, 0.01661016047000885, -0.005550061352550983, 0.03676915541291237, 0.0037122706416994333, -0.013294798322021961, -0.0037089353427290916, -0.002898439532145858, -0.0022063495125621557, 0.002157986629754305, 0.00966591201722622, 0.022707222029566765, -0.024521665647625923, -0.014608935452997684, -0.014048593118786812, -0.0009197292383760214, -0.006634057965129614, -0.0011115132365375757, -0.02007894776761532, -0.014168666675686836, 0.013148042373359203, -0.008118298836052418, -0.025775766000151634, -0.012701102532446384, -0.008905447088181973, 0.003418757813051343, 0.003995777573436499, -0.03185948729515076, 0.011060098186135292, -0.019385190680623055, -0.011100122705101967, 0.004222583025693893, 0.006380569655448198, -0.02498861774802208, -0.004119186196476221, 0.016810283064842224, 0.013574969954788685, -0.005510036833584309, -0.02474847063422203, 0.03169938921928406, -0.022853979840874672, 0.02025238797068596, -0.00025786604965105653, -0.0035521727986633778, -0.014155324548482895, 0.016756916418671608, 0.011286904104053974, -0.004672858398407698, 0.012714443728327751, 0.0018644738011062145, -0.0075646270997822285, -0.0004369339148979634, -0.008491860702633858, 0.00543665885925293, -0.0406915545463562, -0.004999724682420492, 0.03431432321667671, -0.011120134964585304, -0.011100122705101967, -0.00713769905269146, 0.008371787145733833, -0.006320532876998186, 0.03196622058749199, 0.17930968105793, 0.008585250936448574, -0.009325704537332058, 0.03570183739066124, -0.0012432604562491179, 0.026522889733314514, 0.0033370412420481443, -0.008538556285202503, 0.002973485505208373, 0.017570747062563896, -0.011406977660953999, 0.024214811623096466, -0.01578298769891262, -0.002072934526950121, 0.0016685206210240722, -0.005483353976160288, -0.013181395828723907, -0.028177235275506973, -0.026536231860518456, -0.03204626962542534, -0.013041310012340546, -0.013481579720973969, -0.02648286521434784, -0.004249265883117914, 0.01539608370512724, -0.0033503826707601547, 0.008792044594883919, -0.012554345652461052, 0.03626218065619469, 0.010446390137076378, -0.007658017333596945, 0.005199847277253866, 0.02514871582388878, 0.03207295015454292, -0.015075888484716415, -0.003622215474024415, 0.0042259180918335915, -0.012767809443175793, 0.018904896453022957, 0.013434884138405323, -0.00695758918300271, 0.004599479958415031, -0.00892545934766531, 0.01004614494740963, -0.00975263211876154, 0.011507038027048111, -0.0015217640902847052, -0.004302631597965956, 0.01109345257282257, 0.014128642156720161, -0.010833293199539185, -0.013508262112736702, 0.02772362343966961, 0.0255889855325222, -0.009312362410128117, -0.012220808304846287, -0.013741739094257355, 0.010299633257091045, -0.024428274482488632, 0.010853305459022522, -0.0037055998109281063, 0.04154541343450546, 0.01540942583233118, 0.02873757854104042, -0.02143978141248226, -0.010152877308428288, -0.04186560958623886, 0.001534271752461791, -0.007424541283398867, -0.02373451739549637, 0.009459119290113449, -0.028337333351373672, -0.011533721350133419, -0.004966371227055788, -0.021279683336615562, -0.017637455835938454, 0.010279620997607708, 0.04592142254114151, 0.007544614840298891, 0.01116683054715395, -0.015062546357512474, -0.018744798377156258, -0.0054933601059019566, 0.0035221544094383717, -0.02334761433303356, -0.03164602443575859, -0.012020685710012913, 0.0003312442859169096, -0.016716891899704933, 0.026029255241155624, 0.004479406401515007, -0.021466463804244995, 0.0033770655281841755, -0.010759915225207806, 0.0034020808525383472, -0.009058874100446701, -0.026429498568177223, 0.029377968981862068, 0.011867258697748184, -0.001215743599459529, -0.022974051535129547, -0.00015478217392228544, -0.0012699434300884604, -0.005053090862929821, -0.009285680018365383, 0.009492472745478153, 0.007064321078360081, 0.014048593118786812, -0.0061270808801054955, -0.019665362313389778, -0.013274786062538624, -0.02807050384581089, 0.012647735886275768, -0.007711383514106274, -0.005460006184875965, 0.014875765889883041, -0.02242705039680004, -0.0201056320220232, 0.010539780370891094, -0.027296695858240128, 0.014795716851949692, -0.023721175268292427, -0.00044277083361521363, 0.010459731332957745, -0.012921236455440521, -0.002810052130371332, 0.009632558561861515, 0.029831580817699432, -0.0032753366976976395, -0.052512120455503464, 0.006794155575335026, -0.012140759266912937, 0.0036789169535040855, -0.016796940937638283, -0.0032586599700152874, 0.0244015920907259, -0.007064321078360081, 0.031432557851076126, -0.007878151722252369, -0.011286904104053974, -0.0011815560283139348, -0.007604651618748903, 0.013554957695305347, 0.01935850828886032, -0.0005119798006489873, -0.05280563235282898, 0.009952754713594913, -0.014849082566797733, -0.007184394635260105, -0.005269890185445547, -0.018064383417367935, -0.0004167132137808949, 0.010393023490905762, -0.010146206244826317, 0.018331212922930717, -0.025869157165288925, -0.02390795759856701, -0.03145924210548401, 0.017170501872897148, 0.036075398325920105, -0.023947982117533684, -0.0066173807717859745, 0.01552949845790863, -0.022226929664611816, -0.012394247576594353, 4.453244764590636e-05, -0.17301249504089355, 0.016063159331679344, 0.0092189721763134, -0.00883873924612999, -0.002249709330499172, 0.014262056909501553, 0.024975275620818138, 0.012681090272963047, 0.028203917667269707, 0.009172276593744755, 0.023707835003733635, 0.014182007871568203, -0.025282131507992744, -0.008611934259533882, 0.0203457772731781, -0.008912118151783943, 0.006657405290752649, -6.227767880773172e-05, -0.006844186224043369, 0.014222032390534878, 0.0009964428609237075, 0.0006245487020350993, 0.017303917557001114, 0.00022576309856958687, 0.005820226855576038, 0.007351163309067488, -0.005770196206867695, 0.02690979279577732, -0.007437882944941521, 0.002406471874564886, -0.03199290111660957, -0.006760802119970322, 0.005253212992101908, -0.006634057965129614, -0.005826897453516722, -0.00655734445899725, -0.009319033473730087, 0.011260220780968666, 0.0008280064794234931, 0.022133538499474525, 0.0029701499734073877, 0.02316083386540413, 0.012220808304846287, -0.008878763765096664, -0.010433048009872437, 0.01257435791194439, 0.01576964557170868, 0.010206243023276329, -0.0027833692729473114, -0.0016726898029446602, 0.03348714858293533, -0.04218580201268196, -0.012967932038009167, 0.02432154305279255, 0.008191676810383797, -0.002251377096399665, -0.0036188801750540733, -0.008064933121204376, -0.0030568698421120644, -0.02001224085688591, -0.02341432124376297, -0.00893213041126728, 0.027270013466477394, 0.006694094743579626, -0.006707435939460993, -0.007070991676300764, -0.018451286479830742, 0.0016651852056384087, -0.026055937632918358, 0.008365117013454437, 0.0010306304320693016, -0.0050897798500955105, -0.006657405290752649, -0.017504040151834488, -0.006303855683654547, 0.01407527644187212, -0.021880049258470535, 0.01801101677119732, -0.0033287026453763247, 0.004182558506727219, -0.0033136934507638216, 0.01686364784836769, -0.012007344514131546, -0.004059149418026209, 0.000846767914481461, 0.020879438146948814, -0.011547062546014786, -0.0013424878707155585, -0.012627723626792431, -0.0068308450281620026, 0.027350062504410744, -0.021626561880111694, 0.012807833962142467, -0.0005365781835280359, -0.0025515607558190823, 0.008398470468819141, -0.011426989920437336, 0.00398577144369483, -0.006207129918038845, 0.010312974452972412, 0.0006991776754148304, -0.01300128549337387, -0.020145656540989876, 0.009565850719809532, 0.040317993611097336, 0.0045261019840836525, 0.02093280479311943, 0.018998287618160248, 0.01710379496216774, 0.007858139462769032, -0.011933966539800167, -0.004849633201956749, 0.027350062504410744, 0.03145924210548401, -0.002896771766245365, 0.0066007040441036224, 0.01266107801347971, -0.008024908602237701, 0.019491922110319138, -0.003922399133443832, 0.034581150859594345, -0.01568959653377533, -0.023881273344159126, 0.003762301290407777, 0.0022463740315288305, -0.02142643928527832, -0.08922790735960007, -0.028097186237573624, 0.010146206244826317, 0.01810440793633461, -0.005033078603446484, 0.029538067057728767, 0.00909222848713398, 0.013608323410153389, -0.011060098186135292, 0.036662425845861435, 0.0009080554009415209, -0.01667686738073826, 0.005660128779709339, -0.003130248049274087, 0.04026462882757187, 0.02549559436738491, -0.021479805931448936, -0.012107405811548233, -0.022360343486070633, 0.005396634340286255, -0.013835129328072071, -0.016917014494538307, -0.011987332254648209, 0.007744736969470978, -0.026629621163010597, 0.018624724820256233, -0.01619657315313816, 0.021786659955978394, 0.023200858384370804, 0.01474235113710165, 0.020319094881415367, -0.0014525551814585924, 0.005179835017770529, -0.007944859564304352, -0.001343321637250483, 0.002142977435141802, -0.008591922000050545, -0.014582253061234951, 0.015382742509245872, -0.03895716369152069, 0.0067007653415203094, 0.0008517709793522954, -0.004822949878871441, -0.002671634079888463, 0.0029701499734073877, -0.026869768276810646, 0.003932405263185501, 0.024801837280392647, 0.008732007816433907, -0.03556842356920242, -0.012440943159162998, -0.013288128189742565, -0.009659241884946823, 0.01419534906744957, 0.009625887498259544, 0.0015234318561851978, 0.008218360133469105, 0.022547123953700066, -0.03279339149594307, -0.001994553254917264, 0.0011090117041021585, 0.018397919833660126, -0.00789149384945631, -0.0011415316257625818, 0.00733115104958415, -0.0060370261780917645, -0.025135373696684837, -0.04154541343450546, 0.019478581845760345, -0.02400134690105915, -0.01162044145166874, -0.0063438802026212215, -0.014809058047831059, 0.0297248475253582, -0.027109915390610695, 0.0028717564418911934, 0.003488800721243024, -0.009999449364840984, 0.0185980424284935, -0.017717503011226654, -0.0023247553035616875, -0.02929791994392872, 0.010506425984203815, -0.02929791994392872, 0.032419830560684204, 0.0001287245686398819, 0.003839014796540141, 0.00901217944920063, 0.0004877983592450619, -0.030098410323262215, 0.006884210743010044, 0.031272463500499725, 0.009872705675661564, -0.03311358764767647, -0.008998837321996689, 0.016223257407546043, -0.01678359881043434, -0.003535495838150382, 0.009599205106496811, -0.012687760405242443, -0.005640116520226002, -0.02142643928527832, -0.053099144250154495, 0.0166902095079422, 0.012260832823812962, -0.010980049148201942, 0.0129545908421278, -0.023400980979204178, -0.011820563115179539, -0.020639291033148766, -0.001977876527234912, 0.0025031978730112314, -0.012934578582644463, -0.0028901011683046818, -0.017544064670801163, -0.032179683446884155, -0.03129914402961731, -0.02873757854104042, 0.03917062655091286, -0.002538219327107072, 0.0004957198980264366, 0.011286904104053974, 0.011927295476198196, 0.021039536222815514, 0.014101958833634853, 0.03676915541291237, -0.010693207383155823, 0.01793096773326397, 0.008571909740567207, 0.031512606889009476, -0.025922521948814392, -0.004669522866606712, 0.018237821757793427, -0.03997111693024635, -0.01158708706498146, 0.022146880626678467, -0.014168666675686836, -0.017504040151834488, -0.010006120428442955, 0.004906334448605776, -0.0030501990113407373, -0.0040358020924031734, -0.011700490489602089, -0.0239212978631258, 0.015756303444504738, -0.0036789169535040855, -0.010813280940055847, 0.01092001236975193, -0.021119585260748863, 0.006710771471261978, 0.020292412489652634, -0.002654957352206111, 0.023120809346437454, 0.022960711270570755, -0.007764749228954315, -0.026963159441947937, -0.02690979279577732, -0.04341322183609009, 0.01999889872968197, 0.03644896298646927, -0.011326928623020649, -0.006180447060614824, 0.015596206299960613, 0.012781151570379734, 0.009479131549596786, -0.010913342237472534, 0.005109792109578848, 0.018371237441897392, 0.0037022645119577646, 0.00929235015064478, 0.0240813959389925, -0.049363527446985245, -0.019665362313389778, -0.004923011176288128, 0.03578188642859459, 0.011406977660953999, 0.0332203209400177, 0.00817166455090046, -0.005706823896616697, -0.004259272012859583, 0.004069155547767878, 0.03407417610287666, 0.00913892313838005, -0.0073911878280341625, -0.019385190680623055, 0.03079216741025448, 0.024881886318325996, 0.011040085926651955, -0.011440331116318703, 0.0007166884024627507, -0.006740789860486984, 0.011200184002518654, -0.02091946266591549, -0.009826010093092918, -0.0066173807717859745, -0.0013841800391674042, 0.025548961013555527, 0.03554173931479454, 0.0008963816217146814, -0.018397919833660126, 0.010806609876453876, 0.0047295596450567245, -0.016810283064842224, 0.020412486046552658, -0.007237760350108147, 0.006070379633456469, -0.013481579720973969, 0.009125581942498684, -0.020532559603452682, -0.02316083386540413, 0.0022130203433334827, 0.00230474304407835, 0.0012199128977954388, 0.004852968268096447, 0.011660465970635414, 0.023200858384370804, 0.005143146030604839, 0.012020685710012913, -0.01266107801347971, -0.034741248935461044, -0.005473347846418619, -0.0019678703974932432, 0.03903721272945404, 0.009832681156694889, 0.030578704550862312, 0.0034621176309883595, 0.014141983352601528, 0.0034004133194684982, 0.012674419209361076, -0.016903672367334366, -0.0013591647148132324, 0.020052265375852585, -0.004386016167700291, 0.0021079559810459614, -0.016703549772500992, -0.01191395428031683, -0.005216524004936218, -0.010926683433353901, 0.010573133826255798, 0.018971605226397514, -0.017557406798005104, 0.05269889906048775, 0.0072044068947434425, -0.0008571909856982529, 0.0035388311371207237, 0.015636231750249863, 0.04376009851694107, -0.011113464832305908, 0.01012619398534298, -0.009906059131026268, -0.0129545908421278, 0.020826071500778198, 0.0023847920820116997, 0.017704162746667862, 0.0032603275030851364, 0.015569522976875305, -0.0019044982036575675, -0.012440943159162998, 0.001799433957785368, -0.011013403534889221, 0.009025520645081997, 0.020225705578923225, 0.018864871934056282, -0.003105232724919915, -0.0029618116095662117, 0.009579192847013474, -0.024521665647625923, 0.03738286718726158, 0.001593474647961557, -0.01602313481271267, -0.0451476164162159, -0.0016927020624279976, 0.0166902095079422, -0.0373561829328537, -0.016890332102775574, 0.019198410212993622, -0.0020195685792714357, -0.012814505025744438, -0.020399143919348717, 0.01158708706498146, 0.011807221919298172, -0.014048593118786812, 0.026923134922981262, -0.024615056812763214, -0.02788372151553631, 0.013755080290138721, 0.017477357760071754, 0.012714443728327751, -0.011160159483551979, -0.007437882944941521]" +3,cheese,"[-0.0032554215285927057, -0.008896322920918465, 0.0024274438619613647, -0.04764503985643387, -0.011659476906061172, 0.0073985387571156025, -0.021963201463222504, -0.024184053763747215, -0.010058397427201271, -0.046921972185373306, 0.03129852935671806, 0.006991812493652105, -0.024287348613142967, -0.0004053137090522796, -0.019342077895998955, 0.01975526101887226, 0.03233148530125618, -0.0018641606438905, 0.01404818519949913, -0.03568858653306961, -0.016204478219151497, -0.016953369602560997, 0.011536813341081142, -0.026882648468017578, -0.0027276461478322744, 0.010865393094718456, 0.0035410982090979815, -0.016566012054681778, 0.0007658391259610653, 0.001736655249260366, 0.025204095989465714, -0.011782140471041203, -0.040724243968725204, -0.017740998417139053, -0.01422895211726427, -0.01323473360389471, -0.0016850074753165245, -0.0363600067794323, 0.02551398240029812, 0.007127387914806604, -0.013131437823176384, -0.0013355782721191645, 0.0014856795314699411, -0.004186694975942373, -0.002650174545124173, 0.01099451258778572, 0.007611585780978203, -0.025823868811130524, -0.0016930775018408895, 0.012156587094068527, 0.0352754071354866, -0.007049916312098503, -0.03504298999905586, -0.0037444611079990864, 0.007101564202457666, 0.0032473516184836626, -0.016695132479071617, -0.0025404230691492558, 0.010917040519416332, -0.020413769409060478, -0.007372714579105377, -0.004561141133308411, -0.03858086094260216, 0.019871467724442482, -0.009341784752905369, -0.0073856269009411335, -0.0004963024985045195, 0.0003020182193722576, 0.004354550037533045, -0.003189247800037265, 0.0033538751304149628, 0.026831001043319702, -0.0016494996380060911, -0.0031037062872201204, 0.012724711559712887, 0.003650849685072899, -0.006669014226645231, 0.015210259705781937, 0.004157642833888531, -0.0015849400078877807, 0.021588755771517754, -0.015197346918284893, 0.005597323644906282, 0.010529682971537113, -0.009942189790308475, -0.0018157408339902759, -0.014964932575821877, 0.024700531736016273, -0.004657980520278215, -0.01863192208111286, 0.0058458782732486725, 0.018683569505810738, 0.0011297942837700248, 0.02224726416170597, -0.0017301993211731315, 0.017934678122401237, -0.005413328763097525, 0.03284796327352524, -0.0057813189923763275, -0.011259207502007484, 0.007230683695524931, 0.011743404902517796, 0.002661472652107477, -0.025165360420942307, 0.00036940237623639405, -0.006953076925128698, -0.002956832991912961, 0.0028164158575236797, 0.022234352305531502, -0.020116794854402542, -0.02140798792243004, 0.03620506450533867, 0.004254482686519623, -0.042222026735544205, -0.0008457317599095404, -0.007566393818706274, 0.016114095225930214, 0.004180239047855139, 0.0008449247106909752, -0.022324735298752785, 0.0019384041661396623, 0.007340434938669205, 0.017508583143353462, -0.017560230568051338, 0.02201484888792038, 0.006862693466246128, 0.0017753910506144166, 0.006882061250507832, 0.0058813863433897495, 0.010626522824168205, 0.047541745007038116, 0.0024290578439831734, 0.027011767029762268, 0.005878158379346132, -0.004677348304539919, 0.013086246326565742, -0.01049740333110094, -0.01443554274737835, 0.010019661858677864, -0.026908472180366516, 0.003708953270688653, 0.02998151257634163, -0.007960207760334015, -0.004599876701831818, -0.0267277043312788, 0.009871174581348896, 0.019626140594482422, 0.011672388762235641, -0.009044810198247433, -0.00537459272891283, 0.018580274656414986, -0.017702262848615646, 0.01603662222623825, -0.008063503541052341, 0.004018839914351702, 0.003084338502958417, -0.0074372743256390095, 0.004454617388546467, -0.005958857946097851, -0.0066948384046554565, -0.009742055088281631, 0.003161810105666518, 0.03137600049376488, -0.015842944383621216, 0.012330898083746433, 0.035636939108371735, 0.013273469172418118, 0.014035273343324661, 0.009638759307563305, -0.012014555744826794, -0.011640109121799469, 0.0195099338889122, -0.0140610970556736, 0.016682220622897148, -0.01193062774837017, 0.009806614369153976, 0.0103166364133358, 0.011117176152765751, -0.02337060123682022, 0.0093288728967309, -0.008521877229213715, 0.004829063545912504, 0.01965196430683136, 0.024584323167800903, 0.011543270200490952, -0.01168530061841011, 0.0017802329966798425, -0.005529535934329033, 0.012130762450397015, -0.011762772686779499, -0.004680576268583536, 0.023951638489961624, -0.00301332282833755, -0.00537459272891283, -0.7032356262207031, -0.011472254060208797, 0.018954720348119736, -0.01099451258778572, 0.013505883514881134, 0.04542418569326401, 0.00528420927003026, 0.0018125128699466586, -0.006355899851769209, 0.0049549550749361515, -0.020439593121409416, 0.020478328689932823, 0.005306805018335581, -0.018347859382629395, -0.018218740820884705, -0.013144349679350853, 0.04227367416024208, -0.014190216548740864, 0.007321067154407501, 0.008315285667777061, -0.0167855154722929, 0.006520526949316263, -0.018967632204294205, 0.015713823959231377, 0.024945858865976334, 0.02238929457962513, 0.005413328763097525, -0.018231652677059174, -0.004570825025439262, 0.009638759307563305, -0.015248995274305344, -0.019367901608347893, -0.018102532252669334, -0.0243777334690094, 0.04286762326955795, 0.015132787637412548, -0.021330516785383224, 0.008722011931240559, 0.017715174704790115, 0.038632508367300034, -0.00846377294510603, -0.022802477702498436, 0.017121225595474243, -0.0097549669444561, -0.014990756288170815, -0.012208234518766403, 0.022595886141061783, 0.010187516920268536, -0.015868768095970154, -0.004086627159267664, -0.002361270133405924, -0.0032360537443310022, 0.007921472191810608, 0.01125275157392025, 0.0004813730774912983, 0.01324764546006918, 0.03819350153207779, -0.008605804294347763, 0.009199753403663635, 0.023577192798256874, -0.010652346536517143, 0.014370983466506004, -0.03592100366950035, -0.0328221395611763, -0.013828681781888008, -0.022105231881141663, -0.01000674907118082, 0.0034507145173847675, 0.02476509101688862, -0.008160342462360859, 0.011439974419772625, 0.0159333273768425, -0.005949174053966999, -0.009412800893187523, 0.010490947403013706, 0.02858702465891838, 0.02848372794687748, 0.0032989992760121822, -0.004018839914351702, 0.014977844431996346, -0.010768553242087364, -0.0009094843990169466, -0.021059365943074226, 0.007127387914806604, 0.03258972242474556, -0.021111013367772102, -0.018735216930508614, -0.0029180971905589104, 0.006210640538483858, -0.012886110693216324, 0.033002905547618866, 0.020065147429704666, -0.0050550224259495735, -0.012802183628082275, -0.008715556003153324, -0.001006323960609734, -0.011614285409450531, -0.0038348445668816566, -0.007979575544595718, -0.008747835643589497, -0.02076239138841629, 0.017456935718655586, -0.002638876670971513, 0.010968688875436783, -0.010226252488791943, 0.024584323167800903, -0.010419931262731552, 0.03147929534316063, 0.04242861643433571, -0.024171141907572746, 9.774738282430917e-05, -0.005574727896600962, -0.010968688875436783, -0.03969128802418709, 0.009057722054421902, -0.019484110176563263, 0.017379464581608772, 0.0011031634639948606, 0.018696481361985207, -0.01975526101887226, 0.012789271771907806, 0.008554156869649887, 0.0015502391615882516, -0.003328051185235381, 0.010781466029584408, 0.030007336288690567, 0.0014582416042685509, -0.01965196430683136, -0.047696687281131744, 0.004212518688291311, 0.006420459598302841, 0.0033474192023277283, 0.007288787048310041, -0.01963905245065689, 0.0004979164805263281, 0.014835813082754612, 0.028767790645360947, -0.01929043047130108, 0.007204859517514706, -0.006168677005916834, -0.016191566362977028, 0.0012064588954672217, -0.02462306059896946, -0.005345541052520275, -0.005742582958191633, -0.025410687550902367, -0.0252299215644598, 0.0011749861296266317, -0.019858555868268013, -0.0032554215285927057, 0.015442674048244953, -0.008547700941562653, -0.012556856498122215, 0.017598967999219894, 0.019380813464522362, -0.026095019653439522, -0.006168677005916834, 0.0029536050278693438, 0.01913548819720745, -0.00925785768777132, -0.008431493304669857, 0.00914810597896576, -0.02747659757733345, -0.013596267439424992, -0.025836782529950142, -0.02289286069571972, 0.011439974419772625, -0.005268069449812174, -0.018954720348119736, -0.014474279247224331, -0.010561962611973286, 0.005887842271476984, 0.0007077354239299893, 0.009038354270160198, 0.009483816102147102, 0.045966487377882004, -0.018128355965018272, -0.02426152490079403, 0.01001320593059063, 0.0012371247867122293, 0.013008774258196354, 0.004473985638469458, -0.033002905547618866, 0.011330222710967064, 0.01528773084282875, -0.006552807055413723, 0.006443055346608162, 0.03021392785012722, -0.02198902517557144, 0.011795052327215672, -0.0024661796633154154, 0.004241570830345154, -0.010897672735154629, -0.0005201088497415185, -0.0032925433479249477, -0.017431112006306648, 0.012795727699995041, 0.015636352822184563, 0.024532675743103027, 0.0216533150523901, 0.01677260361611843, -0.0016172198811545968, 0.014551750384271145, 0.0003605254169087857, 0.006217096466571093, -0.05069225654006004, 0.013215364888310432, -0.017999237403273582, 0.013402588665485382, 0.015842944383621216, 0.0045966487377882, -0.02685682475566864, -0.004170555155724287, 0.017366552725434303, 0.027683189138770103, 0.03530123084783554, 0.004270622506737709, -0.0005818440695293248, -0.003802564926445484, -0.009412800893187523, 0.01604953594505787, -0.01629486121237278, 0.01342841237783432, -0.016862986609339714, -0.010187516920268536, 0.03217654302716255, 0.009419256821274757, 0.030110633000731468, 0.013480059802532196, -0.02547524683177471, 0.01324764546006918, 0.003337735077366233, 0.0017786190146580338, 0.02089150995016098, -0.005539219826459885, -0.021343428641557693, 0.015855856239795685, -0.023280218243598938, 0.013919065706431866, 0.010122956708073616, -0.016862986609339714, 0.015403938479721546, 0.0110655277967453, 0.023770872503519058, 0.009593567810952663, -0.006920797284692526, 0.010555506683886051, -0.0051550897769629955, -0.007359802722930908, 0.005435924511402845, 0.0025371951051056385, 0.011052615940570831, -0.017444023862481117, -0.004151186905801296, 0.006233236752450466, -0.019122576341032982, 0.010452210903167725, 0.020930245518684387, 0.03532705456018448, 0.024584323167800903, 0.027915602549910545, -0.007088652346283197, -0.035249583423137665, -0.011401238851249218, -0.010419931262731552, 0.001988437958061695, -0.008496053516864777, -0.02027173712849617, 0.00030968469218350947, -0.006162221077829599, -0.0021772750187665224, -0.011949995532631874, 0.017689350992441177, -0.0067335739731788635, 0.01639815792441368, -0.011859612539410591, -0.022428030148148537, 0.027166711166501045, -0.005597323644906282, -0.005038882605731487, -0.03220236673951149, -0.01058133039623499, 0.016114095225930214, -0.0014598555862903595, 0.004590192809700966, -0.01827038824558258, -0.02498459443449974, -0.000828784832265228, -0.010549050755798817, 0.009625847451388836, 0.013789946213364601, 0.024093670770525932, 0.020052235573530197, 0.015029491856694221, -0.006336532067507505, 0.03135017678141594, -0.001993279904127121, -0.00475481990724802, 0.005439152475446463, 0.03199577331542969, 0.006785221863538027, -0.02140798792243004, 0.00721131544560194, -0.013402588665485382, 0.03770285099744797, -0.016501452773809433, -0.011343134567141533, -0.013906153850257397, 0.0004026909591630101, -0.008205534890294075, -0.0017382692312821746, 0.023654663935303688, -0.01641106978058815, -0.021356340497732162, 0.015429762192070484, 0.013531708158552647, -0.02215687930583954, -0.013970713131129742, 0.034500688314437866, 0.0032941573299467564, -0.0018415646627545357, -0.02188573032617569, -0.016888810321688652, -0.00622032443061471, 0.036747366189956665, 0.02175660990178585, 0.004586964845657349, 0.012860286980867386, 0.016269037500023842, -0.0066948384046554565, -0.022079408168792725, -0.011478709988296032, -0.013066877610981464, -0.0016091498546302319, -0.01099451258778572, -0.014099832624197006, 0.04317751154303551, 0.0036928134504705667, 0.021433811634778976, -0.011646565049886703, -0.007430818397551775, -0.019458286464214325, 0.03230566158890724, 0.0010337617713958025, 0.02311236411333084, -0.013467147946357727, 0.017586056143045425, 0.0051421779207885265, 0.037986911833286285, 0.008780115284025669, 0.04640549421310425, 0.030239751562476158, -0.0008158728596754372, -0.022079408168792725, -0.0221310555934906, -0.01692754589021206, 0.0039930157363414764, -0.009761422872543335, -0.004209290724247694, -0.010781466029584408, 0.012479385361075401, -0.0005681251059286296, 0.004528861027210951, 0.008909234777092934, 0.00413504708558321, 0.0014130498748272657, 0.00544238043949008, -0.011485165916383266, 0.0039801038801670074, -0.018851425498723984, 0.0012984564527869225, 0.047180209308862686, -0.0025775448884814978, -0.036256711930036545, 0.022544238716363907, -0.010904128663241863, -0.001029726816341281, -0.008793028071522713, 0.01842533051967621, -0.009567744098603725, -0.01442263089120388, -0.0031117761973291636, -0.0072629633359611034, -0.02538486383855343, -0.030162280425429344, -0.014642134308815002, -0.019471198320388794, -0.00857352465391159, 0.005991137586534023, -0.04028523713350296, -0.016075359657406807, 0.005239017773419619, -0.018928896635770798, -0.0035669219214469194, -0.0007638216484338045, -0.010536138899624348, -0.01765061542391777, -0.01087184902280569, 0.023473897948861122, 0.016953369602560997, -0.005616691429167986, 0.00181089888792485, 0.001300070434808731, 0.015158611349761486, 0.0036411655601114035, -0.010058397427201271, -0.009780790656805038, -0.020065147429704666, -0.03778032213449478, 0.012828007340431213, 0.024803826585412025, -0.016979195177555084, -0.005816826596856117, 0.005058250389993191, 0.01093640923500061, 0.009219121187925339, 0.0028212578035891056, -0.026805177330970764, 0.003311911365017295, -0.004267394542694092, -0.013751210644841194, -0.018373683094978333, 0.018593186512589455, -0.017056666314601898, -0.007269419264048338, 0.019122576341032982, 0.012421281076967716, 0.006552807055413723, 0.015184435062110424, 0.0024790915194898844, -0.010103588923811913, 0.009832438081502914, 0.0001552458415972069, 0.006901429034769535, 0.013673738576471806, 0.001244387705810368, -0.002864835551008582, -0.00223537883721292, 0.003960736095905304, 0.01851571537554264, -0.008812395855784416, 0.03256389871239662, -0.01975526101887226, -0.014629222452640533, 0.023770872503519058, -0.024584323167800903, 0.016062447801232338, 0.022544238716363907, 0.004170555155724287, -0.005858790595084429, -0.0038961763493716717, -0.022686269134283066, -0.004858115687966347, -0.0017172873485833406, 0.006404319778084755, 0.021911554038524628, -0.02373213693499565, -0.022931596264243126, -0.02014261856675148, 0.004803239833563566, 0.012447104789316654, 0.01655310019850731, -0.017482759431004524, -0.030058983713388443, -0.023706313222646713, -0.0013823839835822582, -0.009593567810952663, -0.025643102824687958, -0.002398391952738166, -0.03840009495615959, -0.007295242976397276, -0.002424215665087104, 0.005239017773419619, 0.024584323167800903, -0.019367901608347893, -0.016720956191420555, -0.010807289741933346, 0.010122956708073616, 0.0034539424814283848, -0.0564509779214859, -0.011110720224678516, -0.0003976472362410277, 0.02349972166121006, 0.028793614357709885, 0.016139918938279152, -0.008592892438173294, 0.013712475076317787, -0.007792352698743343, 0.002766381949186325, -0.003441030625253916, 0.014525926671922207, 0.002893887460231781, -0.006330076139420271, 0.03096281923353672, 0.0179088544100523, 0.013660826720297337, 0.01592041552066803, -0.009942189790308475, -0.012873198837041855, 0.029645802453160286, 0.01876104064285755, -0.0029745870269834995, -0.019987674430012703, -0.017263256013393402, 0.004990462679415941, -0.014848724938929081, 0.00223537883721292, 0.0051583182066679, -0.0016737096011638641, -0.005652199499309063, 0.039846230298280716, 0.008276550099253654, 0.00845086108893156, 0.002345130080357194, 0.03359685465693474, -0.01368665136396885, 0.00646565156057477, -0.012886110693216324, 0.00590398209169507, -0.010723361745476723, -0.011297943070530891, 0.018825601786375046, 0.008412125520408154, 0.011420606635510921, 0.005461748223751783, 0.02472635544836521, 0.0016737096011638641, -0.017314905300736427, -0.002203098963946104, 0.013454236090183258, -0.03382926806807518, -0.01854153908789158, 0.014409719035029411, -0.03793526440858841, -0.007527658250182867, -0.013441324234008789, -0.0004720926226582378, -0.03754790499806404, 0.008295917883515358, 0.0018657746259123087, -0.022350559011101723, 0.023060714825987816, -0.028018899261951447, -0.011743404902517796, -0.0023532002232968807, 0.0010394107084721327, 0.03408750891685486, 0.0011451272293925285, 0.026960119605064392, 0.01889016106724739, 0.001951316138729453, -0.012576224282383919, 0.012543944641947746, -0.002584001049399376, -0.013635003007948399, 0.00445138942450285, 0.004803239833563566, 0.015739647671580315, -0.010116500779986382, 0.00021486266632564366, 0.0074372743256390095, -0.02708924002945423, -0.01991020329296589, 0.003902632277458906, 0.009529007598757744, 0.0059201219119131565, -0.02770901285111904, -0.01568800024688244, 0.0015082753961905837, 0.009851805865764618, -0.00858643651008606, -0.007676145061850548, -0.0010724975727498531, -0.027192534878849983, -0.00015988606901373714, 0.020362121984362602, -0.03788361698389053, 0.01255040057003498, 0.007301699370145798, -0.004051119554787874, -0.0047806440852582455, -0.015068228356540203, -0.007940839976072311, 0.03279631584882736, -0.001474381540901959, 0.03367432579398155, -0.004428793676197529, 0.012143674306571484, 0.0018254248425364494, 0.01802506111562252, -0.01639815792441368, 0.007521201856434345, 0.0010224638972431421, 0.015442674048244953, -0.009942189790308475, -0.019742349162697792, -0.0262499637901783, 0.012395457364618778, 0.020000586286187172, -0.012776359915733337, -0.005962085910141468, -0.005403644870966673, -0.01963905245065689, -0.02349972166121006, 0.0035701498854905367, 0.013053965754806995, -0.019845644012093544, -0.015739647671580315, -0.012899022549390793, -0.016243213787674904, -0.03465563431382179, 0.012828007340431213, 0.006117029115557671, -0.008283006027340889, -0.01318308524787426, -0.007133843842893839, 0.029387563467025757, 0.006526982877403498, 0.014448455534875393, -0.017056666314601898, -0.01603662222623825, 0.016979195177555084, -0.029568331316113472, 0.02747659757733345, -0.0442621111869812, 0.01275699120014906, -0.018115444108843803, -0.0009748510783538222, -0.007792352698743343, -0.012634328566491604, 0.011084896512329578, -0.011782140471041203, -0.009677494876086712, -0.014952020719647408, -0.004461073316633701, 0.006636734586209059, 0.019948938861489296, -0.0018899844726547599, 0.02985239401459694, 0.021459635347127914, 0.00011106281453976408, -0.02299615554511547, -0.012117850594222546, 0.01564926467835903, -0.010820201598107815, 0.012027467601001263, 0.010658802464604378, -0.03721219673752785, -0.012995862402021885, 0.007869823835790157, 0.003087566467002034, 0.005138949956744909, -0.02411949448287487, -0.014358071610331535, -0.009813070297241211, 0.0005511782364919782, -0.014461367391049862, -0.013286381028592587, 0.010955777019262314, -0.013350940309464931, 0.004638612736016512, 0.023912902921438217, 0.01118819136172533, -0.020839862525463104, 0.012731167487800121, 0.031789183616638184, -0.004625700879842043, 0.013789946213364601, -0.01914840005338192, -0.02461014874279499, -0.007882736623287201, -0.024222789332270622, -0.01876104064285755, -0.0002558177220635116, -0.015145699493587017, 0.016837162896990776, 0.0020933474879711866, -0.025707662105560303, -0.024700531736016273, 0.016436893492937088, -0.029800744727253914, 0.006772310007363558, -0.009735599160194397, -0.005984681658446789, 0.02324148267507553, -0.0012750535970553756, -0.011937083676457405, 0.003931683953851461, 0.002504915464669466, 0.0267277043312788, 0.009535463526844978, -0.015223171561956406, 0.03718637302517891, -0.017134137451648712, 0.015881679952144623, 0.0005132494261488318, -0.03034304641187191, -0.004977550823241472, 0.024558499455451965, -0.002493617357686162, 0.02136925235390663, 0.0018351087346673012, -0.00913519412279129, -0.021343428641557693, -0.022440942004323006, -0.020233001559972763, 0.00447075767442584, 0.009929277934134007, 0.01929043047130108, -0.03034304641187191, -0.019923115149140358, -0.007695513311773539, 0.01087184902280569, 0.0015236083418130875, 0.0011628811480477452, -0.008379845879971981, -0.005862018559128046, 0.015081140212714672, -0.008508965373039246, 0.008489597588777542, 0.011336678639054298, -0.011465798132121563, 0.003110162215307355, 0.019251694902777672, -0.031117763370275497, 0.012815095484256744, -0.012498753145337105, -0.011633653193712234, 0.004396514035761356, -0.010536138899624348, -0.019793996587395668, -0.004331954289227724, 0.020245913416147232, -0.010361827909946442, -0.0020191038493067026, 0.010206884704530239, 0.020349210128188133, -0.01728908158838749, 0.03243478015065193, -0.017934678122401237, -0.005933034233748913, -0.014009449630975723, 0.017611879855394363, 0.029826570302248, 0.0012556856963783503, 0.011362502351403236, -0.00043981277849525213, 0.00827009417116642, -0.006491475272923708, -0.017237432301044464, 0.0009917980059981346, -0.021575843915343285, -0.01629486121237278, 0.028664495795965195, -0.031014466658234596, -0.0014025588752701879, -0.029878217726945877, 0.004270622506737709, -0.015416850335896015, 0.009064177982509136, 0.1682683378458023, 0.004409425891935825, 0.01579129695892334, 0.045346714556217194, 0.006843325681984425, 0.012079115025699139, 0.017740998417139053, -0.01107843965291977, 0.004567597061395645, 0.022195616737008095, 0.012208234518766403, 0.019871467724442482, -0.028380433097481728, -0.00865099672228098, -0.011672388762235641, -0.026650233194231987, -0.010671714320778847, -0.0017753910506144166, -0.01568800024688244, -0.03481057658791542, 0.00043376031680963933, -0.015442674048244953, -0.015468497760593891, -0.006543123163282871, 0.02773483656346798, 0.00715321209281683, 0.006901429034769535, 0.0030988643411546946, 0.0397687591612339, 0.010471579618752003, 0.00011398817150620744, -0.023551369085907936, -0.006455967202782631, 0.0031827918719500303, -0.024661796167492867, 0.008315285667777061, -0.015158611349761486, 0.0006706136045977473, 0.03305455297231674, 0.023603016510605812, -0.002587229013442993, 0.015197346918284893, 0.004616016522049904, 0.0015768700977787375, -0.007140299770981073, 0.01238254550844431, -0.0002094154478982091, -0.0023532002232968807, 0.013906153850257397, 0.016578923910856247, -0.02750242128968239, -0.006136396899819374, -0.012150130234658718, 0.04599231109023094, 0.012543944641947746, 0.002650174545124173, 0.002981042955070734, 0.0025517211761325598, -0.012711799703538418, -0.011614285409450531, -0.013738298788666725, 0.034500688314437866, -0.0176377035677433, 0.020801126956939697, -0.018864337354898453, 0.021433811634778976, -0.03597265109419823, -0.008031223900616169, -0.016449805349111557, -0.011659476906061172, 0.018619010224938393, -0.022582974284887314, -0.009567744098603725, -0.007553481962531805, -0.017831381410360336, -0.0305754616856575, 0.033984214067459106, 0.0029826569370925426, 0.0003899807925336063, 0.006023417692631483, -0.023577192798256874, -0.008005399256944656, -0.010381195694208145, -0.006217096466571093, -0.02399037405848503, -0.041860491037368774, 0.01727616973221302, -0.001914194319397211, -0.00612994097173214, 0.004283534362912178, -0.011640109121799469, -0.027270006015896797, 0.026779353618621826, -0.007643865421414375, 0.015416850335896015, 0.008612260222434998, -0.019122576341032982, 0.01037473976612091, -0.012795727699995041, -0.004696716088801622, -0.023176923394203186, -0.038632508367300034, 0.009496727958321571, 0.002698594471439719, -0.012847375124692917, -0.01740528829395771, -0.017960501834750175, 0.01293130312114954, 0.0029536050278693438, -0.01839950680732727, -0.02750242128968239, -0.01989729143679142, 0.00014011467283125967, -0.012460017576813698, 0.0089027788490057, 0.009955101646482944, 0.007921472191810608, -0.022092320024967194, 0.005393960978835821, -0.014164392836391926, 0.019961850717663765, -0.02038794569671154, -0.0009183613583445549, 0.01740528829395771, -0.020981894806027412, -0.010736273601651192, -0.014538838528096676, 0.02116266079246998, 0.0056844791397452354, -0.03793526440858841, 0.009425712749361992, -0.0025404230691492558, -0.0011217243736609817, 0.016127007082104683, -0.0005193018587306142, 0.009541919454932213, 0.0047064004465937614, 0.011330222710967064, -0.02176952175796032, 0.017960501834750175, -0.01714704930782318, -1.5975998394424096e-05, -0.003915544133633375, -0.007288787048310041, -0.003344191238284111, -0.033519383519887924, -0.0041156793013215065, -0.0019319482380524278, -0.027683189138770103, -0.023654663935303688, -0.03258972242474556, -0.015765473246574402, 0.005400416906923056, -0.013338028453290462, 0.0017092173220589757, -0.017314905300736427, -0.051776859909296036, -0.030291398987174034, -0.010452210903167725, 0.015972062945365906, -0.0221310555934906, 0.001112040365114808, 0.022841213271021843, -0.008592892438173294, -0.015571793541312218, -0.009496727958321571, -0.16620242595672607, 0.007476010359823704, 0.025178272277116776, -0.013389676809310913, 0.019174223765730858, 0.0007989259902387857, 0.01792176626622677, 0.0008057854138314724, 0.018322035670280457, 0.009851805865764618, 0.01878686435520649, 0.011317310854792595, -0.020103882998228073, -0.006869149394333363, 0.026546938344836235, 0.005500484257936478, 0.0033506471663713455, 0.016708044335246086, -0.017740998417139053, 0.014900372363626957, 0.03331279009580612, -0.006255832500755787, 0.01362209115177393, 0.00025279147666879, 0.01828330010175705, 0.008244270458817482, 0.0058329664170742035, -0.0020045777782797813, -0.010090677067637444, 0.002758312039077282, -0.021214308217167854, -0.004025295842438936, 0.0022805705666542053, 0.00814743060618639, 0.010400563478469849, -0.008773659355938435, 0.007927928119897842, -0.01468086987733841, 0.00028083458892069757, -0.004964638967067003, -0.0036282537039369345, 0.03168588876724243, 0.009399889037013054, -0.0091932974755764, 0.015739647671580315, -0.00425771065056324, 0.010110044851899147, -0.023577192798256874, 0.004709628410637379, 0.008360478095710278, 0.00777298491448164, -0.005923350341618061, 0.0036217977758497, 0.005555360112339258, 0.021433811634778976, 0.01443554274737835, 0.005287437234073877, 0.014797077514231205, -0.004186694975942373, 0.00572321517392993, 0.005629603751003742, -0.011136543937027454, 0.04041435569524765, 0.007482466287910938, -0.019987674430012703, -0.01901927962899208, -0.008037679828703403, 0.00994864571839571, 0.004064031410962343, -0.01677260361611843, 0.0179088544100523, -0.00018217932665720582, 0.030136456713080406, -0.020956071093678474, -0.003444258589297533, 0.016720956191420555, -0.02439064532518387, 0.030523814260959625, 0.0110655277967453, -0.005245473701506853, 0.004454617388546467, 0.03008480742573738, 0.003110162215307355, -0.004748363979160786, 0.01604953594505787, -0.0029923408292233944, -0.009096458554267883, 0.0098905423656106, 0.016578923910856247, -0.01267306413501501, 0.014267687685787678, -0.011259207502007484, 0.009251401759684086, -0.004758047871291637, -0.003679901361465454, 0.018735216930508614, -0.020917333662509918, -0.0014469437301158905, -3.8534057239303365e-05, -0.004971094895154238, 0.004577280953526497, 0.004480441566556692, -0.0038638964761048555, 0.015094052068889141, 0.0074114506132900715, 0.013764122501015663, 0.0011959680123254657, 0.024300260469317436, 0.026211228221654892, 0.01654018834233284, -0.020103882998228073, 0.009038354270160198, 0.01988437958061695, 0.018192917108535767, 0.013635003007948399, 0.0186577457934618, 0.01200809981673956, 0.0040543475188314915, 0.022582974284887314, -0.010232708416879177, 0.020245913416147232, -0.0037896528374403715, -0.01554596982896328, -0.0027696099132299423, -0.0030536726117134094, 0.021485459059476852, -0.08935058861970901, -0.021304693073034286, 0.00015514496772084385, 0.018063796684145927, -0.0288710854947567, 0.02065909653902054, 0.010800833813846111, 0.009683950804173946, -0.008412125520408154, 0.03256389871239662, 0.009896998293697834, -0.028044722974300385, 0.007256507407873869, -0.015248995274305344, 0.014383895322680473, -0.002198257017880678, -0.022712092846632004, -0.008283006027340889, -0.010594242252409458, -0.00038453357410617173, -0.02164040319621563, -0.007676145061850548, 0.016359422355890274, -0.01424186397343874, 0.004354550037533045, 0.013215364888310432, 0.00894151534885168, 0.026288699358701706, 0.01194353960454464, 0.0038832644931972027, 0.0014146638568490744, -0.013596267439424992, 0.011168823577463627, -0.026082107797265053, 0.006552807055413723, -0.022479679435491562, -0.0011184964096173644, -0.003902632277458906, 0.01628194935619831, -0.016114095225930214, 0.012001643888652325, 0.0037024973426014185, -0.009980925358831882, -0.03659242391586304, 0.019083838909864426, -0.009729143232107162, -0.02116266079246998, 0.01093640923500061, -0.006462423596531153, -0.009038354270160198, -0.004457845352590084, -0.010058397427201271, -0.019187135621905327, 0.015623440966010094, 0.019806908443570137, -0.014086920768022537, 0.012401913292706013, 0.0011661091120913625, -0.0005459327367134392, -0.011633653193712234, -0.019251694902777672, 0.0004410232650116086, -0.007998943328857422, 0.023964550346136093, 0.00982598215341568, 0.0057813189923763275, -0.020555799826979637, -0.029387563467025757, 0.015261907130479813, -0.00795375183224678, 0.0016212548362091184, -0.006165449041873217, -0.008844675496220589, 0.016243213787674904, -0.02198902517557144, -0.007133843842893839, -0.01703084260225296, -0.027889778837561607, 0.0175344068557024, -0.016862986609339714, -0.020555799826979637, -0.020194265991449356, 0.004632156807929277, -0.002161135198548436, 0.03416498005390167, 0.0017269712407141924, 0.016191566362977028, -0.0011588461929932237, -0.0004922675434499979, -0.026805177330970764, 0.020594535395503044, 0.034371569752693176, 0.027037590742111206, -0.022582974284887314, 0.004725768230855465, 0.010787921957671642, -0.011368958279490471, -0.0020078059751540422, 0.01690172217786312, -0.013789946213364601, -0.00839275773614645, -0.012543944641947746, -0.03173753619194031, 0.017482759431004524, -0.0072242277674376965, -0.019677788019180298, 0.022828301414847374, -0.005287437234073877, -0.02861284837126732, -0.009445080533623695, 0.014125656336545944, 0.012466473504900932, -0.02809637039899826, 0.01803797297179699, -0.0011136543471366167, -0.006391407921910286, -0.0030827245209366083, -0.017960501834750175, 0.041240718215703964, 0.024196965619921684, 0.011104264296591282, 0.007198403589427471, 0.009367608465254307, 0.028173841536045074, 0.01863192208111286, -0.003534642281010747, -0.024945858865976334, 0.015571793541312218, -0.0049452711828053, 0.03543034940958023, -0.010478035546839237, -0.0034184346441179514, 0.018799778074026108, -0.019974762573838234, 0.0023386741522699594, 0.028432080522179604, -0.017818469554185867, -0.006539895199239254, -0.014203128404915333, 0.006401091814041138, 0.023667575791478157, -0.009374064393341541, -0.005933034233748913, -0.01590750366449356, 0.020826950669288635, -0.008160342462360859, -0.011801508255302906, -0.007179035805165768, -0.022466765716671944, 0.004741908051073551, 0.02451976388692856, 0.014848724938929081, 0.011362502351403236, 0.017431112006306648, 0.010310179553925991, -0.02078821510076523, -0.030239751562476158, -0.029026029631495476, 0.011046160012483597, 0.0037186371628195047, 0.019858555868268013, -0.010174605064094067, 0.0002618701837491244, 0.003534642281010747, -0.004173783119767904, -0.004835519473999739, 0.0013436481822282076, -0.012963582761585712, -0.013738298788666725, 0.0049420432187616825, 0.008922146633267403, -0.045966487377882004, -0.026146668940782547, 0.014203128404915333, 0.001167723094113171, 0.00556504400447011, 0.014964932575821877, 0.008592892438173294, 0.011401238851249218, -0.012363177724182606, -0.0014203127939254045, 0.034526512026786804, 0.004522405099123716, 0.0010595856001600623, -0.014629222452640533, 0.025798045098781586, 0.01889016106724739, 0.004761275835335255, -0.021240131929516792, 0.005742582958191633, 0.0037864248733967543, 0.002311236225068569, -0.00024472150835208595, 0.005245473701506853, 0.0005354417953640223, -0.005174458026885986, -0.002311236225068569, 0.011653020977973938, 0.011672388762235641, -0.001138671301305294, 0.001670481520704925, 0.021472547203302383, -0.010103588923811913, -0.0037024973426014185, -0.014267687685787678, -0.01975526101887226, -0.007321067154407501, 0.0074372743256390095, -0.04922029748558998, -0.02770901285111904, -0.014900372363626957, -0.010155236348509789, 0.03455233946442604, 0.013970713131129742, -0.010807289741933346, 0.025410687550902367, -0.007366258651018143, 0.012653696350753307, -0.009483816102147102, -0.01752149499952793, -0.01443554274737835, 0.02424861304461956, 0.026753529906272888, 0.002382251899689436, 0.03060128539800644, 0.003647621488198638, 0.0032231416553258896, -0.0020642955787479877, 0.005887842271476984, -0.03248642757534981, 0.010000293143093586, 0.002572702942416072, -0.004022067878395319, 0.002295096404850483, -0.005603779572993517, -0.026314523071050644, -0.022221440449357033, 0.0059072100557386875, 0.0028212578035891056, 0.01242773700505495, -0.029310092329978943, 0.05443671718239784, 0.017818469554185867, 0.004419109784066677, 0.015055316500365734, 0.015739647671580315, 0.02923262119293213, 0.009884086437523365, -0.0025339671410620213, -0.0037638291250914335, -0.023060714825987816, 0.015520146116614342, 0.0022321506403386593, 0.02424861304461956, -0.005581183824688196, -0.013299292884767056, 0.005096986424177885, -0.022815389558672905, 0.01580420881509781, -0.031505122780799866, -0.014822901226580143, 0.0015712210442870855, 0.02014261856675148, 0.019600316882133484, -0.008134518750011921, -0.011459342204034328, -0.003287701401859522, 0.02302197925746441, -0.008289461955428123, -0.0018625465454533696, -0.012240514159202576, -0.004073715303093195, 0.005629603751003742, -0.03783196955919266, -0.01765061542391777, 0.013176629319787025, -0.01629486121237278, 0.014913285151124, 0.006310708355158567, 0.0033506471663713455, 0.03096281923353672, -0.008095783181488514, -0.0011717580491676927, -0.014203128404915333, -0.006649646442383528, 0.039381399750709534, 0.009290137328207493, 0.007372714579105377, 0.005526307970285416, -0.01567508839070797]" +4,water,"[0.019031280651688576, -0.01257743313908577, 0.002012526849284768, -0.0017398897325620055, -0.0068047489039599895, 0.0012883612653240561, -0.014242498204112053, -0.03833777830004692, 0.004358754958957434, -0.02543008327484131, -0.0005508647300302982, 0.029200561344623566, -0.0074859121814370155, -0.0007908198749646544, 0.0012771805049851537, 0.005965336225926876, 0.04717225581407547, 0.009790857322514057, 0.028787735849618912, -0.03005373477935791, 0.01038945559412241, 0.01578371599316597, 0.00802946649491787, -0.016017649322748184, -0.02380630187690258, 0.0008424231200478971, -0.001519715879112482, -0.02914551831781864, 0.008215238340198994, -0.02808593027293682, 0.020627541467547417, -0.02274671383202076, -0.028044648468494415, -0.017600148916244507, -0.003503860905766487, -0.018756061792373657, -0.03057664819061756, -0.0036053473595529795, 0.0013133027823641896, 0.0020916517823934555, -0.0009426194592379034, 0.01757262833416462, -0.001917920890264213, 0.007114368490874767, -0.012453584931790829, 0.0023376273456960917, -0.019210170954465866, 0.008511096239089966, 0.012384780682623386, 0.011758661828935146, 0.010183041915297508, -0.00044206788879819214, -0.011882509104907513, -0.014029204845428467, -0.007857455871999264, 0.016100214794278145, -0.001954043284058571, 0.0021277740597724915, 0.014242498204112053, -0.0023273066617548466, 0.0010174441849812865, 0.013747107237577438, -0.011593530885875225, -0.010816042311489582, 0.00019103955128230155, -0.008937683887779713, 0.008084509521722794, 0.025650257244706154, -0.006588015239685774, 0.005893091671168804, 0.013919117860496044, 0.026888735592365265, 0.001247938722372055, -0.0068047489039599895, 0.01918265037238598, -0.0249759741127491, -0.0013580255908891559, 0.0013004019856452942, -0.0003511171380523592, 0.0023840703070163727, 0.022457735612988472, -0.011689857579767704, -0.017159802839159966, 0.0057314014993608, 0.017957933247089386, 0.0061132656410336494, -0.0020882117096334696, 0.0007177152438089252, 0.005604113452136517, -0.010726596228778362, 0.0018663177033886313, 0.012715041637420654, -0.0013072824804112315, 0.024659475311636925, -0.011029335670173168, 0.004678694996982813, -0.005955015309154987, 0.03525534272193909, -0.00423490721732378, -0.02854003943502903, -0.0010570066515356302, 0.02471451833844185, -0.008731270208954811, -0.0074996729381382465, -0.03085186518728733, -0.009515640325844288, 0.0031529588159173727, 0.007437748834490776, 0.015921324491500854, 0.00032553053461015224, -0.03129221498966217, 0.019939497113227844, 0.017283650115132332, -0.031099561601877213, -0.01400856301188469, -0.008015705272555351, 0.010162401013076305, -0.018852388486266136, 0.004616770893335342, -0.001255679177120328, 0.0021862578578293324, -0.003058352740481496, 0.010988052934408188, -0.014586519449949265, 0.003080714261159301, 0.006918276194483042, -0.022581584751605988, -0.012439824640750885, -0.003350771265104413, 0.008930803276598454, 0.045355819165706635, 0.0075134336948394775, 0.020723866298794746, -0.012721922248601913, -0.03833777830004692, 0.019141366705298424, -0.034649863839149475, -0.008235879242420197, -0.007217575330287218, -0.02300817146897316, 0.0023995512165129185, 0.022884322330355644, -0.035007648169994354, -0.015508498065173626, -0.0007052444852888584, 0.016719454899430275, 0.01927897520363331, 0.007396466564387083, -0.006808189209550619, 0.00043411238584667444, 0.017889127135276794, -0.014627802185714245, 0.005156885366886854, 0.0015300364466384053, -0.02487964928150177, -0.013925998471677303, -0.015907563269138336, 0.0025285594165325165, -0.000251565856160596, 0.01342372689396143, -0.004644292872399092, -0.006268075201660395, 0.013719584792852402, -0.015343367122113705, 0.012735683470964432, 0.03173255920410156, 0.013932878151535988, 0.0059481351636350155, 0.0054045808501541615, 0.0010535664623603225, -0.020737627521157265, 0.04640164598822594, -0.026338301599025726, 0.01731117069721222, -0.0007331962115131319, 0.039438646286726, 0.013568216003477573, 0.022760475054383278, -0.011627933010458946, -0.017063476145267487, -0.013471889309585094, 0.022443974390625954, 0.005425222218036652, 0.019058801233768463, -0.009240422397851944, 0.0015136954607442021, 0.017902888357639313, -0.013987922109663486, 0.020489932969212532, 0.0018611573614180088, 0.008566140197217464, 0.023751256987452507, -0.003801439655944705, 0.00946059636771679, -0.6957494616508484, -0.016086453571915627, 0.001338244415819645, -0.0036913526710122824, 0.012997139245271683, 0.030301431193947792, 0.02043488807976246, 0.01288705226033926, -0.009632606990635395, 0.005063999444246292, 0.007878096774220467, 0.0012754604686051607, -0.023778779432177544, -0.021976105868816376, -0.005552510265260935, -0.00423490721732378, 0.02024223655462265, -0.002081331331282854, -0.013513172045350075, 0.012515509501099586, -0.0006114985444582999, 0.006563934031873941, -0.008614303544163704, -0.014558997936546803, 0.021343106403946877, 0.008559259586036205, 0.0016366832423955202, -0.021700888872146606, -0.0006102084880694747, 0.019870692864060402, -0.017641432583332062, -0.007974422536790371, 0.007706086151301861, 0.007472150959074497, 0.03327377885580063, -0.01978812739253044, -0.01305906381458044, 0.02507230080664158, 0.0288152564316988, 0.04538334161043167, -0.002009086776524782, -0.018068019300699234, 0.03013630025088787, -0.00865558534860611, -0.008105151355266571, 0.005638515576720238, 0.02372373640537262, 0.0020280079916119576, 0.006622417364269495, 0.00071040476905182, 0.020668823271989822, -0.009660129435360432, 0.0030927550978958607, 0.002280863933265209, 0.012508628889918327, -0.016815779730677605, 0.0028571002185344696, -0.006615537218749523, -0.011758661828935146, 0.030356474220752716, -0.01820562779903412, 0.020214714109897614, -0.023242104798555374, -0.019155127927660942, -0.018054258078336716, 0.01864597573876381, -0.023957671597599983, 0.011717379093170166, 0.012467346154153347, -0.0006979340105317533, 0.012274693697690964, 0.009976629167795181, -0.0005762363434769213, -0.000976161565631628, -0.003550303867086768, 0.011992596089839935, 0.0322829969227314, -0.011510965414345264, -0.004320912528783083, 0.01034817285835743, -0.0009245583205483854, -0.019223932176828384, 0.004792222287505865, -0.013905356638133526, 0.02969595231115818, -0.018783584237098694, -0.022058671340346336, 0.002777975285425782, 0.007451510056853294, -0.014903020113706589, 0.02942073531448841, 0.04326416924595833, 0.010630270466208458, 0.0025251193437725306, -0.024810845032334328, -0.012082042172551155, -0.022499019280076027, -0.005927493795752525, 0.0008114611846394837, -0.004276189487427473, 0.0014517715899273753, -0.02631077915430069, 0.010988052934408188, -0.004534205887466669, 0.009887183085083961, 0.010416977107524872, -0.02783823572099209, 0.018219389021396637, 0.0226641483604908, -0.021081648766994476, 0.0030411516781896353, -0.0004674394731409848, 0.00014287650992628187, 0.0029551463667303324, -0.01528832409530878, -0.023063214495778084, 0.011049976572394371, 0.020022062584757805, 0.00793313980102539, -0.025003496557474136, 0.001372646540403366, -0.0072038141079247, 0.013196672312915325, -0.011958193965256214, -0.013079704716801643, -0.004228026606142521, 0.005872450303286314, -0.008352846838533878, -0.012446705251932144, -0.02014590986073017, 0.022086191922426224, 0.018425801768898964, 0.014325063675642014, -0.007974422536790371, 0.01934777945280075, -0.00048550061183050275, 0.001479293336160481, -0.01960923708975315, 0.017861606553196907, -0.002473515924066305, -0.021742170676589012, -0.004912629723548889, 0.00018415911472402513, -0.016513042151927948, -0.005205048248171806, -0.014022324234247208, -0.013506291434168816, -0.006367841735482216, -0.005500907078385353, 0.007871216163039207, -0.0008579040877521038, -0.004083537496626377, -0.019925735890865326, 0.02657223492860794, 0.015577302314341068, -0.013533812947571278, 0.013960400596261024, -0.0035124614369124174, 0.0017906329594552517, 0.00811203196644783, -0.00949499849230051, 0.005108722019940615, -0.02710890956223011, 0.006770346779376268, 0.010554585605859756, -0.024659475311636925, 0.013299878686666489, 0.008566140197217464, -0.014435150660574436, -0.01729741133749485, 0.007630401290953159, -0.017600148916244507, -0.01837075874209404, 0.029365692287683487, -0.001688286429271102, 0.021907301619648933, -0.004812863655388355, 0.015412172302603722, 0.004867907147854567, 0.013588856905698776, -0.00985278096050024, -0.014036085456609726, -0.024411778897047043, 0.005872450303286314, 0.013430606573820114, 0.006051341537386179, 0.04645669087767601, 0.02694377861917019, -0.027246518060564995, 0.016196541488170624, -0.008985846303403378, -0.00341269513592124, 0.010320650413632393, -0.0028312986250966787, 8.847808203427121e-05, -0.018233150243759155, -0.012061400339007378, -0.00021404599829111248, 0.005156885366886854, 0.014476432465016842, 0.03021886572241783, -0.014696606434881687, 0.0027659344486892223, -0.002009086776524782, 0.003220043145120144, -0.024315454065799713, -0.0099903903901577, -0.01969180256128311, 0.04907125607132912, 0.023063214495778084, -0.0034642985556274652, -0.03734699636697769, -0.02969595231115818, -0.009639487601816654, 0.0010260447161272168, 0.03076929971575737, -0.017503824084997177, 0.0002919883991125971, -0.001857717172242701, 0.001757090794853866, 0.012432944029569626, -0.014270019717514515, 0.004327792674303055, -0.019664280116558075, -0.025182388722896576, -0.011806824244558811, 0.004117939621210098, 0.03173255920410156, -0.005394259933382273, 0.0003390763886272907, 0.007210694719105959, 0.010520183481276035, -0.0012333177728578448, 0.007747368421405554, -0.02300817146897316, 0.0014758530305698514, 0.009598204866051674, -0.026985062286257744, 0.0207651499658823, 0.02416408434510231, 0.011786183342337608, 0.002427072962746024, 0.02640710584819317, -0.03272334486246109, 0.01578371599316597, -0.010155520401895046, 0.028429953381419182, -0.020269758999347687, -0.005734841804951429, 0.017366215586662292, -0.007128129713237286, -0.004045695066452026, -0.01649928092956543, 0.011201346293091774, -0.0013932879082858562, -0.016650650650262833, 0.03415447473526001, 0.009577563963830471, 0.024907169863581657, 0.019664280116558075, 0.004781901370733976, 0.019306497648358345, -0.0026678883004933596, -0.016375431790947914, 0.015425932593643665, -0.01791664958000183, 0.006550172809511423, -0.014517715200781822, -0.014256259426474571, 0.011717379093170166, 0.0012238571653142571, -0.0199807807803154, 0.01586627960205078, -0.010926129296422005, 0.006436645984649658, -0.0071074883453547955, -0.011944432742893696, -0.003932167775928974, -0.0037326354067772627, -0.014393867924809456, -0.009694531559944153, 0.005377058871090412, 0.0121714873239398, 0.007595999166369438, 0.004599569831043482, -0.024329213425517082, -0.037484604865312576, 9.498224244453013e-05, -0.004056015983223915, 0.006281835958361626, 0.009873422794044018, 0.0167744979262352, 0.018879910930991173, 0.0017519304528832436, 0.0013494250597432256, 0.0004584089037962258, 0.005566271021962166, -0.0029998691752552986, -0.011111901141703129, -0.0008368327398784459, -0.005583472084254026, -0.008772552944719791, -0.005119042936712503, -0.010451379232108593, 0.04114499315619469, 0.011944432742893696, 0.0025973638985306025, -0.008187715895473957, -0.016980910673737526, 0.0012591193662956357, -0.007637281436473131, 0.0025302795693278313, -0.010988052934408188, -0.000633859948720783, -0.013919117860496044, -0.0023255867417901754, 0.0056625972501933575, -0.003884004894644022, 0.034292083233594894, -0.0014939141692593694, -0.011208226904273033, -0.010279368609189987, -0.016292868182063103, 0.005992857739329338, 0.05116290599107742, 0.02558145299553871, 0.004379396326839924, 0.022870562970638275, 0.022499019280076027, -0.00728637957945466, -0.0064263250678777695, -0.0044378796592354774, 0.020214714109897614, -0.00798130314797163, 0.025567691773176193, -0.012364139780402184, 0.03310864791274071, -0.006550172809511423, 0.008972086012363434, 0.018329475075006485, -0.016898345202207565, -0.02051745355129242, -0.011380237527191639, -0.021246779710054398, 0.0034023744519799948, -0.02104036696255207, 0.018866149708628654, 0.03720938786864281, 0.011566009372472763, -0.003935608081519604, 0.0017011872259899974, 0.039823949337005615, 0.005738281644880772, -0.004124820232391357, -0.0022413013502955437, -0.006859792396426201, -0.0027194914873689413, 0.005621314514428377, -0.004613331053406, 0.005315135233104229, 0.028787735849618912, 0.002086491556838155, 0.027700627222657204, -0.0024924371391534805, 0.025664018467068672, 0.011070618405938148, 0.00684603163972497, -0.016733214259147644, 0.015673628076910973, -0.017641432583332062, -0.008662465959787369, 0.036769039928913116, 0.009391792118549347, -0.012790726497769356, 0.024274170398712158, 0.01333428081125021, -0.015109432861208916, -0.014724128879606724, -0.003018790390342474, 0.02335219271481037, 0.008896401152014732, -0.0023393474984914064, -0.007905618287622929, -0.031622473150491714, -0.008669346570968628, -0.030631691217422485, 0.022223802283406258, -0.005807086359709501, 0.0007546975975856185, -0.004056015983223915, -0.0057967654429376125, -0.016306627541780472, -0.017861606553196907, -0.006340319756418467, 0.0033318500500172377, 0.00604446092620492, -0.020200954750180244, 0.008917042054235935, 0.010093596763908863, 0.0023703095503151417, 0.004283070098608732, -0.0008131812792271376, 0.011194465681910515, 0.0006497709546238184, -0.0001392212725477293, -0.009006488136947155, -0.0034625784028321505, -0.0166644100099802, -0.0206137802451849, 0.006182069890201092, 0.006281835958361626, 0.001670225290581584, -0.003503860905766487, 0.007024922873824835, 0.0007026643143035471, 0.008359727449715137, 0.023572366684675217, -0.010946770198643208, 0.011393998749554157, 0.017765279859304428, 0.023420996963977814, -0.0027143312618136406, -0.019925735890865326, 0.00020942320406902581, 0.013616378419101238, -0.022141236811876297, 0.007616640068590641, -5.326961036189459e-05, 0.0042177061550319195, 0.0033215293660759926, 0.017641432583332062, 0.023049453273415565, -0.00953628122806549, 0.010293128900229931, 0.012653117999434471, -0.02489341050386429, 0.016361672431230545, -0.015054388903081417, -0.0010922688525170088, 0.007919379509985447, 0.006243993528187275, 0.01747630164027214, -0.010011031292378902, 0.0026352060958743095, -0.005232569761574268, -0.03299856185913086, 0.027576778084039688, 0.013038421981036663, -0.01248798705637455, 0.005758923012763262, 0.03291599452495575, 0.004689015448093414, -0.011751781217753887, -0.014614041894674301, 0.012033878825604916, 0.010017911903560162, 0.006687781773507595, -0.003870244137942791, -0.018659736961126328, -0.024494344368577003, -0.01784784533083439, -0.008724390529096127, -0.02416408434510231, -0.024384258314967155, 0.0018456763355061412, 0.004558287560939789, 0.007967542856931686, -0.019320258870720863, -0.015384649857878685, -0.04345681890845299, -0.0050880806520581245, -0.0009486398193985224, 0.0011258110171183944, 0.01640295423567295, -0.02014590986073017, 0.005187847185879946, -0.017613910138607025, 0.01417369395494461, -0.009556923061609268, -0.03784238547086716, -0.006818510126322508, 0.002986108185723424, 0.029723474755883217, 0.00033649621764197946, 0.011641694232821465, 0.025732822716236115, 0.023737497627735138, -0.009061531163752079, -0.0053598578087985516, -0.023379715159535408, -0.004059455823153257, 0.011882509104907513, -0.03013630025088787, 0.04164038598537445, 0.030989473685622215, 0.011221987195312977, 0.0006355801015160978, -0.01556354109197855, 0.018769823014736176, 0.03960377722978592, 0.00914409663528204, -0.018769823014736176, -0.00608918396756053, -0.007382705342024565, -0.005851808935403824, 0.0052532111294567585, 0.003870244137942791, 0.018164345994591713, -0.0137746287509799, -0.020737627521157265, 0.007953781634569168, 0.005645396187901497, 0.02042112685739994, -0.02809969149529934, 0.0176689550280571, -0.0038668038323521614, 0.0011980555718764663, -0.003656950546428561, 0.007919379509985447, -0.012749443762004375, -0.009825259447097778, 0.010114237666130066, -0.016292868182063103, 0.008669346570968628, 0.007042123936116695, -0.014435150660574436, 0.0016375432023778558, 0.010444498620927334, -0.011999476701021194, 0.006034140475094318, -0.0167744979262352, -0.02175593189895153, 0.0008970365743152797, -0.021288061514496803, -0.011393998749554157, -0.018453324213624, -0.023159541189670563, -0.03431960567831993, 0.0017940731486305594, -0.0031219967640936375, -0.0027556137647479773, 0.028209779411554337, -0.018659736961126328, -0.03195273503661156, 0.017159802839159966, -0.009419313631951809, 0.030659213662147522, 0.002777975285425782, 0.05807086080312729, 0.03654886409640312, -0.0014870337909087539, -0.010919248685240746, 0.00846981443464756, -0.01400856301188469, -0.006099504418671131, 0.009130335412919521, -0.011621052399277687, 0.010568346828222275, -0.004675254691392183, -0.016746975481510162, -0.0005831167800351977, -0.004486043006181717, -0.02914551831781864, 0.015480976551771164, 0.015646107494831085, -0.011566009372472763, -0.0029327848460525274, -0.01493054162710905, -0.033026084303855896, 0.025966757908463478, -0.006708423141390085, 0.003539983183145523, -0.015852520242333412, -0.01493054162710905, -0.010017911903560162, 0.030521605163812637, -0.008882639929652214, 0.018150584772229195, 0.02014590986073017, -0.003656950546428561, 0.0011154903331771493, 0.0003003739402629435, -0.03566816821694374, -0.003670711535960436, -0.004200505092740059, 0.018219389021396637, -0.017861606553196907, 0.005208488553762436, 0.005411461461335421, 0.0034969805274158716, -0.002389230765402317, -0.013120987452566624, 0.009040890261530876, 0.023255866020917892, -0.032585736364126205, -0.030163822695612907, 0.003519341815263033, 0.024287931621074677, 0.010423857718706131, 0.00041325605707243085, -0.016719454899430275, -0.021962344646453857, -0.007823053747415543, -0.010079835541546345, 0.01604517176747322, 0.01775151863694191, -0.027494214475154877, -0.016306627541780472, -0.01711851917207241, -0.005342656746506691, -0.003125437069684267, -0.0020796111784875393, -0.01257055252790451, -0.03343890979886055, -0.01907256245613098, -0.015274562872946262, -0.0016951669240370393, 0.01221277005970478, -0.010554585605859756, -0.008765672333538532, -0.012157727032899857, 0.027934562414884567, -0.012405422516167164, 0.01963675767183304, -0.0076235206797719, 0.00104238570202142, -0.022154996171593666, -0.003598466981202364, -0.006711863446980715, -0.03522782027721405, 0.013114106841385365, 0.007802411913871765, -0.03363155946135521, -0.003481499617919326, 0.008669346570968628, 0.030246388167142868, 0.009570683352649212, 0.00724509684368968, 0.034292083233594894, -0.01190315093845129, -0.009832140058279037, -0.03602595254778862, -0.00421426584944129, 0.016471758484840393, -0.012446705251932144, 0.00690795574337244, 0.01810930110514164, -0.040181733667850494, -0.0014801532961428165, 0.02514110505580902, 0.003302608150988817, 0.012997139245271683, -0.017820322886109352, -0.035007648169994354, 0.00305491266772151, 0.01890743151307106, -0.00726573821157217, -0.0038324017077684402, 0.015343367122113705, 0.008593661710619926, -0.006615537218749523, 0.02015967108309269, -0.009646368212997913, -0.017613910138607025, 0.005029597319662571, 0.018687257543206215, 0.02328338846564293, -0.0206137802451849, -0.019870692864060402, -0.019815649837255478, -0.01597636751830578, -0.002368589397519827, -0.012164606712758541, -0.0034866598434746265, -0.013595737516880035, 0.03085186518728733, 0.01292833499610424, -0.02068258449435234, -0.02335219271481037, 0.02094404026865959, -0.04799790680408478, -0.009969748556613922, 0.005831167567521334, -0.0014964943984523416, 0.0021449753548949957, 0.010485781356692314, -0.00285365991294384, 0.03525534272193909, -0.0024339535739272833, 0.02798960544168949, -0.026874974370002747, -0.008407889865338802, -0.003220043145120144, -0.00497455382719636, 0.012948976829648018, 0.00066095165675506, -0.029585866257548332, -0.01342372689396143, 0.02380630187690258, -0.007616640068590641, 0.007836814038455486, 0.0044241189025342464, -0.010816042311489582, -0.039466168731451035, -0.018866149708628654, 0.018329475075006485, 0.0018284752732142806, 0.012790726497769356, 0.01065091136842966, -0.012157727032899857, -0.014861737377941608, 0.012240291573107243, 0.009426194243133068, -0.03720938786864281, 0.008607422932982445, -0.007589118555188179, 0.007781770545989275, 0.007238216232508421, -0.005057118833065033, -0.02424664981663227, 0.0029069832526147366, -0.03864051774144173, -0.0023152660578489304, 0.010520183481276035, -0.0059481351636350155, 0.012797607108950615, 0.004100738558918238, 0.006178629584610462, -0.0012057960266247392, -0.005174086429178715, -0.03467738628387451, -0.021384388208389282, 0.002509638201445341, -0.0037119940388947725, -0.02237517014145851, -0.028512518852949142, 0.02969595231115818, -0.019774366170167923, 0.0022051790729165077, 0.018742302432656288, -0.009969748556613922, 0.008559259586036205, 0.028402430936694145, 0.01926521398127079, -0.034181997179985046, -0.002260222565382719, -0.008270281367003918, -0.01173113938421011, -0.011043095961213112, 0.012157727032899857, -0.015728671103715897, -0.009563802741467953, -0.012900813482701778, 0.019774366170167923, -0.00416954280808568, -0.013176030479371548, -0.011297672055661678, 0.012522389180958271, 0.005899971816688776, 0.014393867924809456, 0.20751388370990753, -0.008449172601103783, 0.003694792976602912, 0.04095234349370003, 0.005218809004873037, 0.007251977454870939, 0.017421258613467216, -0.016444236040115356, -2.3906819478725083e-05, 0.005490586161613464, -0.01025184616446495, 0.007967542856931686, -0.01632038876414299, -0.0002870431053452194, -0.014861737377941608, 0.011799943633377552, -0.03522782027721405, -0.014669084921479225, -0.008132672868669033, 0.006536412052810192, -0.025801626965403557, -0.012481107376515865, -0.011799943633377552, -0.01907256245613098, 0.028952864930033684, -0.013265476562082767, -0.013967281207442284, -0.008146434091031551, 0.033218733966350555, -0.0040663364343345165, -0.012481107376515865, 0.0007018042379058897, 0.0025285594165325165, 0.005504346918314695, -0.013967281207442284, -0.002459755167365074, -0.007011162117123604, -0.012680639512836933, 0.01381591148674488, 0.020737627521157265, -0.013148508965969086, 0.007341423071920872, 0.015439693816006184, 0.015315845608711243, -0.017338693141937256, 0.013843433000147343, -0.007472150959074497, -0.018398279324173927, 0.0032458447385579348, 0.005177526269108057, -0.03120964765548706, 0.012157727032899857, 0.0311270821839571, 0.02416408434510231, 0.0003339160466566682, 0.00532889598980546, -0.003159839194267988, -0.01784784533083439, -0.007251977454870939, -0.005005515646189451, 0.0011223708279430866, 0.03200777992606163, -0.019457867369055748, 0.02192106284201145, -0.019499149173498154, -0.009212900884449482, -0.040071647614240646, 0.004269309341907501, -0.010816042311489582, -0.013719584792852402, -0.00534953735768795, -0.023255866020917892, -0.014201215468347073, 0.014352585189044476, -0.029998691752552986, -0.029806040227413177, 0.007864335551857948, 0.042135778814554214, 0.002024567686021328, 0.004874787293374538, -0.007905618287622929, -0.01649928092956543, -0.007864335551857948, -0.02105412818491459, -0.005459624342620373, -0.017159802839159966, 0.001883518765680492, -0.0026059644296765327, 0.0006209591520018876, 0.0036191081162542105, 0.010533944703638554, -0.026957539841532707, -0.011325194500386715, 0.008958324790000916, 0.016430476680397987, 0.006921716500073671, 0.003290567547082901, -0.013698943890631199, -0.0013477050233632326, 0.006429765373468399, -0.0152470413595438, 0.007802411913871765, 0.026696084067225456, 0.018123062327504158, -0.006557053420692682, 0.024686995893716812, 0.00684259133413434, 0.03299856185913086, -0.00456860801205039, -0.008077628910541534, -0.01963675767183304, -0.03597090765833855, 0.00568667845800519, -0.016636889427900314, 0.013581976294517517, 0.02898038737475872, 0.0006308497977443039, -0.0068357111886143684, 0.0167744979262352, -0.005738281644880772, 0.004104178864508867, -0.02004958502948284, 0.008579901419579983, 0.003656950546428561, 0.012336618266999722, -0.00811203196644783, -0.011793063953518867, 0.0004274469392839819, 0.0015764794079586864, -0.04755755886435509, 0.010637151077389717, 0.002237861044704914, -0.010066074319183826, -0.012728802859783173, -0.018040496855974197, 0.01881110668182373, -0.005036477465182543, 0.006925156805664301, -0.013595737516880035, 0.0054974667727947235, -0.008015705272555351, -0.023076975718140602, 0.01400856301188469, 0.030108777806162834, 0.011978835798799992, -0.02873269096016884, 0.016912106424570084, 0.007430868688970804, -0.005057118833065033, -0.008531738072633743, -0.016994671896100044, 0.0050605591386556625, -0.01136647630482912, 0.0032131625339388847, 0.025168627500534058, -0.01110502053052187, -0.037236906588077545, -0.018590932711958885, -0.007479031570255756, 0.04084225371479988, -0.02540256269276142, -0.0056763580068945885, 0.03806256130337715, -0.02426040917634964, -0.00421082554385066, 0.0137746287509799, -0.18120311200618744, 0.01114630326628685, 0.010127998888492584, -0.01556354109197855, 0.015054388903081417, 0.013409965671598911, 0.010183041915297508, -0.012302216142416, -0.007279498968273401, 0.008263400755822659, 0.004754379857331514, 0.0009968028170987964, -0.046346601098775864, 0.010871085338294506, -0.013155389577150345, -0.002571562072262168, -0.0036982332821935415, -0.003290567547082901, 0.004341553896665573, 0.02737036533653736, 0.031980257481336594, -0.010630270466208458, 0.01226781401783228, -0.012756324373185635, 0.017435019835829735, 0.018522128462791443, -0.015728671103715897, 0.0048025427386164665, -0.015081911347806454, -0.007795531768351793, -0.008703748695552349, -0.0011215107515454292, 0.01863221451640129, 0.0037085539661347866, 0.0017037674551829696, 0.015467215329408646, -0.006395363248884678, -0.012254052795469761, -0.015893802046775818, 0.0298610832542181, 0.003598466981202364, 0.03555808216333389, 0.008050107397139072, -0.002000486245378852, -0.02077891118824482, 0.03021886572241783, 0.012680639512836933, -0.007334542460739613, 0.013533812947571278, -0.024205366149544716, 0.0037498364690691233, -0.016100214794278145, -0.011655454523861408, 0.028072170913219452, -0.00302223046310246, 0.004747499246150255, -0.01453147642314434, -0.004334673285484314, -0.01217836793512106, -0.005266972351819277, -0.023682452738285065, 0.00038186408346518874, 0.009068411774933338, -0.012515509501099586, -0.00013954380119685084, -0.008359727449715137, 0.0028158174827694893, -0.023861344903707504, -0.024645714089274406, -0.008366607129573822, -0.010052314028143883, -0.01802673749625683, -0.01381591148674488, -0.02004958502948284, -0.003111676312983036, 0.010726596228778362, -0.02953082136809826, 0.01702219247817993, 0.003835841780528426, -0.00838036835193634, -0.023957671597599983, 0.03503517061471939, -0.0005525848246179521, -0.0023840703070163727, -0.0008566140313632786, 0.004355314653366804, -0.019334018230438232, -0.005834607873111963, -0.002994708949699998, -7.767364877508953e-05, 0.035172779113054276, -0.017641432583332062, -0.022237561643123627, -0.00994222704321146, 0.006374721881002188, 0.008813835680484772, 0.014077367261052132, 0.002227540360763669, 0.0144076282158494, 0.0011163504095748067, 0.007000841666013002, 0.014228736981749535, -0.03484251722693443, 0.022526539862155914, 0.03068673424422741, 0.007795531768351793, 0.02112293243408203, 0.005920613184571266, 0.03164999559521675, -0.004651173483580351, 0.00211745360866189, 0.00811203196644783, 0.019678041338920593, 0.01615525782108307, 0.012054519727826118, 0.011765541508793831, -0.014724128879606724, -0.02452186681330204, 0.0158800408244133, -0.015329606831073761, 0.02837490849196911, -0.0018714780453592539, -0.00798818375915289, 0.0016306628240272403, -0.00035047210985794663, -0.01952667161822319, -0.10260102897882462, -0.031787604093551636, -0.0033903338480740786, 0.03239308297634125, 0.0023393474984914064, 0.016788259148597717, 0.0012401981512084603, 0.010093596763908863, -0.011118780821561813, 0.04252108186483383, -0.0017123679863288999, -0.026021800935268402, -0.008882639929652214, -0.021989867091178894, 0.02603556215763092, 0.008999607525765896, -0.015026867389678955, -0.03184264898300171, -0.004654613323509693, 0.02354484423995018, 0.011868748813867569, 0.01030000951141119, -0.020283518359065056, -0.009212900884449482, -0.0015025147004052997, 0.005442423280328512, -0.025732822716236115, 0.018219389021396637, 0.012082042172551155, 0.009302346967160702, -0.0065054502338171005, 0.0039012059569358826, 0.002946545835584402, -0.03877812623977661, -0.0015463775489479303, 0.0076785641722381115, -0.009302346967160702, 0.01297649834305048, 0.029448257759213448, -0.016265345737338066, 0.013946639373898506, 0.015549780800938606, 0.020187193527817726, -0.019058801233768463, 0.01570115052163601, -0.01480669341981411, 0.002674768678843975, 0.008579901419579983, -0.0014517715899273753, -0.018604693934321404, -0.030163822695612907, 0.015508498065173626, -0.011848106980323792, -0.005036477465182543, 0.018838627263903618, -0.004506684374064207, -0.006584575399756432, 0.036163561046123505, -0.015659866854548454, 0.00532545568421483, -0.004403477534651756, 0.00021576610743068159, 0.0047750212252140045, 0.029558343812823296, 0.01793041080236435, -0.003514181589707732, -0.028925344347953796, -0.017228607088327408, 0.01703595370054245, -0.017971692606806755, -0.012591194361448288, 0.0015326166758313775, 0.001302122138440609, 0.029640909284353256, -0.030879387632012367, 0.0014397307531908154, 0.005215368699282408, -0.002237861044704914, 0.007774890400469303, -0.013471889309585094, -0.02255406230688095, -0.0220311488956213, 0.013396204449236393, -0.011703617870807648, 0.026682322844862938, 0.013162270188331604, 0.005125923082232475, 0.011352716013789177, 0.030906908214092255, -0.03753964602947235, -0.02764558233320713, 0.01802673749625683, 0.02507230080664158, -0.010334411635994911, 0.0027040105778723955, 0.015591063536703587, -0.0002423202822683379, -0.026448387652635574, 0.005174086429178715, -0.007774890400469303, -0.0045961299911141396, -0.021714650094509125, -0.049373991787433624, -0.0005474245408549905, 0.0027745349798351526, -0.011201346293091774, 0.016898345202207565, 0.01453147642314434, -0.0075271944515407085, 0.008958324790000916, -0.0076785641722381115, 0.0028123774100095034, -0.017421258613467216, 0.012157727032899857, -0.021989867091178894, -0.026063082739710808, -0.01731117069721222, -0.02543008327484131, 0.030356474220752716, 0.018068019300699234, -0.004785341676324606, 0.00758223794400692, 0.01021056342869997, 0.007740488275885582, 0.02265038900077343, -0.0005594652611762285, -0.011882509104907513, 0.00846981443464756, -0.017269888892769814, 0.002879461506381631, -0.017517585307359695, -0.001962643815204501, -0.006013499107211828, -0.014325063675642014, -0.001962643815204501, 0.006058222148567438, 0.0106990747153759, -0.014586519449949265, -0.01328611746430397, 0.008882639929652214, -0.013705824501812458, -0.0014784332597628236, -0.018260670825839043, -0.014751650393009186, -0.0006923436303623021, 0.0015618584584444761, -0.007609759923070669, -0.0004713097296189517, -0.008978966623544693, 0.011345835402607918, 0.010286248289048672, 0.003914966713637114, 0.0009125175420194864, 0.0034763391595333815, 0.016788259148597717, -0.020627541467547417, -0.021425671875476837, -0.03569569066166878, 0.011703617870807648, -0.0003960549656767398, 0.014737889170646667, -0.011153182946145535, 0.014792933128774166, 0.006061662454158068, 0.005583472084254026, -0.016980910673737526, 0.003608787665143609, 0.010038552805781364, -0.0029052630998194218, 0.008923922665417194, 0.0304940827190876, -0.03905334323644638, -0.024095280095934868, -0.015329606831073761, 0.015907563269138336, 0.004393157083541155, 0.008937683887779713, 0.0011533327633515, -0.00811203196644783, -3.5692250094143674e-05, 0.0020073666237294674, 0.04849329963326454, 0.005249770823866129, 0.012666878290474415, -0.04158534109592438, 0.02452186681330204, 0.016980910673737526, 0.010107357054948807, -0.010451379232108593, 0.005807086359709501, -0.0066705807112157345, 0.017723998054862022, -0.03192521259188652, 0.013162270188331604, 0.002081331331282854, -0.007747368421405554, 0.007458390202373266, 0.020544975996017456, -0.012646237388253212, -0.008944563567638397, 0.01658184640109539, 0.04202568903565407, 0.011793063953518867, -3.308521263534203e-05, 0.0014018884394317865, -0.029365692287683487, -0.017889127135276794, 0.011022455058991909, -0.006797868758440018, -0.032338038086891174, -0.013595737516880035, 0.011868748813867569, 0.010561466217041016, 0.0002784425450954586, 0.0053460970520973206, 0.00528761325404048, -0.006574254482984543, 0.024287931621074677, -0.00834596622735262, -0.03131973370909691, -0.007079966366291046, 0.01900375820696354, 0.02025599777698517, 0.014036085456609726, 0.01856341026723385, 0.00010465784725965932, 0.0243429746478796, 0.017531344667077065, -0.010781640186905861, -0.020655062049627304, 0.011449041776359081, 0.006856352556496859, 0.004472281783819199, 0.0007319061551243067, -0.024769561365246773, -0.030191343277692795, -0.00341269513592124, 0.0022533421870321035, -0.015040628612041473, 0.03693416714668274, -0.024645714089274406, 0.04609890654683113, 0.007430868688970804, -0.018233150243759155, 0.01074723806232214, 0.010334411635994911, 0.018494606018066406, 0.012811367399990559, 0.01226093340665102, -0.022168757393956184, 0.0008247920195572078, 0.013657661154866219, -0.0032045620027929544, 0.013829671777784824, -0.021356867626309395, -0.015480976551771164, -0.004286510404199362, -0.02567777968943119, 0.01962299644947052, -0.01641671545803547, 0.0038048799615353346, 0.02157703973352909, 0.019389063119888306, 0.023930149152874947, 0.006794428452849388, -0.01436634548008442, -0.013237955048680305, 0.020820192992687225, -0.011751781217753887, -0.0167744979262352, -0.00910281389951706, 0.017421258613467216, -0.004933271091431379, -0.02730156108736992, -0.0032269235234707594, 0.023531083017587662, -0.021700888872146606, -0.009371151216328144, -0.005232569761574268, 0.010052314028143883, 0.016912106424570084, 0.01765519380569458, 0.021879779174923897, -0.019843170419335365, -0.017256127670407295, -0.0001576049398863688, 0.02265038900077343, -0.03346642851829529, -0.015494736842811108, 0.003925287630409002]" +5,blue,"[0.005379225127398968, -0.007354139816015959, 0.00577973248437047, -0.031156694516539574, -0.01959722861647606, 0.021074961870908737, -0.018547624349594116, -0.005482804961502552, 0.004464273806661367, -0.026751115918159485, -0.008949263021349907, 0.019348638132214546, 0.005147898104041815, -0.0015899443533271551, -0.02677873708307743, -0.0038635130040347576, 0.03209581598639488, -0.0011764897499233484, 0.015191650949418545, 0.0007651930791325867, -0.038752518594264984, 0.028753651306033134, -0.022083135321736336, -0.013113156892359257, -0.015233082696795464, 0.02437569387257099, 0.0186581090092659, -0.01378987543284893, 0.00376338604837656, -0.006894937716424465, 0.01679367944598198, 5.230222086538561e-05, -0.013886549510061741, -0.01142135914415121, -0.014611605554819107, -0.015440241433680058, -0.007326518651098013, -0.009708845987915993, 0.008900926448404789, -0.010965609923005104, 0.004250209312886, 0.0044504632242023945, 0.018671918660402298, -0.01586836948990822, -0.00015785075083840638, 0.008079196326434612, 0.0002585170150268823, 0.005928196478635073, -0.022400779649615288, 0.0005416341591626406, 0.005983438808470964, 0.02925083227455616, 0.008769725449383259, -0.020025357604026794, 0.009722656570374966, -0.0019524723757058382, -0.003100477857515216, 0.01919672265648842, -0.01839570701122284, -0.005942007061094046, 0.011062284000217915, -0.01805044338107109, -0.01771898940205574, 0.022897960618138313, -0.0253286249935627, -0.0016451866831630468, -0.0058004483580589294, 0.0031919728498905897, 0.014093708246946335, 0.010634155012667179, 0.026088207960128784, 0.008327786810696125, 0.009964341297745705, -0.006352872122079134, 0.02153071202337742, 0.017746610566973686, -0.039884988218545914, -0.02158595435321331, -0.014418257400393486, -0.001797103206627071, 0.0030624987557530403, -0.017953768372535706, -0.027013516053557396, 0.00017932189803104848, 0.001406954019330442, -0.000247511692577973, -0.03643234074115753, 0.01791233755648136, -0.023892322555184364, -0.003687427844852209, 0.010130069218575954, 0.016876542940735817, 0.02418234571814537, 0.016945594921708107, -0.02052253857254982, 0.0005537184188142419, 0.019887251779437065, 0.026543956249952316, 0.007236749865114689, -0.041542258113622665, 0.00438141031190753, 0.009377392008900642, -0.02985849790275097, -0.011835676617920399, -0.02113020420074463, -0.017705177888274193, -0.00135775376111269, -0.006932917051017284, 0.027358781546354294, -0.022801285609602928, -0.019224343821406364, 0.02465190552175045, 0.0009149516699835658, -0.05778351426124573, -0.010226743295788765, 0.010703207924962044, -0.015288325026631355, -0.0003254120529163629, -0.011842582374811172, -0.01179424487054348, 0.00876282062381506, 0.012940524145960808, 0.012553827837109566, -0.006715400144457817, 0.018644297495484352, 0.009025221690535545, -0.02118544653058052, -0.022165998816490173, 0.013948697596788406, -0.007968711666762829, 0.043475743383169174, 0.01665557362139225, 0.009750277735292912, 0.004208777565509081, -0.028104552999138832, 0.013810591772198677, -0.029968982562422752, 0.022746043279767036, -0.027814531698822975, -0.010696303099393845, -0.013548189774155617, 0.0004954549949616194, -0.007457719184458256, -0.007395571563392878, 0.006404661573469639, 0.020039167255163193, 0.03306255489587784, 0.002021525288000703, -0.01202902477234602, -0.0233122780919075, 0.015826938673853874, -0.03193008899688721, 0.00519623514264822, 0.02278747595846653, -0.019362449645996094, 0.010040299966931343, -0.003449195297434926, 0.01571645215153694, -0.01585455983877182, 0.014777332544326782, -0.027966447174549103, 0.0015416073147207499, 0.019818197935819626, -0.016710815951228142, 0.03402929753065109, 0.02472095936536789, 0.03162625432014465, -0.003963639959692955, -0.01336174737662077, -0.022428400814533234, -0.021834544837474823, 0.033808328211307526, -0.019348638132214546, 0.015467862598598003, 0.0036908804904669523, 0.03872489929199219, 0.00989528838545084, 0.0011134789092466235, -0.014445878565311432, -0.006321798078715801, -0.022359346970915794, 0.016627952456474304, 0.022897960618138313, 0.025881048291921616, -0.006591104902327061, 0.013997034169733524, 0.028366954997181892, -0.025204328820109367, 0.014791143126785755, -0.0007884984370321035, 0.028339333832263947, 0.012312142178416252, 0.008679957129061222, 0.005075392313301563, -0.671305239200592, -0.01512259803712368, 0.02451379969716072, -0.015509294345974922, 0.001450975309126079, 0.02651633508503437, 0.022290294989943504, -0.011642328463494778, -0.013486042618751526, 0.0006793084903620183, -0.0040982929058372974, 0.003468184731900692, -0.013078629970550537, -0.02338133193552494, 0.003839344484731555, -0.007243655156344175, 0.03223391994833946, -0.0012343216221779585, -0.0007962668896652758, 0.016006475314497948, -0.011117526330053806, -0.014680658467113972, 0.0030176141299307346, 0.01606171764433384, 0.031101452186703682, 0.026833979412913322, 0.009142611175775528, -0.0030296985059976578, -0.00471286429092288, 0.012836944311857224, -0.002774202497676015, 0.022690800949931145, 0.017622314393520355, -0.017760420218110085, 0.0479779951274395, 0.00259984377771616, -0.024140913039445877, 0.035603705793619156, 0.03193008899688721, 0.02559102512896061, 0.00905974768102169, -0.002271842211484909, 0.018105685710906982, -0.0034975323360413313, -0.0005623500328511, 0.013258167542517185, 0.027027327567338943, -0.00021557470608968288, 0.009239285252988338, 0.0020715887658298016, 0.009039032272994518, -0.006087018176913261, 0.007609636057168245, 0.011207294650375843, 0.020633023232221603, 0.005372319836169481, 0.029223211109638214, 0.0010409733513370156, -0.031129073351621628, 0.006912201177328825, -0.019030995666980743, -0.003718501655384898, -0.038807760924100876, -0.01559215784072876, -0.01113133691251278, 0.019611040130257607, -0.03557608276605606, -0.021627387031912804, 0.011269442737102509, 0.003701238427311182, 0.011545654386281967, 0.01412132941186428, -0.017898526042699814, -0.011524938978254795, 0.0038876815233379602, 0.00743009801954031, 0.02251126430928707, -0.009570740163326263, -0.012422626838088036, 0.005365414544939995, 0.027013516053557396, -0.014818764291703701, -0.00543101504445076, -0.005303266923874617, 0.03217867761850357, -0.003090119920670986, -0.02238696813583374, -0.014183477498590946, 0.011566370725631714, -0.023215604946017265, 0.025494351983070374, 0.01885145716369152, -0.012816228903830051, -0.012477869167923927, -0.005420657340437174, 0.005279098637402058, -0.0013896907912567258, 0.0059143858961761, 0.01095870416611433, -0.016503656283020973, -0.020080599933862686, 0.003673617262393236, 0.01266431249678135, 0.017277050763368607, 0.030217574909329414, 0.016904164105653763, -0.021240688860416412, 0.02698589488863945, 0.026806358247995377, -0.032206300646066666, 0.00806538574397564, -0.0024772747419774532, -0.014611605554819107, -0.014639226719737053, 0.011600896716117859, -0.03162625432014465, 0.00673266313970089, -0.00028484343783929944, 0.031874846667051315, -0.02325703576207161, 0.027676425874233246, -0.003901492105796933, 0.0039705452509224415, 0.0010634155478328466, -0.0007876352756284177, 0.0426194854080677, -0.018699541687965393, -0.022014083340764046, -0.009529308415949345, -0.005838427692651749, -0.010281985625624657, 0.009881477802991867, 0.023174172267317772, 0.015523104928433895, 0.03775815665721893, 0.010288890451192856, 0.012194751761853695, -0.007160791661590338, 0.0033991318196058273, 0.0008135301759466529, -0.01792614720761776, 0.0005986028118059039, -0.014052276499569416, -0.002487632678821683, -0.0009520676685497165, -0.00636322982609272, -0.027828341349959373, -0.013078629970550537, -0.023947564885020256, 0.022828906774520874, 0.010841314680874348, -0.01002648938447237, -0.008548756130039692, 0.02590866945683956, 0.010841314680874348, -0.006218218710273504, -0.018022822216153145, -0.025287192314863205, -0.007291992194950581, 0.003683975199237466, 0.023975186049938202, 0.032344404608011246, -0.015481673181056976, -0.005327435676008463, -0.004743938334286213, -0.03245488926768303, -0.013389368541538715, 0.004992528818547726, -0.014970680698752403, -0.03358735889196396, 0.01412132941186428, -0.009494781494140625, -0.00896307360380888, 0.005997249390929937, -0.028836514800786972, -0.009874572977423668, -0.016973216086626053, -0.0001559086231281981, 0.011317779310047626, 0.008058479987084866, 0.013672485947608948, 0.010979420505464077, -0.02512146532535553, 0.0011411000741645694, 0.03146052733063698, 0.008072290569543839, 0.013886549510061741, 0.024624284356832504, -0.006794810760766268, 0.005651984363794327, -0.006038681138306856, 0.013852023519575596, -0.008376123383641243, 0.018865268677473068, -0.00019000352767761797, -0.015564536675810814, 0.00517897168174386, 0.006062849424779415, 0.019072426483035088, 0.009674319066107273, 0.028339333832263947, -0.017470398917794228, 0.019638661295175552, 0.005386130418628454, 0.009184042923152447, -0.03458172082901001, 0.026419661939144135, -0.022884149104356766, -0.006069754716008902, 0.02891937829554081, -0.0011376474285498261, -0.005883311852812767, -0.0010470154229551554, -0.014224909245967865, 0.037813398987054825, 0.01486019603908062, -0.011165862902998924, 0.013893455266952515, 0.02191740833222866, -0.014266340993344784, 0.00579699594527483, -0.014887817203998566, 7.984248441061936e-06, -0.015965044498443604, -0.020218705758452415, -0.000654276751447469, 0.006311440374702215, 0.026102017611265182, -0.019762955605983734, -0.003673617262393236, -0.0009037305717356503, 0.011600896716117859, -0.024085670709609985, 0.007975616492331028, -0.004978718236088753, 0.0016028917161747813, 0.021931219846010208, -0.00033253314904868603, 0.03151576966047287, -0.006625631358474493, -0.0007453403668478131, 0.048861872404813766, 0.02125450037419796, -0.01606171764433384, 0.01977676711976528, -0.005693416111171246, 0.023740407079458237, 0.005482804961502552, -0.009729561395943165, 0.0017522188136354089, -0.013810591772198677, 0.0002057562378467992, -0.023422762751579285, 0.0006421924917958677, 0.0022822001483291388, -0.017898526042699814, 0.017097512260079384, 0.012540017254650593, 0.025080034509301186, 0.015481673181056976, 0.03723335266113281, -0.001966282958164811, -0.015771694481372833, -0.0019697356037795544, 0.003866965649649501, 0.0012697112979367375, -0.008617809042334557, -0.006763737183064222, -0.009446444921195507, -0.015191650949418545, -0.01425253041088581, 0.002128557302057743, 0.013810591772198677, -0.003100477857515216, 0.01579931564629078, 0.0032990050967782736, 0.0011255631688982248, 0.015523104928433895, 0.006397756282240152, -0.004336525686085224, -0.0256462674587965, -0.031819604337215424, 0.03712286800146103, -0.0016184287378564477, -0.0023443480022251606, -0.02944418042898178, -0.024209966883063316, 0.0076717836782336235, -0.0009244464454241097, 0.009867667220532894, 0.006922558881342411, 0.02571532130241394, 0.0009304885752499104, -0.007271276321262121, -0.002876055659726262, -0.02078494057059288, 0.009308338165283203, -0.008293259888887405, 0.02064683474600315, -0.007623446639627218, 0.0026360966730862856, -0.008182775229215622, -0.010551291517913342, -0.0012317320797592402, 0.008086101152002811, -0.002351253293454647, 0.0005951501661911607, -0.005610552616417408, -0.016545088961720467, -0.02078494057059288, -0.009170232340693474, 0.002164810197427869, -0.00483025424182415, -0.012353573925793171, -0.0046576219610869884, 0.004509157966822386, -0.03485793247818947, -0.027869774028658867, 0.00932905450463295, 0.000519623514264822, -0.010799882933497429, -0.022732233628630638, -0.00923238042742014, -0.026074396446347237, 0.06645656377077103, 0.0011868476867675781, -0.0029088559094816446, 0.0193210169672966, 0.021406415849924088, -0.004719769582152367, -0.008203491568565369, 0.0038738709408789873, 0.007651067804545164, -0.002297737170010805, 0.013251262716948986, 0.007968711666762829, 0.018616676330566406, 0.007837510667741299, -0.01048914436250925, 0.0036908804904669523, 0.02017727494239807, -0.0026050228625535965, 0.01879621483385563, -0.016945594921708107, -0.023878512904047966, 0.008369218558073044, 0.021351173520088196, 0.020840182900428772, 0.007961805909872055, 0.004326167982071638, 0.010937988758087158, 0.01332722045481205, 0.020633023232221603, -0.003052140586078167, -0.010143879801034927, 0.015094976872205734, -6.635557656409219e-05, -0.01169066596776247, -0.0006011922960169613, 0.00519968755543232, -0.01178734004497528, 0.0045540425926446915, 0.019376259297132492, -0.0034025844652205706, 0.027165433391928673, 0.014901627786457539, -0.003302457742393017, -0.011856392957270145, 0.010337227955460548, -0.021420227363705635, -0.0007522456580772996, 0.029416559264063835, -0.00564507907256484, -0.017277050763368607, 0.036211371421813965, 0.002223505172878504, -0.014501120895147324, -0.0022304104641079903, 0.014003939926624298, 0.019017184153199196, -0.0009253096068277955, -0.007954901084303856, 0.01169757079333067, -0.013278883881866932, -0.014846385456621647, -0.015882181003689766, -0.0021803472191095352, -0.006777547765523195, 0.004571305587887764, -0.02318798378109932, -0.004239851608872414, -0.006691231392323971, -0.028422197327017784, 0.01099323108792305, -0.007174602244049311, -0.023892322555184364, -0.016627952456474304, 0.011497316882014275, 0.0018299033399671316, 0.02677873708307743, 0.008044669404625893, -0.016572710126638412, -0.002061230828985572, 0.02378183789551258, 0.012802418321371078, 0.001084131421521306, 0.004775011911988258, -0.002299463376402855, -0.0036632593255490065, -0.002095757285133004, 0.01798138953745365, -0.028311712667346, -0.005531142000108957, 0.025811994448304176, 0.012305237352848053, 0.0012843849835917354, 0.011524938978254795, -0.012609070166945457, 0.0007276455289684236, -0.009536213241517544, 0.017843283712863922, 0.006743021309375763, -0.014570173807442188, -0.006653252523392439, 0.002615380799397826, -0.014280151575803757, -0.011352306231856346, -0.011621613055467606, 0.009577644988894463, 0.007802984211593866, -0.0029968982562422752, 0.012678123079240322, -0.044276755303144455, -0.013306505046784878, 0.021144015714526176, -0.033007312566041946, 0.015688830986618996, -0.004951097071170807, 0.008983789943158627, 0.020812561735510826, -0.008617809042334557, 0.027593562379479408, 0.003319720970466733, -0.03670855239033699, 0.020370623096823692, -0.04145939648151398, 0.030659513548016548, 0.005738300736993551, -0.006318345665931702, -0.005531142000108957, -0.0003679227957036346, -0.019307207316160202, -0.007885847240686417, 0.017774231731891632, 0.020204896107316017, 0.012008309364318848, -0.012830039486289024, -0.0096605084836483, -0.038338202983140945, -0.010578912682831287, 0.007402476854622364, 0.028270279988646507, -0.029665149748325348, 0.0007285086903721094, -0.03911159560084343, 0.017898526042699814, 0.020702077075839043, -0.008507324382662773, -0.005669247824698687, -0.040023092180490494, 0.010944893583655357, 0.011683760210871696, -0.011939256452023983, 0.02357468008995056, 0.004833707120269537, -0.01372772827744484, -0.006598010193556547, 0.0004932970623485744, -0.005192782264202833, -0.011856392957270145, -0.016683194786310196, -0.01660033129155636, 0.01977676711976528, 0.015426430851221085, 0.026226313784718513, -0.01824379153549671, 0.02066064439713955, 0.025287192314863205, 0.007816794328391552, -0.001429396215826273, -0.006470262072980404, 0.01336174737662077, -0.010502954944968224, 0.018216170370578766, -0.002330537186935544, 0.017000837251544, 0.013624148443341255, -0.002159631345421076, 0.00806538574397564, 0.05225927755236626, -0.016779867932200432, -0.010717018507421017, -0.0016495025483891368, -0.022953202947974205, -0.015744073316454887, -0.007913469336926937, 0.001988725271075964, -0.0004082756058778614, -0.007644162513315678, -0.002337442710995674, 0.014998301863670349, 0.020301569253206253, 0.0029727297369390726, -0.01644841395318508, 0.023091308772563934, 0.0014009118312969804, 0.03320066258311272, -0.034415993839502335, -0.0042778304778039455, 0.00012515849084593356, -0.012263805605471134, 0.0014354382874444127, 0.01142826396971941, 0.010109352879226208, 0.01965247094631195, 0.007519866805523634, -0.03430550917983055, -0.0032334045972675085, -0.02311892993748188, -0.006428830325603485, -0.0007298034615814686, -0.018423328176140785, 0.00952240265905857, -0.034139782190322876, -0.0076855942606925964, -0.01142135914415121, -0.02231791615486145, -0.03184722363948822, -0.01898956298828125, 0.003015887923538685, 0.004377957433462143, 0.031073831021785736, -0.011400642804801464, -0.016558898612856865, 0.013879644684493542, 0.003697785781696439, 0.01495687011629343, -0.013258167542517185, 0.035410355776548386, 0.035023659467697144, -0.0007224665605463088, -0.014363015070557594, 0.0013991855084896088, -0.0009917730931192636, -0.02905748412013054, 0.016282686963677406, 0.008376123383641243, -0.02472095936536789, -0.0020370623096823692, 0.003625280223786831, 0.0028259921818971634, 0.005638173781335354, -0.023768028244376183, 0.004650716669857502, 0.0066567049361765385, 0.022304104641079903, -0.009356675669550896, -0.0065531255677342415, -0.02684778906404972, 0.033476874232292175, -0.005272193346172571, -0.01105537824332714, 0.008659240789711475, -0.01824379153549671, -0.007872036658227444, 0.013679390773177147, -0.02590866945683956, 0.035410355776548386, 0.014998301863670349, -0.024237588047981262, -0.013762254267930984, 0.005482804961502552, -0.023464195430278778, -0.02092304639518261, 0.018506191670894623, 0.03496841713786125, -0.005886764731258154, 0.014224909245967865, 0.01076535601168871, 0.01885145716369152, 0.005037413444370031, -0.02792501635849476, 0.004105198197066784, 0.03615612909197807, -0.012740270234644413, -0.003397405380383134, -0.00023283793416339904, 0.018961941823363304, 0.034940797835588455, -0.0018937774002552032, -0.01521927211433649, -0.014542552642524242, -0.03273110091686249, 0.011234915815293789, 0.029085105285048485, 0.015288325026631355, -0.025356246158480644, -0.01216022577136755, -0.02472095936536789, -0.013976318761706352, -0.018561434000730515, -0.000867046182975173, 0.01392798125743866, -0.003853155067190528, -0.019169101491570473, -0.005165161099284887, 0.0028121815994381905, 0.019970115274190903, 0.007519866805523634, -0.022884149104356766, 0.01585455983877182, 0.010606533847749233, -0.02125450037419796, 0.01559215784072876, -0.01192544586956501, 0.015771694481372833, -0.01992868259549141, -0.0029813614673912525, -0.011435169726610184, -0.010951799340546131, 0.012809323146939278, 0.002929571783170104, -0.017359914258122444, -0.02585342712700367, -0.01691797375679016, -0.004194966983050108, 0.017636125907301903, -0.010944893583655357, 0.03778577968478203, 0.011455885134637356, -0.0005774553283117712, -0.016144581139087677, -0.042205166071653366, 0.016807489097118378, -0.01396250817924738, 0.0010193942580372095, 0.01462541613727808, -0.011959971860051155, 0.0037737442180514336, 0.008693767711520195, 0.006218218710273504, 0.00872829370200634, 0.003580395830795169, -0.02357468008995056, -0.01332722045481205, 0.026364419609308243, -0.01611695997416973, -0.008141343481838703, -0.0021026625763624907, -0.009260001592338085, -0.024569042026996613, 0.008645430207252502, 0.014653037302196026, -0.009032126516103745, 0.02339514158666134, 0.013624148443341255, -0.00589712243527174, 0.01611695997416973, -0.034084539860486984, -0.0004350336384959519, -0.007264371030032635, -0.014639226719737053, -0.01472209021449089, -0.002876055659726262, 0.0017850189469754696, -0.001102257869206369, -0.00956383440643549, -0.02792501635849476, -0.02184835635125637, 0.0009805519366636872, -0.019210532307624817, -0.0209920983761549, -0.0027086022309958935, 0.01658651977777481, 0.023353710770606995, -0.009902194142341614, -0.006418472155928612, 0.00330591038800776, -0.0020595043897628784, -0.0029640982393175364, -0.0017781136557459831, 0.004119008779525757, 0.0026205596514046192, -0.004937286488711834, 0.015564536675810814, 0.006104281172156334, -0.023740407079458237, -0.012581449002027512, 0.02679254673421383, 0.0037219543009996414, -0.01825760118663311, 0.011386832222342491, -0.01852000318467617, 0.00033274892484769225, -0.02057778090238571, 0.004602379631251097, 0.01113133691251278, -0.0065289572812616825, 0.011048473417758942, -0.04505014792084694, -0.0022459474857896566, -0.006069754716008902, 0.02817360684275627, -0.00845898687839508, 0.0021786207798868418, 0.0035424167290329933, 0.004440105054527521, -0.005983438808470964, -0.024693338200449944, 0.007637257222086191, -0.0173322930932045, -0.02106115221977234, 0.0089976005256176, 0.01448731031268835, -0.010813693515956402, 0.033753085881471634, -0.0028536133468151093, 0.005717584863305092, 0.002701696939766407, -0.012457153759896755, -0.009515497833490372, -0.002836350118741393, 0.011076094582676888, -0.010889651253819466, -0.0007362771430052817, -0.01912766881287098, -0.0010729102650657296, -0.02864316664636135, 0.014501120895147324, -0.0014397541526705027, -0.02391994372010231, -0.03737146034836769, 0.02437569387257099, -0.008175870403647423, -0.014003939926624298, -0.012505490332841873, -0.021820735186338425, -0.021351173520088196, 0.007437003310769796, -0.01898956298828125, -0.0049545494839549065, -0.01345842145383358, 0.004999434109777212, 0.002943382365629077, -0.004875138867646456, -0.0399954728782177, -0.00021870365890208632, 0.008238017559051514, 0.002772476291283965, 0.02472095936536789, 0.20505966246128082, 0.002209694590419531, -0.016089338809251785, 0.06010369211435318, -0.002213147236034274, -0.015702642500400543, 0.0209920983761549, 0.011041567660868168, 0.0032316783908754587, 0.003095298772677779, 0.0007090875296853483, 0.00046438112622126937, -0.015757884830236435, 0.010703207924962044, 0.01665557362139225, -0.01262978557497263, -0.032620616257190704, -0.020867804065346718, -0.0042467569001019, -0.006004154682159424, -0.020633023232221603, -0.008369218558073044, -0.018699541687965393, -0.007278181612491608, 0.014307772740721703, 0.002258031629025936, -0.015978854149580002, 0.0023098213132470846, 0.038807760924100876, -0.011269442737102509, -0.0038738709408789873, -0.036018021404743195, -0.008093006908893585, -0.006805168930441141, -0.01429396215826273, 0.004488442093133926, -0.005834974814206362, -0.009764088317751884, 0.043337635695934296, 0.012001403607428074, -0.013658675365149975, 0.014570173807442188, -0.010647965595126152, -0.008431365713477135, -0.016558898612856865, 0.022428400814533234, -0.01731848157942295, -0.013285788707435131, -0.0004820759641006589, 0.004516063258051872, -0.043006181716918945, 0.005365414544939995, 0.020412053912878036, 0.04259186238050461, 0.003939471207559109, 0.0018540718592703342, 0.009039032272994518, 0.006901843007653952, 0.0019110406283289194, -0.008928547613322735, -0.022359346970915794, 0.035355113446712494, -0.03982974588871002, 0.024237588047981262, -0.02071588672697544, 0.005272193346172571, -0.027013516053557396, -0.024555232375860214, 0.0012308689765632153, -0.0176499355584383, -0.0009002779261209071, -0.004067219328135252, 0.008238017559051514, 0.012609070166945457, -0.026889221742749214, -0.03889062628149986, 0.01985963061451912, 0.025494351983070374, 0.02517670765519142, 0.015039733611047268, -0.015937423333525658, 0.005220403429120779, -0.02524576149880886, -0.02552197314798832, -0.0011376474285498261, -0.037343837320804596, 0.02171025052666664, -0.01165613904595375, -0.005631268490105867, 0.009964341297745705, 0.009308338165283203, -0.016296498477458954, -0.004909665323793888, -0.004353789146989584, -0.0003631754079833627, 0.01586836948990822, 0.020039167255163193, 0.010233648121356964, -0.020812561735510826, 0.022552695125341415, -0.004743938334286213, -0.025618646293878555, 0.017069891095161438, 0.005679605528712273, 0.0008881936664693058, -0.006743021309375763, -0.018616676330566406, 0.000977099291048944, 0.0030711302533745766, 0.0030970252119004726, -0.02233172580599785, -0.017539450898766518, 0.010378659702837467, -0.01332722045481205, 0.01944531314074993, 0.00942572858184576, 0.004484989680349827, -0.018216170370578766, 0.00845898687839508, 0.004308904521167278, -0.013216735795140266, -0.0003426753100939095, 0.02677873708307743, -0.019638661295175552, 0.002782834228128195, 0.004785370081663132, 0.0055138785392045975, 0.008410650305449963, 0.004699053708463907, -0.04259186238050461, -0.0051375399343669415, -0.008010143414139748, 0.04402816668152809, 0.0007095191394910216, -0.01766374707221985, 0.026474904268980026, 0.015813127160072327, -0.01973533444106579, -0.002630917588248849, -0.012208562344312668, -0.0018575245048850775, -0.020080599933862686, 0.014777332544326782, 0.008735199458897114, -0.00028700134134851396, -0.02785596251487732, 0.017028458416461945, 0.014404446817934513, -0.017774231731891632, -0.01959722861647606, 0.003611469641327858, 0.0011039841920137405, -0.0035596799571067095, 0.012464058585464954, 0.023284656926989555, -0.0032558469101786613, -0.01238810084760189, -0.03193008899688721, 0.003159172832965851, 0.014114424586296082, -0.008217302151024342, 0.031874846667051315, 0.03704000636935234, 0.001980093540623784, -0.03455410152673721, -0.0022183263208717108, -0.18141593039035797, 0.01792614720761776, -0.0006171608110889792, -0.014597794972360134, -0.008838778361678123, 0.0015226176474243402, 0.0042916410602629185, 0.0022338631097227335, -0.012871471233665943, 0.00859709270298481, 0.00989528838545084, 0.01089655701071024, -0.03657044470310211, -0.005693416111171246, -0.022096946835517883, 0.010426996275782585, -0.005558763165026903, 0.012098077684640884, 0.01448731031268835, 0.018740972504019737, 0.01973533444106579, -0.024638095870614052, 0.0019783673342317343, -0.013037198223173618, 0.007064117584377527, 0.0026827072724699974, -0.017166564241051674, 0.015067354775965214, -0.0067602843046188354, -0.024941928684711456, -0.01429396215826273, 0.0027845604345202446, -0.0002001456741709262, 0.01852000318467617, 0.005921291187405586, 0.02824265882372856, -0.0071124546229839325, 0.0005157392588444054, -0.009004505351185799, 0.017166564241051674, 0.0199839249253273, 0.023616110906004906, 0.00236506387591362, 0.006466809194535017, -0.012595259584486485, 0.030024224892258644, 0.0009969520615413785, 0.005479352083057165, 0.016282686963677406, -0.013182209804654121, 0.0007410245598293841, -0.027745477855205536, 0.015951232984662056, 0.004288188647478819, 0.019707713276147842, 0.012035930529236794, -0.006974348798394203, 0.006194050423800945, -0.015136408619582653, -0.001003857352770865, -0.013914170674979687, -0.03165387734770775, 0.0017548082396388054, 0.009308338165283203, 0.008603998459875584, -0.0002326221438124776, -0.01179424487054348, -0.011207294650375843, -0.031156694516539574, 0.0243204515427351, 0.008106817491352558, -0.023091308772563934, -0.0008778357296250761, -0.036211371421813965, -0.00436414685100317, 0.013852023519575596, -0.03010708838701248, 0.009260001592338085, 0.029029862955212593, -0.014583984389901161, -0.00789275299757719, 0.04242613539099693, -0.007271276321262121, 0.0025635911151766777, 0.010192216373980045, 0.029167968779802322, -0.020425865426659584, -0.006566936150193214, -0.01072392426431179, -0.015081165358424187, 0.006936369463801384, -0.021019719541072845, -0.002580854343250394, -0.0163241196423769, 0.0005934238433837891, -0.0012351847253739834, 0.011600896716117859, 0.005386130418628454, 0.005917838308960199, -0.010337227955460548, 0.018602866679430008, 0.011821866035461426, -0.03212343528866768, 0.014445878565311432, 0.036680929362773895, 0.009964341297745705, 0.017097512260079384, 0.009225474670529366, 0.022884149104356766, 0.017870904877781868, -0.028477439656853676, 0.021903598681092262, 0.02585342712700367, 0.015771694481372833, -0.0008907831506803632, -0.004982170648872852, 0.010275079868733883, -0.02844981849193573, 0.004571305587887764, -0.014791143126785755, 0.03162625432014465, -0.00836231280118227, -0.011062284000217915, 0.01266431249678135, -0.004022334702312946, -0.011221105232834816, -0.08115103840827942, -0.007961805909872055, 0.009570740163326263, 0.05377844348549843, 0.005990344099700451, 0.014694469049572945, 1.3169963494874537e-05, 0.019541986286640167, 0.0047232224605977535, 0.0532812625169754, -0.011400642804801464, -0.022690800949931145, 0.0008273407584056258, -0.004429747350513935, 0.007395571563392878, 0.009612171910703182, -0.007257465738803148, -0.013375557959079742, -0.019638661295175552, 0.01818854920566082, -0.0025566858239471912, -0.01212569884955883, -0.004581663757562637, -0.015315946191549301, 0.0031850675586611032, -0.01238810084760189, -0.04783988744020462, 0.03518938645720482, 0.012056645937263966, 0.015108787454664707, 0.0249833595007658, -0.01169757079333067, 0.0113246850669384, -0.030659513548016548, -0.021157825365662575, -0.009701940231025219, -0.010413185693323612, -0.014832574874162674, 0.021641196683049202, 0.002406495623290539, 0.0061629763804376125, 0.005341246258467436, 0.010972514748573303, -0.03938780725002289, 0.01832665503025055, -0.01619982346892357, -0.02139260619878769, -0.00040503876516595483, -0.009764088317751884, -0.029471801593899727, -0.019749145954847336, -0.003794460091739893, -0.01684892177581787, -0.014211098663508892, 0.027952637523412704, -0.016890352591872215, 0.01853381283581257, 0.019348638132214546, -0.014038465917110443, 0.013506758026778698, 0.004005071707069874, 0.004719769582152367, -0.01905861683189869, 0.031350042670965195, -0.001567502156831324, 0.018409518525004387, -0.021613575518131256, -0.02798025868833065, 0.004754296038299799, -0.023422762751579285, -0.0027396760415285826, 0.04336525872349739, -0.018147116526961327, 0.024555232375860214, 0.0009442992159165442, 0.009301433339715004, -0.011766623705625534, -0.00989528838545084, 0.031957708299160004, -0.02285652793943882, -0.04217754676938057, -0.013057914562523365, 0.0005390446749515831, -0.027068758383393288, 0.003364605363458395, 0.00698125408962369, -0.001912766951136291, -0.01129015814512968, 0.014735900796949863, -0.01618601381778717, 0.005451730918139219, 0.017511829733848572, -0.0008359723724424839, -0.02137879468500614, -0.01846476085484028, 0.0011350580025464296, 0.0027224128134548664, -0.005962722934782505, 0.008307070471346378, -0.015274514444172382, -0.007140075787901878, -0.020108221098780632, -0.06943965703248978, 0.020011546090245247, 0.0007936774054542184, -0.008659240789711475, 0.02379564940929413, 0.00956383440643549, 0.012940524145960808, -0.012180941179394722, -0.018340464681386948, 0.006915653590112925, -0.006270008627325296, 0.01771898940205574, -0.005700321402400732, -0.03452647849917412, -0.014418257400393486, -0.006187145132571459, 0.0033041839487850666, -0.008051575161516666, 0.023602301254868507, 0.0009986783843487501, 0.018091874197125435, 0.007782268337905407, 0.023436574265360832, -0.0014224909245967865, -0.013665580190718174, -0.00024103798205032945, -0.0058004483580589294, 0.00975718256086111, -0.03159863129258156, -0.033808328211307526, -0.004522968549281359, -0.019376259297132492, 0.0003905807971023023, 0.028808893635869026, -0.012698838487267494, -0.03626661375164986, -0.009218569844961166, 0.00603177584707737, 0.00859018787741661, -0.018810026347637177, -0.01939007081091404, -0.0289746206253767, -0.0019144932739436626, -0.016365550458431244, 0.007264371030032635, 0.0006068028742447495, -0.008238017559051514, 0.0006711084279231727, 0.009619076736271381, 0.0036908804904669523, 0.005044318735599518, 0.00731270806863904, -0.008348502218723297, -0.02111639454960823, -0.012422626838088036, -0.02646109275519848, 0.005006339401006699, 0.015039733611047268, 0.001330995699390769, -0.01852000318467617, 0.021420227363705635, 0.016945594921708107, -0.02285652793943882, 0.0018350823083892465, 0.027496887370944023, -0.02557721547782421, -0.011027757078409195, -0.00201634643599391, 0.006622178480029106, -0.04684552550315857, -0.03057665005326271, 0.007754647172987461, 0.0459892675280571, 0.004878591280430555, 0.015937423333525658, -0.011642328463494778, -0.008521134965121746, 0.013948697596788406, -0.02684778906404972, 0.03320066258311272, -0.003963639959692955, -0.004081029910594225, -0.026019154116511345, 0.012243089266121387, 0.008251828141510487, 0.00789275299757719, -0.014114424586296082, 0.01578550599515438, -0.004788822494447231, 0.016172202304005623, -0.01039247028529644, -0.000932214898057282, 0.005234214011579752, 0.012470964342355728, -0.011711381375789642, 0.010316511616110802, -0.003797912737354636, -0.010330322198569775, 0.018616676330566406, 0.026502525433897972, -0.002554959384724498, -0.010364849120378494, 0.0018955037230625749, -0.025963911786675453, -0.012001403607428074, 0.009688129648566246, -0.017415156587958336, -0.007105549331754446, 0.0013672485947608948, 0.016973216086626053, 0.0026999707333743572, 0.005990344099700451, -0.017221806570887566, 0.021226879209280014, -0.01973533444106579, 0.015605968423187733, 0.0013853749260306358, -0.028366954997181892, -0.015481673181056976, 0.03179198130965233, 0.013023387640714645, -0.002643001964315772, 0.016821300610899925, -0.0003422437293920666, -0.002456558868288994, -0.005292909219861031, 0.032869208604097366, -0.021102583035826683, -0.009867667220532894, 0.016213634982705116, 0.010620344430208206, -0.014404446817934513, -0.005928196478635073, 0.004101745784282684, -0.005071939900517464, -0.010461523197591305, 0.026695873588323593, 0.0276488047093153, 0.00649788323789835, 0.06435735523700714, -0.0023046424612402916, -0.03839344531297684, 0.012277616187930107, -0.00295719294808805, 0.024168534204363823, 0.006238934583961964, 0.028339333832263947, -0.00651514669880271, -0.005282551050186157, 0.014791143126785755, -0.019818197935819626, 0.010758450254797935, -0.008238017559051514, -0.026958273723721504, -0.010233648121356964, -0.017801852896809578, 0.026474904268980026, -0.03143290430307388, -0.002164810197427869, 0.007872036658227444, -0.0034284794237464666, 0.03538273647427559, 0.001698702690191567, -0.015329756774008274, 0.001567502156831324, 0.010806787759065628, -0.00039273870061151683, -0.0029416559264063835, -0.01276098657399416, 0.024030428379774094, 0.005948912352323532, -0.031350042670965195, -0.008445176295936108, 0.009398107416927814, -0.011414453387260437, -0.0073196133598685265, -0.010047204792499542, -0.0011411000741645694, 0.0015139860333874822, 0.0025325173046439886, 0.007395571563392878, -0.008424460887908936, -0.021765492856502533, 0.03193008899688721, 0.006715400144457817, -0.010351038537919521, -0.011448980309069157, -0.0008899199892766774]" +6,crispy,"[-0.0010056837927550077, -0.005415474995970726, -0.000172231622855179, -0.01429129671305418, -0.01377522200345993, 0.0030765985138714314, -0.02477158047258854, -0.012425488792359829, -0.017983214929699898, -0.02823854424059391, 0.02037833072245121, 0.03376980498433113, -0.011347024701535702, -0.006272291298955679, 0.004720759578049183, 0.013001110404729843, 0.027312256395816803, 0.0013414631830528378, 0.030461635440587997, -0.02262788638472557, -0.018909502774477005, 0.0061101908795535564, -0.020748846232891083, -0.023488011211156845, -0.00109500449616462, -0.01889627054333687, 0.008945292793214321, -0.025631705299019814, 0.009666474536061287, -0.010969894006848335, 0.026769716292619705, 0.01644822396337986, -0.013331927359104156, -0.01713632419705391, -0.017268650233745575, -0.01381492055952549, -0.021926553919911385, 0.0031824600882828236, 0.016646714881062508, -0.012465186417102814, 0.014873534440994263, -0.003847402287647128, -0.0015250666765496135, 0.01253796648234129, -0.008078552782535553, 0.005408858880400658, 0.010930195450782776, 0.012127753347158432, 0.004310546442866325, 0.008164565078914165, 0.040015630424022675, 0.015535169281065464, -0.03541065752506256, -0.015574866905808449, -0.005805839318782091, 0.0064740898087620735, -0.0032287745270878077, 0.01098974235355854, 0.0023405307438224554, -0.019107993692159653, 0.0056404308415949345, 0.01632913015782833, -0.025234725326299667, 0.0047968472354114056, -0.0012877053814008832, 0.005620581563562155, 0.001629273989237845, -0.011578597128391266, -0.008184414356946945, 0.004399866797029972, 0.011247780174016953, 0.019280018284916878, 0.006490630563348532, 0.012167450971901417, 0.01014946773648262, 0.007244893349707127, 0.002773900981992483, 0.012326243333518505, 0.008270426653325558, -0.0001252969668712467, 0.025883127003908157, -0.009653241373598576, -0.009024688974022865, 0.024401066824793816, 0.001515969168394804, -0.0028963033109903336, -0.02720639482140541, 0.019782859832048416, -0.027682771906256676, -0.019782859832048416, 0.0043601687066257, 0.026624156162142754, 0.011591829359531403, 0.009150399826467037, -0.03257886320352554, 0.017758259549736977, 0.012564431875944138, 0.013563498854637146, -0.01900213211774826, -0.02770923636853695, 0.005911700893193483, 0.03771314397454262, -0.03260532766580582, -0.024784814566373825, -0.015363143756985664, 0.005855462048202753, -0.005180594976991415, 0.00948121678084135, 0.021384013816714287, -0.025393517687916756, 0.013080506585538387, 0.01667317934334278, 0.013656128197908401, -0.05377762019634247, 0.012458570301532745, -0.013669360429048538, 0.011982194148004055, -0.012796003371477127, -0.012504884973168373, -0.02541998215019703, -0.004674444906413555, -0.0067089698277413845, 0.0253008883446455, -0.019796092063188553, 0.00874018669128418, -0.013761989772319794, -0.026544760912656784, -0.010731705464422703, 0.016659947112202644, 0.007780817337334156, 0.052030906081199646, -0.0006144926883280277, 0.030593961477279663, -0.017797958105802536, -0.02305133268237114, 0.013589964248239994, -0.010579529218375683, 0.03620461747050285, -0.010334724560379982, -0.03977744281291962, 0.008482148870825768, 0.03305523842573166, -0.018406661227345467, 0.006421159021556377, 0.006775133311748505, 0.02526118978857994, 0.0021106128115206957, 0.010658925399184227, -0.024149645119905472, -0.008918827399611473, 0.024334901943802834, -0.0023570714984089136, 0.026121314615011215, -0.007536012679338455, 0.017228951677680016, 0.00505488459020853, -0.0065369452349841595, -0.008932060562074184, -0.014132504351437092, -0.021953020244836807, -0.00544855697080493, -0.022694049403071404, 0.014780906029045582, 0.006880994886159897, 0.004469338338822126, 0.023143962025642395, 0.022694049403071404, -0.004677752964198589, 0.028953108936548233, -7.407200610032305e-05, 0.012279928661882877, 0.013748756609857082, -0.0025224799755960703, 0.027153464034199715, 0.0032684726174920797, -0.010215630754828453, 0.011327176354825497, 0.006847912911325693, -0.023104263469576836, -0.00876003596931696, -0.029403019696474075, -0.00044288134085945785, 0.03228774294257164, 0.0253008883446455, -0.005862078163772821, -0.024414299055933952, 0.03218188136816025, 0.012683525681495667, 0.0023752665147185326, -0.003632371313869953, 0.005633814260363579, 0.015958614647388458, 0.019928419962525368, -0.014992629177868366, -0.686829149723053, -0.01217406801879406, -0.0037283082492649555, -0.01679227314889431, 0.011585213243961334, 0.03972451388835907, -0.0073573715053498745, -0.006156505551189184, 0.004164986778050661, -0.011737389490008354, -0.018366962671279907, -0.008859280496835709, -0.0050184945575892925, -0.014476554468274117, -0.02404378354549408, -0.01489999983459711, 0.015230817720293999, -0.007582326885312796, 0.004231150262057781, 0.02052389085292816, -0.01076478697359562, 0.026743249967694283, -0.0059150089509785175, -0.0024149646051228046, 0.005650355480611324, 0.0230910312384367, 0.009090852923691273, -0.0018310723826289177, -0.029826465994119644, 0.003860634984448552, -0.014013410545885563, 0.014185435138642788, 0.0067354352213442326, -0.02023277059197426, 0.06124085187911987, -0.008012388832867146, -0.01051336620002985, 0.019915185868740082, 0.010506750084459782, 0.060923270881175995, -0.012637211941182613, -0.011227930895984173, 0.014767673797905445, 0.006278907880187035, -0.010043606162071228, 0.01869777962565422, 0.00807193573564291, -0.005216985009610653, 0.009051154367625713, 0.0014299567556008697, 0.024440763518214226, -0.011036057025194168, 0.0003227533889003098, -0.008568162098526955, -0.0012140986509621143, -0.027232859283685684, 0.004604973364621401, -0.05377762019634247, -0.01114191859960556, 0.01576012372970581, -0.007317673414945602, 0.014278064481914043, -0.023064564913511276, -0.03014405071735382, -0.024626022204756737, 0.016845203936100006, -0.027391651645302773, -0.03620461747050285, 0.022574955597519875, -0.039062876254320145, -0.0031973468139767647, 0.005451865028589964, 0.011512433178722858, 0.002454662462696433, -0.00041476188926026225, 0.0304087046533823, -0.0010098190978169441, -0.020285701379179955, 0.025023002177476883, 0.006321914028376341, 0.019332949072122574, 0.004780306480824947, -0.011459502391517162, 0.02266758494079113, 0.020179839804768562, -0.0120615903288126, -0.014873534440994263, 0.00385401863604784, 0.001956783002242446, -0.021079663187265396, -0.0058389208279550076, 0.014000177383422852, 0.00782051496207714, -0.004221225623041391, -0.013854618184268475, -0.0044594136998057365, -0.012432104907929897, -0.020590053871273994, 0.013173134997487068, -0.004062433261424303, 0.001558975432999432, 0.01697753183543682, 0.012683525681495667, 0.01467504445463419, 0.0008485457510687411, 0.02594929002225399, -0.012028507888317108, 0.013133437372744083, 0.012829085811972618, -0.004002886358648539, -0.0073706042021512985, -0.015892451629042625, -0.014714743010699749, -0.016315897926688194, 0.016765808686614037, -0.03075275383889675, 0.011644760146737099, 0.007139032240957022, 0.014516252093017101, -0.018075844272971153, 0.006427775602787733, -0.02021953836083412, 0.03197016194462776, -0.009262877516448498, 0.003240352962166071, 0.020285701379179955, -0.0031593029852956533, -0.003539742436259985, -0.024824511259794235, -0.021039964631199837, 0.015667496249079704, 0.008634325116872787, -0.005819072015583515, -0.015574866905808449, -0.011691074818372726, 0.0003020773292519152, -0.01211452018469572, -0.00860785972326994, 0.019557904452085495, -0.031202664598822594, -0.024295205250382423, -0.01074493769556284, -0.025062700733542442, 0.0017963366117328405, -0.002178430324420333, -0.019147690385580063, -0.01532344613224268, 0.004462722223252058, -0.01049351692199707, 0.0042873891070485115, 0.003030284307897091, -0.00874018669128418, -0.004432948771864176, 0.01636882871389389, 0.0017682171892374754, -0.0023306061048060656, -0.017877353355288506, 0.01075817085802555, 0.01148596778512001, -0.0006405445165000856, 0.00885266438126564, 0.020695915445685387, 0.006325222086161375, -0.004588432610034943, 0.0008667407091706991, -0.023183658719062805, 0.0046248226426541805, 0.018194938078522682, 0.019438810646533966, -0.02823854424059391, 0.01755976863205433, -0.007152264937758446, -0.018115542829036713, 0.019716696813702583, -0.006887611001729965, 0.02373943105340004, -0.022998401895165443, -0.003045171033591032, -0.0041848355904221535, -0.003539742436259985, 0.006361612118780613, -0.017083393409848213, -0.00837628822773695, -0.027126997709274292, 0.00441640755161643, -0.008389520458877087, -0.006768517196178436, 0.013629662804305553, -0.02133108302950859, 0.02831793949007988, -0.010433970019221306, 0.012564431875944138, -0.022535257041454315, 0.021622203290462494, -0.010685390792787075, -0.008402753621339798, -0.006847912911325693, 0.0061995116993784904, -0.004466030281037092, 0.015349911525845528, 0.04250337556004524, -0.017255418002605438, 0.02526118978857994, -0.012200533412396908, 0.02392468973994255, -0.0676984041929245, 0.014754440635442734, 0.007979307323694229, 0.0008030583849176764, -0.002198279369622469, -0.010639076121151447, -0.0014754440635442734, 0.0003802328428719193, -0.000608289847150445, 0.016038011759519577, 0.03218188136816025, 0.01532344613224268, 0.010486900806427002, -0.007132415659725666, 0.0035165853332728148, 0.0007877580937929451, -0.018486056476831436, 0.006927309092134237, 0.013484103605151176, -0.012054973281919956, 0.00709933415055275, 0.006732127163559198, 0.012412255629897118, 0.005723135080188513, -0.017506837844848633, -0.011088987812399864, -0.0011313942959532142, 0.0087203374132514, -0.01489999983459711, 0.013709058985114098, 0.01946527510881424, 0.03056749515235424, -0.034510836005210876, 0.008905595168471336, 0.00608703400939703, 0.014754440635442734, 0.01276292186230421, 0.01759946718811989, -0.012623978778719902, 0.011347024701535702, -0.004614898003637791, 0.011439654044806957, 0.008786501362919807, -0.008568162098526955, -0.002457970753312111, -0.009924511425197124, 0.012160834856331348, -0.007377220317721367, -0.004373401403427124, 0.025433214381337166, -0.011002975516021252, 0.01568072848021984, -0.009547379799187183, 0.03424618020653725, 0.037871938198804855, 0.01493969839066267, 0.0110294409096241, 0.03358454629778862, 0.019531438127160072, 0.014450089074671268, -0.019531438127160072, -0.020484192296862602, 0.004174911417067051, -0.01873747818171978, -0.006090342067182064, -0.004697602242231369, -0.013510568998754025, -0.00772788655012846, 0.006765208672732115, -0.014648579061031342, 0.005607349332422018, 0.0002576237893663347, 0.01934618130326271, -0.001973323756828904, -0.014000177383422852, 0.003877175971865654, -0.012332859449088573, 0.03533126041293144, 0.01958436891436577, -0.004651288036257029, -0.031123269349336624, -0.03392859548330307, -0.0077742007561028, -0.023911457508802414, 0.015627797693014145, -0.009964209981262684, 0.01161829475313425, 0.001642506686039269, 0.004006194416433573, -2.007839839279768e-06, 0.0014440164668485522, 0.026002220809459686, -0.02240293100476265, 0.03429911285638809, -0.0007277975091710687, 0.009150399826467037, 0.016434991732239723, -0.02076207846403122, -0.004518961068242788, 0.026240408420562744, 0.006493938621133566, -0.012948179617524147, 0.00026630773209035397, 0.0099972914904356, 0.000641371589154005, 0.0027226244565099478, -0.007932992652058601, -0.021013500168919563, -0.004138521384447813, 0.0037878553848713636, -0.010414120741188526, -0.008495382033288479, 0.004164986778050661, 0.02025923691689968, -0.009898046031594276, -0.012048357166349888, -0.01100959163159132, -0.02690204232931137, -0.005375777371227741, 0.03186430037021637, 0.04104778170585632, -0.01528374757617712, 0.026544760912656784, 0.011552131734788418, -0.002118883188813925, -0.03334635868668556, -0.002153618959710002, 0.007999156601727009, -0.01796998269855976, 0.023871758952736855, 0.004720759578049183, 0.017890585586428642, -0.0018558836309239268, -0.005842229351401329, -0.008654174394905567, -0.01583952084183693, -0.02281314507126808, 0.004720759578049183, -0.015389609150588512, 0.0060307951644063, 0.00045818163198418915, -0.003293283749371767, 0.009269493632018566, 0.015892451629042625, -0.006768517196178436, 0.035278331488370895, 0.009606927633285522, 0.012425488792359829, -0.01888303831219673, -0.016355594620108604, 0.015482238493859768, 0.005948090460151434, -0.02159573696553707, 0.008574778214097023, -0.020775310695171356, 0.04197406768798828, -0.0008617784478701651, 0.0009246336994692683, -0.018671315163373947, 0.010103153064846992, -0.009686323814094067, 0.01820817030966282, -0.016236500814557076, 0.00480015529319644, -0.035966429859399796, -0.007562478072941303, 0.04766412079334259, -0.02011367678642273, -0.009514298290014267, 0.036231085658073425, 0.017546536400914192, -0.009778952226042747, 0.0029029196593910456, -0.019399112090468407, 0.005984480492770672, -0.01467504445463419, -0.023038100451231003, 0.014516252093017101, 0.005756216589361429, -0.0005735540762543678, -0.00707948487251997, -0.015402842313051224, -0.013510568998754025, -0.017956750467419624, -0.03003818914294243, -0.003979729022830725, 0.0070464033633470535, -0.010156083852052689, 0.017546536400914192, 0.0011868062429130077, -0.01011638529598713, -0.021648667752742767, -0.0009759103413671255, 0.022958703339099884, 0.013761989772319794, 0.011717540211975574, -0.0007600521785207093, 0.004267539829015732, 0.004813387989997864, -0.000827042618766427, -0.012399023398756981, -0.006278907880187035, -0.016249733045697212, -0.006288832053542137, -0.009666474536061287, 0.02438783273100853, -0.0018591918051242828, -0.019174156710505486, 0.017308348789811134, 0.01614387147128582, 0.009057771414518356, 0.004525577183812857, -0.003251931630074978, -0.008210879750549793, -0.02094733528792858, 0.02789449505507946, -0.005276531912386417, 0.001619349466636777, -0.0016069439006969333, 0.01865808106958866, -0.015177886933088303, -0.006758592557162046, -0.006662655621767044, 0.011002975516021252, -0.03125559538602829, 0.005213676951825619, 0.026385968551039696, -0.005028419196605682, 0.0027755550108850002, 0.03530479595065117, 0.0004569410521071404, 0.006202819757163525, 0.01598508097231388, 0.025816963985562325, 0.02538028545677662, -0.01713632419705391, 0.02354094199836254, -0.011340408585965633, 0.01141318865120411, 0.025023002177476883, -0.030699823051691055, 0.0008295237785205245, 0.0304087046533823, -0.005200444255024195, 0.0023091030307114124, 0.005501487758010626, -0.029244227334856987, -0.03588703274726868, 0.0012471802765503526, -0.019531438127160072, 0.027682771906256676, -0.013669360429048538, -0.018406661227345467, -0.015852753072977066, -0.012485035695135593, -0.0050813499838113785, 0.01717602089047432, -0.03374334052205086, -0.029641207307577133, -0.028873711824417114, -0.0048729353584349155, -0.0134113235399127, 0.015998313203454018, -0.021238455548882484, -0.039936233311891556, -0.007939609698951244, 0.006914076395332813, 0.01253796648234129, 0.022574955597519875, -0.021317850798368454, -0.023977620527148247, -0.021172290667891502, -0.01587921939790249, 0.005812455900013447, -0.03848063945770264, 0.011882948689162731, -0.005465097725391388, 0.02155604027211666, 0.03784547001123428, 0.038374777883291245, 0.0004528058343566954, 0.009990675374865532, 0.010222246870398521, 0.010698623955249786, -0.0014233404072001576, -0.0054452489130198956, -0.012306394055485725, -0.01415896974503994, 0.022919004783034325, 0.029244227334856987, -0.00912393443286419, 0.008958525955677032, 0.0029111900366842747, -0.0006107710069045424, -0.009381971322000027, -0.021384013816714287, -0.012346092611551285, -0.008687255904078484, -0.009362122975289822, 0.008482148870825768, 0.00021151616238057613, 0.011234547011554241, 0.0018624999793246388, 0.01701722852885723, -0.0024149646051228046, 0.006900843698531389, -0.002524134237319231, 0.020695915445685387, -0.0050052618607878685, 0.02404378354549408, -0.008806349709630013, 0.018075844272971153, -0.022879308089613914, 0.013788455165922642, -0.002773900981992483, -0.0042245336808264256, 0.0017037078505381942, -0.007483081892132759, 0.0014820604119449854, 0.0025621780660003424, 0.01693783327937126, -0.00925626140087843, 0.025592006742954254, -0.01010976918041706, 0.021053196862339973, 0.0010205706348642707, -0.0199945829808712, -0.0017516763182356954, -0.016554085537791252, -0.019756395369768143, -0.01671287789940834, -0.028688455000519753, -0.029482416808605194, 0.014582416042685509, 0.010023756884038448, -0.012015275657176971, 0.015998313203454018, -0.009745870716869831, -0.034934282302856445, -0.01697753183543682, -0.02072237990796566, 0.021053196862339973, -0.01001714076846838, 0.026743249967694283, -0.004697602242231369, -0.016130639240145683, -0.005696669686585665, -0.0027160081081092358, 0.014780906029045582, -0.026438899338245392, 0.006927309092134237, -0.0036489120684564114, 0.002714353846386075, -0.005293072666972876, -0.005326154641807079, 0.029403019696474075, -0.020087212324142456, -0.02209857851266861, 0.023024866357445717, -0.0023471470922231674, -0.004710834939032793, -0.01064569316804409, -0.006404618266969919, -0.010526598431169987, 0.0023951155599206686, -0.02007397823035717, -0.0062392097897827625, -0.0110294409096241, -0.007311056833714247, -0.026954973116517067, 0.038639433681964874, -0.010103153064846992, 0.015111722983419895, 0.016077708452939987, -0.007555861491709948, -0.015482238493859768, -0.0058753108605742455, -0.0108574153855443, 0.01892273500561714, 0.0033677176106721163, 0.02064298465847969, 0.004112055990844965, 0.003817628836259246, 0.00513097271323204, 0.012088054791092873, -0.009950976818799973, 0.011340408585965633, -0.015932150185108185, 0.018419893458485603, -0.0172421857714653, -0.028794316574931145, -0.008640941232442856, 0.012736456468701363, 0.027576910331845284, 0.003040208714082837, -0.011744005605578423, -0.02011367678642273, -0.005660279653966427, -0.025962522253394127, 0.01564102992415428, 0.006669271737337112, -0.011968960985541344, -0.02690204232931137, -0.014979396015405655, 0.0031394539400935173, 0.007734502665698528, 0.00770803727209568, 0.0036786857526749372, 0.003923490177839994, -0.01904183067381382, -0.0005801704246550798, -0.015932150185108185, -0.013656128197908401, 0.02297193557024002, 0.015244049951434135, -0.003999578300863504, 0.023368917405605316, -0.026227176189422607, 0.030011722818017006, -0.018221402540802956, 0.0035298180300742388, -0.02522149309515953, 0.02663739025592804, -0.003983037546277046, -0.030329307541251183, 0.02418934367597103, -0.013470870442688465, -0.015389609150588512, 0.004264231771230698, -0.011882948689162731, -0.0006244172109290957, 0.013080506585538387, -0.010453819297254086, 0.028556128963828087, 0.019531438127160072, -0.0056271981447935104, -0.03403445705771446, -0.02244262956082821, 0.030858615413308144, -0.021728064864873886, 0.004512344487011433, 0.024798046797513962, 0.009408436715602875, 0.00759555958211422, -0.009858348406851292, 0.0036092139780521393, -0.006388077512383461, -0.02033863216638565, 0.0040525090880692005, -0.008521847426891327, 0.03681332245469093, -0.006788366008549929, -0.005898468196392059, -0.004207992926239967, 0.014860302209854126, -0.01717602089047432, 0.04004209488630295, -0.005144205410033464, -0.000624830718152225, 0.005574267357587814, 0.016726110130548477, -0.005630506202578545, -0.009911279194056988, -0.011479351669549942, -0.01064569316804409, -0.010592762380838394, 0.007760968059301376, -0.046658437699079514, -0.014000177383422852, -0.01467504445463419, 0.041921138763427734, 0.02511563152074814, -0.0235806405544281, -0.018499290570616722, 0.01433099526911974, -0.033796269446611404, 0.004244382958859205, -0.04168294742703438, 0.0033743339590728283, 0.008766652084887028, -0.015032326802611351, 0.0023157193791121244, 0.010407504625618458, -0.022839609533548355, 0.02011367678642273, -0.018975665792822838, -0.002974045230075717, 0.01957113668322563, -0.007648490369319916, 0.004955639597028494, 0.002497668843716383, -0.04258277267217636, -0.01892273500561714, 0.02945595048367977, 0.006867762189358473, 0.01154551561921835, 0.020775310695171356, 0.014304529875516891, -0.002419926691800356, -0.006679196376353502, -0.001956783002242446, 0.004674444906413555, -0.010586145333945751, -0.0006756938528269529, -0.011227930895984173, -0.003811012487858534, 0.023024866357445717, -0.0025572157464921474, 0.00037961258203722537, -0.004608281422406435, 0.0016036357264965773, 0.008237345144152641, 0.01652761921286583, -0.018221402540802956, -0.012471803463995457, -0.0015167961828410625, -0.01148596778512001, 0.006814831402152777, -0.007628641091287136, 0.024109946563839912, 0.008627709001302719, 0.008779884316027164, -0.015349911525845528, 0.0016019815811887383, 0.008237345144152641, -0.02598898857831955, 0.0005847191205248237, 0.004485879093408585, -0.023937921971082687, 0.002762322314083576, -0.004608281422406435, 0.03194369375705719, -0.0232365895062685, 0.003035246394574642, -0.03697211295366287, -0.00766172306612134, 0.0020758770406246185, 0.021013500168919563, 0.009448135271668434, 0.0028549511916935444, 0.004399866797029972, 0.007377220317721367, -0.0106126107275486, -0.0037216919008642435, -0.0005082177231088281, 0.023527709767222404, -0.004538809880614281, 0.02416287735104561, 0.009037922136485577, -0.013576732017099857, -0.024798046797513962, -0.016845203936100006, 0.007827132008969784, 0.0016731072682887316, 0.03633694723248482, 0.2025129646062851, 0.01908152736723423, 0.0003802328428719193, 0.030514564365148544, -0.009362122975289822, -0.002767284633591771, -0.0048464699648320675, -0.00714564835652709, -0.00766172306612134, 0.018300799652934074, 0.02023277059197426, -0.007026554085314274, -0.022799910977482796, 0.0010172624606639147, 0.012716607190668583, -0.010308259166777134, -0.021820692345499992, -0.017255418002605438, -0.007985923439264297, -0.05330124497413635, 0.01010976918041706, -0.029641207307577133, -0.01693783327937126, -0.004740608390420675, 0.03477548807859421, 0.015442539937794209, -0.022310301661491394, -0.0040260436944663525, 0.031811367720365524, 0.01598508097231388, -0.021476643159985542, 0.012643828056752682, 0.017678864300251007, 0.02602868527173996, -0.008541696704924107, 0.014794139191508293, 0.0015680728247389197, 0.016659947112202644, 0.026121314615011215, 0.012855551205575466, 0.003289975691586733, 0.017506837844848633, 0.016461456194519997, -0.045017585158348083, 0.006828064098954201, 0.01238579023629427, 0.00448257103562355, -0.008389520458877087, -0.008912211284041405, 0.021357549354434013, -0.005508103873580694, -0.0061234235763549805, 0.0032221581786870956, 0.0241231806576252, 0.012273312546312809, 0.011730772443115711, -0.003973112907260656, -0.0040392763912677765, 0.00044288134085945785, 0.009381971322000027, 0.004512344487011433, 0.04268863424658775, -0.035807639360427856, 0.01687167026102543, -0.011459502391517162, 0.008561545051634312, -0.016990764066576958, -0.010123002342879772, 0.007264742627739906, -0.014238365925848484, -0.00556103466078639, -0.03271118924021721, -0.007813898846507072, 0.006378152873367071, -0.015932150185108185, -0.01327899657189846, 0.035437121987342834, 0.014767673797905445, 0.026240408420562744, 0.020735614001750946, -0.0026266875211149454, 0.0011404918041080236, -0.005455173086374998, 0.004164986778050661, -0.010850799269974232, -0.02534058690071106, 0.015111722983419895, -0.010546447709202766, -0.0034636545460671186, -0.01179032027721405, 0.01541607454419136, -0.016395293176174164, 0.0014456704957410693, -0.018830107524991035, 0.0290854349732399, 0.0008592972881160676, 0.007655106484889984, 0.013722291216254234, -0.003817628836259246, -0.006973623763769865, -0.0003057990106754005, -0.04721421003341675, 0.014370692893862724, 0.008369671180844307, 0.0013381550088524818, -0.03908934444189072, -0.022429397329688072, 0.017268650233745575, 0.00797269120812416, -0.016421759501099586, -0.0015647646505385637, -0.017427442595362663, 0.018499290570616722, 0.002193317050114274, 0.0106126107275486, 0.02118552476167679, -0.0184728242456913, -0.03784547001123428, 0.011208081617951393, 0.005084658041596413, 0.025697868317365646, -0.005699977744370699, 0.006801598705351353, -0.004674444906413555, -0.014780906029045582, -0.015693960711359978, -0.01889627054333687, 0.011439654044806957, 0.005279840435832739, -0.029667673632502556, 0.0430326834321022, -0.034060925245285034, 0.010639076121151447, 0.0029360014013946056, -0.004657904151827097, -0.006292140576988459, 0.004148446023464203, -0.006374844815582037, -0.010453819297254086, 0.009712789207696915, -0.016646714881062508, -0.0031030639074742794, -0.00911731831729412, 0.00423776637762785, 0.0059778643772006035, -0.0031411079689860344, 0.02702113799750805, 0.03202309086918831, -0.01770532876253128, 0.008515231311321259, -0.027603374794125557, -0.018671315163373947, -0.013073890469968319, 0.008296892046928406, 0.001104929018765688, -0.016382060945034027, -0.04290035739541054, -0.004191452171653509, -0.006940541788935661, 0.013007726520299911, -0.01912122592329979, -0.0038010880816727877, 0.003827553242444992, -0.013510568998754025, -0.010817717760801315, -0.009898046031594276, -0.1708603948354721, 0.02564493753015995, 0.008912211284041405, -0.015521936118602753, 0.017003996297717094, -0.017255418002605438, 0.01861838437616825, 0.005177286919206381, -0.004069049842655659, -0.0010718472767621279, 0.012822468765079975, -0.004856394603848457, -0.006606416776776314, -0.018221402540802956, 0.01390754897147417, -0.0020676066633313894, -0.010718472301959991, 0.025195026770234108, 0.016699645668268204, 0.015852753072977066, 0.032949380576610565, -0.025975754484534264, 0.008793117478489876, -0.021966252475976944, 0.01728188246488571, 0.004618206061422825, -0.003582748817279935, 0.0013249223120510578, -0.01683197170495987, -0.01693783327937126, -0.02667708694934845, -0.03226127848029137, 0.0159189160913229, 0.022416163235902786, 0.014503019861876965, -0.003906949423253536, -0.02651829458773136, -0.008078552782535553, -0.0121343694627285, 0.019147690385580063, 0.011175000108778477, 0.031652577221393585, 0.0013290575006976724, 0.011002975516021252, -0.01908152736723423, 0.006993472576141357, 0.001632582163438201, 0.006245825905352831, -0.00013790935918223113, 8.283348506665789e-06, 0.014886767603456974, -0.02125168778002262, 0.0030815608333796263, -0.004221225623041391, 0.02671678550541401, 0.004201376810669899, -0.001076809479855001, 0.0014688277151435614, 0.01014946773648262, -0.006993472576141357, -0.0045487345196306705, -0.00948121678084135, 0.01364289503544569, -0.011532282456755638, -0.014066341333091259, -0.011512433178722858, -0.012445338070392609, 0.021582504734396935, -0.005812455900013447, 0.014211900532245636, 0.002206549746915698, -0.007734502665698528, 0.020126909017562866, -0.006083725485950708, -0.0029889321886003017, 0.009084236808121204, -0.009375355206429958, 0.006014253944158554, 0.017202487215399742, -0.021172290667891502, -0.009150399826467037, 0.00846891663968563, -0.04006856307387352, 0.002244593808427453, 0.01022886298596859, -0.003033592365682125, 0.0020626443438231945, 0.014463321305811405, 0.004158370196819305, -0.01051336620002985, 0.01594538241624832, -0.008773268200457096, 0.009381971322000027, -0.015111722983419895, 0.0015118339797481894, 0.028609059751033783, 0.002959158504381776, 0.012253464199602604, -0.00938858836889267, -0.00923641212284565, -0.01265044417232275, -0.0001007441314868629, -0.012531350366771221, 0.0189624335616827, -0.0020560279954224825, 0.017043694853782654, 0.004955639597028494, 0.012451954185962677, 0.02671678550541401, -0.006613032892346382, -0.013894316740334034, 0.012326243333518505, 0.036919184029102325, 0.010572913102805614, 0.016276199370622635, 0.007112566847354174, 0.006718894466757774, -0.01808907650411129, 0.036654528230428696, -0.002517517888918519, 0.032340675592422485, -0.024414299055933952, 0.013351776637136936, -0.00268623442389071, -0.02686234563589096, 0.012094671837985516, -0.10766110569238663, -0.019015364348888397, 0.01291509810835123, 0.014847069047391415, -0.021159058436751366, 0.0028218694496899843, -0.0026779640465974808, 0.004730683751404285, -0.013490719720721245, 0.02224413864314556, -0.015363143756985664, -0.01889627054333687, -0.008806349709630013, -0.014979396015405655, 0.010658925399184227, 0.008627709001302719, 0.017334813252091408, -0.009666474536061287, -0.007291208021342754, 0.01934618130326271, -0.00550479581579566, -0.005243450403213501, 0.0050317272543907166, -0.008323357440531254, -0.024480462074279785, 0.02045772597193718, -0.015707192942500114, 0.004995337687432766, 0.012941563501954079, 0.00379777979105711, -6.416041742340894e-06, -0.016038011759519577, 0.020616518333554268, -0.015244049951434135, -0.009785568341612816, 0.00498872110620141, -0.003926798235625029, -0.023990852758288383, 0.017573002725839615, -0.015521936118602753, 0.0017400977667421103, 0.008528463542461395, 0.008554928936064243, -0.018181705847382545, -0.011267628520727158, 0.016501154750585556, -0.00028698379173874855, 0.01709662564098835, 0.02388499118387699, -0.013788455165922642, -0.027762167155742645, -0.004102131351828575, 0.005885235499590635, -0.011102220043540001, 0.03154671564698219, -0.0018393428763374686, 0.025843428447842598, 0.013589964248239994, 0.006414542905986309, -0.0034801955334842205, -0.01415896974503994, 0.007251509930938482, -0.01796998269855976, 0.026835879310965538, 0.012531350366771221, 0.008098401129245758, -0.02400408498942852, -0.05187211558222771, -0.007191963028162718, 0.005759525112807751, -0.003824245184659958, 0.0032420072238892317, -0.02286607399582863, 0.010996359400451183, -0.038983482867479324, -0.00450242031365633, -0.03128205984830856, -0.016818739473819733, 0.010605994611978531, -0.03551651909947395, -0.006894227582961321, -0.013563498854637146, 0.004853086080402136, -0.01454271748661995, -0.005339387338608503, 0.0015382992569357157, 0.008819582872092724, -0.004270848352462053, -0.001953474711626768, -0.02064298465847969, -0.0026200711727142334, 0.023845292627811432, 0.029508881270885468, -0.007469849195331335, -0.009812033735215664, -0.0005826515262015164, 0.018221402540802956, -0.0018095693085342646, 0.003582748817279935, 0.003556283423677087, -0.013854618184268475, -0.00795945804566145, -0.03519893437623978, 0.002831794088706374, -0.004277464468032122, -0.021582504734396935, 0.01934618130326271, -0.03662806376814842, 0.018022913485765457, -0.01202189177274704, -0.0028896869625896215, 0.011499200947582722, -0.019968116655945778, 0.008105018176138401, 0.001366274431347847, -0.013206216506659985, -0.026280106976628304, -0.028132682666182518, 0.026346269994974136, 0.0015713809989392757, 0.021648667752742767, 0.015363143756985664, 0.004747224971652031, 0.010738321579992771, 0.027153464034199715, -0.0073573715053498745, -0.031043872237205505, 0.02305133268237114, -0.013894316740334034, 0.042768027633428574, 0.008409369736909866, -0.008144715800881386, 0.0036753774620592594, -0.01583952084183693, -0.014132504351437092, 0.027418117970228195, 0.006947158370167017, -8.451342000626028e-05, -0.011876332573592663, 0.023223357275128365, 0.00797269120812416, -0.012736456468701363, -0.014410390518605709, -0.017731795087456703, 0.020272469148039818, -0.006156505551189184, -0.017453907057642937, -0.019478507339954376, -0.01701722852885723, 0.005167362280189991, 0.021820692345499992, -0.006510479841381311, 0.016580550000071526, 0.010347957722842693, 0.016051243990659714, -0.01652761921286583, 0.0048597026616334915, -0.017506837844848633, 0.02686234563589096, -0.005891851615160704, 0.008594627492129803, -0.017189254984259605, 0.037104442715644836, 0.014886767603456974, 0.010103153064846992, -0.014317762106657028, 0.025750799104571342, 0.017546536400914192, -0.02045772597193718, -0.014132504351437092, 0.01721571944653988, -0.038374777883291245, 0.006801598705351353, 0.018221402540802956, 0.022085346281528473, -0.004231150262057781, 0.008098401129245758, 0.0004941579536534846, 0.010685390792787075, -0.012200533412396908, -0.008177797310054302, 0.03149378299713135, 0.009534147568047047, 0.0016896481392905116, -0.030461635440587997, 0.006702353712171316, 0.00498872110620141, 0.011949111707508564, -0.026306571438908577, -0.005140896886587143, -0.015005861409008503, 0.003572824178263545, -0.011234547011554241, 0.013226065784692764, -0.0012471802765503526, -0.012822468765079975, 0.015932150185108185, 0.01976962760090828, -0.012226998805999756, 0.0065501779317855835, 0.010123002342879772, 0.022429397329688072, -0.0018426510505378246, 0.008766652084887028, -0.005617273505777121, 0.0047836145386099815, 0.010414120741188526, -0.01851252280175686, -0.007674955762922764, -0.03292291238903999, -0.005273223854601383, 0.015111722983419895, 0.039856839925050735, -0.004737300332635641, 7.603623089380562e-05, 0.02534058690071106, -0.02175452932715416, 0.017837654799222946, -0.024321669712662697, -0.014595648273825645, -0.007853596471250057, 0.011724156327545643, 0.03895701467990875, -0.00281856139190495, -0.009243028238415718, -0.006424467079341412, -0.010837567038834095, 0.0009105739300139248, 0.011585213243961334, -0.03318756818771362, -0.007886678911745548, 0.005078041926026344, 0.016514386981725693, 0.002426543040201068, -0.008932060562074184, -0.026544760912656784, -0.005872002802789211, -0.008647558279335499, -0.00244308402761817, 0.02217797562479973, -0.021013500168919563, 0.0355694480240345, 0.012723224237561226, 0.0020196381956338882, -0.015230817720293999, 0.005699977744370699, 0.03022344596683979, -0.004264231771230698, 0.004968872293829918, -0.005332770757377148, -0.013199600391089916, 0.009335657581686974, -0.004863010719418526, 0.01888303831219673, -0.04766412079334259, -0.02155604027211666, 0.0006566718802787364, -0.011049289256334305, 0.01545577310025692, -0.0220588818192482, -0.02041802927851677, 0.026266874745488167, 0.016501154750585556, 0.008495382033288479, 0.005865386221557856, -0.015693960711359978, -0.008290275000035763, 0.0210267324000597, -0.025353819131851196, 0.0032138878013938665, -0.02187362313270569, 0.008799733594059944, -0.004217917565256357, -0.026743249967694283, -0.009084236808121204, -0.006345071364194155, -0.00932904053479433, 0.0037216919008642435, -0.0075426287949085236, 0.008568162098526955, 0.01987548917531967, -0.009249645285308361, 0.01667317934334278, -0.017956750467419624, -0.019293250516057014, 0.015733659267425537, -0.0005193827673792839, 0.0034438055008649826, -0.005905084311962128, -0.011446270160377026]" +7,hamburger,"[-0.013206875883042812, -0.0018223668448626995, 0.003132650163024664, -0.023331496864557266, -0.015151167288422585, 0.00782268401235342, -0.044816240668296814, -0.014826035127043724, -0.007308975327759981, -0.02842957153916359, 0.015424278564751148, 0.02099054493010044, -0.00663920259103179, -0.013889653608202934, -0.001949168392457068, 0.0012476954143494368, 0.03649285435676575, -0.00015332021575886756, 0.037637319415807724, -0.020548364147543907, 0.002635197713971138, -0.022317083552479744, 0.030562439933419228, -0.018350468948483467, -0.0005287464591674507, -0.006057215388864279, 0.020431317389011383, -0.012055907398462296, -0.005374437663704157, 0.004392537754029036, 0.019169803708791733, 0.0011932357447221875, -0.017010923475027084, 0.00968894362449646, 0.003817053744569421, 0.003813802497461438, -0.005663805641233921, -1.7018646758515388e-05, 0.022291073575615883, 0.01391566451638937, 0.019807063043117523, -0.013655558228492737, -0.007009853143244982, -0.014956087805330753, -0.02006716839969158, 0.01629563234746456, 0.006115739233791828, -0.020392300561070442, -0.03573854640126228, 0.005530501250177622, 0.023942746222019196, 0.01329141017049551, 5.4358064517145976e-05, -0.008537975139915943, -1.858080577221699e-05, 0.022421127185225487, -0.0052541387267410755, 0.018662596121430397, 0.0013232886558398604, -0.010729366913437843, -0.0008567237528041005, -0.002310065319761634, -0.03571253642439842, 0.0045193396508693695, -0.0019345374312251806, -0.015281219966709614, 0.0026124382857233286, -0.012985785491764545, 0.012706171721220016, 0.0056573026813566685, 0.01469598151743412, 0.013395452871918678, 0.006551416590809822, -0.0048282151110470295, 0.017752226442098618, 0.014748003333806992, -0.023110406473279, -0.0034236435312777758, -0.007269959431141615, 0.003101762617006898, 0.01906576007604599, -0.024163836613297462, 0.0013452350394800305, 0.01754414103925228, 0.02160179242491722, 0.00859649945050478, -0.017622172832489014, 0.027025001123547554, 0.0010631827171891928, -0.010085605084896088, -0.001973553327843547, 0.018532544374465942, -0.009207747876644135, -0.005634543485939503, -0.010111615993082523, 0.0007278900593519211, 0.011678753420710564, 0.03376174345612526, -0.02192692458629608, -0.02408580482006073, -0.0009290656889788806, -0.0016346029005944729, -0.008674531243741512, -0.011815309524536133, -0.0002588866336736828, 0.0017345810774713755, 0.014214785769581795, -0.012166452594101429, -0.0017232014797627926, -0.028195476159453392, -0.014708987437188625, 0.025126228109002113, 0.008342895656824112, -0.040498483926057816, 0.006200273986905813, -0.0036479849368333817, 0.019937114790081978, 0.0005515057127922773, 0.010443250648677349, -0.029860153794288635, 0.012290002778172493, 0.013694574125111103, 0.029261911287903786, -0.009175234474241734, 0.020769454538822174, 0.0023393272422254086, -0.009910034015774727, 0.012576119042932987, -0.008388414047658443, -0.014071728102862835, 0.03149882331490517, 0.009123213589191437, 0.020522354170680046, 0.003022105200216174, -0.017114967107772827, 0.016503717750310898, -0.03030233457684517, -1.2471873560571112e-05, -0.034906208515167236, -0.039223965257406235, 0.016152575612068176, 0.024215856567025185, -0.004415297415107489, -0.0006457940908148885, -7.27483638911508e-05, 0.010092107579112053, 0.011204060167074203, 0.017752226442098618, -0.023916734382510185, -0.0041551911272108555, 0.009994568303227425, -0.016724808141589165, 0.03602466359734535, -0.037013065069913864, 0.012920759618282318, 0.01499510370194912, -0.01877964474260807, 0.019833073019981384, -0.007653615437448025, -0.02000214159488678, -0.018883686512708664, -0.0059889378026127815, 0.032695308327674866, -0.012244484387338161, 0.03376174345612526, 0.03568652644753456, 0.007250451482832432, 0.020106183364987373, 0.017999326810240746, -0.010274182073771954, -0.0027554966509342194, 0.04809357598423958, -0.03272131830453873, 0.011938859708607197, -0.009721457026898861, -0.011490177363157272, 0.0059271627105772495, 0.00616450933739543, -0.024645032361149788, 0.009058186784386635, -0.03974417597055435, 0.0049127498641610146, 0.03784540668129921, 0.042657364159822464, -0.00845994334667921, -0.0015809560427442193, 0.01747911423444748, -0.004808707162737846, -0.005985686555504799, -0.014175769872963428, 0.024007773026823997, 0.02249915897846222, 0.03259126469492912, -0.014201780781149864, -0.6954190731048584, -0.008420927450060844, 0.007790171075612307, -0.027051011100411415, 0.03225312754511833, 0.011041494086384773, -0.009162229485809803, 0.010124620981514454, 0.00203695404343307, 0.004379532765597105, 6.878581189084798e-05, 0.0008494082721881568, 0.0021751353051513433, 0.00031598799978382885, -0.015034119598567486, -0.012777701020240784, 0.013694574125111103, -0.0031472810078412294, -0.010261177085340023, 0.02379968762397766, 0.004902995657175779, 0.0009567019296810031, -0.0013371068052947521, 0.003644733689725399, 0.016477707773447037, 0.025828514248132706, 0.003687000833451748, 0.010046589188277721, 0.001451715943403542, 0.021159613505005836, -0.020795464515686035, 0.00798525009304285, -0.013037807308137417, -0.038001466542482376, 0.04845772311091423, 0.004659146536141634, -0.016191590577363968, 0.034594081342220306, 0.016932891681790352, 0.023591602221131325, 0.004464067053049803, -0.028689678758382797, 0.020236236974596977, 0.009038679301738739, -0.0036479849368333817, -0.011828314512968063, 0.026998989284038544, -0.0008884241105988622, 0.008583493530750275, -0.018376480787992477, -0.00010719207057263702, 0.003140778513625264, 0.018350468948483467, 0.00985150970518589, 0.008550981059670448, -0.012120934203267097, 0.010209155268967152, -0.02595856599509716, -0.0008152693626470864, 0.025880534201860428, -0.009916536509990692, 0.017284035682678223, -0.026049602776765823, -0.021692829206585884, 0.007868202403187752, -0.004246228374540806, -0.02689494751393795, -0.0014858548529446125, -0.003018853720277548, -0.005849130917340517, 0.0009030550718307495, 0.030744515359401703, -0.003953609149903059, -0.014578934758901596, 0.0006153129506856203, 0.03136876970529556, 0.0041161756962537766, 0.013031304813921452, 0.007048869039863348, 0.029183879494667053, 0.014578934758901596, 0.0033976330887526274, -0.02412481978535652, 0.024189846590161324, 0.03305945545434952, -0.014214785769581795, -0.030536429956555367, -0.008700541220605373, 0.0023653379175812006, 0.0010704982560127974, 0.012914257124066353, 0.008472949266433716, -0.0349322184920311, -0.005836125463247299, -0.03537439927458763, 0.024944152683019638, -0.023396523669362068, 0.015086140483617783, 0.017986321821808815, -0.035842590034008026, -0.013037807308137417, 0.025854524224996567, 0.011106520891189575, 0.016165580600500107, 0.0021751353051513433, 0.018857676535844803, -0.005569517146795988, 0.022876311093568802, 0.01598350517451763, -0.04169497266411781, 0.02313641831278801, -0.029131857678294182, -0.006616443395614624, -0.029339943081140518, -0.009584901854395866, -0.0284555833786726, 0.014201780781149864, 0.0018256180919706821, 0.02248615212738514, -0.020782459527254105, 0.02715505287051201, -0.01078789122402668, 0.028507603332400322, 0.007230943534523249, -0.0006059653824195266, 0.028871752321720123, -0.010553795844316483, -0.0349322184920311, -0.02624468319118023, -0.01373359002172947, 0.01685485988855362, 0.0165687445551157, 0.01682884991168976, -0.016932891681790352, -0.0023767175152897835, 0.032331161201000214, 0.019000733271241188, -0.008186832070350647, 0.011483673937618732, 0.007237446028739214, -0.021198628470301628, -0.0006693662144243717, -0.007744652219116688, -0.002566919894888997, -0.019520945847034454, -0.039301998913288116, -0.010449753142893314, 0.0058686388656497, -0.009032176807522774, 0.018935708329081535, -0.01188033539801836, -0.00775115517899394, -0.011711266823112965, 0.015788426622748375, 0.025698460638523102, -0.023240460082888603, -0.021198628470301628, -0.003872326109558344, 0.0032919649966061115, -0.01593148522078991, 0.027675265446305275, 0.04525842145085335, -0.018025336787104607, -0.013967685401439667, -0.022330088540911674, -0.026140639558434486, 0.007965742610394955, -0.004847723059356213, -0.015775421634316444, -0.03402184695005417, 0.010592811740934849, -0.017739221453666687, -0.013460478745400906, 0.0026059357915073633, 0.005263892468065023, 0.008837097324430943, -0.022720247507095337, -0.016789834946393967, 0.0004929819260723889, 0.0016053409781306982, -0.00815431959927082, -0.0063010649755597115, -0.02467104233801365, 0.007471541408449411, 0.02220003679394722, -0.009480859152972698, -0.013460478745400906, 0.021666819229722023, -0.0046428898349404335, 0.00610598549246788, 0.019442914053797722, 0.010651336051523685, -0.007679625879973173, 0.01206240989267826, -0.009753970429301262, -0.018818659707903862, 0.002960330108180642, 0.025542397052049637, 0.01266715582460165, 0.026166651397943497, 0.025711465626955032, -0.008186832070350647, 0.01049527246505022, -0.005497987847775221, 0.01280371192842722, -0.03443801775574684, -0.0041259294375777245, 0.0028757955878973007, 0.006502646952867508, -0.00203695404343307, 0.006284808274358511, -0.008694038726389408, 0.00043567732791416347, -0.005335421767085791, 0.009090700186789036, 0.03409988060593605, -0.006697726435959339, 0.00877207051962614, 0.016022522002458572, 0.003556947922334075, 0.029469994828104973, -0.004961519502103329, -0.003930849954485893, -0.002822148846462369, 0.0016402926994487643, 0.01080089621245861, 0.011873832903802395, 0.02093852311372757, 0.006554667837917805, -0.0005380940274335444, 0.008895620703697205, 0.009623917751014233, -0.0036024663131684065, 0.00477294297888875, 0.024553993716835976, 0.014318828471004963, 0.013499494642019272, -0.007536567747592926, 0.01747911423444748, 0.021809877827763557, -0.0004925755201838911, 0.028377551585435867, 0.0018955215346068144, -0.0014281438197940588, 0.0095133725553751, -0.001064808457158506, 0.023084396496415138, 0.006411609705537558, -0.006557919550687075, 0.015788426622748375, 0.002261295448988676, 0.009175234474241734, -0.020418310537934303, 0.008362404070794582, 0.010287187062203884, -0.020769454538822174, 0.025516387075185776, -0.0012127436930313706, 0.022967347875237465, 0.02632271498441696, 0.00032370988628827035, 0.01818140037357807, -0.009610911831259727, -0.018610576167702675, -0.006840784568339586, 0.009266272187232971, -0.0045486013405025005, -0.012550108134746552, -0.017622172832489014, -0.0005665431381203234, 0.012257489375770092, -0.006421363912522793, -0.0005657302681356668, -0.016113558784127235, -0.001986558549106121, -0.014956087805330753, 0.007380504161119461, 0.02879372052848339, -0.019091771915555, -0.0058036125265061855, -0.021471740677952766, -0.022746259346604347, 0.022343095391988754, 0.018025336787104607, -0.003543942468240857, -0.015775421634316444, -0.020119190216064453, 0.006034456193447113, -0.023331496864557266, 0.011431653052568436, -0.0075820861384272575, 0.008043774403631687, 0.02630970999598503, -0.0031115165911614895, -0.019182808697223663, 0.014253801666200161, 0.023903729394078255, -0.00680176867172122, 0.02694696933031082, 0.004499831702560186, 0.011028489097952843, -0.02660883031785488, -0.012114430777728558, -0.0262316782027483, 0.04039444401860237, -0.002204397227615118, -0.003657738910987973, -0.028897762298583984, 0.014813029207289219, 0.019130786880850792, -0.018831664696335793, 0.018376480787992477, -0.013668564148247242, 0.011223568581044674, -0.015021114610135555, 0.005823120474815369, -0.021146608516573906, 0.0030237308237701654, 0.01935187727212906, 0.012725680135190487, -0.009825499728322029, -0.014383855275809765, -0.005764596629887819, 0.009500366635620594, 0.030458398163318634, 0.013941674493253231, 0.01000107079744339, 0.005855633411556482, 0.019794056192040443, -0.016984913498163223, -0.01814238540828228, -0.031446799635887146, 0.011451161466538906, 0.00332610378973186, 0.005946670658886433, -0.008791578933596611, 0.018909696489572525, -0.019286850467324257, 0.03350163623690605, -0.02814345620572567, -0.006905810907483101, -0.018532544374465942, 0.00727646192535758, -0.010267679579555988, -0.01342146284878254, 0.010794393718242645, 0.00018410618940833956, 0.011210563592612743, 0.03462009131908417, -0.002714855130761862, 0.02439793199300766, 0.026114629581570625, 0.012530600652098656, -0.022967347875237465, -0.013668564148247242, 0.003469162154942751, 0.013954680413007736, -0.009864515624940395, -0.0028855495620518923, -0.004958268254995346, -0.009766975417733192, 0.005806863773614168, 0.027415160089731216, 0.008108800277113914, 0.011860827915370464, 0.016490712761878967, -0.011002478189766407, -0.007913720794022083, -0.007965742610394955, -0.01936488226056099, -0.01031319797039032, 0.02499617449939251, 0.0025002676993608475, -0.0016516722971573472, 0.007829186506569386, 0.0021409965120255947, -0.017882278189063072, -0.01942990906536579, -0.008206340484321117, -0.015866458415985107, 0.001067246892489493, -0.0071594142355024815, -0.019924109801650047, 0.006642453838139772, -0.011620230041444302, -0.03165488317608833, 0.006925318855792284, 0.001937788794748485, 0.008498959243297577, -0.016750818118453026, -0.022330088540911674, -0.022317083552479744, -0.006590432487428188, 0.01621760055422783, -0.00815431959927082, -0.019768046215176582, -0.00711389584466815, -0.0057808528654277325, 0.000392597314203158, 0.00908419769257307, -0.006996848154813051, 0.01595749519765377, -0.007783668115735054, 0.013284907676279545, -0.005107829347252846, -0.022642215713858604, -0.00749755185097456, -0.023266470059752464, -0.032695308327674866, 0.008583493530750275, 0.012316012755036354, -0.008037271909415722, 0.0026888444554060698, 0.015385262668132782, 0.011678753420710564, 0.0032773339189589024, 0.012868737801909447, -0.0006559545290656388, -0.00743902800604701, -0.011399139650166035, 0.002558791544288397, 0.0009632045403122902, 2.1311409000190906e-05, 0.000838028616271913, 0.001273705973289907, -0.00030826611327938735, -0.01545028854161501, 0.0115877166390419, 0.016984913498163223, -0.004464067053049803, 0.0035829583648592234, 0.007939731702208519, -0.00031354950624518096, -0.009019170887768269, 0.02004115842282772, -0.005390694364905357, -0.008915129117667675, 0.00317166605964303, 0.022980354726314545, 0.023565592244267464, -0.009058186784386635, -0.0011891715694218874, -0.01876663975417614, -0.022395115345716476, -0.0071594142355024815, -0.007504054345190525, 0.028923774138092995, 0.011431653052568436, 0.01629563234746456, 0.007744652219116688, 0.0023685891646891832, -0.015476299449801445, -0.027415160089731216, 0.013447473756968975, 0.008622509427368641, 0.02749319188296795, -0.021965941414237022, -0.010215658694505692, -0.022629210725426674, -0.011990880593657494, 0.005741836968809366, 0.019234828650951385, 0.004997284151613712, -0.04125279188156128, -0.023110406473279, -0.01046275906264782, -0.002193017629906535, -0.0017150731291621923, -0.018896691501140594, -0.03287738189101219, -0.012823219411075115, 0.014904066920280457, -0.014149759896099567, 0.009610911831259727, 0.004317757673561573, -0.0029489502776414156, -0.01016363687813282, 0.012205468490719795, 0.019208818674087524, -0.029339943081140518, -0.02662183716893196, -0.004233222920447588, 0.014969092793762684, 0.04372379928827286, 0.008856604807078838, 0.004512837156653404, 0.016932891681790352, 0.006678218487650156, 2.9515920687117614e-05, 0.0041877045296132565, -0.009818997234106064, 0.01034571137279272, -0.01690688170492649, 0.03311147913336754, 0.02689494751393795, 0.02067841775715351, 0.01455292385071516, 0.03303344547748566, 0.0009428837802261114, 0.012153446674346924, 0.006190519779920578, 0.006161258090287447, -0.01746610924601555, -0.009623917751014233, 0.01689387671649456, -0.008323388174176216, -0.02257719077169895, -0.016165580600500107, 0.007855197414755821, -0.02285030111670494, -0.004138934891670942, -0.0013891279231756926, 0.028819730505347252, -0.0038333104457706213, 0.009532880038022995, -0.02503519132733345, 0.010482266545295715, 0.0009932792745530605, -0.0032464463729411364, -0.000167747974046506, -0.021744851022958755, 0.003194425255060196, -0.0029050575103610754, 0.02062639594078064, 0.013050812296569347, 0.003113142214715481, -0.022382110357284546, -0.011034991592168808, 0.006512400694191456, 0.02217402495443821, 0.005663805641233921, -0.015125156380236149, 0.0024157334119081497, -0.02342253364622593, -0.00517285568639636, -0.024514978751540184, -0.004811958875507116, -0.032669298350811005, 0.013213378377258778, -0.01995011977851391, -0.033943817019462585, 0.02568545565009117, -0.008980154991149902, 0.0005389068392105401, 0.005764596629887819, -0.007790171075612307, 0.033865783363580704, -0.004340516868978739, 0.03217509761452675, 0.017271030694246292, -0.011184552684426308, -0.03370971977710724, -0.005107829347252846, -0.008635515347123146, 0.0035114292986691, 0.0037357707042247057, 0.0037292679771780968, 0.031160684302449226, -0.022720247507095337, 0.008700541220605373, 0.02252516895532608, -0.029001805931329727, -0.02441093698143959, 0.014175769872963428, 0.018038341775536537, 0.008011261001229286, -0.021133601665496826, -0.014461887069046497, 0.0035276859998703003, 0.009936043992638588, -0.0019020242616534233, 0.010241668671369553, -0.021393708884716034, -0.027129042893648148, -0.02407279796898365, 0.027753297239542007, -0.013811621814966202, 0.009123213589191437, 0.014084733091294765, -0.03129073604941368, -0.012738685123622417, -0.02309740148484707, -0.013434468768537045, 0.02597157098352909, 0.0037097600288689137, 0.011873832903802395, -0.01630863919854164, 0.020106183364987373, 0.0025652942713350058, -0.0011761662317439914, -0.013317421078681946, 0.005442715249955654, 0.015346246771514416, 0.01811637356877327, -0.022004956379532814, -0.020392300561070442, -0.004551852587610483, -0.00798525009304285, 0.029652070254087448, 0.0021897663827985525, -0.00952637754380703, -0.01297928299754858, -0.010066097602248192, -0.02157578244805336, -0.003101762617006898, 0.007595091592520475, -0.017999326810240746, -0.018298448994755745, -0.0036902520805597305, -0.007881208322942257, -0.03631078079342842, -0.0041161756962537766, 0.009357308968901634, -0.01545028854161501, -0.023084396496415138, -0.018389485776424408, 0.012537103146314621, 0.0016419183230027556, -0.004659146536141634, -0.020405305549502373, 0.007295969873666763, 0.024593010544776917, -0.028871752321720123, 0.027649255469441414, -0.01424079667776823, 0.0015460043214261532, 0.0070358640514314175, 0.0003990999539382756, 0.001973553327843547, -0.004730675835162401, 0.010566800832748413, -0.011919351294636726, -0.0034919213503599167, -0.02598457783460617, -0.00875906553119421, 0.01840249076485634, 0.023916734382510185, 0.0036967548076063395, 0.009825499728322029, 0.005982435308396816, 0.006814774125814438, -0.02694696933031082, -0.013551516458392143, 0.021497750654816628, -0.006184017285704613, 0.008245356380939484, 0.002287306124344468, -0.003830058965831995, -0.017934300005435944, -0.006821276620030403, -0.006886302959173918, -0.014123748987913132, -0.023331496864557266, -0.004880236461758614, 0.0009607661049813032, 0.039926253259181976, -0.015515315346419811, 0.008277869783341885, -0.028611646965146065, 0.0067237368784844875, -0.004691659938544035, 0.020522354170680046, -0.0019654249772429466, -0.00616450933739543, 0.009058186784386635, 0.03945806249976158, -0.004571360535919666, 0.010176642797887325, -0.016087548807263374, -0.00798525009304285, 0.007757657673209906, -7.78285539126955e-05, -0.004746932070702314, -0.0007388632511720061, -0.016789834946393967, 0.017882278189063072, -0.001099760178476572, -0.02121163345873356, -0.005624789744615555, 0.022629210725426674, -0.03277334198355675, -0.0008607878698967397, 0.016412680968642235, -0.002118237316608429, 0.024918142706155777, -0.013564521446824074, -0.009845007210969925, 0.013655558228492737, -0.013206875883042812, 0.015060130506753922, 0.00827136728912592, -0.016347654163837433, 0.014305823482573032, -0.007308975327759981, -0.003038361668586731, 0.0035667018964886665, -0.020548364147543907, -0.014982098713517189, 0.03532237932085991, 0.003914593253284693, 0.0023051882162690163, 0.019312860444188118, -0.017427094280719757, -0.014071728102862835, -0.012244484387338161, 0.009832002222537994, -0.00023531453916803002, -0.003355365712195635, 0.016152575612068176, -0.011958367191255093, -0.01874062791466713, 0.00460712518543005, -0.021705836057662964, -0.020704427734017372, -0.011860827915370464, 0.0008047025767154992, -0.0028286513406783342, 0.005543506238609552, -0.014409865252673626, -0.009747467935085297, 0.009727959521114826, -0.017388077452778816, 0.018233422189950943, -0.0029115602374076843, -0.023071391507983208, 0.010553795844316483, 0.0035406912211328745, -0.012758193537592888, 0.002092226641252637, -9.276431956095621e-05, -0.024176841601729393, -0.026439761742949486, 0.004428302403539419, -0.02558141201734543, 0.0012899625580757856, -0.011925854720175266, 0.02443694695830345, -0.007913720794022083, 0.010573304258286953, -0.02999020740389824, -0.008524970151484013, -0.02344854548573494, 0.01126258447766304, -0.0022970600984990597, 0.0007685315795242786, 0.009929541498422623, 0.001176979043520987, 0.015788426622748375, -9.184988448396325e-05, -0.00970845203846693, 0.005985686555504799, -0.012927262112498283, -0.005959675647318363, 0.026738883927464485, -0.00955889094620943, -0.011860827915370464, -0.0017833509482443333, 0.009897028096020222, 0.004688408225774765, 0.012348526157438755, 0.17447902262210846, -0.025256279855966568, 0.017947304993867874, 0.0469491109251976, -0.00766011793166399, 0.015398267656564713, 0.0022580442018806934, 0.0012712674215435982, 0.026738883927464485, 0.022291073575615883, 0.0011566582834348083, 0.0004982653190381825, -0.03657088428735733, 0.00034545312519185245, 0.0048314668238162994, -0.02967808023095131, -0.05649499595165253, -0.011034991592168808, -0.023006364703178406, -0.03789742663502693, 0.008342895656824112, -0.021107591688632965, -0.021198628470301628, -0.03006823919713497, 0.05308761075139046, -0.01499510370194912, -0.01550231035798788, -0.01280371192842722, 0.024840110912919044, 0.00968894362449646, -0.012517595663666725, -0.009662933647632599, 0.02031426876783371, 0.010501774959266186, -0.003878828836604953, 0.013382446952164173, -0.023513570427894592, -0.005273646675050259, 0.024866120889782906, 0.013707580044865608, 0.0011525941081345081, -0.005413453560322523, 0.028299519792199135, -0.016997918486595154, 0.0005531313945539296, -0.003039987524971366, 0.010989473201334476, -0.014097738079726696, 0.017713209614157677, 0.013057314790785313, -0.02999020740389824, -0.005133839789777994, 0.02663484215736389, 0.042345236986875534, -0.005761344917118549, 0.008193335495889187, -0.0008575365645810962, 0.001084316405467689, -0.008407922461628914, 0.014721992425620556, -0.004441307857632637, 0.024332905188202858, -0.011548700742423534, 0.03420392423868179, 0.0071269008331000805, 0.005592276342213154, 0.0006965960492379963, 0.015372257679700851, -0.01031319797039032, -0.023708650842308998, 0.0019946868997067213, -0.019559962674975395, -0.011340616270899773, -0.018194405362010002, -0.02689494751393795, -0.024957159534096718, 0.02374766580760479, 0.026140639558434486, 0.0015297477366402745, 0.025763487443327904, -0.034854188561439514, -0.004103170242160559, 0.013122341595590115, -0.01940389908850193, -0.004883487708866596, -0.03030233457684517, 0.007920224219560623, 0.008017763495445251, -0.0009615789167582989, -0.00842742994427681, 0.01252409815788269, -0.010319700464606285, -0.0035406912211328745, -0.010566800832748413, -0.00280751776881516, 0.009949049912393093, -0.002648202935233712, 0.029808133840560913, -0.004470569547265768, -0.001506988424807787, -0.019091771915555, -0.032045044004917145, 0.02183588780462742, -0.027753297239542007, -0.00985801313072443, -0.006310818716883659, -0.008479451760649681, 0.012751690112054348, -0.002498642075806856, -0.014422871172428131, -0.006635951343923807, -0.0159705001860857, 0.0015622609062120318, -0.010124620981514454, 0.0019085268722847104, 0.02970409020781517, -0.0003383408475201577, -0.015060130506753922, -0.00304486439563334, -0.020496342331171036, 0.005309411324560642, -0.005003786645829678, 0.02217402495443821, 0.023604609072208405, -0.02343553863465786, -0.01124307606369257, -0.0159054733812809, -0.004525842145085335, 0.009175234474241734, -0.028897762298583984, 0.028611646965146065, -0.02252516895532608, 0.013954680413007736, 0.01660775952041149, -0.016763823106884956, 0.002436866983771324, -0.008674531243741512, -0.005810115020722151, -0.017765231430530548, 0.011633235029876232, 0.015255209989845753, -0.006704228930175304, 0.005263892468065023, -0.0025457863230258226, -0.011418648064136505, -0.04075859114527702, 0.0016598006477579474, 0.012257489375770092, -0.012719177640974522, -0.010696854442358017, -0.008024265989661217, -0.0009111834224313498, -0.01015063188970089, -0.022004956379532814, 0.0015752662438899279, -0.01716698706150055, -0.04850974678993225, -0.0284555833786726, 0.015333241783082485, -0.007094387896358967, -0.0022385362535715103, -0.013044309802353382, 0.023604609072208405, -0.021029559895396233, -0.016997918486595154, 0.005224876571446657, -0.16771626472473145, 0.005884895566850901, 0.019455919042229652, -0.02218703180551529, 0.0069708372466266155, 0.00018065165204461664, 0.023994766175746918, 0.011034991592168808, 0.0072114355862140656, 0.005510993301868439, 0.01060581672936678, -0.017986321821808815, -0.04908197745680809, -0.02686893753707409, 0.02564643882215023, -0.003657738910987973, -0.0095458859577775, 0.0057710991241037846, 0.004925754852592945, -0.015138162299990654, 0.0442960299551487, -0.01202989649027586, 0.02217402495443821, 0.02152376063168049, 0.0006161258206702769, 0.013024801388382912, -0.004350270610302687, 0.020535359159111977, -0.008063281886279583, 0.013154854997992516, -0.01659475453197956, -0.004194207023829222, 0.006616443395614624, 0.006219781935214996, -0.017882278189063072, -0.017414087429642677, 0.008960647508502007, 0.007426022551953793, -0.010982970707118511, 0.01974203623831272, 0.008960647508502007, 0.031732916831970215, -0.008030768483877182, 0.008720049634575844, -0.015385262668132782, -0.006265300326049328, 0.023916734382510185, 0.02536032348871231, 0.009253266267478466, -0.007465038448572159, 0.008694038726389408, -0.01630863919854164, 0.007913720794022083, 0.01755714602768421, 0.02594556100666523, -0.012797209434211254, 0.0004177950613666326, 0.019807063043117523, -0.017752226442098618, 0.0033456117380410433, -0.007907218299806118, -0.02192692458629608, 0.007946234196424484, 0.005332170519977808, -0.012933764606714249, -0.027077021077275276, -0.016113558784127235, 0.007933229207992554, 0.0010070974240079522, -0.005358180962502956, -0.010989473201334476, -0.011171547695994377, 0.006925318855792284, -0.016022522002458572, 0.01157471165060997, 0.010443250648677349, -0.009409329853951931, 0.024918142706155777, -0.00617751432582736, 0.002984714927151799, 0.000805108982603997, 0.027389148250222206, -0.028013402596116066, -0.017596162855625153, -0.015164172276854515, -0.008518467657268047, -0.01359053235501051, 0.010560298338532448, 0.0027880098205059767, -0.018857676535844803, 0.039848219603300095, -0.020470332354307175, -0.020457327365875244, -0.0032854622695595026, -0.01487805601209402, 0.01561935804784298, -0.009311790578067303, -0.0028497849125415087, -0.019221823662519455, -0.01974203623831272, -0.002524652751162648, -0.0020597134716808796, -0.018064353615045547, 0.02975611202418804, 0.031758926808834076, 0.015411272644996643, 0.0010607442818582058, 0.010248171165585518, 0.032357171177864075, 0.016438690945506096, -0.0060832262970507145, 0.002857913263142109, 0.027987392619252205, 0.02097753807902336, -0.0007539006182923913, -0.0014216412091627717, -0.015710394829511642, -0.011503182351589203, 0.018584564328193665, 0.017310045659542084, 0.01844150573015213, 0.0008420927915722132, -0.0055012390948832035, -0.009454848244786263, -0.008329890668392181, 0.0020792214199900627, -0.08952844142913818, -0.0076471129432320595, 0.02126365527510643, 0.015515315346419811, -0.013798616826534271, 0.007230943534523249, 0.008050276897847652, -0.00711389584466815, 0.010508277453482151, 0.03344961628317833, -0.028845742344856262, -0.025165243074297905, -0.0044250511564314365, -0.017101962119340897, 0.03602466359734535, 0.011509684845805168, -0.011132531799376011, -0.006008445750921965, 0.004327511414885521, 0.0190267451107502, 0.005748339928686619, -0.0027246091049164534, -0.0013436094159260392, -0.016750818118453026, -0.025230269879102707, 0.011405643075704575, -0.01841549575328827, 0.019859082996845245, 0.0350622721016407, 8.682049519848078e-05, 0.005176106933504343, -0.011366627179086208, 0.015151167288422585, -0.037325192242860794, 0.016412680968642235, -0.008661525323987007, -0.034281954169273376, -0.006125493440777063, 0.019833073019981384, -0.01624361239373684, -0.0024872624780982733, 0.003700006054714322, -0.002490513725206256, -0.035790570080280304, 0.00877207051962614, -0.011165044270455837, 0.000998969073407352, 0.00530290836468339, 0.02190091460943222, -0.017049940302968025, -0.012608632445335388, -0.022681232541799545, -0.010904938913881779, 0.0036349797155708075, 0.02529529668390751, -0.003592712339013815, -0.009701949544250965, 0.00117454060819, -0.012628139927983284, 0.002796138171106577, -0.02653079852461815, -0.00548173114657402, -0.0356605164706707, 0.017075950279831886, 0.012569616548717022, 0.009884023107588291, -0.021042564883828163, -0.010280684567987919, 0.022408120334148407, -0.015814436599612236, -0.0056475489400327206, 0.014513907954096794, -0.012218473479151726, 0.025737475603818893, -0.010040086694061756, -0.022746259346604347, -0.04559655860066414, -0.010670843534171581, 0.02184889279305935, -0.04153890907764435, -0.005423207301646471, -0.023253465071320534, 0.014956087805330753, 0.003592712339013815, 0.007289467379450798, 0.004561606794595718, 0.015697389841079712, 0.006447374355047941, 0.007413017563521862, -0.024553993716835976, 0.011847822926938534, 0.018506532534956932, 0.027025001123547554, -0.02344854548573494, -0.009994568303227425, 0.007699133828282356, -0.01015063188970089, 0.0069123138673603535, 0.020847486332058907, -0.0020840982906520367, 0.0015086140483617783, -0.019000733271241188, -0.055194467306137085, -0.0034724134020507336, -0.015762416645884514, -0.018636586144566536, 0.027753297239542007, -0.00308875716291368, 0.0046754032373428345, -0.009753970429301262, 0.010027081705629826, 0.017713209614157677, -0.010833409614861012, 0.00829737726598978, 0.007289467379450798, 0.0018028588965535164, -0.015593347139656544, -0.010813902132213116, 0.03191499039530754, 0.017023930326104164, 0.009682441130280495, 0.017088955268263817, 0.0016402926994487643, 0.0043015009723603725, 0.011912848800420761, 0.0069708372466266155, -0.016334649175405502, 0.015528320334851742, -0.0014817906776443124, 0.028065424412488937, -0.009240261279046535, -0.009662933647632599, 0.014982098713517189, -0.01206240989267826, -0.016802839934825897, 0.012550108134746552, -0.008960647508502007, -0.009149224497377872, -0.014006701298058033, 0.014774013310670853, 0.005189112387597561, 0.017882278189063072, -0.021666819229722023, -0.02848159335553646, 0.020249241963028908, -0.013720585033297539, 0.007894213311374187, -0.009799488820135593, -0.002869292860850692, 0.006405107211321592, 0.0066001866944134235, -0.007595091592520475, 0.023994766175746918, 0.028585635125637054, 0.002609187038615346, -0.02498316951096058, 0.002035328419879079, -0.028013402596116066, 0.006294562015682459, 0.006076723337173462, 0.011483673937618732, -0.02346155047416687, 0.03651886433362961, -0.0015362503472715616, 0.005696318577975035, 0.007556075695902109, 0.025399338454008102, 0.005686564836651087, -0.0077056363224983215, -0.0019296604441478848, 0.03004222922027111, -0.03618072718381882, -0.006551416590809822, 0.012777701020240784, 0.0012127436930313706, 0.0030855059158056974, 0.024931147694587708, 0.004981027450412512, 0.010391229763627052, 0.010170139372348785, 0.001157471095211804, 0.026348724961280823, 0.02183588780462742, -0.0019020242616534233, -0.01144465897232294, 0.006353085860610008, 0.02161479741334915, 0.012023393996059895, -0.014188775792717934, -0.013382446952164173, 0.003508178051561117, -0.0007250451017171144, -0.008681033737957478, 0.003982871305197477, 0.0030741263180971146, 0.006066969595849514, 0.0019215322099626064, 0.023552587255835533, 0.007634107489138842, -0.028637656942009926, 0.005133839789777994, 0.01816839538514614, 0.010007573291659355, 0.007360996212810278, -0.025503380224108696, -0.010976468212902546, -0.011997383087873459, -0.0002609186922200024, -0.006622945889830589, -0.021822882816195488, -0.0012590750120580196, 0.0017362067010253668, 0.0056898160837590694, -0.01250458974391222, 0.0032171844504773617, 0.027337128296494484, 0.0002792073937598616, 0.020509349182248116, -0.011789298616349697, -0.023955751210451126, -0.011269086971879005, 0.0319410003721714, 0.02777930721640587, 0.007608097046613693, -0.004054400138556957, -0.012855732813477516, 0.006323824170976877, -0.013239389285445213, 0.007907218299806118, -0.027649255469441414, -0.007465038448572159, -0.007029361091554165, -0.022707242518663406, -0.005728831980377436, -0.01594449020922184, -0.02816946618258953, -0.02905382588505745, 0.01818140037357807, 0.005072064697742462, 0.022681232541799545, -0.028949784114956856, 0.06356987357139587, 0.008817588910460472, 0.02188790962100029, 0.018870681524276733, 0.007133403792977333, 0.010878928005695343, 0.013369441963732243, 0.0010201027616858482, -0.026400746777653694, -0.011184552684426308, 0.007308975327759981, 2.7534644686966203e-05, 0.008661525323987007, -0.024150829762220383, -0.006512400694191456, 0.0011347118997946382, -0.030224302783608437, 0.008063281886279583, -0.02624468319118023, 1.1900351637450512e-05, 0.012452568858861923, 0.017127972096204758, 0.0072114355862140656, 0.004281993024051189, -0.025087211281061172, 0.007504054345190525, 0.01940389908850193, -0.02560742385685444, -0.011841320432722569, -0.029834143817424774, 0.007016356103122234, 0.006827779114246368, -0.07376602292060852, -0.007432525511831045, 0.006587181240320206, -0.011204060167074203, -0.016152575612068176, 0.011919351294636726, 0.016074543818831444, 0.0253343116492033, -0.01310933567583561, 0.028533615171909332, -0.027311116456985474, -0.008004758507013321, 0.011594219133257866, -0.0042397258803248405, -0.008043774403631687, 0.035790570080280304, -0.011451161466538906]" +8,coffee,"[-0.0007566261338070035, -0.0194522924721241, 0.00020155170932412148, -0.029171772301197052, -0.009186174720525742, 0.005273051094263792, -0.016279129311442375, -0.019998928532004356, 0.010666095651686192, -0.017332404851913452, -0.001283264602534473, 0.02799850143492222, -0.016625776886940002, -0.012639323249459267, -0.027731848880648613, 0.0005295549635775387, 0.04378432407975197, 0.015559166669845581, 0.03855793550610542, -0.012339339591562748, -0.015305846929550171, 0.011526049114763737, 0.010312780737876892, -0.004159777425229549, -0.0072396122850477695, 0.01790570840239525, 0.009412829764187336, -0.012919308617711067, -0.0030581695027649403, 0.007306275423616171, 0.012679320760071278, -0.01255932729691267, -0.03207828104496002, -0.004829741548746824, -0.020318912342190742, -0.010632763616740704, -0.012032689526677132, -0.004289770498871803, 0.0038264617323875427, -0.0008245391654781997, 0.017292408272624016, -0.0075529287569224834, 0.001559916534461081, -0.011486051604151726, -0.036744698882102966, 0.01725240983068943, 0.01947895623743534, 0.010646096430718899, -0.009892803616821766, -0.0022365469485521317, 0.011026076041162014, 0.011479385197162628, -0.020518900826573372, 0.006986292544752359, 0.005923015996813774, -0.013985917903482914, -0.016025807708501816, 0.02415870688855648, 0.020572232082486153, -0.010806088335812092, -0.0021448852494359016, 0.014439227059483528, -0.01473254431039095, 0.019012315198779106, 0.003131499048322439, -0.007626258302479982, -0.006839633919298649, 0.023918719962239265, -0.0012174347648397088, -0.014359231106936932, 0.01841234788298607, 0.049090705811977386, -0.0006587147363461554, -0.010792755521833897, 0.015252516604959965, -0.0036331387236714363, -0.017385736107826233, 0.0012732651084661484, -0.00828622281551361, 0.008412882685661316, 2.3214903194457293e-05, -0.03210494667291641, -0.031198330223560333, 0.015039194375276566, -0.009439494460821152, -0.006486319471150637, -0.005306382663547993, 0.0003097750886809081, -0.005353046581149101, 0.013192626647651196, 0.0006241332739591599, -0.004139778204262257, 0.00063788250554353, 0.021918825805187225, -0.019238969311118126, 0.005653030704706907, 0.005683029070496559, 0.02150551602244377, 0.0022265473380684853, -0.023812059313058853, -0.010972745716571808, 0.022532127797603607, -0.022825444117188454, -0.016305793076753616, -0.002736520254984498, -0.023332083597779274, 0.014559220522642136, 0.012172681279480457, 0.019265634939074516, -0.0005066395387984812, -0.002073222305625677, 0.034264832735061646, 0.006286330055445433, -0.027358535677194595, 0.0022132147569209337, -0.0043131024576723576, -0.007152950391173363, -0.024065379053354263, 0.00527971750125289, -0.024278700351715088, 0.001149105140939355, 0.006249665282666683, 0.03389151766896248, 0.012339339591562748, 0.022145481780171394, 0.009632817469537258, -0.02342541329562664, 0.0033364880364388227, -0.0080329030752182, -0.014385896734893322, 0.01679909974336624, 0.0011757704196497798, 0.014945866540074348, 0.0005016397917643189, -0.04447761923074722, 0.023238755762577057, -0.04442428797483444, 0.009246171452105045, -0.007606259547173977, -0.02577195316553116, 0.008186228573322296, 0.04477093741297722, -0.015452506020665169, 0.0036698034964501858, -0.029438422992825508, 0.009886137209832668, 0.025025326758623123, 0.019892267882823944, 0.004519757814705372, -0.006646310910582542, 0.004593087360262871, -0.026438584551215172, 0.00020040593517478555, 0.007006291765719652, 0.005076394882053137, 0.004106446634978056, 0.002743186429142952, 0.018785661086440086, -0.01131939422339201, 0.006926295813173056, -0.006886297836899757, -0.006559649016708136, 0.01897231675684452, -0.004906403832137585, 0.005213054362684488, 0.013692600652575493, 0.03141165152192116, 0.0035064788535237312, 0.018025701865553856, -0.009872804395854473, 0.011552714742720127, 0.047597452998161316, -0.03733133524656296, 0.013825925998389721, 0.01096607930958271, 0.02187882922589779, 0.028345149010419846, -0.000843288202304393, -0.015852484852075577, -0.008646204136312008, -0.0012524329358711839, 0.024505354464054108, 0.005473040509968996, 0.013545941561460495, 0.000457892136182636, -0.00947282649576664, 0.0029415092431008816, -0.014719211496412754, 0.007079620845615864, -0.019438959658145905, -0.005333047825843096, 0.01457255333662033, 0.008872858248651028, -0.0020715557038784027, -0.683910071849823, -0.024772007018327713, 0.027385201305150986, -0.016985757276415825, 0.006732972804456949, 0.02357207052409649, 0.016452452167868614, 0.016279129311442375, -0.004783077165484428, -0.006666309665888548, 0.014492557384073734, 0.024718675762414932, 0.014239237643778324, -0.009799475781619549, 0.01399925071746111, -0.01375926285982132, 0.02023891545832157, -0.01523918379098177, -0.00787957850843668, 0.029838401824235916, -0.009579487144947052, 0.024705344811081886, -0.011352725327014923, -0.009386164136230946, 0.00651298463344574, -0.008279556408524513, 0.006086340639740229, -0.03490479663014412, -0.027891840785741806, -0.000488723861053586, -0.011479385197162628, 0.020345577970147133, 0.007826247252523899, -0.014519223012030125, 0.0341048389673233, 0.017065752297639847, -0.011439387686550617, 0.023252088576555252, 0.02491866610944271, 0.03847793862223625, -0.015332512557506561, -0.0082462253049016, 0.012112684547901154, -0.0064996518194675446, -0.01942562684416771, -0.0023965383879840374, 0.035118117928504944, -0.010179455392062664, 0.0030065057799220085, -0.018625669181346893, 0.020372241735458374, 0.0020298913586884737, 0.007346273399889469, 0.005623032338917255, 0.004423096310347319, 0.005719693843275309, 0.042131077498197556, -0.01601247675716877, -0.014119244180619717, 0.02906510978937149, 0.002969841007143259, 0.027865175157785416, -0.011606045067310333, -0.005389711353927851, -0.002606527181342244, 0.024478688836097717, -0.008906189352273941, -0.012779315933585167, -0.004683082457631826, -0.0027831844054162502, -0.005269717890769243, 0.0010482772486284375, -0.02283877693116665, -0.012292674742639065, 0.007566261570900679, 0.02261212281882763, 0.01863900199532509, -0.024492021650075912, -0.007646257057785988, -0.009692814201116562, -0.0020548899192363024, -0.007166282739490271, -0.02999839372932911, -0.006932962220162153, 0.03613140061497688, -0.01096607930958271, -0.024492021650075912, -0.012479332275688648, 0.009152843616902828, 0.0016074139857664704, 0.020772220566868782, 0.03754465654492378, 0.015145855955779552, -0.0037298002280294895, -0.01965228095650673, 0.004949735011905432, -0.02511865459382534, 0.004976400174200535, 0.011766036972403526, -0.025331977754831314, -0.0063729919493198395, -0.002958175027742982, 0.0017565726302564144, 0.006279663648456335, 0.005559702403843403, 0.022065484896302223, -0.004139778204262257, 0.0300250593572855, 0.03650471195578575, -0.038211286067962646, -0.009706147015094757, 0.010272783227264881, 0.0027598522137850523, 0.0007537096389569342, 0.014385896734893322, -0.03434482961893082, 0.006282996851950884, -0.0004928902490064502, 0.018705666065216064, -0.023478742688894272, 0.00839954987168312, 0.0029565084259957075, 0.016879096627235413, -0.017265742644667625, 0.00911951158195734, 0.014412561431527138, -0.005236386321485043, -0.020558899268507957, -0.021438851952552795, -0.021612176671624184, 0.0052930498495697975, 0.004189775791019201, -0.004869739059358835, -0.015225851908326149, -0.0016657441155984998, 0.00010504645615583286, -0.005133058410137892, -0.012525996193289757, 0.008446214720606804, 0.0019515621243044734, -0.01598581112921238, 0.007712920196354389, -0.0011349392589181662, -0.0058896844275295734, 0.012392669916152954, -0.0002399871445959434, -0.018092364072799683, -0.009392830543220043, -0.016625776886940002, 0.022545458748936653, 0.009206173941493034, -0.0016674107173457742, -0.005653030704706907, 0.006096340250223875, 0.006749638821929693, -0.02813182771205902, 0.001195769291371107, -0.026118600741028786, -0.006242998875677586, 0.004873072262853384, 0.009379497729241848, 0.013499277643859386, -0.022305471822619438, 0.010746091604232788, 0.007599593140184879, -0.01995893195271492, 0.004419763572514057, 0.02271878346800804, -0.016599111258983612, -0.023078763857483864, -0.00044122638064436615, -0.03709134832024574, -0.011566047556698322, 0.022798778489232063, 0.003926456440240145, -0.00451642507687211, -0.016052473336458206, 0.015625830739736557, 0.01110607199370861, 0.008486212231218815, 0.007699587848037481, -0.0043264348059892654, -0.01674577035009861, -0.003188162576407194, 0.03109166771173477, 0.02461201511323452, 0.012439333833754063, 0.027131881564855576, -0.026238596066832542, 0.02043890580534935, -0.0009549488895572722, 0.003999785985797644, -0.007952907122671604, 0.00040372839430347085, 0.02046557143330574, -0.00907951407134533, -0.00847287941724062, 0.010832753032445908, 0.010019463486969471, 0.017319072037935257, 0.015145855955779552, -0.00690629705786705, 0.015159188769757748, -0.01863900199532509, 0.025491967797279358, -0.026771899312734604, -0.00499639892950654, -0.028318483382463455, 0.02269211784005165, 0.022398801520466805, 0.009099512360990047, -0.013239291496574879, -0.009866137988865376, -0.018905654549598694, 0.0013057633768767118, 0.03613140061497688, -0.0008891190518625081, 0.014639216475188732, -0.00999279785901308, -0.003989786375313997, -0.014719211496412754, -0.012199346907436848, 0.0028831788804382086, -0.015559166669845581, -0.026038605719804764, 0.012226011604070663, -0.006952960975468159, 0.023252088576555252, 0.0016249129548668861, -0.0294650886207819, 0.005846353713423014, 0.008839527145028114, -0.02539863996207714, 0.021318858489394188, -0.0221321489661932, 0.004139778204262257, 0.010786089114844799, -0.012512663379311562, 0.03306489810347557, -0.008199561387300491, -0.004416430369019508, 0.019585618749260902, 0.04629085585474968, -0.021772166714072227, 0.007639591116458178, -0.02337208203971386, 0.013632602989673615, 0.0067163072526454926, 0.024292033165693283, 0.009359498508274555, -0.024038713425397873, 0.002544863848015666, -0.01165937539190054, 0.003959788009524345, 0.01843901351094246, -0.014865870587527752, 0.008379551582038403, 0.011999357491731644, 0.026091936975717545, 0.036264725029468536, -0.009706147015094757, 0.014052581042051315, -0.003206494962796569, -0.017372403293848038, -0.007592926733195782, -0.0046530840918421745, 0.01595914550125599, -0.008212893269956112, 0.006056342273950577, 0.0034664811100810766, 0.0019048979738727212, -0.02013225480914116, -0.0013465945376083255, 0.00976614374667406, 0.004839740693569183, 0.0010391110554337502, -0.0024848668836057186, -0.004223107360303402, 0.009852806106209755, -0.021158866584300995, -0.0007982905954122543, -0.007432935293763876, 0.01674577035009861, 0.00995280034840107, -0.0018782328115776181, 0.006666309665888548, -0.008166229352355003, 0.003029837738722563, -0.016399122774600983, -0.001233267248608172, -0.00011926444858545437, 0.014412561431527138, -0.022452130913734436, -0.01995893195271492, 0.00995280034840107, -0.021318858489394188, 0.008826194331049919, -0.010886083357036114, -0.015132523141801357, 0.001966561423614621, -0.007066288497298956, -0.03498479351401329, -0.014025915414094925, -0.014465891756117344, 0.021025540307164192, 0.005683029070496559, -0.001539917546324432, -0.013385949656367302, -0.011719372123479843, -0.00921950675547123, 0.011312727816402912, 0.00972614623606205, -0.01705241948366165, -0.011232731863856316, 0.01551916915923357, -0.012386003509163857, -0.004649750888347626, -0.012465999461710453, 0.028878454118967056, 0.01691909320652485, -0.007546262815594673, -0.011619377881288528, -0.020905546844005585, 0.0002851930621545762, 0.07402270287275314, 0.026505246758461, -0.010506103746592999, 0.027025219053030014, 0.012232678011059761, -0.007259611506015062, -0.006256331689655781, -0.015559166669845581, -0.001467421418055892, 0.0014207572676241398, 0.005903017241507769, -0.014119244180619717, 0.01172603853046894, -0.008739531971514225, 0.02345207706093788, 0.006266331300139427, -0.012232678011059761, -0.024772007018327713, 0.020825551822781563, -0.011692707426846027, -0.00531304907053709, -0.014652548357844353, 0.017585724592208862, 0.011239398270845413, 0.016959091648459435, 0.01669243909418583, 0.011959359981119633, 0.03583808243274689, 0.018532341346144676, -0.03133165463805199, 0.004099780693650246, 0.004706414882093668, 0.007826247252523899, -0.007792916148900986, 0.009799475781619549, 0.03205161541700363, 0.010539435781538486, 0.002533197635784745, 0.032184943556785583, -0.009252837859094143, 0.02901178039610386, 0.017692385241389275, -0.005353046581149101, 0.001019112067297101, 0.009439494460821152, -0.03853126987814903, -0.0018332351464778185, 0.022038819268345833, -0.013219292275607586, -0.009039515629410744, 0.013545941561460495, 0.021838830783963203, -0.013719265349209309, -0.01615913398563862, -0.0026698571164160967, 0.02207881771028042, 0.0014399229548871517, -0.0025231982581317425, -0.006019677501171827, -0.007699587848037481, -0.016932426020503044, -0.012899309396743774, 0.0028148493729531765, 0.017945704981684685, 0.014345898292958736, -0.014825873076915741, -0.0010866085067391396, -0.015599165111780167, -0.007419602945446968, -0.00833288673311472, -0.011172735132277012, -0.011426054872572422, -0.012012690305709839, 0.015212519094347954, 0.012459333054721355, 0.015439173206686974, 0.006606312934309244, -0.021038873121142387, -0.003429816337302327, 0.025225315243005753, -0.02091887965798378, -0.005486372858285904, -0.00610967306420207, -0.028185157105326653, 0.0018232357688248158, 0.011126071214675903, -0.0017299073515459895, -0.011172735132277012, 0.00356314261443913, -0.006939628627151251, 0.01643911935389042, -0.008946187794208527, 0.0343981571495533, -0.015425840392708778, 0.0008099566330201924, 0.0028031831607222557, 0.028345149010419846, -0.012159349396824837, -0.007452934514731169, -0.004049783106893301, 0.006852966267615557, 0.0018482343293726444, -0.007926242426037788, 0.007659589871764183, 0.00654631620272994, 0.013072633184492588, -0.006482986267656088, 0.01154604833573103, -0.02387872152030468, 0.0006249665166251361, 0.02117219939827919, -0.028398480266332626, 0.018092364072799683, -0.007566261570900679, 0.00564636429771781, 0.013732598163187504, -0.005743025802075863, 0.009999464266002178, 0.00311150006018579, -0.020478904247283936, -0.013179294764995575, -0.03047836758196354, 0.04399764537811279, 0.011252731084823608, 0.0082462253049016, 0.004059782717376947, 0.009612818248569965, -0.020332245156168938, -0.007859579287469387, -0.004706414882093668, -0.010719425976276398, 0.004513091873377562, -0.022825444117188454, -0.01450589019805193, -0.04231773316860199, -0.02137218974530697, -0.007506264839321375, 0.012252677232027054, -0.002939842641353607, -0.023505408316850662, -0.017305739223957062, 0.006509651429951191, 0.005946348421275616, -0.01993226632475853, -0.014625883661210537, -0.04381098598241806, 0.012346005998551846, 0.005143058020621538, 0.027705183252692223, 0.016892429441213608, -0.021692171692848206, 0.024545352905988693, -0.012319340370595455, 0.026465250179171562, -0.018079031258821487, -0.026905225589871407, -0.028718462213873863, -0.004406430758535862, 0.022625455632805824, 0.01841234788298607, 0.023518741130828857, 0.010039462707936764, 0.0033848187886178493, -0.0018065699841827154, 0.003199828788638115, -0.016959091648459435, 0.014145908877253532, 0.01305263489484787, -0.02709188312292099, -0.009692814201116562, 0.030665025115013123, -0.006322994828224182, 0.018372349441051483, -0.0009149510296992958, 0.011646043509244919, 0.02686522901058197, -0.002831515157595277, -0.01851900853216648, -0.015545833855867386, -0.009592819958925247, -0.008092899806797504, -0.00658298097550869, 0.002693189075216651, 0.022345470264554024, 0.023945383727550507, -0.006176336202770472, 0.03386485204100609, 0.02997172810137272, 0.012039355002343655, -0.01821235753595829, 0.040184516459703445, -0.007406270131468773, 0.017145749181509018, 0.0034564814995974302, 0.006006345152854919, -0.0034364827442914248, -0.021438851952552795, -0.0001612413616385311, -0.0006349660106934607, 0.03005172498524189, 8.598498243372887e-05, 0.016252463683485985, -0.006639644503593445, 0.007646257057785988, -0.0021848829928785563, 0.0034931462723761797, -0.00647631986066699, -0.003609806764870882, -0.007152950391173363, -0.02455868571996689, -0.019572285935282707, -0.01914564147591591, -0.03282490745186806, -0.018852323293685913, -0.0007478766492567956, -0.0027381866239011288, -0.010019463486969471, 0.019665613770484924, 0.003909790888428688, -0.022092150524258614, 0.013732598163187504, -0.006446321494877338, 0.02297210320830345, -1.3065706298220903e-05, 0.015359177254140377, 0.03165163844823837, -0.005233053117990494, -0.00995280034840107, 0.025411972776055336, 0.01618579961359501, -0.011259397491812706, -0.00033019063994288445, 0.024238701909780502, 0.0048264083452522755, -0.001149938441812992, 0.007759584579616785, 0.010819421149790287, -0.027438530698418617, -0.019838938489556313, 0.04421096667647362, 0.006376325152814388, -0.009832806885242462, -0.026625240221619606, -0.008692868053913116, -0.02618526481091976, 0.015372510068118572, 0.006509651429951191, 0.00240653776563704, -0.01168604101985693, -0.01679909974336624, -0.008432881906628609, 0.030611693859100342, -0.005363046191632748, 0.02655857801437378, 0.00737960496917367, -0.009419495239853859, -0.00636299280449748, -0.0007782916654832661, -0.00995280034840107, -0.00030331709422171116, -0.008372885175049305, 0.02901178039610386, -0.004159777425229549, 0.0045530893839895725, -0.0018599004251882434, -0.02850514091551304, -0.01829235441982746, -0.01523918379098177, -0.004176442977041006, 0.02999839372932911, 0.00549637246876955, -0.011299395002424717, 0.011599378660321236, 0.007532930001616478, 0.03775797784328461, -0.022038819268345833, -0.02159884385764599, 0.0028065163642168045, -0.02951841987669468, -0.00919284112751484, 0.0007332940585911274, 0.011592712253332138, -0.010492771863937378, 0.005736359395086765, -0.015585832297801971, -0.012845979072153568, -0.028905119746923447, 0.0027181878685951233, 0.015305846929550171, -0.009126177988946438, -0.008312888443470001, -0.0042697712779045105, 0.011006077751517296, 0.007192948367446661, 0.00921950675547123, -0.022678785026073456, 0.004096447490155697, 0.02331875078380108, -0.01575915701687336, 0.011672708205878735, -0.025558631867170334, -0.009039515629410744, -0.006776303984224796, 0.012059354223310947, -0.010039462707936764, -0.02334541641175747, 0.02018558606505394, -0.015825819224119186, -0.01429256796836853, -0.007812915369868279, -0.014159241691231728, 0.009099512360990047, 5.926765879848972e-05, 0.005599700380116701, 0.03445148840546608, -3.20555736834649e-05, -0.015572499483823776, -0.032184943556785583, -0.03901124373078346, 0.009326167404651642, -0.023812059313058853, -0.013732598163187504, 0.015252516604959965, -0.024492021650075912, -0.0006341327098198235, 0.01501252967864275, 0.020798886194825172, 0.013719265349209309, -0.012719319202005863, -0.00911951158195734, -0.011532715521752834, 0.0338381864130497, -0.013105965219438076, -0.025998607277870178, 0.016985757276415825, 0.004549756180495024, -0.00973947811871767, 0.021585511043667793, -0.012525996193289757, -0.011592712253332138, 0.02190549299120903, 0.033224888145923615, -0.004716414026916027, 0.013799261301755905, 0.0020432239398360252, -0.026198597624897957, -0.01854567416012287, -0.03407817706465721, -0.014772542752325535, -6.67672575218603e-05, 0.004683082457631826, 0.0005087227909825742, 0.015852484852075577, -0.009506157599389553, -0.040557827800512314, -0.016865763813257217, -0.012899309396743774, -0.016759103164076805, -0.0002745686215348542, 0.008792862296104431, 0.002869846299290657, -0.01055943500250578, -0.0012940973974764347, 0.02655857801437378, 0.0058330208994448185, 0.015039194375276566, -0.006276330444961786, -0.0219854898750782, 0.01998559571802616, -0.014972531236708164, 0.018679000437259674, 0.004979733377695084, -0.027491861954331398, -0.009632817469537258, 0.04189109057188034, 0.01722574420273304, 0.007786249741911888, 0.009226172231137753, -0.0006053842371329665, -0.00549637246876955, -0.004906403832137585, -0.014105911366641521, -0.007832913659512997, -0.0018149028765037656, 0.009386164136230946, -0.031251661479473114, -0.023492075502872467, 0.00752626359462738, 0.02134552411735058, -0.019092310220003128, 0.024572018533945084, 0.0010274449596181512, 0.004036450758576393, 0.0015307513531297445, -0.012059354223310947, -0.015412508510053158, 0.007286276668310165, -0.013865924440324306, -0.012086019851267338, 0.016892429441213608, 0.010959412902593613, 0.012525996193289757, 0.0053497133776545525, -0.004253105726093054, 0.006136338226497173, 0.0043697659857571125, -0.03941122442483902, 0.003291490487754345, 0.01601247675716877, -0.012652656063437462, 0.002731520449742675, -0.009479492902755737, 0.005526370834559202, -0.01082608662545681, -0.00045997535926289856, 0.01806570030748844, -0.021105537191033363, 0.008206226862967014, 0.01674577035009861, 0.018345683813095093, -0.041597772389650345, 0.00018998983432538807, 0.014199240133166313, -0.012352672405540943, -0.005959680769592524, -0.019305633381009102, -0.00622300012037158, -0.025011993944644928, -0.010219452902674675, 0.020425572991371155, -0.02393205277621746, -0.02914510667324066, -0.020838884636759758, -0.0036331387236714363, 0.0024682010989636183, 0.0068729654885828495, 0.2148151695728302, -0.0025381974410265684, -0.027465196326375008, 0.051490575075149536, -0.013179294764995575, 0.004673083312809467, 0.020825551822781563, 0.006166336592286825, -0.0010332780657336116, 0.01450589019805193, 0.006999625358730555, 0.010026129893958569, -0.009159510023891926, 0.002188216196373105, 0.0006745472201146185, -0.003379818983376026, -0.03791797161102295, -0.05453041195869446, -0.015772487968206406, 0.0078929103910923, -0.0058496869169175625, -0.002533197635784745, -0.017825711518526077, -0.01899898238480091, 0.03135832026600838, 0.0010466106468811631, -0.0023132094647735357, -0.0049264030531048775, 0.03951788321137428, -0.011306061409413815, -0.013245957903563976, -0.007299609016627073, 0.016252463683485985, -0.005199721548706293, 0.0014282568590715528, -0.023558737710118294, -0.0009691147715784609, -0.01547917164862156, 0.002391538582742214, 0.0034114839509129524, -0.01501252967864275, 0.00773958582431078, 0.003709801472723484, -0.014519223012030125, -0.0009991131955757737, 0.012386003509163857, 0.0022782112937420607, -0.024705344811081886, 0.010139456950128078, 0.008532876148819923, -0.05279717221856117, 0.01998559571802616, 0.023918719962239265, 0.020065592601895332, 0.006043009925633669, 0.00046789160114713013, 0.0221321489661932, -0.008046235889196396, -0.007199614308774471, 0.009506157599389553, -0.023012101650238037, 0.028718462213873863, -0.014772542752325535, 0.017559058964252472, -0.02117219939827919, -0.002158217830583453, -0.014212572015821934, 0.0027965169865638018, -0.010779422707855701, -0.021158866584300995, -0.006439655087888241, -0.029651746153831482, 0.0038097959477454424, 0.011266063898801804, -0.020172253251075745, -0.02122553065419197, 0.021745502948760986, 0.02863846719264984, 0.011159402318298817, 0.022625455632805824, 0.0029331762343645096, -0.010866085067391396, -0.009479492902755737, 0.008179562166333199, -0.000927450368180871, -0.033811524510383606, 0.02187882922589779, 0.00037477159639820457, -0.008719532750546932, -0.0019032314885407686, -0.018732329830527306, -0.006832967512309551, -0.004806409124284983, -0.01719907857477665, 0.015332512557506561, 0.013799261301755905, -0.010786089114844799, 0.015292514115571976, -0.02309209667146206, 0.007999571971595287, -0.019238969311118126, -0.0007841246551834047, 0.02810516208410263, 0.011172735132277012, -0.00585635332390666, 0.012206013314425945, 0.0005483040004037321, 8.33809535834007e-05, 0.008999518118798733, -0.0036764699034392834, -0.028825122863054276, -0.02686522901058197, 0.020838884636759758, 0.007659589871764183, 0.009852806106209755, 0.004079781472682953, 0.0003256075724493712, -0.021025540307164192, 0.0007224613218568265, -0.008086233399808407, 0.023665400221943855, -0.03389151766896248, 0.026945224031805992, -0.0016932426951825619, -0.010919415391981602, -0.0055663688108325005, -0.009459493681788445, -0.0051663899794220924, -0.008452881127595901, -0.03949121758341789, 0.008259558118879795, 0.0034998126793652773, 0.01429256796836853, -0.006966293789446354, -0.013745930977165699, 8.973477815743536e-05, 0.004799743182957172, -0.009932801127433777, 0.0024998660665005445, 0.0034431489184498787, -0.011252731084823608, 0.0009582820348441601, 0.013112631626427174, 0.007806248497217894, -0.011086072772741318, -0.01778571493923664, 0.009999464266002178, -0.004259772133082151, -0.04239773005247116, -0.0013699266128242016, 0.0030015059746801853, -0.014172574505209923, -0.018252355977892876, -0.0008037069928832352, 0.02757185697555542, -0.012945973314344883, -0.018758995458483696, -0.0366380400955677, -0.009392830543220043, 0.015279182232916355, -0.02015892043709755, -0.013772595673799515, 0.040051188319921494, -0.008019570261240005, -0.017839044332504272, 0.010306115262210369, -0.17385736107826233, 0.013825925998389721, -0.0006695474730804563, -0.019012315198779106, 0.01182603370398283, 0.009252837859094143, 0.007399603724479675, 0.01646578498184681, 0.0008891190518625081, 0.006229666527360678, 0.008859525434672832, -0.013519275933504105, -0.02726520597934723, -0.007046289276331663, 0.014372563920915127, 0.012852645479142666, -0.010566100478172302, 0.0017632389208301902, 0.014959199354052544, 0.022958770394325256, 0.031118333339691162, -0.013112631626427174, -0.0005520537961274385, 0.0036831360775977373, 0.007392937317490578, 0.01498586405068636, -0.0078929103910923, 0.010639430023729801, -0.02954508550465107, 0.001973227597773075, -0.048104092478752136, -0.0007141284295357764, 0.041597772389650345, 0.00787957850843668, 0.015025862492620945, 0.0028148493729531765, -0.008226226083934307, 0.002123219659551978, -0.011092739179730415, 0.032798245549201965, 0.022092150524258614, 0.026438584551215172, 0.00498973298817873, 0.0031015006825327873, -0.015105857513844967, 0.018572339788079262, 0.010039462707936764, 0.0013524276437237859, 0.008772864006459713, 0.006866299081593752, 0.021025540307164192, -0.018932320177555084, 0.011606045067310333, 0.0073129418306052685, 0.01854567416012287, 0.002448202343657613, -0.027705183252692223, 0.008746198378503323, -0.01643911935389042, -0.0029481754172593355, 0.005923015996813774, -0.02757185697555542, 0.0053097158670425415, -0.012759316712617874, -0.00020342660718597472, -0.02542530559003353, -0.010179455392062664, -0.005569702014327049, -0.012279342859983444, -0.00014415894111152738, -0.011012743227183819, -0.002946508815512061, 0.0012749317102134228, -0.020052259787917137, 0.011526049114763737, 0.009999464266002178, -0.015132523141801357, 0.012399336323142052, 0.011839366517961025, -0.011626044288277626, -0.014265903271734715, 0.03245159611105919, -0.0035998071543872356, 0.0015724158147349954, -0.006732972804456949, -0.004803076386451721, 0.0063163284212350845, 0.003489813068881631, 0.0018715664045885205, -0.03458481654524803, 0.03559809550642967, -0.02069222554564476, 0.0009149510296992958, -0.024732008576393127, 0.009712813422083855, 0.0009491158416494727, 0.005013064946979284, 0.01905231364071369, -0.003819795558229089, -0.007772916927933693, 0.02041224017739296, 0.004606420174241066, -0.03786464035511017, 0.010046129114925861, 0.027438530698418617, -0.01643911935389042, -0.00644298829138279, -0.018532341346144676, 0.013019302859902382, -0.003663137089461088, -0.011579380370676517, 0.02269211784005165, 0.024705344811081886, 0.022705450654029846, 0.005333047825843096, 0.02309209667146206, -0.0028298485558480024, -0.010466106235980988, 0.016679106280207634, -0.009086180478334427, 0.02661190927028656, -0.002474867505952716, -0.018345683813095093, -0.001402424881234765, -0.014425894245505333, -0.019038980826735497, -0.0902351662516594, -0.02951841987669468, 0.002309876261278987, 0.01717241480946541, -0.02489200048148632, 0.01618579961359501, -0.02681189775466919, 0.0054930392652750015, -0.025225315243005753, 0.03306489810347557, -0.0034198169596493244, -0.027811843901872635, 0.0002524864685256034, 0.003796463366597891, 0.04383765161037445, -0.008492878638207912, -0.018359016627073288, -0.0047697448171675205, -0.02021225169301033, 0.015919147059321404, -0.018145695328712463, 0.012719319202005863, -0.008252891711890697, 0.0042697712779045105, -0.006592980120331049, -0.004019784741103649, -0.01849234290421009, 0.025305312126874924, 0.03901124373078346, 0.0068729654885828495, -0.0029015112668275833, -0.008299555629491806, 0.0002435286296531558, -0.03349154070019722, -0.0038997912779450417, 0.009832806885242462, -0.004846407100558281, -0.015559166669845581, 0.05653030797839165, -0.02681189775466919, 0.008252891711890697, 0.013292621821165085, 0.00925950426608324, -0.03503812476992607, -0.011372724547982216, -0.0007945407996885478, -0.022305471822619438, 0.03133165463805199, 0.0002876929356716573, -0.03642471507191658, -0.016359124332666397, 0.006686308886855841, 0.003999785985797644, -0.010806088335812092, 0.03442482277750969, -0.016825765371322632, 0.015372510068118572, 0.008366218768060207, -0.014212572015821934, -0.002639858750626445, 0.007886243984103203, -0.012999303638935089, 0.008126231841742992, 0.028398480266332626, -0.004019784741103649, -0.01995893195271492, -0.040637824684381485, 0.00047830771654844284, 0.0017565726302564144, -0.007606259547173977, -0.012092686258256435, 0.0007203780696727335, -0.026731902733445168, 0.02997172810137272, -0.01905231364071369, 0.006979626137763262, -0.010119457729160786, -0.001988226780667901, 0.00715961679816246, -0.018252355977892876, -0.022705450654029846, -0.013339285738766193, -0.0036698034964501858, -0.030291711911559105, 0.028291817754507065, 0.02125219628214836, 0.008599539287388325, 0.004519757814705372, 0.005339714232832193, -0.03509145602583885, 0.00987947080284357, 6.87463179929182e-05, 0.014359231106936932, -0.02517198584973812, -0.004956401418894529, -0.013365951366722584, -0.012939306907355785, -0.010606098920106888, 0.02150551602244377, -0.009572820737957954, 0.003134832251816988, -0.016985757276415825, -0.0659698024392128, 0.005603033117949963, -0.00625966489315033, -0.01045943982899189, 0.01694575883448124, -0.0076795886270701885, 0.00712628522887826, 3.367007229826413e-05, -0.012765983119606972, -0.009432828053832054, -0.014772542752325535, 0.013405948877334595, -0.011492718011140823, -0.002049890346825123, -0.006319661624729633, -0.016145803034305573, 0.026678571477532387, 0.012925975024700165, -0.009012850932776928, 0.005126392003148794, 0.004319768864661455, 0.013679267838597298, 0.02001226134598255, 0.00676630437374115, -0.018105696886777878, 0.0026048605795949697, -0.014852537773549557, 0.01316596195101738, -0.009719479829072952, 0.015652494505047798, 0.015172520652413368, -0.012299341149628162, 0.014012583531439304, 0.015412508510053158, -0.004969733767211437, -0.01742573454976082, -0.017665721476078033, 0.025865281000733376, -0.0019798940047621727, 0.002651524730026722, -0.022292139008641243, -0.01793237403035164, -0.003321488853543997, -0.009506157599389553, -0.010326113551855087, 0.020625561475753784, -0.012479332275688648, 0.008992851711809635, 0.0009182841749861836, -0.0068729654885828495, 0.002383205806836486, 0.019825605675578117, 0.010179455392062664, -0.015199186280369759, -0.0021515514235943556, -0.03245159611105919, 0.017305739223957062, 0.005936348810791969, -0.029705075547099113, -0.03887791931629181, 0.017972370609641075, 0.02850514091551304, 0.0031931623816490173, -0.007946241647005081, 0.0160658061504364, 0.009252837859094143, -0.0017882375977933407, -0.0043264348059892654, 0.019492289051413536, -0.01973227597773075, -0.003264825092628598, -0.014879203401505947, 0.009126177988946438, 0.005503038875758648, 0.011132737621665001, -0.019132308661937714, -0.006762971170246601, 0.005229719914495945, -0.009826140478253365, 0.006439655087888241, 0.02043890580534935, 0.005196388345211744, -0.012226011604070663, 0.018878988921642303, 0.03287823870778084, 0.027185210958123207, -0.0031848293729126453, -0.006446321494877338, -0.003503145882859826, 0.009059514850378036, -0.008486212231218815, -0.004406430758535862, 0.01970561221241951, 0.001793237286619842, 0.021012207493185997, 0.008859525434672832, -0.029385093599557877, -0.016172466799616814, -0.00647631986066699, 0.019785607233643532, 0.011479385197162628, 0.007572927977889776, -0.01823902316391468, -0.009892803616821766, 0.008092899806797504, 0.020598897710442543, -0.020825551822781563, -0.028745127841830254, -0.028238488361239433, 0.030771685764193535, 0.021332191303372383, 0.011052741669118404, 0.02534530870616436, 0.01838568225502968, -0.005403044167906046, 0.0033614865969866514, -0.02754519134759903, -0.004786410368978977, -0.015572499483823776, 0.029705075547099113, 0.020118921995162964, 0.005146391224116087, 0.019572285935282707, -0.011306061409413815, 0.024852002039551735, 0.019078979268670082, -0.0023465410340577364, -0.02805183082818985, 0.0032048283610492945, 0.014945866540074348, 0.005516371224075556, -0.010259450413286686, -0.030398372560739517, -0.00951282400637865, -0.020278913900256157, 0.008839527145028114, 0.02551863342523575, 0.030611693859100342, -0.0025681958068162203, 0.061863355338573456, 0.004723080433905125, -0.01615913398563862, -0.0014149242779240012, 0.008939521387219429, 0.020118921995162964, 0.008786195889115334, 0.0030065057799220085, -0.028265153989195824, -0.038611266762018204, 0.002424870152026415, 0.003873125882819295, -0.0001421798806404695, -0.030451703816652298, -0.022785447537899017, 0.0009916136041283607, -0.014865870587527752, 0.026931891217827797, -0.0011174401734024286, -0.014399228617548943, 0.022732116281986237, 0.004263104870915413, 0.011346058920025826, -0.0019448958337306976, -0.006642977707087994, 0.00030727521516382694, 0.020478904247283936, 0.0006674642791040242, -0.0218521635979414, -0.023385414853692055, 0.015225851908326149, -0.010386110283434391, -0.036691367626190186, 0.016599111258983612, 0.02223880961537361, -0.016812432557344437, -0.005143058020621538, -0.021292192861437798, 0.010466106235980988, 0.016105804592370987, -0.0026498581282794476, 0.024705344811081886, -0.02759852260351181, -0.01911897584795952, 0.02207881771028042, 0.00021519680740311742, -0.013345952145755291, -0.00958615355193615, -0.02638525329530239]" +9,green,"[0.01538460049778223, -0.010931522585451603, 0.025204557925462723, -0.021044714376330376, -0.005670343525707722, 0.013788857497274876, -0.020335495471954346, -0.029759928584098816, -0.005745357368141413, -0.031887587159872055, 0.007133108098059893, 0.010147289372980595, -0.003989357966929674, -0.007378607057034969, -0.013529719784855843, -0.0077059390023350716, 0.03750678524374962, 0.015507349744439125, 0.008565185591578484, 0.0018071450758725405, -0.032242193818092346, 0.010808773338794708, -0.013461525551974773, -0.009533542208373547, -0.006498902570456266, 0.02560008503496647, 0.0017559994012117386, -0.029623540118336678, -0.0003821003483608365, 0.01397980097681284, 0.005561233032494783, -0.023854313418269157, -0.021208381280303, -0.0026288845110684633, -0.01579376496374607, -0.01732131466269493, -0.015234573744237423, -0.01663937233388424, 0.0035665540490299463, -0.01278640329837799, 0.008797045797109604, -0.008442436344921589, 0.019503528252243996, -0.016202930361032486, -0.007358149159699678, 0.030278204008936882, -0.006567096803337336, 0.005332782864570618, -0.03158752992749214, 0.005445302929729223, 0.011668018996715546, 0.01421166118234396, -0.012602278962731361, -0.011640741489827633, 0.02228584885597229, -0.0005600444856099784, -0.0004850309051107615, 0.021972155198454857, -0.017280397936701775, -0.015234573744237423, -0.0094994455575943, -0.012315863743424416, -0.016598455607891083, 0.0004436881863512099, -0.0002399581717327237, 0.0032409271225333214, -0.0033278746996074915, 0.002969855209812522, -0.004920207895338535, 0.01944897137582302, 0.03005998209118843, 0.010795134119689465, 0.014811770059168339, -0.003223878564313054, 0.0014559451956301928, -0.00016238732496276498, -0.025627361610531807, -0.006219306495040655, -0.002630589297041297, -0.010201845318078995, -0.0036858939565718174, -0.02654116414487362, -0.004412161651998758, -0.00586469704285264, -0.00035375717561692, 0.01367974653840065, -0.028750654309988022, 0.014566270634531975, -0.013100096955895424, -0.005909023340791464, 0.009288043715059757, 0.010242762044072151, 0.01944897137582302, 0.021249298006296158, -0.034260742366313934, -0.00710583059117198, -0.007364968303591013, 0.021522074937820435, 0.011954435147345066, -0.02831421233713627, -0.010822411626577377, 0.020362773910164833, -0.005213442724198103, -0.009097100235521793, -0.02017183043062687, -0.01078831497579813, 0.0022265389561653137, 0.011245215311646461, 0.018917057663202286, -0.014034355990588665, -0.011756671592593193, 0.023758841678500175, 0.002765272743999958, -0.05054550617933273, -0.015111823566257954, -0.009172113612294197, 0.009172113612294197, 0.0034591483417898417, -0.009438070468604565, 0.0011362850200384855, 0.014961796812713146, -0.003454033751040697, 0.037206728011369705, -0.027550436556339264, 0.012049906887114048, 0.0017918013036251068, -0.015984708443284035, -0.0021208380348980427, -0.016884872689843178, -0.02099015936255455, 0.024904504418373108, 0.016080180183053017, 0.016666650772094727, 0.013959342613816261, -0.03764317184686661, 0.019667193293571472, -0.012288586236536503, 0.016884872689843178, -0.02618655376136303, -0.037424951791763306, -0.005557823460549116, 0.002115723444148898, -0.012956888414919376, -0.01707581616938114, -0.003143750363960862, 0.013584274798631668, 0.021603906527161598, 0.01673484407365322, -0.009717666544020176, -0.017048537731170654, 0.01968083158135414, -0.018126005306839943, 0.026732107624411583, 0.009103919379413128, -0.02888704277575016, 0.02063555084168911, -0.013843412511050701, 0.010413247160613537, -0.017962340265512466, 0.026800300925970078, -0.015043630264699459, -0.011606644839048386, 0.011456617154181004, 0.0009214734891429543, 0.018576087430119514, 0.020553717389702797, 0.009888151660561562, 0.0051588877104222775, 0.0005898794042877853, -0.010215483605861664, -0.02489086613059044, 0.03161481022834778, -0.01908072456717491, 0.007112650200724602, 0.006239764858037233, 0.03469718620181084, 0.0189988911151886, -0.004852014128118753, -0.021958516910672188, -0.013222846202552319, -0.008278770372271538, 0.0094994455575943, 0.008947072550654411, 0.025654640048742294, 0.00421780813485384, 0.008149201050400734, 0.02344514988362789, 0.00047096586786210537, 0.010924703441560268, 0.01091788336634636, 0.018016895279288292, 0.015370962209999561, -0.0020014983601868153, -0.004170072264969349, -0.6743037700653076, -0.006157931871712208, 0.0108565092086792, -0.012527265585958958, 0.008346964605152607, 0.04078010097146034, 0.015861960127949715, -0.001510500442236662, -0.017116732895374298, -0.010365511290729046, -0.006829644087702036, 0.019394416362047195, 0.0034335756208747625, -0.03172392025589943, 0.002669801004230976, -0.01662573404610157, 0.023308761417865753, 0.006287500727921724, 0.0014423063257709146, 0.028259657323360443, -0.03292413800954819, -0.006270452402532101, -0.021726656705141068, 0.014334410429000854, 0.02628202550113201, 0.04069827124476433, 0.00687397038564086, -0.010529177263379097, -0.00745362089946866, 0.013713844120502472, -0.01886250264942646, 0.026677552610635757, 0.008333325386047363, 0.010160928592085838, 0.041925765573978424, 0.008742489852011204, -0.05646475777029991, 0.04094376787543297, 0.004903159569948912, 0.04648113250732422, -0.024263478815555573, 0.014061634428799152, 0.008333325386047363, 0.0002273848804179579, -0.020785577595233917, 0.00722176069393754, 0.025300029665231705, -0.006076098885387182, 0.008299227803945541, -0.00995634589344263, 0.025859221816062927, -0.013877510093152523, 0.007085372228175402, 0.005435073748230934, 0.024427145719528198, -0.009881332516670227, 0.021863045170903206, 0.002526593394577503, 0.0014653218677267432, 0.019258027896285057, -0.0057896836660802364, 0.0005937153473496437, -0.025422779843211174, -0.007085372228175402, -0.008333325386047363, 0.0166120957583189, -0.03128747642040253, -0.01886250264942646, 0.011783949099481106, -0.003169323317706585, 0.002045824658125639, 0.03218764066696167, -0.010222303681075573, -0.01734859310090542, -0.012165836989879608, 0.0188897792249918, 0.021535713225603104, -0.008292408660054207, -0.008094646036624908, 0.015984708443284035, 0.024618089199066162, -0.0200490802526474, -0.014388966374099255, -0.0007561026723124087, 0.03985266387462616, -0.003060212591663003, -0.021208381280303, -0.015657376497983932, 0.018194200471043587, -0.002236768137663603, 0.017021261155605316, 0.027918685227632523, -0.010481441393494606, -0.021644823253154755, -0.015875598415732384, 0.005932891275733709, -0.005452122539281845, 0.019408056512475014, -0.002651047660037875, -0.02828693389892578, -0.015234573744237423, -0.016298402100801468, 0.007051275111734867, 0.020894687622785568, 0.01214537862688303, 0.025436418130993843, -0.013584274798631668, 0.03360607847571373, 0.023486066609621048, -0.025531889870762825, 0.010454163886606693, -0.010385969653725624, -0.007774133235216141, -0.010645107366144657, -0.013529719784855843, -0.025204557925462723, 0.02404525876045227, 0.023431509733200073, 0.020553717389702797, -0.022476792335510254, 0.016816677525639534, 0.0030806707218289375, 0.006413660012185574, -0.0077536748722195625, 0.0070171779952943325, 0.014634464867413044, -0.02592741698026657, -0.015493711456656456, -0.01414346694946289, -0.013625191524624825, 0.0025555759202688932, 0.012834139168262482, 0.033769745379686356, -0.022845041006803513, 0.029050707817077637, -0.009976804256439209, 0.011777129955589771, 0.0031096532475203276, 0.0013135898625478148, -0.005383928306400776, -0.015602821484208107, -0.024713560938835144, -0.015561905689537525, -0.017007621005177498, -0.009390334598720074, -0.0047292644158005714, -0.021753935143351555, -0.01172939408570528, -0.02356789819896221, 0.012343141250312328, -0.005680572707206011, 0.004388293717056513, -0.01361837238073349, 0.01908072456717491, 0.007228580303490162, -0.014498076401650906, -0.01244543306529522, -0.014552632346749306, -0.006420479156076908, 0.015098185278475285, 0.005984036717563868, 0.030632812529802322, -0.010317775420844555, -0.017430424690246582, -0.018835224211215973, -0.0133183179423213, -0.010113192722201347, 0.015302767977118492, -0.011743033304810524, -0.050409115850925446, 0.013413789682090282, -0.019980886951088905, 0.0028760882560163736, 0.02453625574707985, -0.03270591422915459, -0.026254748925566673, -0.0173349529504776, 0.004248495679348707, 0.007174024824053049, 0.01970811001956463, 0.01361155230551958, -0.002160049742087722, -0.022613180801272392, 0.010365511290729046, 0.03895249962806702, -0.005506677553057671, 0.024127090349793434, 0.027154911309480667, -0.01946261152625084, 0.012520446442067623, -0.003341513453051448, 0.026036527007818222, 0.002615245757624507, 0.017771396785974503, -0.023022346198558807, -0.003962079994380474, -0.010611009784042835, 0.01839878223836422, -0.001605119789019227, 0.00973130576312542, 0.029650816693902016, -0.02075829915702343, 0.01947624981403351, -0.022463154047727585, 0.010931522585451603, -0.024236202239990234, 0.013413789682090282, -0.021031076088547707, 0.0018855682574212551, 0.018780669197440147, -0.0012999509926885366, -0.012581820599734783, -0.007392246276140213, -0.014116189442574978, 0.019176196306943893, 0.02570919506251812, -0.010160928592085838, 0.002717536874115467, 0.014825408346951008, -0.00883796252310276, 0.011558908969163895, -0.006157931871712208, -0.008224214427173138, -0.018930695950984955, -0.030469147488474846, 0.007951438426971436, 0.0034710823092609644, 0.0263093039393425, -0.00695921340957284, -0.015561905689537525, -0.0013118849601596594, 0.011606644839048386, -0.011026994325220585, 0.016789400950074196, 0.0033551522064954042, 0.006024953443557024, 0.025518251582980156, -0.014102550223469734, 0.04645385593175888, -0.022667735815048218, -0.012424974702298641, 0.035542793571949005, 0.03136930987238884, -0.01852153241634369, 0.024577172473073006, -0.008067368529736996, 0.034724462777376175, -0.010188206098973751, -0.018194200471043587, 0.0017849819269031286, -0.011858963407576084, -0.0008941958076320589, -0.011640741489827633, -0.0035392765421420336, 0.016789400950074196, -0.021167464554309845, 0.024140730500221252, 0.012499988079071045, 0.028505155816674232, -0.0004897192702628672, 0.029268929734826088, 0.006062460131943226, -0.007371787913143635, 0.012349961325526237, 0.002388500142842531, -0.002574329264461994, 0.0011073024943470955, -0.01451171562075615, -0.009506264701485634, -0.007849146611988544, -0.0005118823610246181, 0.011074730195105076, 0.012636376544833183, -0.001233461662195623, 0.00010335676051909104, 0.006539819296449423, -0.003958670422434807, 0.002625474939122796, -0.005966988392174244, -0.006089737638831139, -0.008790225721895695, -0.024454422295093536, 0.042416762560606, -0.007167205214500427, -0.011170201934874058, -0.030741924419999123, -0.037070341408252716, -0.00372681044973433, -0.014266216196119785, -0.003863198682665825, -0.0018412420758977532, 0.016803039237856865, 0.009069821797311306, 0.006563687231391668, 0.017880506813526154, -0.018698835745453835, -0.003992767538875341, -0.006464805454015732, 0.003290367778390646, -0.002131067216396332, -0.0016255780356004834, -0.027291299775242805, -0.005435073748230934, -0.0034489191602915525, 0.008681115694344044, 0.009028906002640724, -0.010611009784042835, -0.029323484748601913, -0.00885160081088543, -0.01781231164932251, -0.006594374310225248, -0.0054180254228413105, -0.0042212181724607944, 0.0024822670966386795, 0.002144705969840288, -0.002790845697745681, -0.015548266470432281, -0.017184926196932793, 0.011156563647091389, 0.00687397038564086, -0.003962079994380474, -0.026950329542160034, -0.007351329550147057, -0.015984708443284035, 0.06693937629461288, 0.01538460049778223, -0.001994678983464837, 0.019980886951088905, 0.01993997022509575, -0.006802366580814123, 0.0006154522416181862, -0.007965076714754105, 0.006065869703888893, -0.013959342613816261, 0.007235399447381496, -0.004118926823139191, 0.015180017799139023, 0.009888151660561562, -0.008612921461462975, 0.0017338362522423267, 0.014770853333175182, -0.015275489538908005, 0.008756129071116447, -0.005104332230985165, -0.010726939886808395, -0.007508175913244486, 0.004149613901972771, 0.030114537104964256, 0.0059260716661810875, 0.007944618351757526, 0.02168573997914791, 0.015957431867718697, 0.016243847087025642, -0.004401932470500469, -0.004456487949937582, 0.026568440720438957, 0.006492083426564932, -0.0021464109886437654, -0.010031359270215034, 0.01662573404610157, 0.022804124280810356, 0.012615918181836605, 0.02453625574707985, -0.005325963255017996, 0.026800300925970078, 0.020144551992416382, -0.00349495024420321, -0.030387314036488533, 0.020717382431030273, -0.0013135898625478148, -0.012752306647598743, 0.024386228993535042, -0.011347507126629353, -0.021412963047623634, 0.04506269469857216, 0.00035034745815210044, -0.026582080870866776, -0.012943250127136707, 0.007392246276140213, 0.021863045170903206, -0.0020748069509863853, 0.003387544536963105, 0.0023799759801477194, -0.011968073435127735, 0.0019179604714736342, -0.019435333088040352, 0.003476196900010109, 0.0020986751187592745, -0.01875339262187481, -0.021535713225603104, -0.004040503408759832, -0.017894145101308823, -0.020430967211723328, 0.002286209026351571, -0.004654251039028168, -0.04088921472430229, -0.02217673882842064, 0.008865240029990673, 0.017253119498491287, 0.01993997022509575, -0.0029817891772836447, -0.003169323317706585, 0.005077054724097252, 0.03325146809220314, 0.005029318854212761, -0.006134063936769962, -0.003921163734048605, -0.011347507126629353, 0.008449255488812923, 0.013591094873845577, 0.015261851251125336, -0.028095990419387817, -0.0074945371598005295, 0.019953608512878418, 0.019039807841181755, -0.020594634115695953, 0.011040633544325829, -0.01591651514172554, -0.0108565092086792, 7.533322786912322e-05, 0.024127090349793434, 0.013100096955895424, -0.011183841153979301, -0.018657919019460678, 0.011763490736484528, 0.001831013010814786, -0.01515274029225111, -0.03415163233876228, 0.001094516133889556, -0.0016835430869832635, -0.0038427405524998903, 0.025286391377449036, -0.03289685770869255, -0.011211118660867214, 0.03311508148908615, -0.02639113739132881, 0.0055237263441085815, -0.004555369261652231, 0.02145387977361679, 0.026691190898418427, 0.00996316596865654, 0.017116732895374298, -0.009567639790475368, -0.020444607362151146, -0.006481854245066643, -0.04290775954723358, 0.03750678524374962, 0.0059806271456182, 0.0008392143063247204, 0.006267042364925146, 0.004367835354059935, 0.001958877081051469, -0.010890605859458447, 0.01485268585383892, -0.0092471269890666, 0.01638023555278778, -0.006028363015502691, -0.0013834888814017177, -0.01767592504620552, -0.005046367179602385, -0.0032000106293708086, 0.015711933374404907, -0.01790778338909149, 0.00020959046378266066, -0.03196941688656807, 0.005445302929729223, 0.025913776829838753, -0.01368656661361456, 0.002483971882611513, -0.044762641191482544, 0.0014593548839911819, -0.0008941958076320589, -0.00031007028883323073, 0.020540079101920128, -0.005970397964119911, -0.00023825331300031394, -0.02273593097925186, 0.02287231758236885, 0.000539586239028722, -0.011811227537691593, -0.017294036224484444, -0.0008281327318400145, 0.02003544196486473, 0.003859788877889514, 0.02489086613059044, -0.015370962209999561, 0.02427711710333824, 0.02393614687025547, -0.01933986134827137, -0.023772481828927994, 0.0061545222997665405, -0.006004495080560446, -0.012895514257252216, 0.029978148639202118, 0.01580740511417389, 0.0037302200216799974, 0.0010152404429391026, -0.0014474209165200591, -0.0018685198156163096, 0.036497510969638824, -0.0075422730296850204, -0.0035870124120265245, -0.011245215311646461, -0.010583732277154922, -0.011511173099279404, -0.00046968722017481923, -0.005387337878346443, -0.0032443366944789886, 0.011504353024065495, -0.013597914017736912, 0.007699119858443737, 0.02842332236468792, 0.014729936607182026, -0.024222562089562416, 0.022026710212230682, 0.0032153541687875986, 0.02169937826693058, -0.02122201956808567, -0.002797665074467659, -0.004064371343702078, -0.026241108775138855, -0.012499988079071045, 0.0017312790732830763, 0.006812595762312412, 0.01839878223836422, 0.0022163100074976683, -0.01827603206038475, -0.003982538357377052, -0.0184942539781332, 0.0011004831176251173, -0.004115517251193523, -0.020362773910164833, 0.001006716163828969, -0.035297293215990067, -0.00938351545482874, -0.007774133235216141, -0.002061168197542429, -0.029623540118336678, -0.00784232746809721, 0.0012309044832363725, 0.001645183889195323, 0.028832487761974335, 0.009342598728835583, -0.0162847638130188, 0.02180849015712738, -0.0019674012437462807, 0.024440784007310867, -0.011067911051213741, 0.031178366392850876, 0.024031618610024452, -0.0014278150629252195, -0.02240859903395176, 0.012213572859764099, 0.008326506242156029, -0.007835508324205875, 0.02039005048573017, 0.013516080565750599, -0.015643738210201263, -0.012343141250312328, -0.0022555214818567038, -0.0008481647819280624, -0.006215896923094988, -0.005966988392174244, 0.025995610281825066, 0.021262936294078827, 0.017594091594219208, -0.013291040435433388, -0.005503267981112003, -0.0330059677362442, 0.03499723970890045, 0.0037438590079545975, 0.006570506375283003, -0.009438070468604565, -0.024836309254169464, -0.013488803058862686, 0.022340403869748116, -0.020785577595233917, 0.013925245963037014, -0.0031232922337949276, -0.010945161804556847, -0.016884872689843178, -0.00366884539835155, -0.011722574941813946, -0.005851058289408684, 0.016939427703619003, 0.03570645675063133, -0.003774546319618821, -0.0034898356534540653, 0.0006427298649214208, 0.01078831497579813, -0.007896882481873035, -0.009629013948142529, -0.00807418767362833, 0.029405318200588226, -0.013093276880681515, 0.0028829078655689955, 0.002344174077734351, 0.020949242636561394, 0.03270591422915459, -3.7926338336546905e-06, -0.011633922345936298, 0.0031642087269574404, -0.031532976776361465, -0.029077986255288124, 0.02324056625366211, 0.008019632659852505, -0.028614265844225883, -0.013236484490334988, -0.04459897428750992, -0.01758045144379139, -0.018671559169888496, -0.011654380708932877, 0.029923593625426292, 0.0193262230604887, -0.004589466378092766, -0.01490724179893732, 0.005322553683072329, 0.00819011777639389, -0.007228580303490162, -0.015971070155501366, 0.008094646036624908, 0.025190919637680054, -0.013168290257453918, 0.014839047566056252, 0.0007109240395948291, 0.0017355411546304822, -0.01451171562075615, 0.007767314091324806, 0.006188619416207075, -0.023636093363165855, 0.00853790808469057, -0.012936430983245373, -0.014361687935888767, -0.014157106168568134, -0.020376412197947502, -0.0030005427543073893, 0.007351329550147057, -0.0037881850730627775, 0.023867953568696976, 0.005452122539281845, -0.0035188181791454554, -0.028505155816674232, -0.005782864056527615, 0.015057268552482128, -0.005527135916054249, 0.006301139481365681, 0.015889236703515053, -0.00973130576312542, -0.01451171562075615, 0.0020748069509863853, 0.01232268288731575, 0.010085915215313435, -0.00013191306788939983, -0.025300029665231705, -0.011968073435127735, 0.02970537170767784, -0.013700204901397228, -0.017648646607995033, 0.006563687231391668, -0.003232402727007866, -0.011647561565041542, 0.010195025242865086, -0.0023544030264019966, -0.016298402100801468, 0.02123565971851349, 0.012902333401143551, 0.009001627564430237, 0.007862785831093788, -0.017116732895374298, 0.011340687051415443, -0.007064914330840111, -0.012534084729850292, -0.023199649527668953, -0.007794591598212719, -0.005131609737873077, 0.01734859310090542, 0.025163641199469566, -0.03267863765358925, -0.01674848422408104, -0.006505722180008888, -0.021071992814540863, -0.02216309867799282, 0.0007420376059599221, 0.021385686472058296, 0.007910521700978279, -0.0266366358846426, -0.01758045144379139, 0.017498619854450226, 0.002797665074467659, 0.01226130872964859, -0.021085631102323532, -0.004412161651998758, 0.009465347975492477, 0.006819415371865034, 0.014375327154994011, 0.005551003850996494, -0.04339875653386116, -0.012840958312153816, 0.023799758404493332, -0.008231034502387047, -0.0052645886316895485, 0.0007360706222243607, -0.013106916099786758, 0.005073644686490297, -0.02592741698026657, -0.004442849196493626, 0.00784232746809721, -0.006532999686896801, 0.008387880399823189, -0.027564076706767082, -0.00938351545482874, 0.010515538044273853, 0.02749588154256344, -0.020444607362151146, 0.0059533496387302876, 0.005608968902379274, -0.007590008899569511, 0.0022452925331890583, -0.02501361444592476, -0.008340144529938698, -0.007208121940493584, -0.021794850006699562, 0.026036527007818222, 0.009322140365839005, -0.014579909853637218, 0.01625748537480831, -0.0025027254596352577, 0.006417069584131241, 0.004330328665673733, -0.013693385757505894, -0.013693385757505894, -0.0034813114907592535, 0.011279312893748283, 0.006174980662763119, 0.003921163734048605, -0.013570636510848999, 0.021740294992923737, -0.017157647758722305, 0.01579376496374607, -0.002506135031580925, -0.009076641872525215, -0.005728308577090502, 0.017948700115084648, -0.0035222279839217663, -0.007262676954269409, -0.007201302330940962, -0.0005949939950369298, -0.010692843236029148, 0.01226130872964859, -0.029923593625426292, -0.015984708443284035, -0.009710847400128841, -0.018207838758826256, 0.0006077803554944694, -0.0009052773821167648, -0.03622473403811455, -0.014566270634531975, 0.0028880222234874964, -0.0071399277076125145, 0.014102550223469734, 0.21942150592803955, 0.0029715602286159992, -0.0020185469184070826, 0.03112381137907505, 0.004875882063060999, -0.00586469704285264, 0.016175651922822, 0.006267042364925146, -0.011654380708932877, 0.0061852093786001205, 0.0024140728637576103, 0.0015292539028450847, 0.002538527362048626, 0.00995634589344263, 0.003989357966929674, -0.016202930361032486, -0.04007088392972946, -0.007358149159699678, -0.013993440195918083, -0.012240850366652012, 0.0011806112015619874, -0.0005847648717463017, -0.013516080565750599, -0.008872059173882008, 0.0208810493350029, 0.0013451296836137772, -0.012929610908031464, 0.009888151660561562, 0.013666108250617981, 0.004241676069796085, 0.0019009120296686888, -0.036715731024742126, 0.008544727228581905, -0.016707567498087883, -0.0016153489705175161, -0.009874513372778893, -0.0014218480791896582, 0.0015701703960075974, 0.04989084228873253, 0.01920347288250923, -0.005032728426158428, 0.0024890864733606577, -0.013168290257453918, 8.28452357382048e-06, -0.0027959602884948254, 0.02478175424039364, -0.0154527947306633, 0.0012735257623717189, 0.0029459872748702765, 0.0017338362522423267, -0.04225309565663338, 0.004337148275226355, 0.035897400230169296, 0.04007088392972946, -0.007671841885894537, 0.026131998747587204, 0.0217130184173584, -0.007126288954168558, 0.007930980063974857, -0.006577325984835625, -0.003757497761398554, 0.03783411532640457, -0.02546369656920433, 0.025204557925462723, -0.019258027896285057, 0.011661199852824211, -0.0246453657746315, -0.001907731406390667, 0.003679074579849839, -0.01374794077128172, 0.00018582906341180205, -0.01421166118234396, -0.0044326200149953365, 0.022340403869748116, -0.021085631102323532, -0.02487722598016262, 0.021522074937820435, 0.01613473705947399, 0.03911616653203964, -0.0056908018887043, -0.010761037468910217, -0.0181669220328331, -0.02665027417242527, -0.02570919506251812, -0.006952393800020218, -0.02701852284371853, 0.023295123130083084, 0.0035836026072502136, 0.004118926823139191, -0.003290367778390646, 0.008231034502387047, -0.007896882481873035, 0.0004002144269179553, -0.001152481185272336, -0.01272502914071083, 0.026841217651963234, 0.005844238679856062, 0.019271668046712875, -0.01561646070331335, -0.0005587658379226923, 1.751470881572459e-05, -0.021740294992923737, 0.02454989403486252, 0.0026783253997564316, 0.004166662693023682, 0.005025908816605806, 0.002458399161696434, -0.004671299364417791, 0.008626559749245644, -0.0018378323875367641, -0.00830604787915945, -0.027686825022101402, 0.028341488912701607, 0.00603859219700098, 0.0015411878703162074, 0.00802645180374384, 0.0071399277076125145, -0.002269160468131304, -0.007528634276241064, -0.00171082082670182, -0.02274956926703453, -0.006532999686896801, 0.014102550223469734, -0.016925787553191185, 0.014702659100294113, -0.0008822618401609361, 0.002096970099955797, 0.013304678723216057, 0.011490714736282825, -0.04506269469857216, -0.009738124907016754, -0.01639387384057045, 0.0313420332968235, -0.01515274029225111, -0.02169937826693058, 0.01421166118234396, 0.008449255488812923, -0.016789400950074196, -0.023649731650948524, 0.004701986908912659, 0.005472580902278423, -0.01875339262187481, 0.01957172155380249, -0.006638700608164072, 0.0025334127712994814, -0.01207718439400196, 0.007965076714754105, 0.010822411626577377, -0.011299771256744862, -0.02549097314476967, -0.0034233464393764734, -0.007289954926818609, -0.008592463098466396, 0.01790778338909149, 0.010535996407270432, -0.023731565102934837, -0.026104722172021866, -0.016830315813422203, 0.005854467861354351, 0.02570919506251812, -0.03112381137907505, 0.023663369938731194, 0.030605535954236984, -0.017716839909553528, -0.028559710830450058, 0.007535453885793686, -0.17861412465572357, 0.01603926531970501, 0.022913234308362007, -0.02003544196486473, -0.012909152545034885, 0.003921163734048605, -0.0021788030862808228, -0.007869604974985123, -0.00619543856009841, -0.0012752306647598743, 0.03281502425670624, -0.002362927421927452, -0.0459628589451313, -0.0070921918377280235, -0.0036381580866873264, 0.008394700475037098, -0.023799758404493332, 0.017021261155605316, 0.014348049648106098, 0.027918685227632523, 0.010924703441560268, -0.022695014253258705, -0.007896882481873035, -0.0027840263210237026, 0.01108154933899641, -0.0028914320282638073, -0.0011840210063382983, 0.0165029838681221, -0.017648646607995033, -0.01978994347155094, -0.022081267088651657, 0.0002676620497368276, -0.003825691994279623, 0.006475034635514021, 0.023486066609621048, 0.03336057811975479, 0.0024924962781369686, -0.02040369063615799, -0.017184926196932793, 0.02429075725376606, 0.007078553084284067, 0.013625191524624825, -0.0024942010641098022, 0.011599824763834476, -0.022790485993027687, 0.017498619854450226, 0.008872059173882008, 0.01379567664116621, 0.008687934838235378, -0.014047995209693909, 0.00949262548238039, -0.0020014983601868153, 0.011231577023863792, 0.0017594090895727277, 0.009240307845175266, 0.012159016914665699, -0.00231178174726665, 0.010263219475746155, -0.007467259652912617, 0.01044052466750145, -0.021426603198051453, -0.03502451628446579, -0.004759951960295439, 0.00989497173577547, 0.009356237947940826, -0.00954718142747879, -0.024004342034459114, -0.023281482979655266, -0.01734859310090542, 0.003600651165470481, -0.019285306334495544, -0.01125203538686037, -0.007064914330840111, -0.02817782387137413, 0.007910521700978279, 0.0020782167557626963, -0.014579909853637218, 0.01591651514172554, 0.018112367019057274, -0.010822411626577377, -0.016093820333480835, 0.044517140835523605, -0.021276574581861496, -0.007624106016010046, 0.00016601014067418873, 0.004241676069796085, -0.009328959509730339, 0.007978715933859348, -0.017416786402463913, -0.005912432912737131, 0.029568985104560852, -0.02995087206363678, -0.004766771104186773, -0.015330045484006405, 0.0021839176770299673, 0.017130371183156967, 0.02112654782831669, -0.0013289335183799267, -0.0006431561196222901, -0.0026459330692887306, 0.007590008899569511, 0.007930980063974857, -0.030823756009340286, 0.002922119339928031, 0.019667193293571472, 0.012772765010595322, 0.01497543603181839, 0.010549635626375675, 0.013454706408083439, 0.011517992243170738, -0.030087260529398918, 0.026732107624411583, 0.009417612105607986, 0.007774133235216141, -0.003927983343601227, -0.010154109448194504, 0.015507349744439125, -0.02157662995159626, 0.007392246276140213, -0.02157662995159626, 0.015425517223775387, 0.0022026710212230682, -0.009949526749551296, -0.0028385815676301718, 0.021631184965372086, 0.0036415676586329937, -0.09448982030153275, -0.0154527947306633, 0.003140340792015195, 0.04118926823139191, 0.009042544290423393, 0.006962622981518507, -0.001156743266619742, 0.0051895747892558575, 0.010058637708425522, 0.04566280543804169, -0.0369885079562664, -0.015711933374404907, -0.0003769857867155224, -0.003162503708153963, 0.012595459818840027, 0.007999174296855927, -0.0009223258821293712, -0.017975978553295135, -0.011838505044579506, 0.010945161804556847, 0.005220262333750725, -0.009417612105607986, -0.0040029967203736305, -0.02984176017343998, 0.001725312089547515, 0.008019632659852505, -0.03207853063941002, 0.02772774174809456, 0.0173349529504776, 0.014784492552280426, 0.03101469948887825, -0.01827603206038475, 0.032978691160678864, -0.04260770604014397, -0.007474079262465239, -0.016107458621263504, -0.017716839909553528, -0.002797665074467659, 0.026241108775138855, 0.0019861545879393816, -0.0012428384507074952, -6.238699279492721e-05, 0.034615352749824524, -0.024086173623800278, 0.014252577908337116, 0.010515538044273853, -0.009206210263073444, 0.005441893357783556, -0.008572004735469818, -0.030005427077412605, -0.03906160965561867, -0.006829644087702036, 0.006147702690213919, -0.026104722172021866, 0.03494268283247948, -0.0189988911151886, 0.021672101691365242, 0.029459873214364052, 0.0019094361923635006, 0.007603648118674755, -0.012043086811900139, 0.004538320936262608, -0.02441350556910038, 0.034724462777376175, 0.001137989922426641, -0.0007122026872821152, -0.02759135328233242, -0.022681374102830887, 0.007596828509122133, -0.025913776829838753, -0.016298402100801468, 0.019830860197544098, -0.02678666263818741, 0.029650816693902016, -0.026350220665335655, 0.0119612542912364, -0.02722310461103916, 0.0015122053446248174, 0.027509521692991257, -0.026459330692887306, -0.04279864951968193, -0.015111823566257954, 0.014648104086518288, -0.02333603799343109, 0.017021261155605316, 0.006703485269099474, 0.002189032267779112, -0.0020662827882915735, 0.02273593097925186, -0.01361837238073349, -0.01710309274494648, 0.008060548454523087, 0.002535117557272315, -0.029896317049860954, -0.01792142353951931, 0.0003509867819957435, 0.005336192436516285, -0.0081423819065094, 0.005707850679755211, 0.006147702690213919, -0.024481700733304024, -0.01072012074291706, -0.056901201605796814, 0.029650816693902016, -0.008462893776595592, 0.0017628187779337168, 0.01213855855166912, -0.006004495080560446, 0.03128747642040253, -0.012779584154486656, -0.03240586072206497, -0.0026271797250956297, -0.008912975899875164, 0.022845041006803513, -0.0005715522565878928, -0.007746855728328228, -0.00984041579067707, -0.012022629380226135, 0.02415436878800392, 0.01861700415611267, 0.017594091594219208, 0.005060005933046341, 0.012459071353077888, -0.0003066605713684112, 0.015561905689537525, 0.0028880222234874964, -0.014839047566056252, 0.0031164726242423058, -0.012840958312153816, -0.0027141273021698, -0.013461525551974773, -0.011177021078765392, 0.006754630710929632, 0.009513083845376968, 0.0013945704558864236, 0.017021261155605316, -0.001225789892487228, -0.024127090349793434, -0.0012564772041514516, 0.026336580514907837, -0.0014525353908538818, -0.01108836941421032, -0.02521819807589054, -0.014525353908538818, 0.009990443475544453, -0.001776457647792995, 0.008462893776595592, -0.018316948786377907, -0.010706481523811817, 0.004886110778898001, 0.020771939307451248, -0.0023578128311783075, 0.010535996407270432, -0.016448428854346275, -1.0522144293645397e-06, -0.027277661487460136, -0.000161854550242424, -0.03412435203790665, 0.01651662401854992, 0.009935887530446053, -0.00401322590187192, -0.029323484748601913, 0.03783411532640457, 0.009049364365637302, 0.008108284324407578, 0.011272492818534374, 0.02253134734928608, -0.0208810493350029, -0.018466975539922714, -0.00551690673455596, -0.005325963255017996, -0.05717397853732109, -0.021658463403582573, -0.00031433242838829756, 0.03115108795464039, -0.0004892930155619979, -0.0034915406722575426, 0.0031096532475203276, -0.011804407462477684, 0.004705396480858326, -0.009574458934366703, 0.029869038611650467, -0.015766488388180733, 0.010174567811191082, -0.01770320162177086, 0.007480898406356573, 0.01108154933899641, 0.014457160606980324, 0.0018395372899249196, 0.01935349963605404, 0.005874926224350929, 0.020894687622785568, -0.0005012270412407815, 0.00011379898933228105, 0.005319143645465374, -0.00949262548238039, 0.006082918494939804, -0.0012078889412805438, 0.0045587788335978985, 0.010133651085197926, 0.03243313729763031, 0.030960144475102425, 0.025654640048742294, -0.007064914330840111, 0.002344174077734351, -0.01421166118234396, 0.00444966834038496, -0.0025010204408317804, -0.01768956333398819, -0.03180575370788574, -0.009860874153673649, -0.006072689313441515, 0.0052952757105231285, -0.0016042673960328102, -0.019749026745557785, 0.01841242052614689, -0.02722310461103916, 0.015875598415732384, -0.013754760846495628, -0.03314235806465149, -0.02251770906150341, 0.03881611302495003, 0.028559710830450058, 0.002429416636005044, 0.0037813656963407993, 0.006550048477947712, 0.016721205785870552, 0.0016153489705175161, 0.03325146809220314, -0.03499723970890045, -0.001611939282156527, 0.013065999373793602, 0.01958535984158516, -0.0192171111702919, 0.002275979844853282, -0.01662573404610157, -0.01876703090965748, 0.003515408607199788, -0.011115646921098232, 0.03325146809220314, -0.004395112860947847, 0.04811779409646988, 0.009683569893240929, -0.021249298006296158, 0.01097243931144476, 0.002516364213079214, 0.008926614187657833, -0.008578823879361153, 0.03475173935294151, -0.012363599613308907, -0.016325680539011955, 0.019053446128964424, -0.008872059173882008, 0.0032545658759772778, -0.0011874306946992874, -0.0325695276260376, -0.004933846648782492, -0.02510908618569374, 0.0332241915166378, -0.01414346694946289, 0.005489629227668047, 0.03420618548989296, -0.0028982514049857855, 0.021031076088547707, -0.0017227547941729426, -0.014661742374300957, 0.00048758817138150334, 0.019489888101816177, -0.019994525238871574, 0.0051895747892558575, 0.01818056032061577, 0.025136364623904228, 0.0025658048689365387, -0.027864130213856697, 0.006481854245066643, 0.014498076401650906, 0.007658203132450581, -0.016298402100801468, -0.000878852151799947, 0.02299506776034832, 0.01792142353951931, -0.003472787095233798, 0.020594634115695953, -0.013788857497274876, -0.01602562516927719, 0.012806861661374569, 0.011238396167755127, -0.026800300925970078, -0.019298944622278214, -0.02700488455593586]" +10,milk,"[0.0009292512550018728, -0.019319288432598114, -0.01730903796851635, -0.043938327580690384, -0.004715603310614824, 0.0020494109485298395, -0.015168252401053905, -0.03145911172032356, -0.00894822459667921, -0.026968682184815407, 0.018562180921435356, 0.009117920882999897, -0.018810199573636055, -0.012126769870519638, -0.03284279257059097, 0.009333305060863495, 0.03245118260383606, 0.019815323874354362, 0.022909021005034447, -0.010129572823643684, -0.012100663036108017, 0.008778528310358524, 0.019436771050095558, -0.008484822697937489, 0.009496474638581276, 0.0034820407163351774, 0.004392527509480715, -0.016591092571616173, -0.004010710399597883, -0.012766394764184952, 0.02246519923210144, -0.017909502610564232, -0.012942617759108543, 0.00101491529494524, -0.01648666337132454, -0.008054055273532867, -0.0030626945663243532, -0.021159842610359192, 0.003733322024345398, -0.00419672392308712, -0.0033286612015217543, -0.0060111708007752895, 0.013849841430783272, -0.01759621687233448, -0.022791540250182152, 0.005489027593284845, 0.009835867211222649, -0.0004405580984894186, -0.009724912233650684, -0.0038312238175421953, 0.018523020669817924, 0.006063384935259819, -0.01136966235935688, -0.010671296156942844, -0.02053327113389969, 0.00145547348074615, -0.014959394931793213, 0.011754742823541164, 0.024253539741039276, -0.009620483964681625, -0.012139823287725449, -0.005782733205705881, -0.03459196910262108, 0.007061983458697796, 0.0005759889027103782, -0.005838210694491863, -0.01866661012172699, 0.012655439786612988, -0.007185992319136858, 0.0006069911760278046, 0.019567307084798813, 0.0475672222673893, -0.0011258707381784916, -0.00034428801154717803, 0.0027820428367704153, -0.007420956622809172, -0.0038312238175421953, -0.0042489380575716496, -0.00030165992211550474, 0.00634730001911521, 0.02843068353831768, -0.010645189322531223, -0.00988155510276556, 0.022047486156225204, 0.00277551612816751, -0.012583645060658455, -0.002728196792304516, 0.024827897548675537, 0.0006861284491606057, -0.008817688561975956, 0.012929564341902733, 0.0033874022774398327, 0.0232223067432642, 0.036393363028764725, -0.01597757451236248, 0.012133296579122543, 0.012139823287725449, 0.05435508117079735, -0.011604626663029194, -0.0008109532645903528, -0.011395770125091076, 0.020716020837426186, -0.014946341514587402, -0.017687592655420303, -0.013784573413431644, -0.007166411727666855, -0.010475493036210537, -0.00796920619904995, 0.029031148180365562, -0.016121163964271545, -0.01732209138572216, 0.04357282817363739, 0.00636361725628376, -0.044512685388326645, 0.006128652952611446, -0.007708135060966015, 0.0034167729318141937, -0.033939290791749954, -0.00037325063021853566, -0.00935288518667221, -0.0036452102940529585, 0.016134217381477356, 0.01421534176915884, -0.019397610798478127, 0.007655920926481485, 0.016695519909262657, -0.004027027636766434, -0.015272680670022964, -0.012544483877718449, -0.012427002191543579, 0.040152791887521744, -0.01287735067307949, 0.006014434155076742, 0.0036484738811850548, -0.02059853821992874, 0.011239126324653625, -0.03221622109413147, -0.0032062840182334185, -0.00445126835256815, -0.009561742655932903, -0.002041252562776208, 0.02109457552433014, 0.004278308711946011, 0.0036582639440894127, -0.026394326239824295, 0.0168130025267601, 0.014776645228266716, 0.014789698645472527, -0.01057339459657669, 0.007081563584506512, 0.016695519909262657, -0.017778966575860977, 0.02538920007646084, -0.0014921865658834577, 0.002465493744239211, 0.009561742655932903, -0.02358780801296234, 0.021812520921230316, -0.016029788181185722, 0.014084805734455585, 0.015364056453108788, -0.011852644383907318, 0.02785632573068142, -0.011154278181493282, 0.030493147671222687, 0.03660222142934799, 0.03754207864403725, 0.0013779678847640753, 0.011650314554572105, -0.0032862371299415827, -0.030232075601816177, 0.016734682023525238, -0.028743969276547432, 0.02514118328690529, 0.00935288518667221, 0.023352842777967453, 0.006373407319188118, 0.012544483877718449, -0.02382277138531208, -0.011036796495318413, -0.013849841430783272, 0.017452627420425415, 0.006647532340139151, 0.015390163287520409, 0.003795326454564929, -0.01569039560854435, 0.0049277241341769695, -0.03822086378931999, 0.005645670462399721, -0.0075384387746453285, -0.004780871327966452, 0.010514653287827969, 0.010475493036210537, -0.005629353690892458, -0.688393235206604, -0.02548057585954666, 0.010116519406437874, -0.007127251010388136, 0.004660125821828842, 0.03185071796178818, 0.0008982490398921072, 0.0004585067799780518, -0.007218626327812672, -0.005270380526781082, 0.0021685250103473663, 0.019867539405822754, 0.003609313163906336, -0.0043566301465034485, -0.009979456663131714, -0.0305714700371027, 0.019919753074645996, -0.025323932990431786, -0.008537037298083305, 0.009770600125193596, -0.013601823709905148, 0.008132376708090305, -0.009646590799093246, 0.0278302188962698, 0.005006045568734407, 0.0009243561653420329, 0.007799510378390551, -0.023326735943555832, -0.004591594450175762, 0.010886680334806442, -0.01542932353913784, -0.00196293112821877, 0.010997635312378407, -0.0004605463764164597, 0.04871593788266182, 0.0202983058989048, -0.02193000353872776, 0.024018574506044388, 0.005903478711843491, 0.021590610966086388, -0.010175260715186596, -0.017935609444975853, 0.017726752907037735, -0.014972448348999023, -0.019162645563483238, -0.008706733584403992, 0.03837750479578972, -0.005609773099422455, -0.0023267995566129684, -0.023104825988411903, 0.01176126953214407, 0.0033547685015946627, 0.0024328597355633974, -0.02083350345492363, -0.015481538139283657, 0.004725393373519182, 0.022517414763569832, -0.019867539405822754, -0.005097420420497656, 0.028326254338026047, 0.006813965272158384, 0.011128171347081661, -0.03553182631731033, -0.0043566301465034485, -0.01287735067307949, -0.0045295897871255875, -0.015116037800908089, 0.018614396452903748, 0.023365896195173264, -0.012237724848091602, 0.009065707214176655, 0.017191557213664055, 0.01678689569234848, 0.0023936990182846785, 0.01789644919335842, 0.018235841765999794, 0.019945859909057617, -0.01015568058937788, 0.013706251978874207, -0.00013155554188415408, -0.0035734158009290695, -0.007668974343687296, -0.011199966073036194, 0.00202983058989048, 0.023457271978259087, -0.01760927028954029, -0.01925402134656906, 0.002357801655307412, -0.0004417818854562938, -0.009751019068062305, 0.011441457085311413, 0.030153755098581314, 0.0089025367051363, -0.018288057297468185, -0.00813890341669321, -0.01572955586016178, -0.020676860585808754, -0.016303913667798042, -0.0020053551997989416, -5.2928160584997386e-05, -0.006004643626511097, 0.02544141560792923, 0.0006188209517858922, 0.01463305577635765, -0.002228897763416171, 0.018079198896884918, -0.0259635578840971, 0.04472154378890991, 0.036106184124946594, -0.047253936529159546, 0.001381231239065528, -0.0124531090259552, -0.00045891469926573336, -0.011030269786715508, 0.004682969301939011, -0.015390163287520409, 0.014110912568867207, 0.00047237618127837777, 0.0014750538393855095, 0.0034200362861156464, 0.01542932353913784, 0.011480618268251419, 0.02544141560792923, 0.010886680334806442, 0.012231198139488697, 0.010886680334806442, -0.008210698142647743, -0.019293181598186493, -0.02950107678771019, -0.008765474893152714, -0.002015145495533943, 0.025271717458963394, 0.027986861765384674, -0.005459656938910484, 0.020141663029789925, 0.006389724090695381, 0.020990146324038506, -0.026172414422035217, 0.014698323793709278, -0.0028391522355377674, -0.025506682693958282, 0.005185531917959452, -0.02138175256550312, 0.0036974246613681316, -0.008863376453518867, -0.02597661130130291, -0.010142626240849495, -0.001685542636550963, -0.008824215270578861, 0.012342154048383236, 0.011147751472890377, -0.017478734254837036, -0.013680145144462585, 0.015481538139283657, -0.020402735099196434, -0.015442377887666225, -0.0038703845348209143, -0.0032862371299415827, 0.01897989585995674, 0.0027820428367704153, -0.00046217808267101645, 0.011350082233548164, -0.0336260050535202, 0.010716984048485756, -0.0022240024991333485, -0.03863857686519623, -0.014006484299898148, 0.0030137437861412764, -0.016160324215888977, -0.011062903329730034, -0.0044675855897367, -0.013353805989027023, -0.007884358055889606, 0.01287735067307949, 0.023405056446790695, 0.009059179574251175, -0.0143197700381279, 0.008008367381989956, -0.010619082488119602, -0.003514674725010991, -0.0010924208909273148, -0.018053092062473297, -0.019632574170827866, 0.01206150185316801, 0.03701993450522423, 0.01972394995391369, 0.021238164976239204, 0.011722109280526638, -0.026133254170417786, 0.0053323847241699696, -0.011154278181493282, 0.005795786622911692, -0.004229357931762934, 0.006647532340139151, 0.01864050328731537, -0.044329933822155, -0.006533313542604446, 0.011709055863320827, 0.013771519996225834, 0.005015835631638765, 0.028012968599796295, -0.001567244646139443, 0.010318850167095661, -0.007636340335011482, 0.017204610630869865, -0.04816768690943718, 0.00023904356930870563, -0.031511325389146805, 0.0325033962726593, 0.016016734763979912, -0.007368742022663355, -0.04083157703280449, -0.013216743245720863, 0.012544483877718449, 0.021159842610359192, 0.013314644806087017, -0.00494077755138278, -0.0022598998621106148, -0.014150073751807213, 0.0025177078787237406, -0.007871304638683796, -0.005923058837652206, 0.02816961146891117, -0.015324895270168781, -0.010083885863423347, 0.007303474470973015, 0.0005062338896095753, 0.010893207043409348, -0.00375616573728621, -0.027804112061858177, 0.008328179828822613, 0.013849841430783272, -0.008595778606832027, 0.005038679577410221, -0.00715988501906395, -0.01951509155333042, 0.028509004041552544, -0.015455431304872036, 0.004836348816752434, -0.007590652909129858, -0.017765913158655167, 0.016303913667798042, 0.03701993450522423, -0.002186473459005356, 0.01757011003792286, -0.009124447591602802, 0.010220947675406933, 0.004190197214484215, -0.013445180840790272, -0.011389242485165596, 0.0021456810645759106, 0.0046699158847332, -0.025010647252202034, -0.00810626894235611, 0.0070358761586248875, -0.02785632573068142, 0.02085961028933525, 0.007460117340087891, 0.027151433750987053, 0.01653887704014778, 0.023718342185020447, 0.004474112298339605, -0.004062924534082413, -0.03597564995288849, -0.006236344575881958, 0.013967324048280716, 0.010488546453416348, 0.0014261029427871108, -0.010358010418713093, 0.005802313331514597, 0.008047527633607388, -0.0013290169881656766, 0.011408823542296886, -0.008537037298083305, 0.030493147671222687, 0.0029174736700952053, 0.0007913729059509933, 0.01870577037334442, 0.0014024432748556137, -0.00771466176956892, -0.029657719656825066, -0.021016253158450127, 0.005068049766123295, 0.025846075266599655, -0.022334665060043335, 0.0061155990697443485, -0.014959394931793213, -0.010279688984155655, -0.000958621792960912, 0.0017410203581675887, 0.01839248463511467, 0.019580360502004623, 0.01016873400658369, 0.008041000925004482, -0.01003167126327753, 0.003929125610738993, 0.001719808322377503, 0.000936593918595463, -0.0003296027425676584, 0.020128609612584114, -0.010318850167095661, -0.0176223237067461, 0.005316067952662706, -0.0021848417818546295, 0.026733718812465668, -0.009000439196825027, -0.0022631632164120674, -0.024201326072216034, 0.009542162530124187, -0.00988155510276556, -0.01894073560833931, 0.008373867720365524, 0.0019351922674104571, -0.01894073560833931, 0.017726752907037735, 0.009503001347184181, 0.00695755472406745, -0.006056858226656914, 0.02651180699467659, -0.003958496265113354, 0.006311402656137943, -0.01649971678853035, -0.012250778265297413, 0.002413279376924038, 0.030702004209160805, 0.04036165028810501, 0.009268037043511868, 0.012511850334703922, 0.007068510167300701, 0.0036680542398244143, -0.01676078885793686, -0.003615839872509241, 0.006569210905581713, 0.012812082655727863, 0.0026710873935371637, -0.01975005678832531, 0.021172896027565002, 0.0116437878459692, 0.016029788181185722, -0.002633558353409171, -0.03331271931529045, -0.017387360334396362, 0.010938894934952259, -0.02220412902534008, 0.029579397290945053, -0.0009578059543855488, 0.018784092739224434, -0.00010376571299275383, 0.032895006239414215, -0.0066279517486691475, 0.021238164976239204, 0.02924000471830368, 0.004353366792201996, -0.015612074173986912, -0.01041022501885891, -0.010599501430988312, -0.005593456327915192, -0.001788339577615261, -0.006931447423994541, -0.006171077024191618, 0.019071271643042564, 0.007871304638683796, 0.018026985228061676, -0.015546806156635284, 0.004412107635289431, 0.0120158139616251, -0.012949144467711449, -0.014241448603570461, 0.003501621074974537, -0.01977616362273693, -0.0014244712656363845, 0.043468400835990906, -0.004744973964989185, -0.04474765062332153, 0.03255561366677284, -0.00338413892313838, -0.024788735434412956, -0.011526305228471756, 0.007597179617732763, 0.029892683029174805, -0.014828859828412533, 0.000817480031400919, -0.0160036813467741, -0.01003167126327753, -0.02164282463490963, -0.002711879787966609, -0.008987385779619217, 0.0037594290915876627, 0.014019537717103958, -0.03320829197764397, -0.021799467504024506, -0.012759868055582047, -0.02136869914829731, 0.002318640938028693, -0.01592535898089409, -0.008739367127418518, -0.021029306575655937, -0.0037920631002634764, 0.02704700455069542, 0.02678593248128891, -0.0028342572040855885, 0.004043344408273697, -0.0019025583751499653, 0.014006484299898148, -0.005188795272260904, -0.01649971678853035, -0.009568269364535809, -0.01057339459657669, -0.025128129869699478, -0.006624688394367695, 0.03589732572436333, -0.01255753729492426, -0.012733761221170425, -0.007355688605457544, 0.002790201222524047, 0.019123485311865807, 0.004268518649041653, -0.020611591637134552, -0.006520260125398636, 0.010012091137468815, 0.01192443910986185, -0.007460117340087891, -0.013275484554469585, -0.004725393373519182, -0.0020216722041368484, 0.00243612308986485, 0.0026417169719934464, 0.016956591978669167, -0.009946823120117188, 0.00568483117967844, -0.005838210694491863, 0.008987385779619217, -0.027151433750987053, -0.003501621074974537, 0.03571457788348198, -0.005645670462399721, 0.008602305315434933, -0.005218165926635265, 0.02242603898048401, 0.02083350345492363, -0.010416751727461815, 0.011846117675304413, -0.019319288432598114, -0.01300788577646017, 0.0143197700381279, -0.03678496927022934, 0.012094135396182537, 0.0007028533727861941, -0.015755662694573402, 0.0013012781273573637, 0.02973604016005993, -0.014045645482838154, -0.021551450714468956, -0.011441457085311413, 0.01364098396152258, 0.022373825311660767, -0.0074796974658966064, -0.016303913667798042, -0.047201722860336304, 0.004758027382194996, -0.00031736501841805875, 0.008732840418815613, -0.009006965905427933, -0.02601577155292034, -0.009737965650856495, -0.004173879977315664, 0.0036484738811850548, -0.041510362178087234, -0.0019384556217119098, -0.03357379138469696, 0.011957073584198952, 0.012779448181390762, -0.005322594661265612, 0.014972448348999023, -0.007088090293109417, 0.008171536959707737, -0.006598581559956074, 0.008504402823746204, -0.005257326643913984, -0.03406982868909836, -0.039917826652526855, 0.004209777340292931, 0.03777704015374184, 0.003974813036620617, 0.031067505478858948, -0.0008900905377231538, 0.004369683563709259, -0.0221649669110775, -0.00947689451277256, 0.006689956411719322, -0.014123966917395592, -0.0011813483433797956, -0.013360332697629929, 0.016982698813080788, 0.03850804269313812, 0.011767796240746975, 0.030388718470931053, 0.0005066418088972569, 0.008993912488222122, 0.02520645037293434, 0.012883877381682396, -0.01599062792956829, -0.029631610959768295, -0.010671296156942844, -0.003096960252150893, -0.0025307615287601948, 0.001781812752597034, 0.017530949786305428, -0.007584126200526953, -0.010854046791791916, 0.019110431894659996, 0.0013012781273573637, 0.035636257380247116, -0.019697843119502068, 0.033156078308820724, -0.030910862609744072, 0.012178984470665455, -0.01619948446750641, 0.017778966575860977, -0.01162420678883791, -0.012772921472787857, 0.009783653542399406, -0.001257222262211144, 0.01921486109495163, -0.004213040694594383, 0.011578519828617573, 0.012805555947124958, -0.001578666502609849, -0.0048689828254282475, 0.011950546875596046, -0.016995752230286598, -0.030519254505634308, 0.0075775994919240475, -0.031511325389146805, -0.019306235015392303, -0.007597179617732763, -0.02491927146911621, -0.03537518531084061, 0.018784092739224434, 0.012394367717206478, -0.023339789360761642, 0.02488011121749878, -0.026146307587623596, -0.014267555437982082, 0.024175217375159264, -0.010090412572026253, 0.02730807662010193, 0.010462439619004726, 0.041562579572200775, 0.013693198561668396, 0.0007566993590444326, 0.0016790159279480577, 0.020167771726846695, -0.008589250966906548, -0.008041000925004482, 0.008080162107944489, 0.02379666455090046, 0.021316485479474068, -0.010234002023935318, 0.0008293098653666675, 0.022295502945780754, -0.005707675125449896, -0.020950986072421074, 0.0075775994919240475, -0.0022142124362289906, -0.015507644973695278, -0.02574164606630802, -0.0346180759370327, -0.0029566343873739243, -0.001804656581953168, -0.005391126032918692, 0.0035505720879882574, -0.008093215525150299, -0.021460074931383133, -0.01757011003792286, 0.04080547019839287, -0.02245214581489563, 0.005583666265010834, -0.006148233078420162, -0.021003199741244316, -0.010012091137468815, -0.007146831601858139, -0.01918875239789486, 0.016982698813080788, -0.002746145473793149, 0.020402735099196434, -0.014306716620922089, 0.020219985395669937, -0.0023431163281202316, -0.014593895524740219, -0.005567349027842283, 0.012642386369407177, -0.019397610798478127, 0.02331368252635002, 0.011128171347081661, -0.01260322518646717, -0.012107189744710922, 0.015742609277367592, 0.0006351379561237991, -0.014123966917395592, -0.014424198307096958, -8.857053762767464e-05, -0.011513251811265945, -0.012159403413534164, 0.015585966408252716, 0.03388707712292671, -0.03169407695531845, 0.0019759847782552242, -0.007466644048690796, 0.007140304893255234, -0.03135468438267708, 0.0019254020880907774, 0.011023743078112602, -0.03443532809615135, -0.031171932816505432, -0.012446582317352295, 0.007349161896854639, -0.0013004622887820005, -0.0014571051578968763, -0.022269396111369133, -0.014006484299898148, 0.030649790540337563, -0.026302950456738472, 0.033965397626161575, -0.02871786244213581, 0.0033580318558961153, -0.014489466324448586, 0.00017428559658583254, 0.001646381919272244, -0.008341233246028423, 0.018040038645267487, -0.0020999936386942863, -0.015481538139283657, 0.003609313163906336, -0.005214902572333813, 0.013484341092407703, 0.026590129360556602, -0.010175260715186596, 0.042058613151311874, 0.013432127423584461, 0.0008827479323372245, -0.017713699489831924, 0.009901135228574276, 0.009724912233650684, -0.014946341514587402, -0.010064304806292057, -0.0025650272145867348, -0.025611111894249916, -0.02059853821992874, -0.004728657193481922, 0.009300671517848969, 0.012779448181390762, -0.02273932471871376, -0.022008324041962624, -0.0022484781220555305, 0.031302470713853836, -0.01951509155333042, -0.004242411348968744, -0.003579942509531975, 0.018183628097176552, -0.011154278181493282, 0.017987824976444244, 0.004754764027893543, -0.022034432739019394, 0.0043272594921290874, 0.0178050734102726, 0.0077799297869205475, 0.025937451049685478, -0.014241448603570461, -0.017452627420425415, -0.006964081432670355, -0.028326254338026047, 0.004007447045296431, -0.020115556195378304, -0.011989707127213478, 0.01976311020553112, 0.011389242485165596, -0.028091290965676308, -0.0300754327327013, 0.03456586226820946, -0.020507164299488068, -0.006366880610585213, -0.004428424872457981, -0.015481538139283657, 0.008125849068164825, 0.002475283807143569, -0.020990146324038506, 0.029709933325648308, -0.014476412907242775, 0.016995752230286598, -0.0035995228681713343, -0.01163073442876339, 0.02058548480272293, -0.02405773662030697, 0.031798504292964935, -0.003199757309630513, -0.016186431050300598, -0.0067943851463496685, 0.034774720668792725, 0.013033993542194366, 0.028195718303322792, 0.019071271643042564, -0.012909984216094017, -0.028796182945370674, -0.013862894847989082, 0.004441478289663792, -0.0029517393559217453, 0.01106943003833294, 0.018235841765999794, -0.020115556195378304, -0.013092733919620514, 0.023143986240029335, 0.009411626495420933, -0.01597757451236248, 0.00439905421808362, -0.012270359322428703, 0.004121665842831135, 0.01042327843606472, -0.01259017176926136, 0.011206492781639099, 0.012192037887871265, -0.025088967755436897, 0.0037692193873226643, 0.026968682184815407, -0.013849841430783272, 0.010351483710110188, -0.016121163964271545, -0.006592054385691881, 0.012413948774337769, -0.00035142668639309704, -0.0292661115527153, -0.03273836150765419, 2.809577745210845e-05, -0.006872706580907106, -0.002486705780029297, 0.013190636411309242, 0.015794824808835983, -0.03028429113328457, 0.008713260293006897, 0.01648666337132454, -0.0197370033711195, 0.01084099244326353, 0.009574796073138714, 0.016095055267214775, -0.024514611810445786, 0.017674539238214493, 0.015899252146482468, -0.008328179828822613, -0.0011478986125439405, 0.0062265545129776, -0.010658242739737034, -0.009130974300205708, -0.028195718303322792, 0.01354960910975933, -0.007146831601858139, -0.01165684126317501, -0.018549127504229546, -0.006079701706767082, -0.005015835631638765, 0.0046666525304317474, 0.20154717564582825, -0.005945902783423662, 0.010847519151866436, 0.04631407931447029, -0.015142145566642284, 0.008843796327710152, 0.002250109799206257, -2.5992418159148656e-05, 0.019593413919210434, 0.015390163287520409, 0.005707675125449896, 0.032607827335596085, -0.032895006239414215, -0.006350563373416662, -0.0014758696779608727, -0.0025519735645502806, -0.03219011053442955, -0.015481538139283657, -0.02433186024427414, -0.017530949786305428, 0.005028889048844576, -0.006924920715391636, -0.01977616362273693, -0.010201367549598217, 0.02788243256509304, 0.004917933605611324, -0.0005041942931711674, 0.004389264155179262, 0.013836788013577461, 0.003170386655256152, -0.02134259231388569, 0.006575737614184618, 0.016604145988821983, -0.007623286917805672, -0.0278302188962698, -0.0010361274471506476, -0.007225153036415577, -0.024240486323833466, 0.033991504460573196, 0.03375653922557831, -0.007525384891778231, 0.010886680334806442, 0.005841474048793316, 0.021264271810650826, -0.0006404409650713205, 0.01755705662071705, -0.011154278181493282, -0.022634895518422127, 0.016852162778377533, 0.015168252401053905, -0.03430479019880295, 0.006774804554879665, 0.023392003029584885, 0.03195514902472496, 0.004137982614338398, 0.005880634766072035, 0.005022362340241671, 0.0005768047994934022, 0.00399439362809062, 0.003033324144780636, -0.01619948446750641, 0.019358448684215546, -0.009150555357336998, 0.0357406847178936, -0.022582681849598885, -0.004177143331617117, -0.03699382767081261, -0.006246135104447603, -0.003003953490406275, -0.016408341005444527, -0.003707214957103133, -0.018457753583788872, -0.010932368226349354, 0.002633558353409171, -0.014946341514587402, -0.0276474691927433, 0.027438610792160034, 0.035088006407022476, 0.00385733088478446, 0.00039731813012622297, -0.01619948446750641, -0.010566867887973785, -0.01704796776175499, 0.0005759889027103782, -0.023626968264579773, -0.0362367182970047, -0.009561742655932903, 0.0026123463176190853, 0.005179005209356546, 0.010625609196722507, 0.0036582639440894127, -0.020494110882282257, 0.017256824299693108, 0.012909984216094017, 0.008432608097791672, 0.004552433732897043, -0.01433282345533371, 0.007140304893255234, -0.011669894680380821, -0.0031116455793380737, -0.02085961028933525, -0.010247055441141129, 0.021551450714468956, 0.0012417212128639221, -0.021016253158450127, -0.017765913158655167, 0.0033808755688369274, 0.008621885441243649, -0.004268518649041653, -0.02080739662051201, -0.02378361113369465, -0.02330062910914421, -0.002803254872560501, -0.012779448181390762, 0.0005959772388450801, 0.017439574003219604, 0.008067108690738678, -0.008471769280731678, -0.0033253978472203016, -0.008706733584403992, 0.022347718477249146, -0.025833021849393845, 0.002915841992944479, 0.016029788181185722, 0.013993430882692337, -0.00770160835236311, -0.0013330961810424924, 0.01870577037334442, 0.006180867087095976, -0.031276363879442215, -0.0012221408542245626, 0.003367821918800473, 0.006370143964886665, -0.009783653542399406, -0.006337509956210852, 0.005975273437798023, 0.005769679322838783, 0.00935288518667221, -0.003749639028683305, 0.0022419511806219816, -0.005648933816701174, -0.008608832024037838, -0.0016406710492447019, 0.009685751982033253, 0.001494634198024869, -0.030754219740629196, -0.008445662446320057, 0.014137020334601402, -0.014097859151661396, -0.018013931810855865, -0.010684349574148655, -0.012133296579122543, 0.0010654979851096869, -0.01920180581510067, 0.03145911172032356, -0.020637700334191322, -0.043468400835990906, -0.03824697062373161, 0.010247055441141129, 0.014123966917395592, -0.026316003873944283, -0.008099742233753204, 0.009170135483145714, -0.009046126157045364, -0.010599501430988312, 0.00654963031411171, -0.16865217685699463, 0.0006526786601170897, 0.01918875239789486, -4.3036001443397254e-05, 0.016290860250592232, -0.005459656938910484, 0.028300147503614426, 0.012322572991251945, 0.003710478311404586, 0.008217224851250648, 0.020494110882282257, 0.007427483331412077, -0.033156078308820724, -0.00039568645297549665, -0.0013665460282936692, -0.009496474638581276, 0.009117920882999897, 0.007675501052290201, -0.008341233246028423, 0.022269396111369133, 0.019802270457148552, 0.0039780763909220695, 0.0009186452371068299, -0.011937492527067661, 0.0025585005059838295, 0.014593895524740219, -0.01836637780070305, 0.022647950798273087, -0.015559859573841095, 0.00866104569286108, -0.034513648599386215, 0.007786456495523453, 0.01215287670493126, 0.0025862392503768206, 0.023861931636929512, 0.0042228312231600285, -0.025833021849393845, -0.021264271810650826, -0.011826537549495697, 0.007225153036415577, -0.00690534058958292, 0.0284567903727293, 0.021564504131674767, 0.013836788013577461, 0.010723510757088661, 0.019906699657440186, 0.010240528732538223, -0.01623864471912384, 0.030232075601816177, -0.014672216959297657, 0.03404371812939644, -0.034226469695568085, -0.015272680670022964, 0.008373867720365524, -0.014698323793709278, 0.026120200753211975, -0.003609313163906336, 0.0013469656696543097, -0.002498127520084381, -0.0024100160226225853, -0.02811739780008793, -0.03028429113328457, 0.025023700669407845, -0.015168252401053905, 0.0028571009170264006, -0.015155198983848095, -0.005182268563657999, 0.017439574003219604, -0.01891462877392769, -0.012949144467711449, -0.01420228835195303, -0.022817647084593773, 0.007773403078317642, -0.015494591556489468, 0.020350521430373192, 0.018771039322018623, -0.020350521430373192, 0.016630252823233604, 0.009933769702911377, 0.004686232656240463, -0.018575234338641167, 0.02110762894153595, -0.012805555947124958, 0.016917431727051735, -0.0070358761586248875, 0.016343073919415474, -0.009842394851148129, 0.0012156140292063355, 0.01097805518656969, -0.013001359067857265, 0.02350948564708233, -0.020389681681990623, -0.0021913687232881784, -0.010821412317454815, 0.009254983626306057, 0.01364098396152258, -0.008817688561975956, -0.016108110547065735, -0.0006832730141468346, 0.008347759954631329, 0.007753822486847639, -0.01623864471912384, -0.047488901764154434, 0.02431880682706833, 0.012655439786612988, 0.0018128149677067995, 0.024749575182795525, 0.013836788013577461, 0.048872578889131546, -0.024279646575450897, -0.0032274960540235043, 0.0011348450789228082, 0.022556575015187263, 0.02950107678771019, -2.8299738914938644e-05, 0.021877789869904518, -0.011049849912524223, -0.002904420020058751, 0.04218915104866028, -0.020102502778172493, 0.020468004047870636, 0.00358646921813488, -0.020729074254631996, -0.003592996159568429, -0.00894822459667921, 0.005763152614235878, -0.08484822511672974, -0.029579397290945053, 0.009300671517848969, 0.0027102481108158827, -0.024227432906627655, 0.01287735067307949, -0.0012621174100786448, 0.011702528223395348, 0.0013437021989375353, 0.038012005388736725, -0.0014407881535589695, -0.014685270376503468, 0.0034494067076593637, -0.009698805399239063, 0.03485304117202759, -0.0018829780165106058, -0.018496913835406303, -0.02136869914829731, -0.013862894847989082, -0.008843796327710152, 0.01138271577656269, 0.0008941697888076305, -0.004816768690943718, -0.006242871750146151, -0.011291340924799442, 0.008687153458595276, -0.0070358761586248875, 0.02383582480251789, 0.021185949444770813, 0.007544965483248234, 0.014411144889891148, -0.01597757451236248, 0.023940254002809525, -0.03576679155230522, -0.009248456917703152, 0.0006547183147631586, -0.01421534176915884, 0.0055738757364451885, 0.01734820008277893, -0.011180385947227478, 0.008413027971982956, 0.007466644048690796, 0.0030365874990820885, -0.02895282581448555, 0.013242850080132484, -0.017700646072626114, -0.007721188943833113, 0.009398573078215122, -0.002408384345471859, -0.01353655569255352, -0.012054975144565105, 0.014019537717103958, -0.02840457670390606, 0.017478734254837036, 0.018509967252612114, 0.003579942509531975, 0.016617199406027794, 0.005436813458800316, -0.014476412907242775, -0.02302650362253189, -0.029318325221538544, 0.0028228352311998606, 0.0007624102872796357, 0.017178501933813095, 0.005286697298288345, -0.004810241982340813, -0.03336493298411369, -0.015116037800908089, 0.025493629276752472, -0.01839248463511467, -0.008341233246028423, -0.008576197549700737, -0.016630252823233604, -0.0028097815811634064, -0.02921389788389206, 0.00016908456746023148, -0.010821412317454815, -0.007832144387066364, 0.006742170546203852, -0.008158483542501926, -0.006366880610585213, -0.036419469863176346, 0.010220947675406933, -0.0026205049362033606, 0.01708712801337242, 0.005299750715494156, 0.009790180251002312, 0.0025650272145867348, -0.002148944651708007, -0.023130932822823524, 0.003625629935413599, 0.03211179003119469, 0.023966360837221146, -0.02866564691066742, -0.00661816168576479, 0.029005039483308792, -0.002460598712787032, -0.0045883310958743095, 0.03378264978528023, 0.012028868310153484, 0.002228897763416171, -0.004771081265062094, -0.03388707712292671, 0.017700646072626114, 0.0010736563708633184, -0.0003642762894742191, 0.034748613834381104, 0.00797573383897543, -0.018013931810855865, -0.0051300544291734695, 0.0063864607363939285, 0.01422839518636465, -0.019919753074645996, 0.024475449696183205, -0.011722109280526638, -0.007061983458697796, -0.011957073584198952, -0.025102021172642708, 0.027778005227446556, 0.022791540250182152, -0.002561763860285282, -6.103565101511776e-05, 0.02597661130130291, 0.025088967755436897, 0.027203647419810295, 0.004996255040168762, -0.021473128348588943, 0.008537037298083305, 0.0006469677318818867, 0.020716020837426186, -0.01998502016067505, -0.0015835616504773498, 0.011062903329730034, -0.028822289779782295, 0.0013461497146636248, 0.026994790881872177, 0.003965022973716259, -0.011976653710007668, -0.003746375674381852, 0.017426520586013794, 0.01758316345512867, -0.0037267953157424927, -0.009999037720263004, -0.01192443910986185, 0.01260322518646717, -0.019567307084798813, -0.019541200250387192, -0.0017002279637381434, -0.025793861597776413, 0.014293663203716278, 0.01571650244295597, -0.003981339745223522, 0.022282449528574944, 0.023170093074440956, 0.014280609786510468, -0.028039075434207916, -0.006461518816649914, -0.03417425602674484, 0.030205968767404556, 0.015155198983848095, 0.004816768690943718, -0.028221825137734413, 0.001516662072390318, 0.0019564044196158648, 0.004314206074923277, -0.000606583256740123, 0.00947689451277256, -0.007636340335011482, -0.0024459133855998516, 0.012381314300000668, 0.043390076607465744, -0.043677255511283875, -0.013993430882692337, -0.004030290991067886, 0.007081563584506512, 0.006334246601909399, 0.022373825311660767, -0.010997635312378407, 0.01392816286534071, -0.004882036708295345, -0.015468484722077847, 0.0460791140794754, 0.014032591134309769, 0.010599501430988312, -0.015181305818259716, 0.03871689736843109, 0.014580841176211834, 0.009888081811368465, -0.012968725524842739, -0.0012670124415308237, 0.0039780763909220695, 0.015207413583993912, -0.0038997551891952753, 0.0032960271928459406, 0.02382277138531208, -0.0018699243664741516, 0.005945902783423662, 0.016055895015597343, -0.001889504725113511, -0.015899252146482468, 0.002250109799206257, 0.012720707803964615, -0.007420956622809172, -0.013575716875493526, 0.00500930892303586, -0.028770076110959053, -0.03033650480210781, 0.005815367214381695, -0.03605397045612335, -0.03600175678730011, -0.007923519238829613, 0.002610714640468359, 0.012564064934849739, 0.012714180164039135, 0.002587870927527547, 0.01950203813612461, -0.008341233246028423, 0.007420956622809172, -0.010194840840995312, -0.02275237813591957, -0.008439134806394577, 0.027412503957748413, 0.026733718812465668, 0.0035212014336138964, -0.002493232488632202, -0.011846117675304413, 0.013758466579020023, 0.009176662191748619, -9.290473099099472e-05, -0.03391318395733833, 0.017739806324243546, 0.004930987488478422, -0.018862413242459297, 0.015651235356926918, 0.002566658891737461, -0.03083254024386406, -0.008550090715289116, 0.0089025367051363, 0.0024067526683211327, 0.025663325563073158, -0.006268978584557772, 0.0389779694378376, -0.003906281664967537, -0.0065887910313904285, 0.013719305396080017, 0.014006484299898148, 0.034487541764974594, 0.008589250966906548, -0.006461518816649914, -0.02567637898027897, -0.005812103394418955, -0.00661816168576479, -0.0020086185541003942, 0.01730903796851635, -0.0005967930774204433, -0.014711377210915089, 0.017256824299693108, -0.019071271643042564, -0.0009741229005157948, -0.01757011003792286, -0.024723468348383904, 0.009999037720263004, 0.010305795818567276, 0.01759621687233448, 0.002119573997333646, -0.004686232656240463, -0.005639143753796816, 0.008315126411616802, -0.0035277281422168016, -0.005906742066144943, -0.010762671008706093, 0.01313189510256052, 0.015768716111779213, -0.02570248581469059, -0.015533752739429474, 0.033678218722343445, -0.022817647084593773, -0.010612554848194122, 0.006001380272209644, 0.013719305396080017, 0.02568943239748478, -0.013301591388881207, 0.012799029238522053, -0.020206931978464127, -0.01813141442835331, 0.008041000925004482, -0.002491600811481476, -0.0006934711127541959, -0.006135179661214352, -0.0077799297869205475]" +11,la croix,"[-0.012410983443260193, -0.01145013328641653, -0.010956362821161747, -0.023140478879213333, -0.0175889004021883, 0.0047175083309412, -0.0064056687988340855, 0.004297136329114437, -0.001985090086236596, -0.01588072068989277, 0.0349108949303627, 0.017108473926782608, 0.010329141281545162, -0.0053614117205142975, -0.009675228968262672, -0.0006343113491311669, 0.039528317749500275, -0.01145680621266365, 0.025048835203051567, -0.03653900325298309, -0.018416298553347588, 0.012924771755933762, -0.00437720725312829, -0.0013612046604976058, -0.014826455153524876, 0.007786891423165798, 0.015106703154742718, -0.02547588013112545, 0.007246413268148899, 0.0004695822426583618, 0.01145013328641653, -0.002527236705645919, -0.0176556259393692, -0.025075525045394897, -0.02407464012503624, -0.009601830504834652, 0.011209920980036259, 0.004043578635901213, 0.009188131429255009, -0.00017015058256220073, 0.004617419559508562, -0.00014074955834075809, -0.001553041161969304, 0.002960953861474991, -0.0012928107753396034, 0.023527488112449646, -0.008954591117799282, -0.006272217724472284, -0.014586241915822029, 0.013411869294941425, 0.003993534483015537, 0.010616062209010124, -0.013565338216722012, -0.009341600351035595, -0.001829952816478908, -0.009581813588738441, 0.01891006901860237, 0.015773959457874298, 0.006439032033085823, -0.013745497912168503, 0.004193711560219526, -0.012491054832935333, -0.03333617001771927, 0.004834278486669064, -0.016334455460309982, -0.013718808069825172, 0.011843815445899963, -0.005504871718585491, -0.005284676793962717, 0.020938530564308167, -6.208619743119925e-05, 0.034083496779203415, 0.008113847114145756, 0.0017565545858815312, 0.014372719451785088, -0.0019183644326403737, -0.006439032033085823, -0.02025792747735977, 0.022286390885710716, 0.012404311448335648, -0.0046507827937603, -0.00040369058842770755, -0.022993681952357292, 0.0018783289706334472, 0.012891408987343311, -0.00741990003734827, -0.0347774438560009, 0.014212578535079956, -0.022259699180722237, -0.0033729851711541414, -0.006932802032679319, 0.021779274567961693, 0.010969707742333412, 0.01985757425427437, -0.013531975448131561, -0.00018620645278133452, 0.0027390907052904367, 0.047722235321998596, 0.01260448805987835, -0.017001712694764137, -0.01612093299627304, 0.006859404034912586, -0.012357602827250957, -0.020418070256710052, -0.01016232743859291, -0.032748982310295105, -0.019483909010887146, -0.020951876416802406, 0.010816238820552826, -0.01626772992312908, -0.04558701068162918, 0.040595926344394684, 0.020911840721964836, -0.036992739886045456, 0.009608503431081772, -0.04289129376411438, 0.014479480683803558, -0.018256155773997307, 0.021152053028345108, -0.002080174395814538, 0.011983939446508884, 0.01465296745300293, 0.00942834373563528, -0.030026573687791824, 0.02420809119939804, 0.014986596070230007, -0.027784589678049088, -0.0006251365994103253, -0.004944375716149807, 0.006719280034303665, 0.03790020942687988, 0.006112075876444578, 0.021112017333507538, -0.01987091824412346, -0.002684042090550065, 0.020698318257927895, -0.0013278417754918337, 0.028638677671551704, -0.009021317586302757, -0.02255329303443432, 0.00806713942438364, 0.022326424717903137, 0.007219722960144281, -0.005628314334899187, 0.028905581682920456, 0.015253499150276184, -0.010395866818726063, 0.0198842640966177, 0.0058251554146409035, -0.020564867183566093, 0.02128550410270691, -0.015013286843895912, 0.039501626044511795, -0.017642280086874962, 0.009601830504834652, 0.010716150514781475, -0.0351778008043766, 0.0478556863963604, -0.001116821775212884, -0.0045506940223276615, -0.02967960014939308, -0.0046140835620462894, 0.010315796360373497, -0.0027174048591405153, 0.005891880951821804, 0.03723295032978058, -0.014172542840242386, 0.006502421107143164, -0.013231709599494934, 0.011910540983080864, 0.016494598239660263, 0.0282383244484663, -0.0026273252442479134, 0.017668969929218292, 0.006245527416467667, 0.0072130500338971615, 0.004564038943499327, -0.007119634188711643, -0.023247240111231804, 0.01268455944955349, -0.03992867097258568, 0.0021152053959667683, 0.01126997359097004, 0.0146262776106596, -0.006499085109680891, 0.014933215454220772, 0.013865604065358639, 0.004597402177751064, -0.003940153867006302, 0.000604284810833633, -0.004800915252417326, 0.004050251096487045, 0.014746383763849735, -0.01993764564394951, -0.6589298248291016, -0.01339185144752264, -0.013705462217330933, -0.013578684069216251, 0.03483082354068756, 0.023660939186811447, 0.012184116058051586, 0.006846058648079634, -0.025796163827180862, 0.02017785795032978, -0.008347387425601482, 0.004994419869035482, -0.007526661269366741, 0.006035341415554285, -0.00182828470133245, -0.030026573687791824, 0.010369176976382732, -0.007820254191756248, 0.02280685119330883, 0.00031715567456558347, -0.02125881426036358, 0.011336700059473515, 0.005868527106940746, -0.01613427884876728, 0.013171656988561153, -0.008400768041610718, -0.002278683241456747, -0.03082728199660778, -0.007146324496716261, -0.013018188066780567, -0.040969591587781906, 0.01884334348142147, -0.009741954505443573, -0.023647595196962357, 0.039501626044511795, 0.00800041388720274, -0.010649424977600574, 0.0590389147400856, 0.027264129370450974, 0.041930440813302994, -0.0031744760926812887, -0.0023987896274775267, 0.0013712134677916765, -0.0026907145511358976, -0.012257514521479607, 0.0018049307400360703, 0.014185887761414051, 0.002246988471597433, 0.02024458348751068, 0.004931030794978142, -0.000496689579449594, -0.0199509896337986, 0.002063492778688669, 0.010642752051353455, -0.0036966048646718264, 0.00020528584718704224, 0.04145001620054245, -0.011890523135662079, 0.0067726606503129005, 0.015013286843895912, -0.008927901275455952, 0.0019200325477868319, -0.018536405637860298, -0.0029676263220608234, 0.005267995409667492, -0.030506998300552368, -0.032989196479320526, -0.021779274567961693, 0.013959020376205444, 0.002914245706051588, 0.03304257616400719, 0.002417139243334532, -0.023700974881649017, 0.0036198701709508896, 0.009268202818930149, 0.03216179832816124, 0.019083555787801743, -0.02661021612584591, 0.003813374787569046, -0.01605420745909214, -0.008013758808374405, -0.014532861299812794, -0.027237437665462494, 0.043425098061561584, 0.028558608144521713, -0.0018599794711917639, -0.01614762470126152, 0.013531975448131561, 0.011196576058864594, -0.0013295100070536137, 0.003986861556768417, 0.009895424358546734, -0.019136935472488403, -0.002417139243334532, 0.001134337275288999, 0.03995535895228386, -0.027357544749975204, 0.02135222963988781, 0.019176971167325974, -0.021112017333507538, 0.007860289886593819, 0.0008144708117470145, -0.0028308385517448187, -0.008307351730763912, 0.03072052076458931, -0.008420785889029503, -0.009715264663100243, 0.01862982101738453, 0.020404724404215813, -0.035631533712148666, 0.0015088353538885713, 0.004524003714323044, -0.007279776036739349, -0.01405243668705225, -0.0013311781222000718, -0.023754356428980827, 0.015160083770751953, 0.017749041318893433, 0.016507942229509354, -0.0425976999104023, 0.010756186209619045, -0.008974608965218067, 0.031227637082338333, -0.0019500590860843658, 0.014639622531831264, 0.006202155724167824, -0.008300679735839367, -0.010389194823801517, -0.014639622531831264, -0.0035598170943558216, -0.004840950947254896, 0.003132772399112582, 0.010395866818726063, -0.0052980221807956696, 0.013231709599494934, -0.0036699145566672087, 0.003659905632957816, -0.004967729561030865, -0.008120520040392876, -0.017108473926782608, -0.04708166792988777, -0.006098730489611626, -0.0011109831975772977, -0.0049577211029827595, 0.000868268427439034, -0.03723295032978058, -0.015693889930844307, -0.005828491412103176, -0.0479891374707222, -0.003856746479868889, 0.006075376644730568, -0.02794473059475422, -0.038300562649965286, 0.012771302834153175, 0.013878949917852879, 0.001796589931473136, -0.03427032753825188, -0.01868320070207119, -0.010676114819943905, -0.02671697735786438, 0.0013311781222000718, 0.02532908320426941, -0.005191260948777199, -0.004937703255563974, -0.018149396404623985, 0.005668350029736757, 0.02031130902469158, 0.012384293600916862, -0.0032028343994170427, -0.021752584725618362, 0.0239945687353611, 0.0011126513127237558, 0.005001092795282602, 0.025876233354210854, 0.010135636664927006, 0.01351195853203535, -0.016401180997490883, 0.005511544179171324, -0.004263773560523987, -0.002764113014563918, 0.007106289267539978, 0.0028141571674495935, -0.02268674410879612, -0.006932802032679319, -0.0061654564924538136, 0.0011960584670305252, -0.005818482488393784, 0.0282383244484663, -0.010562681593000889, -0.0075800418853759766, -0.013091585598886013, -0.0010200694669038057, 0.0007936190231703222, 0.01277797482907772, -0.005254650488495827, -0.015787305310368538, -0.012564453296363354, 0.020644936710596085, 0.002917582169175148, 0.004657455254346132, 0.02159244194626808, -0.02279350534081459, 0.051592327654361725, 0.003860082942992449, 0.010909655131399632, -0.054394807666540146, 0.001659802277572453, -0.0027090641669929028, 0.02387446165084839, 0.018069325014948845, -0.0040068794041872025, -0.018923413008451462, -0.018069325014948845, -0.01605420745909214, 0.010562681593000889, 0.024381577968597412, 0.025142250582575798, -0.007673457730561495, 0.021138707175850868, 0.0046341014094650745, -0.0008916224469430745, 0.01592075638473034, 0.006525775417685509, -0.0009825362358242273, 0.013825569301843643, -0.0011518527753651142, 0.006505757570266724, 0.008801122196018696, 0.002585621550679207, -0.008320697583258152, -0.011663655750453472, 0.01206400990486145, 0.006222173105925322, 0.019190317019820213, 0.007546678651124239, 0.011229938827455044, -0.002063492778688669, -0.03240200877189636, 0.007633422035723925, -0.010722823441028595, 0.030453618615865707, 0.009795335121452808, 0.001568054431118071, 0.00045039859833195806, 0.009214822202920914, 0.0007990404847078025, 0.01267788652330637, 0.011156540364027023, -0.006068704184144735, 0.009541777893900871, -0.011616948060691357, -0.004887659102678299, -0.01732199639081955, 0.020658282563090324, 0.018109360709786415, 0.0008086322923190892, 0.01202397421002388, 0.0002543918089941144, 0.051245350390672684, 0.020965220406651497, 0.012918098829686642, 0.016681428998708725, 0.009875406511127949, 0.01072949543595314, -0.003950162790715694, -0.002230307087302208, -0.01608089916408062, -0.01757555454969406, 0.002327059395611286, -0.009354946203529835, -0.02019120194017887, -0.033950045704841614, 0.024741897359490395, 0.00861429050564766, -0.009808680973947048, -0.027811279520392418, -0.005054473411291838, 0.026009684428572655, -0.017949217930436134, 0.002909241244196892, -0.009128077886998653, -0.050257813185453415, 0.03336285799741745, 5.181669257581234e-05, 0.0060153235681355, -0.024555064737796783, -0.012691231444478035, 0.013031532987952232, -0.009995512664318085, 0.02264670841395855, 0.0026490110903978348, 0.012170771136879921, -0.008120520040392876, -0.009761972352862358, -0.008394095115363598, -0.011136522516608238, 0.024862002581357956, -0.018242811784148216, 0.008520874194800854, 0.00022999521752353758, -0.017735695466399193, -0.011129849590361118, 0.008547564968466759, -0.03293581306934357, 0.05228627473115921, -0.019270388409495354, -0.008774432353675365, -0.015520402230322361, -0.00099171104375273, 0.005371420178562403, -0.006642545107752085, 0.0036498967092484236, -0.016721464693546295, -0.04048916697502136, 0.0011393416207283735, 0.004487304482609034, -0.003367980709299445, 0.011636964976787567, 0.02558264136314392, 0.0024071303196251392, -0.0045473575592041016, -0.003074387554079294, -0.02564936690032482, -0.0030160024762153625, 0.03237531706690788, 0.025756128132343292, -0.004580720793455839, 0.014519516378641129, 0.011169885285198689, -0.00039472433854825795, -0.020725008100271225, -0.019604016095399857, 0.014265959151089191, 0.023180514574050903, -0.012237496674060822, -0.0004991918103769422, 0.0020368024706840515, 0.010936344973742962, 0.007286448497325182, 0.013011515140533447, 0.005725066643208265, -0.01609424315392971, 0.021192088723182678, 0.00807381235063076, 0.010716150514781475, -0.01717519946396351, -0.0029259228613227606, 0.022139593958854675, 0.004574047867208719, -0.02013782225549221, 0.032748982310295105, 0.007860289886593819, 0.01622769422829151, -0.00769347557798028, 0.0054815178737044334, 0.009308237582445145, 0.0019150280859321356, -0.018229465931653976, -0.009354946203529835, -0.00932158250361681, 0.017095129936933517, 0.03619202971458435, 0.007593386806547642, -0.025942958891391754, 0.030240096151828766, 0.010576026514172554, 0.003973516635596752, -0.0028558608610183, 0.02783796936273575, -0.013178329914808273, -0.007940360344946384, 0.01405243668705225, 0.0066091823391616344, -0.017842456698417664, 0.025769472122192383, 0.0030944051686674356, -0.018296191468834877, -0.011323354206979275, 0.006385651417076588, 0.01730865240097046, -0.014292648993432522, 0.010929672978818417, -0.009922114200890064, 0.02834508568048477, -0.0322151780128479, -0.020725008100271225, -0.005788456182926893, -0.008240626193583012, -0.01750882901251316, -0.02414136566221714, -0.023554177954792976, -0.003426365554332733, -0.014332684688270092, -0.021846000105142593, -0.010896310210227966, -0.010562681593000889, -0.006282226648181677, 0.0007419065805152059, 0.021952761337161064, 0.016975022852420807, 0.03637886047363281, -0.011203248053789139, 0.014719693921506405, 0.008727723732590675, -0.03096073307096958, -0.0015697225462645292, -0.03515110909938812, -0.013612046837806702, -0.012904753908514977, 0.023660939186811447, -0.013345143757760525, -0.00251055508852005, -0.009048007428646088, -0.004093622788786888, 0.013478594832122326, -0.0010517641203477979, -0.00232205493375659, -0.021979451179504395, -0.026276588439941406, -0.006816032342612743, 0.0052746678702533245, 0.003569826018065214, -0.01329176314175129, -0.020778389647603035, 0.02402125857770443, -0.019123591482639313, -0.014466135762631893, -0.00768680265173316, 0.008127192966639996, -0.0021435637027025223, 0.008854502812027931, 0.006719280034303665, -0.00010107903653988615, 0.010756186209619045, 0.03197496384382248, -0.030133334919810295, -0.006168792489916086, -0.001629775739274919, -0.017909182235598564, 0.004880986176431179, -0.01610758900642395, -0.006939474958926439, 0.014679658226668835, -0.03301588445901871, -0.018202776089310646, -0.022246355190873146, 0.005071154795587063, 0.009955476969480515, 0.014092471450567245, 0.021805964410305023, -0.003659905632957816, -0.018189430236816406, 0.0019967672415077686, 0.0067526428028941154, 0.0018416298553347588, 0.015253499150276184, 0.013625391758978367, -0.011089814826846123, -0.031574610620737076, -0.013692117296159267, 0.0073131388053298, 0.019176971167325974, 0.008834484964609146, -0.01200395729392767, -0.027330854907631874, 0.0012936448911204934, -0.013772188685834408, -0.008053794503211975, -0.02253994718194008, -0.03064044937491417, -0.00810050219297409, -0.0019467228557914495, -0.00598196079954505, -0.01131000928580761, -0.023807736113667488, -0.02543584443628788, -0.01127664651721716, -0.0031527902465313673, -0.012017302215099335, -0.0021635815501213074, -0.032695602625608444, -0.017869148403406143, 0.024528374895453453, 0.023153824731707573, 0.003716622479259968, 0.00946837943047285, 0.008954591117799282, 0.010596044361591339, -0.010389194823801517, 0.011530204676091671, 0.006765987724065781, 0.0019467228557914495, -0.032775674015283585, 0.025782817974686623, 0.005861854180693626, 0.016801536083221436, 0.007673457730561495, -0.01621435023844242, -0.01885668747127056, 0.0023654266260564327, -0.005731739103794098, 0.005918571259826422, 0.002744095167145133, -0.037846826016902924, 0.006615854799747467, 0.0003488503862172365, 0.006365633569657803, -0.032775674015283585, 0.006679244339466095, 0.0004391386464703828, 0.034110188484191895, -0.003920136019587517, -0.004203720483928919, 0.0004775059351231903, 0.04115642234683037, -0.024661825969815254, 0.025048835203051567, -0.01207068283110857, 0.0006785171572118998, -0.03301588445901871, -0.017642280086874962, 0.00026586028980091214, 0.01724192500114441, 0.016307765617966652, 0.0005029450985603034, -0.00034655671333894134, -0.01889672316610813, -0.0038534102495759726, -0.01008225604891777, 0.006298908032476902, -0.0120973726734519, -0.0029509449377655983, 0.0018499705474823713, -0.015013286843895912, -0.010282433591783047, -0.018322883173823357, -0.0431315042078495, -0.03069383092224598, 0.011677000671625137, 0.02941269613802433, -0.044706232845783234, 0.0229136124253273, 0.008921228349208832, -0.02558264136314392, 0.001627273508347571, -0.023047063499689102, 0.016894951462745667, -0.007913670502603054, 0.02962621860206127, 0.01260448805987835, -0.0018666519317775965, -0.01996433548629284, 0.012951461598277092, 0.006779333110898733, -0.027864661067724228, -0.004257101099938154, 0.044812992215156555, -0.019510600715875626, 0.020805079489946365, 0.013932330533862114, 0.02262001857161522, 0.010242397896945477, -0.02935931645333767, 0.03459061309695244, 0.017749041318893433, 0.011016416363418102, -0.025969650596380234, -0.01407912652939558, 0.0033229407854378223, 0.020978566259145737, -0.019363803789019585, -0.0058218189515173435, 0.00022415671264752746, -0.021152053028345108, -0.02153906226158142, 0.007980396039783955, -0.03090735338628292, 0.043478477746248245, -0.004627428483217955, -0.03218848630785942, -0.004270446021109819, -0.015080012381076813, -0.005811810027807951, 0.002764113014563918, -0.007179687265306711, 0.0424642488360405, 0.004493976943194866, -0.009088043123483658, 0.003251210553571582, 0.014372719451785088, -0.016414526849985123, 0.01548036653548479, -0.004313817713409662, 0.02117874287068844, -0.010315796360373497, -0.01131000928580761, -0.010576026514172554, 0.01077620405703783, 0.027330854907631874, 0.02152571640908718, -0.015720579773187637, -0.007273103576153517, -0.01609424315392971, -0.02164582349359989, 0.01865651085972786, -0.00939498096704483, -0.023474108427762985, -0.027264129370450974, -0.003254547016695142, -0.013798878528177738, -0.020738353952765465, 0.014172542840242386, 0.011790434829890728, 0.0351778008043766, -0.008347387425601482, -0.025809507817029953, 0.04401228576898575, 0.008520874194800854, 0.0007160503882914782, -0.025128906592726707, 0.015547092072665691, 0.03069383092224598, -0.01217744406312704, 0.009027989581227303, 0.026957189664244652, 0.00765343988314271, -0.005104517564177513, 0.015226809307932854, 0.01614762470126152, -0.02145899087190628, 0.03178813308477402, -0.007513315882533789, -0.030240096151828766, -0.0052146147936582565, 0.0021485681645572186, 0.03202834352850914, 0.024621790274977684, 0.00464744633063674, 0.00807381235063076, -0.012998170219361782, -0.0042904638685286045, -0.013905639760196209, -0.03469737246632576, -0.0007002030033618212, -0.005971951875835657, -0.011663655750453472, 0.014426100067794323, -0.020404724404215813, 0.008180573582649231, 0.02395453304052353, -0.008474166505038738, 0.027330854907631874, -0.02117874287068844, -0.009561795741319656, 0.008907883428037167, 0.005831827875226736, -0.04849625378847122, -0.00864765327423811, -0.008480838499963284, 0.019577326253056526, -0.02959952875971794, 0.03101411461830139, -0.007486625574529171, 0.0044706230983138084, 0.005841836798936129, 0.005231296177953482, -0.02424812689423561, 0.01600082777440548, -0.020364688709378242, -0.007673457730561495, 0.0047542075626552105, -0.010362504050135612, 0.005494862794876099, -0.01549371238797903, 0.00049543846398592, 0.023180514574050903, 0.016614703461527824, -0.038006968796253204, -0.015440331771969795, 0.004834278486669064, -0.030186714604496956, 0.002041806932538748, 0.005237969104200602, 0.016574667766690254, 0.01351195853203535, 0.03843401372432709, 0.03515110909938812, 0.01351195853203535, 0.010489283129572868, 0.025929614901542664, 0.011656982824206352, -0.004063596483319998, 0.014572896994650364, 0.00993545912206173, -0.0020251255482435226, 0.002647342858836055, -0.018349573016166687, -0.01342521421611309, 0.025182286277413368, 0.0031377768609672785, 0.009681901894509792, 0.012597816064953804, -0.026183171197772026, -0.014065781608223915, -0.004747535102069378, -0.00946837943047285, 0.00860761757940054, 0.014919870533049107, 0.016748154535889626, -0.02121877856552601, 0.005184588488191366, 0.0035731622483581305, 0.02689046412706375, 0.0008090493502095342, 0.024835312739014626, -0.016387837007641792, 0.003051033476367593, 0.011143195442855358, 0.008187245577573776, 0.010869619436562061, -0.006028668489307165, -0.003973516635596752, 0.0034697374794632196, 0.027144022285938263, -0.0034997640177607536, 0.01202397421002388, -0.001956731779500842, -0.008427457883954048, -0.0015864039305597544, 0.0009500074083916843, -0.036832597106695175, -0.0175889004021883, 0.0014954901998862624, -0.02957283891737461, 0.023500798270106316, -0.029039032757282257, 0.020871805027127266, 0.0022269708570092916, 0.019563980400562286, 0.003459728555753827, -0.005588279105722904, -0.009741954505443573, 0.017895838245749474, 0.024408267810940742, -0.0034697374794632196, 0.016854915767908096, 0.004417242482304573, -0.013104931451380253, -0.020911840721964836, 0.0060820491053164005, -0.02140561118721962, -0.01145013328641653, -0.012471036985516548, 0.00400020694360137, 0.0015472025843337178, 0.002652347320690751, 0.009888751432299614, 0.023487452417612076, -0.005891880951821804, 0.014586241915822029, 0.17829112708568573, -0.012724594213068485, -0.035284560173749924, 0.02251325733959675, -0.02135222963988781, -0.0003755406942218542, 0.009581813588738441, 0.018282847478985786, 0.0010926336981356144, 0.018376262858510017, -0.0058852084912359715, -0.019750813022255898, -0.002066829241812229, -0.0029843077063560486, 0.0037132862489670515, -0.007493298035115004, -0.024341542273759842, -0.024568410590291023, -0.006986182648688555, 0.010956362821161747, 0.01530687976628542, -0.0011535208905115724, 0.013852259144186974, -0.009128077886998653, 0.005094508640468121, -0.011403425596654415, -0.006739297416061163, 0.00810050219297409, 0.02685042843222618, 0.00012928107753396034, -0.025155596435070038, 0.009108060970902443, 0.010489283129572868, 0.0114234434440732, -0.029732979834079742, 0.008627635426819324, -0.011129849590361118, -0.0036065250169485807, 0.01278464775532484, 0.023113789036870003, 0.009895424358546734, -0.02011113241314888, 0.004577384330332279, -0.00217025401070714, 0.014599586836993694, 0.0014662976609542966, -0.01401240099221468, -0.02407464012503624, 0.00142793043050915, 0.012250841595232487, -0.015146737918257713, 0.012250841595232487, 0.015160083770751953, 0.04537348821759224, -0.009048007428646088, 0.015653854236006737, 0.012524417601525784, -0.0158406849950552, -0.011510186828672886, -0.03344292938709259, -0.0036565694026649, 0.023754356428980827, -0.020738353952765465, 0.012357602827250957, -0.008300679735839367, 0.017709005624055862, -0.043451789766550064, -0.01608089916408062, -0.009094715118408203, -0.006839386187493801, -0.008767759427428246, -0.010235724970698357, 0.0022569973953068256, 0.01343856006860733, -0.016481252387166023, -0.01589406654238701, 0.03456392139196396, 0.009775318205356598, 0.013231709599494934, 0.017975907772779465, 0.000605535926297307, 0.0007356510614044964, 0.019657397642731667, -0.006859404034912586, 0.011483496055006981, -0.02127216011285782, -0.007199705112725496, 0.009068025276064873, -0.01473303884267807, 0.020684972405433655, 0.02807818166911602, -0.021926071494817734, -0.0026790376286953688, -0.020551521331071854, -0.003024343168362975, 0.006859404034912586, -0.0015630499692633748, 0.011483496055006981, -0.028371775522828102, 0.02554260566830635, -0.03178813308477402, -0.04134325683116913, 0.017108473926782608, 0.010095600970089436, -0.035257868468761444, 0.002652347320690751, -0.02805149182677269, 0.010182344354689121, -0.004790906794369221, -0.026343313977122307, -0.017001712694764137, -0.027490995824337006, -0.009274874813854694, 0.004310481250286102, 0.012324240058660507, 0.003226188477128744, -0.02003106102347374, -0.011737054213881493, -0.001424594083800912, 0.006282226648181677, 0.01337183453142643, -0.0060853855684399605, -0.0040035429410636425, 0.0176556259393692, 0.0051578981801867485, -0.019150281324982643, -0.034110188484191895, 0.010562681593000889, 0.012084027752280235, -0.03648562356829643, 0.041983820497989655, -0.03178813308477402, 0.028371775522828102, 0.00990209635347128, -0.012991497293114662, 0.02935931645333767, -0.00601198710501194, -0.01632111147046089, -0.009802008047699928, -0.019163627177476883, -0.004710835870355368, -0.0055582523345947266, -0.02831839583814144, 0.002992648398503661, -0.012431001290678978, -0.015533747151494026, 0.008981281891465187, 0.012244169600307941, -0.017148509621620178, -0.016374491155147552, -0.00201845308765769, -0.015573782846331596, -0.005264659412205219, -0.005751756951212883, 0.023300621658563614, -0.027464305981993675, -0.011863832361996174, -0.025876233354210854, 0.009068025276064873, 0.014999941922724247, -0.031200945377349854, -0.010649424977600574, 0.025756128132343292, -0.011743726208806038, -0.0033879983238875866, 0.012971479445695877, -0.17135164141654968, 0.004370534792542458, -0.00574508449062705, 0.004917685408145189, 0.013745497912168503, 0.03072052076458931, 0.021165398880839348, 0.023140478879213333, 0.0008424121770076454, 0.019644051790237427, 0.008287333883345127, -0.003394671017304063, -0.04390552267432213, 0.02264670841395855, -0.013551993295550346, -0.013999056071043015, -0.0037900209426879883, 0.020591557025909424, 0.008173900656402111, 0.00707292603328824, 0.00865432620048523, 0.002757440321147442, 0.02693049982190132, -0.006472394801676273, -0.00932158250361681, -0.006519102957099676, -0.0049577211029827595, 0.012084027752280235, 0.016521288082003593, 0.016454562544822693, -0.007593386806547642, -0.00038388141547329724, 0.014519516378641129, 0.011970593594014645, -0.003916799556463957, -0.008013758808374405, -0.011109831742942333, -0.015160083770751953, -0.02276681549847126, 0.007206377573311329, 0.004764216486364603, 0.04385214298963547, -0.02559598535299301, 0.007099616341292858, -0.003379657631739974, 0.05225958302617073, 0.006899439264088869, -0.0014788086991757154, 0.01016232743859291, 0.021966107189655304, -0.006595837417989969, 0.0032945824787020683, 0.014359374530613422, 0.0026606880128383636, 0.011370062828063965, -0.004053587559610605, 0.017735695466399193, 0.018376262858510017, 0.016734810546040535, 0.021098671481013298, -0.023153824731707573, -0.004787570331245661, -0.0023504134733229876, -0.0188033077865839, -0.0005484020221047103, -0.015693889930844307, -0.010936344973742962, 0.027130676433444023, -0.0252757016569376, 0.002076837932690978, -0.018269501626491547, -0.01993764564394951, -0.016294419765472412, -0.037926897406578064, -0.011897196061909199, 0.008767759427428246, -0.03072052076458931, 0.020297963172197342, 0.008927901275455952, -0.023380691185593605, 0.011289991438388824, 0.030480308458209038, -0.02544918842613697, 0.002233643550425768, 0.023033717647194862, -0.024848658591508865, -0.010068911127746105, 0.016507942229509354, -0.008580927737057209, -0.014813109301030636, 0.017975907772779465, -0.02161913365125656, 0.010482610203325748, -0.022059522569179535, -0.007233067881315947, 0.004177030175924301, -0.0008757750620134175, 0.008474166505038738, -0.01080289389938116, -0.011183230206370354, -0.023474108427762985, -0.017161855474114418, -0.057117216289043427, 0.017028404399752617, 0.03376321494579315, 0.00216858577914536, 0.013678772374987602, 0.017935873940587044, 0.04115642234683037, -0.0032728963997215033, -0.022259699180722237, 0.014265959151089191, 0.01343188714236021, 0.01139008067548275, -0.0028808829374611378, 0.003319604555144906, -0.004764216486364603, -0.026410039514303207, 0.007493298035115004, 0.0037299676332622766, 0.04860301315784454, 0.006215500645339489, 3.4587901609484106e-05, -0.006258872337639332, 0.0037132862489670515, -0.0026807058602571487, -0.0882914736866951, -0.019684087485074997, 0.017829112708568573, 0.02826501429080963, -0.0007660946575924754, 0.02807818166911602, -0.015733923763036728, 0.023167168721556664, -0.015440331771969795, 0.031654682010412216, -0.0012511071981862187, -0.04457278177142143, -0.005111190024763346, 0.008420785889029503, 0.03069383092224598, 0.019737467169761658, 0.01483980007469654, -0.016854915767908096, 0.011289991438388824, 0.02927924506366253, -0.011129849590361118, 0.001719855354167521, 0.0019650724716484547, -0.004727517254650593, -0.004834278486669064, -0.010482610203325748, 0.0033045911695808172, 0.021152053028345108, 0.027784589678049088, -0.017121819779276848, 0.0028925598599016666, -0.002230307087302208, 0.008467493578791618, -0.01737537793815136, -0.007660112343728542, -0.003733303863555193, -0.006519102957099676, -0.026383349671959877, 0.015039976686239243, -0.016614703461527824, 0.001985090086236596, 0.017201891168951988, 0.010582699440419674, -0.028932271525263786, 0.010542663745582104, 0.0032195160165429115, -0.0024371568579226732, 0.006005314644426107, 0.025822853669524193, -0.012184116058051586, -0.02954614907503128, -0.01992429979145527, -0.02559598535299301, -0.008994626812636852, 0.01332512591034174, -0.004544021561741829, -0.008854502812027931, -0.0009550118702463806, -0.020725008100271225, 0.003916799556463957, 0.006715943571180105, 0.0050978451035916805, -0.025876233354210854, 0.02805149182677269, -0.003913463559001684, -0.013798878528177738, -0.00574508449062705, -0.019377149641513824, 0.01411916222423315, -0.004727517254650593, 0.004233746789395809, -0.011710363440215588, -0.01267788652330637, 0.01728196069598198, -0.031254325062036514, 0.01007558312267065, -0.023300621658563614, -0.028505226597189903, 0.019083555787801743, -0.030293475836515427, -0.016334455460309982, -0.011570239439606667, 0.023247240111231804, -0.01610758900642395, 0.02933262661099434, 0.028958961367607117, 0.01278464775532484, 0.017628934234380722, 0.006562474649399519, -0.002463847165927291, 0.023380691185593605, 0.01985757425427437, 0.023407382890582085, -0.02829170413315296, -0.00932825542986393, 0.0018332891631871462, 0.03058706969022751, -0.011256628669798374, -0.04158346727490425, -7.511856529163197e-05, -0.008507529273629189, -0.011496840976178646, -0.0669926181435585, 0.018096014857292175, -0.0062054917216300964, 0.0029209183994680643, 0.026063065975904465, -0.013124949298799038, 0.019110245630145073, -0.024501683190464973, -4.139079828746617e-05, 0.012491054832935333, -0.00768680265173316, 0.01598748192191124, 0.011476824060082436, 0.025155596435070038, -0.007586714345961809, -0.029759671539068222, 0.022286390885710716, 0.00335129932500422, 0.007633422035723925, 0.02532908320426941, -0.004363861866295338, -0.0007982064271345735, 0.008414112962782383, 0.011249956674873829, -0.028985653072595596, -0.007173014804720879, 0.008834484964609146, 0.031654682010412216, -0.015733923763036728, -0.012577798217535019, 0.0027707854751497507, -0.023300621658563614, -0.015093357302248478, 0.05271331965923309, -0.0006263877148739994, -0.02538246288895607, -0.0018416298553347588, 0.010709477588534355, 0.00810050219297409, 0.05049802362918854, -0.02675701305270195, -0.023514144122600555, 0.03202834352850914, 0.0186031311750412, -0.011770416982471943, 0.008187245577573776, -0.010342486202716827, 0.01732199639081955, 0.014919870533049107, -0.011149867437779903, 0.010449247434735298, 0.019043520092964172, -0.01072949543595314, -0.020644936710596085, -0.006535784341394901, -0.03560484200716019, 0.01980419270694256, -0.0013195010833442211, 0.010289105586707592, -0.028451846912503242, 0.03472406417131424, 0.018349573016166687, -0.004197047557681799, -0.0037599941715598106, 0.009621848352253437, -0.01744210347533226, -0.017895838245749474, -0.02007109671831131, -0.008180573582649231, -0.016507942229509354, -0.019123591482639313, 0.00010332060628570616, -0.0011051447363570333, 0.013592028990387917, 0.009007971733808517, 0.004597402177751064, 0.004914349410682917, 0.002200280549004674, -0.0004205805598758161, 0.016641395166516304, -0.012504399754106998, -0.018216121941804886, 0.0015180101618170738, 0.010068911127746105, 0.01407912652939558, 0.017709005624055862, -0.028985653072595596, -0.009114732965826988, -0.013652082532644272, 0.002213625703006983, 0.028825510293245316, 0.02032465487718582, 0.020364688709378242, -0.01072949543595314, 0.0009425007738173008, 0.006328934337943792, -0.01001553051173687, 0.0056249783374369144, 0.0014187556225806475, 0.005244641564786434, 0.013078240677714348, -5.189488365431316e-05, 0.00396684417501092, -0.019270388409495354, -0.007473280653357506, 0.020898494869470596, -0.025676056742668152, -0.04766885191202164, -0.004157012328505516, 0.01072949543595314, 0.016401180997490883, 0.014879835769534111, 0.013999056071043015, 0.019123591482639313, -0.007660112343728542, -0.0029692945536226034, 0.004390552174299955, -0.0047308532521128654, -0.025742782279849052, 0.0241947453469038, 0.02669028751552105, 0.011670328676700592, 0.0009208149276673794, -0.0027224093209952116, 0.006482403725385666, -0.02930593490600586, 0.004080277867615223, -0.04382545128464699, -0.002125214086845517, 0.012577798217535019, 0.015707233920693398, 0.015013286843895912, -0.02017785795032978, -0.005324712488800287, -0.02123212441802025, 0.012911426834762096, 0.014372719451785088, 0.003254547016695142, -0.030426926910877228, 0.07435914129018784, 0.00506114587187767, -0.016361147165298462, -0.00430380878970027, -0.006142102647572756, 0.034190259873867035, 0.00936161819845438, -0.0018266165861859918, -0.005471508949995041, -0.050204429775476456, 0.02027127332985401, 0.014172542840242386, 0.010362504050135612, -0.024408267810940742, -0.023140478879213333, -0.013338470831513405, -0.021992797031998634, 0.029732979834079742, -0.02268674410879612, -0.012898081913590431, 0.018442988395690918, -0.01852305978536606, 0.013531975448131561, -0.019657397642731667, -0.008314024657011032, -0.005451491102576256, 0.0015171760460361838, -0.009635194204747677, -0.004630764946341515, -0.014252613298594952, 0.011003071442246437, -0.007746856193989515, -0.02129884995520115, -0.017161855474114418, 0.02933262661099434, -0.026490110903978348, 0.007573368959128857, 0.014412755146622658, 0.014399410225450993, 0.001564718084409833, -0.005498199257999659, 0.018109360709786415, -0.01076953113079071, -0.012431001290678978, 0.045933984220027924, 0.004880986176431179, 0.0071529969573020935, 0.013058222830295563, -0.013918984681367874]" +12,yellow,"[0.007648157421499491, -0.024834953248500824, 0.004673136863857508, -0.028576117008924484, -0.019501807168126106, 0.012842006050050259, -0.021266255527734756, -0.022539842873811722, 0.0005659006419591606, -0.03669523447751999, -0.008450782857835293, 0.01193988136947155, -0.00651386845856905, -0.003966693766415119, -0.038181088864803314, -0.006122505757957697, 0.042187582701444626, -0.010387697257101536, 0.01988653652369976, -0.0037610626313835382, -0.022446976974606514, 0.003681463422253728, -0.02361443266272545, -0.009306474588811398, -0.021730585023760796, 0.013943128287792206, -0.0034492991399019957, -0.011707717552781105, 0.008139018900692463, 0.007979820482432842, 0.018573148176074028, -0.010235131718218327, -0.005598477553576231, -0.009439139626920223, -0.010327997617423534, -0.0017611325019970536, -0.0046333372592926025, -0.009094209410250187, -0.012914971448481083, -0.03168048709630966, -0.007336393930017948, 0.0021292788442224264, 0.012842006050050259, -0.007495592348277569, 0.0037079965695738792, 0.007329760584980249, -0.009226875379681587, -0.010314730927348137, -0.01992633566260338, 0.014380923472344875, -0.009770803153514862, 0.00555536150932312, 0.004212124738842249, -0.016583168879151344, -0.0002103989536408335, 0.012205212377011776, 0.0005012262845411897, 0.026188140735030174, -0.03974653780460358, -0.0006956639117561281, 0.013352767564356327, 0.006812365725636482, -0.01769755780696869, 0.01599944196641445, -0.011051023378968239, -0.009857035242021084, -0.009578438475728035, 1.1595262549235485e-05, 0.00019195018103346229, 0.009724370203912258, 0.028098521754145622, 0.015309581533074379, 0.006865432020276785, -0.00580079248175025, 0.03754429519176483, -0.001782690640538931, -0.03316633775830269, -0.023919561877846718, -0.01806902140378952, -0.01211897935718298, 0.01967427134513855, -0.02232757769525051, -0.020284531638026237, 0.009180442430078983, 0.01691483147442341, 0.0036880967672914267, -0.04086092859506607, 0.015853509306907654, -0.015468779951334, -0.01588004268705845, 0.004576954524964094, 0.014858518727123737, 0.02886798046529293, 0.017631225287914276, -0.01956813968718052, -0.005754359532147646, 0.00690523162484169, 0.015468779951334, 0.016994431614875793, -0.02403896115720272, -0.006818999070674181, 0.003318292088806629, -0.022022448480129242, -0.006945031229406595, -0.02123972214758396, -0.026599403470754623, -0.010626494884490967, -0.0040695094503462315, 0.003429399337619543, -0.014367657713592052, -0.005127515643835068, 0.04982910677790642, 0.00284235505387187, -0.05975247174501419, -0.003976644016802311, -0.0013108995044603944, -0.013346133753657341, 0.0018722397508099675, -0.03820762038230896, -0.02072232775390148, 0.0036482971627265215, 0.012397577054798603, 0.029504774138331413, -0.016636235639452934, 0.03860561549663544, 0.004368006717413664, -0.008450782857835293, -0.0075221252627670765, -0.0018971144454553723, 0.0031010524835437536, 0.021531585603952408, 0.015972908586263657, 0.03388272970914841, 0.010414229705929756, -0.026201406493782997, 0.024516556411981583, -0.028204653412103653, 0.014473789371550083, -0.021465253084897995, -0.023760363459587097, -0.004752736072987318, 0.019249742850661278, 0.00427182437852025, -0.014288058504462242, 0.008842145092785358, 0.014009460806846619, 0.026798401027917862, 0.011634751223027706, -0.020470263436436653, -0.009545272216200829, 0.012457276694476604, -0.02309703826904297, 0.014420723542571068, 0.013717597350478172, -0.01645050384104252, 0.019661005586385727, 0.0068057323805987835, 0.014500322751700878, -0.024158360436558723, 0.011628118343651295, -0.026148339733481407, -0.0035885977558791637, 0.006872064899653196, -0.0021392288617789745, 0.00530993053689599, 0.021000925451517105, 0.014765653759241104, 0.0033995495177805424, -0.0022039031609892845, -0.02398589439690113, -0.033299002796411514, 0.038446418941020966, -0.006467435974627733, 0.011966414749622345, -0.0031060276087373495, 0.04261210933327675, 0.018254751339554787, -0.010062666609883308, -0.023919561877846718, 0.003396232845261693, -0.0099698007106781, 0.014208459295332432, 0.022672507911920547, 0.022022448480129242, -0.0015181890921667218, 0.00830485112965107, 0.023694030940532684, -0.015747377648949623, 0.010036133229732513, 0.02227451279759407, 0.019037477672100067, 0.03077836148440838, 0.01619843952357769, 0.0009684570250101388, -0.6762748956680298, -0.014301324263215065, 0.022725574672222137, -0.006072756368666887, 0.01645050384104252, 0.040303733199834824, 0.024848220869898796, -0.004842285066843033, -0.015150383114814758, -0.016211705282330513, -0.008424249477684498, 0.003936844412237406, -0.015428979881107807, -0.0052402811124920845, 0.004248607903718948, -0.0037079965695738792, 0.014805452898144722, -0.01573411002755165, -0.004663187079131603, 0.03295407444238663, -0.007953288033604622, -0.009001343511044979, -0.008729379624128342, 0.012649641372263432, 0.02315010316669941, 0.01641070283949375, -0.0051142494194209576, -0.014553388580679893, 0.010354530066251755, 0.029080243781208992, -0.02860264852643013, 0.009996334090828896, 0.011774050071835518, -0.0023564682342112064, 0.04826365411281586, 0.002963412320241332, -0.014593188650906086, 0.03223767876625061, 0.013717597350478172, 0.04449595883488655, -0.005804108921438456, 0.008165552280843258, 0.008775812573730946, -0.02070906013250351, -0.013452266342937946, 0.018506815657019615, 0.028416918590664864, -0.00017474514606874436, 0.010115732438862324, -0.02886798046529293, 0.026665735989809036, -0.007648157421499491, 0.02341543510556221, 0.008530382066965103, 0.006726133171468973, 0.010858658701181412, 0.02077539451420307, -0.0036781467497348785, -0.022805172950029373, 0.008596714586019516, -0.014619721099734306, -0.006729450076818466, -0.0331132709980011, -0.003837345167994499, -0.014075793325901031, 0.010984690859913826, -0.025816677138209343, -0.004968317225575447, 0.012145512737333775, 0.003139193868264556, -0.00044277060078457, 0.02783318981528282, -0.01692809909582138, 0.003057936206459999, 0.004998167045414448, 0.03186621516942978, 0.016782166436314583, -0.008066053502261639, -0.004965000785887241, 0.003999860491603613, 0.005429329350590706, -0.005489028990268707, -0.008338017389178276, 0.0062452214770019054, 0.03887094557285309, -0.0068057323805987835, -0.03669523447751999, -0.006099289283156395, 0.026174873113632202, -0.009538638405501842, 0.02112032286822796, 0.028204653412103653, -0.019143609330058098, -0.010347897186875343, -0.011236755177378654, 0.00022428735974244773, -0.0018025904428213835, 0.003568697953596711, 0.00047718067071400583, -0.01816188544034958, -0.007369560189545155, -0.012065913528203964, 0.004195541609078646, 0.00945240631699562, 0.019820204004645348, 0.01942220702767372, -0.014181925915181637, 0.03244994580745697, 0.018493549898266792, -0.010785693302750587, 0.007853788323700428, 0.008888578042387962, -0.013233368285000324, -0.03505018353462219, 0.018453750759363174, -0.032476477324962616, 0.025670744478702545, 0.018440483137965202, 0.04417756199836731, -0.01739242672920227, 0.023428700864315033, -0.003943477291613817, 0.01712709665298462, -0.013637998141348362, 0.007077696267515421, 0.02350829914212227, -0.02295110560953617, -0.006178888492286205, -0.003125927411019802, -0.006832265295088291, 0.002640040358528495, 0.0049782670103013515, 0.0051109325140714645, -0.005081082694232464, 0.02751479297876358, -0.007422626484185457, 0.01899767853319645, -0.011283188126981258, 0.004639970604330301, -0.004639970604330301, -0.026665735989809036, -0.015044250525534153, -0.002213852945715189, -0.01817515306174755, 0.010062666609883308, -0.007323127239942551, -0.028178120031952858, -0.015349380671977997, -0.010407596826553345, 0.01869254745543003, -0.01292823813855648, 0.003359749913215637, -0.013637998141348362, 0.021889783442020416, 0.0122781777754426, -0.005701293237507343, -0.010580061934888363, -0.008729379624128342, -0.0012346168514341116, -0.003253617789596319, 0.02066926099359989, 0.021000925451517105, -0.008576815016567707, -0.009492205455899239, -0.008988077752292156, -0.029265975579619408, 0.001395473605953157, 0.004092725925147533, -0.016755633056163788, -0.023242969065904617, 0.006964930798858404, -0.002935220953077078, -0.008351284079253674, -0.0005352217704057693, -0.013956394977867603, 0.001004110905341804, 0.008510482497513294, -0.00724352803081274, -0.004102675709873438, 0.008749280124902725, 0.0013780613662675023, 0.00830485112965107, -0.030406897887587547, -0.002668231725692749, 0.03375006467103958, -4.6795630623819306e-05, 0.002358126686885953, 0.02512681670486927, -0.01577390916645527, 0.0183210838586092, -0.021531585603952408, 0.02403896115720272, -0.001759474165737629, -0.005565311294049025, -0.009459039196372032, -0.02730252966284752, -0.007508858572691679, 0.00970447063446045, 0.006765932776033878, 0.011508719064295292, 0.007124129217118025, -0.01712709665298462, 0.034386858344078064, 0.004702986683696508, 0.018626214936375618, -0.024171626195311546, 0.028629181906580925, -0.03016810119152069, 0.003290100721642375, 0.038393352180719376, 0.005966624245047569, -0.02361443266272545, -8.738552423892543e-06, -0.009021244011819363, 0.018599681556224823, 0.01707402989268303, 0.006945031229406595, 0.012987937778234482, 0.002800897229462862, -0.0032983922865241766, -0.008404349908232689, -0.015800442546606064, 0.012828739359974861, -0.00833138357847929, -0.0007997233187779784, -0.009750903584063053, 0.022048981860280037, 0.030911026522517204, -0.004772636108100414, -0.005969940684735775, -0.021040724590420723, 0.0016616334905847907, -0.012643007561564445, 0.015296314842998981, -0.014062526635825634, 0.0194089412689209, 0.01863948069512844, -0.021624451503157616, 0.020417196676135063, -0.003482465399429202, -0.00159281340893358, 0.019448740407824516, 0.02990276925265789, -0.008265051059424877, 0.025206416845321655, -0.00965140387415886, 0.03855254873633385, -0.0014991183998063207, -0.021014191210269928, -0.00046640163054689765, -0.010911724530160427, -0.001284366357140243, -0.026970865204930305, 0.008636514656245708, -0.0027627558447420597, -0.02054986171424389, 0.03918934240937233, 0.006792465690523386, 0.02756785973906517, 0.023123569786548615, 0.038340285420417786, -0.004314940422773361, 0.0010629810858517885, 0.0006318187224678695, 0.009014610201120377, -0.013332867994904518, 0.00012136806617490947, -0.02200918085873127, 0.0028108470141887665, -0.006540401838719845, -0.009206974878907204, -0.010367796756327152, 0.013074169866740704, -0.007542025297880173, 0.0002694764989428222, 0.0025322497822344303, -0.01660970225930214, 0.02169078402221203, 0.002185661578550935, 0.003318292088806629, -0.029292508959770203, -0.03441338986158371, 0.02471555396914482, 0.01063976064324379, -0.02295110560953617, -0.0393485426902771, -0.018347617238759995, -0.0003329071041662246, -0.008371183648705482, 0.014606455340981483, 0.001514043309725821, 0.03136209025979042, 0.0019385723862797022, 0.014672787860035896, 0.01538918074220419, -0.009638137184083462, 0.020284531638026237, -5.551474714593496e-06, 0.004802485462278128, -0.0012188629480078816, -0.0010405938373878598, -0.0026184823364019394, -0.00472620315849781, -0.00921360868960619, 0.018772147595882416, -0.00024169968673959374, 0.0030728611163794994, -0.010984690859913826, -0.023548100143671036, -0.010785693302750587, -0.01760469190776348, -0.002893762895837426, -0.018095552921295166, 0.0011716008884832263, -0.008835512213408947, -0.006891964934766293, -0.02222144603729248, -0.03512978553771973, 0.022539842873811722, -0.01589330844581127, -0.011196955107152462, -0.02963743917644024, -0.0073894597589969635, -0.011382686905562878, 0.07243528217077255, 0.01641070283949375, 0.0013158743968233466, 0.017617957666516304, 0.018931346014142036, -0.003086127806454897, -0.01817515306174755, 7.8251825470943e-05, 0.01967427134513855, -0.00937280710786581, 0.012795573100447655, 0.0064342692494392395, 0.028469983488321304, 0.005926824640482664, -0.005681393668055534, 0.0037776457611471415, 0.008948277682065964, -0.011117355898022652, 0.013704330660402775, -0.006228638347238302, -0.016808699816465378, 0.001168284215964377, 0.007754289545118809, 0.01630457118153572, 0.025723811239004135, 0.005273447837680578, 0.02133258804678917, 0.01821495220065117, 0.023070504888892174, -0.020908059552311897, -0.016848498955368996, 0.019647737964987755, 0.0058538587763905525, -0.002824113704264164, -0.002902054460719228, 0.004809118807315826, 0.0012296419590711594, 0.0024427007883787155, 0.026188140735030174, -0.012954771518707275, 0.026957599446177483, 0.014885052107274532, 0.002965070540085435, -0.024874752387404442, 0.0012968038208782673, -0.006971564143896103, -0.0035322150215506554, 0.028576117008924484, -0.0138369956985116, -0.025352347642183304, 0.037040166556835175, -0.005203798413276672, -0.028629181906580925, -0.01915687695145607, 0.010546895675361156, 0.014765653759241104, -0.000273000419838354, -0.014128860086202621, -0.00039903249125927687, -0.015269781462848186, 0.010447395965456963, -0.008749280124902725, 0.001444394001737237, -0.012298078276216984, 0.01505751721560955, -0.023999162018299103, -0.010573428124189377, -0.015694310888648033, -0.016185171902179718, 0.01513711642473936, -0.007296594325453043, -0.012291444465517998, -0.010978057980537415, 0.015535112470388412, 0.003104369156062603, 0.021067257970571518, 0.021040724590420723, -0.023375634104013443, 0.0028954213485121727, 0.03505018353462219, 0.010520362295210361, 0.004756052978336811, -0.005313247442245483, -0.004848918411880732, -0.009604970924556255, -0.0024078760761767626, 0.03114982321858406, -0.026042208075523376, -0.021505052223801613, 0.025166617706418037, 0.006832265295088291, -0.0003154947771690786, 0.0008896869840100408, -0.012125613167881966, -0.00332990032620728, -0.015813710168004036, 0.01749856024980545, 0.004649920389056206, -0.02169078402221203, -0.011376054026186466, 0.01676890067756176, -0.021584652364253998, -0.004198858514428139, -0.007336393930017948, 0.0031939183827489614, 0.003953427542001009, 0.01294813770800829, 0.02273884043097496, -0.0322907455265522, 0.00025372247910127044, 0.029159843921661377, -0.03711976483464241, 0.006285021081566811, 0.004142475314438343, -0.0025471746921539307, 0.027435194700956345, -0.004510622005909681, 0.02486148662865162, 0.013485432602465153, -0.03223767876625061, 0.01424825843423605, -0.045557282865047455, 0.039322011172771454, 0.010387697257101536, -0.008517115376889706, 0.0042884075082838535, 0.010294831357896328, -0.013511965982615948, 0.0016790458466857672, 0.01276903972029686, 0.016702568158507347, 0.01879867911338806, -0.012032747268676758, -0.004686403553932905, -0.03385619819164276, -0.005452545825392008, 0.009737636893987656, 0.01549531240016222, -0.017578158527612686, -0.011177055537700653, -0.009585071355104446, 0.0076680569909513, 0.023216435685753822, -0.02580341137945652, -0.004991533700376749, -0.04232024773955345, 0.009021244011819363, 0.015216715633869171, -0.012583308853209019, 0.017816957086324692, 0.0018772146431729198, -0.009306474588811398, -0.017193429172039032, -0.00970447063446045, 0.005406112875789404, -0.013584931381046772, -0.014009460806846619, 0.0037643793039023876, 0.017671024426817894, 0.014142125844955444, 0.03006196767091751, -0.003628397360444069, 0.010095832869410515, 0.02423795871436596, -0.010009600780904293, -0.02054986171424389, -0.01440745685249567, 0.013584931381046772, -0.005054549779742956, 0.01828128471970558, 0.02393282949924469, 0.010142265819013119, 0.010606594383716583, 0.00411262596026063, 0.010294831357896328, 0.03956080600619316, 0.005071132909506559, 0.006898598279803991, -0.013273168355226517, -0.025604411959648132, -0.013286435045301914, 0.005734459962695837, -0.02425122633576393, 0.009445772506296635, -0.00947230588644743, 0.012059280648827553, 0.006616684142500162, 0.020748861134052277, -0.0053729466162621975, -0.013850262388586998, 0.01692809909582138, -0.006550351623445749, 0.018599681556224823, -0.033670466393232346, 0.0048124357126653194, -0.005343096796423197, -0.019037477672100067, -7.291411748155951e-05, -0.0029982367996126413, 0.014593188650906086, 0.015150383114814758, -0.00955190509557724, -0.013664530590176582, -0.009644770994782448, -0.020178399980068207, 0.006348037160933018, -0.006550351623445749, -0.01992633566260338, 0.007276694290339947, -0.034758321940898895, -0.01650356873869896, -0.019554872065782547, -0.007674690335988998, -0.025710545480251312, -0.007057796698063612, 0.019024211913347244, -0.005120882298797369, 0.018241485580801964, -0.004029709845781326, -0.028682248666882515, 0.009260041639208794, 0.00568471010774374, 0.01497791800647974, -0.016370903700590134, 0.025869743898510933, 0.040781326591968536, -0.006576884537935257, -0.016317838802933693, -0.007157295476645231, -0.007959920912981033, -0.015402447432279587, 0.033564332872629166, 0.011482185684144497, -0.009153909049928188, 0.00261516566388309, 0.009598338045179844, 0.002847330179065466, -0.005339780356734991, -0.00469635333865881, 0.009445772506296635, 0.0035786477383226156, 0.0033332169987261295, -0.014778919517993927, -0.022805172950029373, -0.010845392011106014, 0.029000645503401756, -0.005183898378163576, -0.004693036898970604, -0.0003360164409969002, -0.018413949757814407, -0.01760469190776348, 0.03749122843146324, -0.017299560829997063, 0.029717037454247475, 0.007847155444324017, -0.021359121426939964, -0.02247351035475731, -0.0010115732438862324, -0.016437236219644547, -0.009386073797941208, 0.012079180218279362, 0.026506537571549416, -0.027130063623189926, 0.016676034778356552, 0.011495452374219894, 0.006623317487537861, -0.004981583915650845, -0.017299560829997063, -0.0009261699742637575, 0.03409499302506447, -0.029186377301812172, -0.004683086648583412, -0.00041623754077591, 0.0025720493867993355, 0.02118665538728237, -0.0036250806879252195, 0.0002367247361689806, -0.014659521169960499, -0.0225265771150589, -0.005031333304941654, 0.025405414402484894, 0.017206694930791855, -0.021876515820622444, 0.003837345167994499, -0.03006196767091751, 0.0036250806879252195, -0.026453470811247826, 0.01848028227686882, 0.018029220402240753, 0.002545516472309828, -0.016490302979946136, 0.015017717145383358, -0.000817135616671294, 0.01692809909582138, -0.003406182862818241, -0.016118839383125305, 0.015349380671977997, 0.012158779427409172, -0.015163649804890156, -0.004119259305298328, -0.012317977845668793, 0.0064608026295900345, -0.012072546407580376, 4.8259613549817e-07, -0.003873828100040555, -0.01915687695145607, 0.02544521354138851, -0.013571665622293949, -0.018188418820500374, -0.004676453769207001, -0.00830485112965107, 0.004052926320582628, 0.02464922145009041, -0.018931346014142036, 0.029106777161359787, 0.0194089412689209, 0.0027693891897797585, -0.007999720983207226, -0.016888298094272614, 0.01448705606162548, -0.008470682427287102, 0.006016373634338379, 0.0074159931391477585, -0.025843210518360138, 0.007356293499469757, 0.010268297977745533, -0.0028058721218258142, 0.024476757273077965, -0.006175572052598, -0.02373383194208145, -0.030433431267738342, 0.026877999305725098, 0.0022752108052372932, -0.006898598279803991, 0.007396093104034662, -0.005896974820643663, 0.0005406112759374082, 0.0033000505063682795, -0.000873932964168489, -0.006225321441888809, 0.016808699816465378, 0.020443730056285858, 0.006003106944262981, 0.0176444910466671, -0.013956394977867603, 0.0027926056645810604, 0.003535531461238861, -0.008689580485224724, -0.0254982803016901, -0.017299560829997063, -0.008994710631668568, 0.000636379118077457, -0.001344894990324974, -0.030247699469327927, -0.019793670624494553, -0.0018788729794323444, -0.017843488603830338, -0.01816188544034958, -0.01331960130482912, 0.01744549348950386, 0.01931607536971569, -0.009770803153514862, -0.007867055013775826, 0.012934871949255466, 0.001996613573282957, 0.0008478144882246852, -0.016742367297410965, -0.009803969413042068, 0.00020697867148555815, -0.006739399861544371, 0.011827115900814533, 0.0116015849635005, -0.02070906013250351, 0.003986593801528215, 0.021213188767433167, 0.0029319042805582285, -0.011628118343651295, -0.002084504347294569, -0.024476757273077965, 0.00019578503270167857, -0.03022116608917713, -0.005084399599581957, 0.0015455513494089246, 0.0015754010528326035, 0.00748895900323987, -0.02995583601295948, -0.01251034252345562, -0.004109309054911137, 0.02533908188343048, -0.011966414749622345, -0.0004871305718552321, -0.01103112380951643, -0.0025538080371916294, 0.003291758941486478, -0.018467016518115997, 0.0012279836228117347, -0.029159843921661377, -0.007124129217118025, 0.019236475229263306, 0.014261525124311447, -0.005644910503178835, 0.022247979417443275, -0.01193988136947155, 0.005445912480354309, -0.004520571790635586, -0.01365126483142376, -0.016994431614875793, -0.012795573100447655, 0.007906855084002018, -0.008105852641165257, -0.0006529622478410602, -0.00939933955669403, 0.014208459295332432, -0.034758321940898895, 0.013445633463561535, -0.0023398851044476032, -0.020536595955491066, -0.026864733546972275, 0.035182852298021317, -0.002404559403657913, -0.011893448419868946, -0.012317977845668793, -0.01905074343085289, -0.012815472669899464, 0.02247351035475731, -0.026506537571549416, -0.0022619441151618958, -0.029319042339920998, -0.017458759248256683, -0.00453052157536149, 0.015959640964865685, -0.03831375390291214, -0.017259761691093445, 0.0020015884656459093, -0.007840522564947605, 0.014102326706051826, 0.19878576695919037, 0.009956534020602703, 0.008198718540370464, 0.047732993960380554, 0.010308098047971725, 0.006109239533543587, 0.02569727785885334, 0.007250161375850439, 0.005435962695628405, 0.01828128471970558, 0.001746207708492875, 0.003452615812420845, -0.007236894685775042, 0.010235131718218327, 0.003280150704085827, -0.02003246732056141, -0.04009146988391876, -0.013996194116771221, -0.023906296119093895, -0.011183689348399639, -0.004815752152353525, -0.0028556217439472675, -0.025100283324718475, 0.012264912016689777, 0.01992633566260338, 0.009757536463439465, -0.009246774949133396, -0.004663187079131603, 0.03165395185351372, -0.0032403510995209217, -0.0009651404106989503, -0.014341124333441257, 0.00797318760305643, -0.020337598398327827, -0.018294552341103554, 0.01020196545869112, -0.009876934811472893, -0.00427182437852025, 0.04372650012373924, 0.017763890326023102, 0.005293347407132387, 0.017923088744282722, -0.008338017389178276, -0.017312828451395035, -0.013770663179457188, 0.023813430219888687, -0.010852025821805, -0.00575104309245944, 0.0001388840319123119, 0.005860491655766964, -0.05582557991147041, -0.008709480054676533, 0.02870878204703331, 0.028125053271651268, 0.01203938014805317, 0.00485555175691843, 0.026082007214426994, 0.008497215807437897, 0.005147415678948164, -0.00914064235985279, -0.026227939873933792, 0.017763890326023102, -0.024728821590542793, 0.01541571319103241, -0.01890481263399124, 0.012762406840920448, -0.02724946290254593, -0.021505052223801613, -0.010679560713469982, -0.008782446384429932, 0.01822821982204914, -0.017843488603830338, 0.005034650210291147, 0.014089060015976429, -0.023813430219888687, -0.025100283324718475, 0.011946515180170536, 0.025829942896962166, 0.01646376959979534, -0.008318117819726467, -0.004026393406093121, 0.008417616598308086, -0.02117338962852955, -0.013452266342937946, -0.0138369956985116, -0.031441688537597656, 0.011250021867454052, -0.015813710168004036, 0.0034393491223454475, -0.0045272051356732845, 0.010832125321030617, -0.01178068295121193, -0.006692966911941767, -0.014022727496922016, -0.0033481416758149862, 0.020470263436436653, 0.01497791800647974, 0.020377397537231445, -0.003086127806454897, 0.015654511749744415, -0.01440745685249567, -0.03390926495194435, 0.005067816469818354, 0.003389599733054638, -0.0063049206510186195, 0.008052786812186241, -0.012815472669899464, -0.0015762301627546549, -0.005996473599225283, -0.0005335634341463447, -0.020430464297533035, -0.007727756630629301, 0.02839038521051407, -0.014964651316404343, 0.028523050248622894, 0.0010679560946300626, 0.004066193010658026, -0.018201686441898346, 0.010308098047971725, -0.0058273253962397575, -0.011654650792479515, -0.023587899282574654, 0.0005729484837502241, -0.003644980490207672, -0.01712709665298462, 0.010427496396005154, -0.005422696005553007, 0.021916314959526062, 0.005999790504574776, -0.040356799960136414, -0.0007110033766366541, -0.014712586998939514, 0.02418489381670952, 0.0037477961741387844, -0.013929861597716808, 0.005969940684735775, -0.0002873034100048244, 0.0008656413992866874, 0.00445092236623168, -0.006268437951803207, -0.0006902744062244892, -0.02892104536294937, 0.030459964647889137, 0.00825178436934948, -0.012410843744874, -0.018347617238759995, 0.007435892708599567, -0.0010140608064830303, -0.019395673647522926, -0.015017717145383358, -0.006142405793070793, -0.02056312933564186, 0.013359400443732738, -0.005167315248399973, 0.017352627590298653, -0.010646394453942776, -0.01920994184911251, -0.017379160970449448, -0.007329760584980249, 0.01150208618491888, -0.018758879974484444, 0.019714070484042168, 0.022287778556346893, -0.008006353862583637, -0.02594934217631817, 0.011919981800019741, -0.17193429172039032, 0.030433431267738342, 0.00043323528370819986, -0.019793670624494553, 0.0060926564037799835, 0.025975875556468964, 0.023455234244465828, -0.0017843489767983556, 0.001036448054946959, 0.009273308329284191, 0.008789079263806343, 0.005727826617658138, -0.05529491603374481, -0.02539214864373207, -0.01176078338176012, 0.018413949757814407, -0.012709340080618858, 0.002162445103749633, 0.014261525124311447, 0.017896555364131927, 0.028363851830363274, -0.016211705282330513, 0.014540121890604496, -0.011807216331362724, 0.002610190771520138, 0.01497791800647974, -0.02289803884923458, -0.0022669192403554916, -0.010135632939636707, -0.019448740407824516, -0.021053990349173546, -0.006039590109139681, -0.004298357293009758, 0.006158988922834396, 0.016530102118849754, 0.027647458016872406, -0.01069282740354538, -0.012284811586141586, -0.019740603864192963, 0.036058440804481506, 0.002411192748695612, 0.022088780999183655, 0.004935150966048241, 0.004368006717413664, -0.016569901257753372, 0.038181088864803314, -0.008881945163011551, 0.002946829190477729, 0.0017030914314091206, -0.03191928192973137, 0.010493828915059566, -0.01676890067756176, -0.00294019584544003, -0.005920191295444965, -0.0034625655971467495, -0.00045064761070534587, -0.00066995999077335, 0.009565171785652637, 0.01087192539125681, 0.008006353862583637, -0.011376054026186466, -0.034386858344078064, 0.008404349908232689, 0.013770663179457188, -0.00482570193707943, -0.010792326182126999, -0.008682946674525738, -0.00039633773849345744, -0.0415242537856102, 0.011283188126981258, 0.0023498348891735077, -0.02969050593674183, 0.004915251396596432, -0.024888020008802414, 0.017710823565721512, 0.016755633056163788, -0.011243388056755066, 0.01821495220065117, 0.003883778117597103, -0.020324330776929855, -0.02179691754281521, 0.035740043967962265, -0.008530382066965103, 0.017671024426817894, 0.007787455804646015, 0.051474153995513916, -0.007535391952842474, -0.0019949551206082106, -0.02257964201271534, -0.019528338685631752, 0.013996194116771221, -0.021558118984103203, 0.007886954583227634, -0.022354111075401306, -0.016012707725167274, 0.01061322819441557, -0.004553738050162792, 0.013180302456021309, 0.0028854713309556246, -0.022340845316648483, 0.02077539451420307, 0.0020529963076114655, -0.03375006467103958, 0.01890481263399124, 0.03168048709630966, 0.004245290998369455, 0.00971110351383686, 0.01598617434501648, 0.015229982323944569, 0.0009560196776874363, -0.022566376253962517, 0.01609230600297451, 0.01359819807112217, 0.011847015470266342, 0.00035322149051353335, 0.005920191295444965, 0.0057178763672709465, -0.023428700864315033, 0.0398792028427124, -0.014619721099734306, 0.03656256943941116, -0.01538918074220419, -0.02886798046529293, 0.01292823813855648, 0.001175746670924127, -0.000931974092964083, -0.09456386417150497, -0.017219962552189827, 0.01093162503093481, 0.028523050248622894, -0.0031375354155898094, 0.02309703826904297, 0.026824934408068657, 0.022539842873811722, 0.007303227670490742, 0.058744218200445175, -0.006616684142500162, -0.018825212493538857, -0.014062526635825634, -0.00822525192052126, 0.028416918590664864, -8.213850378524512e-05, -0.017763890326023102, -0.014433990232646465, -0.037252429872751236, 0.005731143057346344, 0.005117565859109163, -0.007144029252231121, -0.0062220050022006035, -0.009538638405501842, 0.0050014834851026535, -0.003970010671764612, -0.0254982803016901, 0.03173355013132095, 0.013850262388586998, 0.0179098229855299, 0.01505751721560955, -0.01128982100635767, 0.01718016341328621, -0.04797178879380226, -0.008284950628876686, -0.004736152943223715, -0.025776877999305725, 0.006636584177613258, 0.0161453727632761, -0.025989141315221786, -0.0030479864217340946, 0.019236475229263306, 0.003086127806454897, -0.01603924110531807, 0.02778012491762638, -0.00724352803081274, -0.005697976797819138, 0.010394330136477947, -0.0065470351837575436, -0.03327247127890587, -0.017060764133930206, 0.007542025297880173, -0.0032337179873138666, -0.014858518727123737, 0.02892104536294937, -0.01473912037909031, 0.006812365725636482, 0.015269781462848186, -0.011800582520663738, 0.008941644802689552, -0.007926754653453827, 0.0024095342960208654, -0.013943128287792206, 0.03239687904715538, 0.0006090168608352542, 0.0032718591392040253, -0.014911585487425327, -0.01594637520611286, -0.0017014330951496959, -0.029000645503401756, -0.010593327693641186, 0.024277759715914726, -0.009923367761075497, 0.02013860084116459, -0.01873234659433365, 0.0035156316589564085, -0.007542025297880173, -0.011548519134521484, 0.03422766178846359, -0.0168219655752182, -0.0379953570663929, -0.01582697592675686, -0.004135842435061932, -0.0005231989780440927, 0.014632987789809704, 0.007674690335988998, 0.010653027333319187, -0.009153909049928188, 0.031441688537597656, -0.014221725054085255, 0.0007412676350213587, 0.026174873113632202, 0.016052506864070892, -0.029823170974850655, -0.014035994186997414, 0.0222612451761961, 0.01755162514746189, -0.010274930857121944, 0.014619721099734306, -0.015972908586263657, -0.012185312807559967, -0.007336393930017948, -0.05927487835288048, 0.031176356598734856, -0.012384310364723206, -0.012702707201242447, 0.032051946967840195, 0.013047637417912483, 0.011455653235316277, -0.012987937778234482, -0.015216715633869171, 0.002051337854936719, -0.023919561877846718, 0.02555134706199169, -0.01069282740354538, -0.015760643407702446, -0.006182205397635698, -0.010593327693641186, 0.013538499362766743, 0.01367779728025198, 0.025989141315221786, 0.011979681439697742, 0.01641070283949375, -0.010898458771407604, 0.03152128681540489, 0.0004887888790108263, -0.008357916958630085, -0.007608357816934586, -0.013140503317117691, 0.00921360868960619, -0.017724091187119484, -0.006285021081566811, -0.006427636370062828, -0.022699041292071342, 0.016543369740247726, 0.01920994184911251, -0.0015198474284261465, -0.040728263556957245, 0.003064569551497698, 0.010792326182126999, 0.011774050071835518, -0.02828425168991089, -0.024118561297655106, -0.020748861134052277, -0.0008896869840100408, -0.005011433735489845, -0.0006852994556538761, 4.785798955708742e-05, -0.010699460282921791, 0.019554872065782547, 0.022102046757936478, -0.009571804665029049, 0.007535391952842474, 0.008012986741960049, 0.007469058968126774, -0.025047218427062035, -0.0085436487570405, -0.025776877999305725, 0.02710353024303913, 0.005316563881933689, 0.0020529963076114655, -0.01389006245881319, 0.017525091767311096, 0.016649501398205757, -0.004344790242612362, 0.020496796816587448, 0.02886798046529293, -0.02373383194208145, -0.017326094210147858, -0.005691343452781439, 0.0012926580384373665, -0.04194878414273262, -0.010500462725758553, 0.007687957026064396, 0.020908059552311897, -0.00021371558250393718, 0.0176444910466671, -0.0018059071153402328, -0.009266674518585205, 0.016012707725167274, -0.013982927426695824, 0.023349100723862648, 0.010374430567026138, 0.027912789955735207, -0.02990276925265789, 0.013438999652862549, 0.011051023378968239, 0.025843210518360138, -0.013863529078662395, -0.003807495580986142, 0.0006222833762876689, 0.018652748316526413, -0.010732626542448997, -0.007296594325453043, -0.00451725535094738, 0.004139158874750137, -0.003986593801528215, 0.003180651692673564, 0.0017743990756571293, 0.01733936183154583, 0.006550351623445749, 0.036827899515628815, 0.010175432078540325, -0.007482325658202171, -0.0050280168652534485, -0.02393282949924469, 0.0007391947438009083, -0.0006857140106149018, -0.03271527588367462, -0.004590221215039492, -0.018400683999061584, -0.0011467260774224997, 0.012583308853209019, -0.013293067924678326, -0.02257964201271534, 0.018612949177622795, -0.003436032449826598, 0.0045736380852758884, -0.009823868982493877, -0.030964093282818794, -0.032158080488443375, 0.033139802515506744, 0.008676313795149326, -0.0059599909000098705, 0.01873234659433365, -0.018758879974484444, 0.02651980333030224, -0.008059419691562653, 0.024848220869898796, -0.02876184694468975, 0.00015557084407191724, -0.010447395965456963, 0.012225111946463585, -0.01733936183154583, -0.013153769075870514, -0.004829018842428923, -0.003489098744466901, -0.004129209090024233, 0.00908094272017479, 0.021664250642061234, -0.005409429781138897, 0.0512884259223938, -0.009578438475728035, -0.010394330136477947, 0.017790423706173897, -0.0032055266201496124, 0.004815752152353525, 0.0044177561067044735, 0.00986366905272007, -0.02024473249912262, -0.013153769075870514, 0.020178399980068207, -0.020165132358670235, 0.015813710168004036, -0.00020418026542756706, -0.03072529472410679, -0.006288337521255016, -0.029239442199468613, 0.02377363108098507, -0.030513029545545578, 0.0005812400486320257, 0.03640337288379669, 0.006374570075422525, 0.01300783734768629, -0.002515666652470827, -0.008278317749500275, -0.017206694930791855, 0.013538499362766743, -0.003220451297238469, -0.007455792743712664, -0.015641244128346443, 0.02621467225253582, 0.009127375669777393, -0.023322569206357002, -0.019740603864192963, 0.01217204611748457, -0.024874752387404442, -0.013969661667943, -0.0022553110029548407, 0.010454029776155949, 0.005276764277368784, 0.003220451297238469, 0.01753835938870907, -0.00971110351383686, -0.04009146988391876, 0.040197599679231644, 0.011389320716261864, -0.014792186208069324, -0.003691413439810276, 0.0035852810833603144]" +13,chocolate,"[0.0015591585543006659, -0.013005273416638374, -0.0030542202293872833, -0.02935640700161457, -0.020639220252633095, -0.00020300709002185613, -0.023523584008216858, -0.032330505549907684, -0.0023219124414026737, -0.019382920116186142, 0.011947672814130783, 0.029100019484758377, -0.024036359041929245, -0.007672406267374754, -0.02270314283668995, 0.008992803283035755, 0.04984179511666298, 0.02016490325331688, 0.018780408427119255, -0.0071468111127614975, -0.04115024954080582, 0.009165865369141102, 0.021395565941929817, -0.009358156472444534, -0.004762404132634401, 0.011268245056271553, 0.014396176673471928, -0.040714386850595474, -0.003257727948948741, -0.020921247079968452, 0.03533024340867996, -0.008678728714585304, -0.02699763886630535, -0.007409608457237482, -0.016319086775183678, -0.0017530518816784024, -0.014870494604110718, -0.006595577113330364, 0.004964309278875589, -0.014062873087823391, 0.006275092251598835, 0.021510940045118332, 0.008851789869368076, -0.011498994193971157, -0.02958715707063675, 0.00266643357463181, -0.00915304571390152, -0.00922355242073536, -0.022177547216415405, -0.011454126797616482, 0.022446755319833755, 0.026895083487033844, -0.019946973770856857, -0.007108352612704039, -0.00031988389673642814, -0.01123619731515646, -0.010749059729278088, -0.004092590883374214, 0.028664160519838333, -0.009614543989300728, 0.012704017572104931, 0.007524983026087284, -0.024344025179743767, 0.028305217623710632, 0.009614543989300728, -0.009345336817204952, -0.0031760043930262327, 0.017818953841924667, 0.009518398903310299, 0.014293622225522995, -0.003951577469706535, 0.02048538811504841, -0.007967252284288406, 0.010018355213105679, 0.009845293127000332, 0.006079596467316151, -0.016408821567893028, 0.004227194469422102, 0.0023026831913739443, -0.006432130001485348, 0.027254026383161545, -0.02686944603919983, -0.0062270197086036205, 0.022498032078146935, 0.009396614506840706, 0.009326107800006866, -0.019549572840332985, 0.004400256089866161, 0.0019277160754427314, -0.012992453761398792, -0.005518748424947262, 0.007018616888672113, 0.01662675105035305, 0.005787955597043037, -0.029561517760157585, 0.0008268507663160563, 0.01219124160706997, 0.045867785811424255, 0.0015094834379851818, -0.007922383956611156, 0.008460798300802708, 0.02840777300298214, -0.006339189130812883, -0.024997813627123833, -0.0036823702976107597, -0.011505404487252235, -0.002741747535765171, -0.01440899632871151, 0.036996763199567795, -0.006851965095847845, -0.013191154226660728, 0.043380822986364365, 0.013665472157299519, -0.028664160519838333, -0.01272965595126152, 0.001958162058144808, 0.004018879495561123, -0.007999300956726074, 0.0059738364070653915, -0.02093406766653061, -0.0071468111127614975, 0.014396176673471928, 0.024997813627123833, -0.004207965452224016, 0.032868921756744385, 0.008262097835540771, 0.006063572596758604, -0.023395389318466187, -0.027023278176784515, -0.014101331122219563, 0.019216269254684448, 0.023523584008216858, 0.015370450913906097, -0.0020254638511687517, -0.02386970818042755, 0.02056230418384075, -0.0325356163084507, 0.017229262739419937, -0.003781720530241728, -0.002220959635451436, 0.008755644783377647, 0.033817555755376816, -0.012043818831443787, 0.0017306179506704211, -0.0028795558027923107, 0.03561227023601532, 0.01871631294488907, 0.014319260604679585, -0.0020671270322054625, -0.011255426332354546, 0.021677590906620026, -0.0037689011078327894, 0.03904786705970764, -0.012716836296021938, 0.0058648716658353806, 0.01209509652107954, -0.010229874402284622, 0.017652302980422974, -0.019100893288850784, 0.006470588035881519, 0.0008917489321902394, 0.003967601805925369, 0.010499081574380398, -0.01798560656607151, 0.009114587679505348, 0.03071526251733303, 0.044919148087501526, -0.004429100081324577, 0.010819566436111927, -0.002509396057575941, -0.0203828327357769, 0.02804883010685444, -0.011114412918686867, 0.02863852120935917, -0.0017450397135689855, 0.016370363533496857, 0.010652914643287659, 0.006871194113045931, -0.021485300734639168, -0.013357806019484997, -0.00980683509260416, 0.008922296576201916, 0.033227864652872086, 0.013857762329280376, -0.004089386202394962, 0.006460973527282476, 0.004416280426084995, -0.024344025179743767, 0.024882439523935318, -0.0053168428130447865, 0.012210470624268055, 0.015242257155478, 0.0037432624958455563, -0.009338927455246449, -0.6789150238037109, -0.009678641334176064, 0.015485825017094612, -0.000691846536938101, 0.021985257044434547, 0.04891879856586456, 0.028484689071774483, 0.02279287949204445, -0.008941525593400002, -0.018972700461745262, -0.0028731462080031633, 0.009922209195792675, 0.008326195180416107, -0.01408851146697998, -0.004993153270334005, -0.022446755319833755, 0.02020336128771305, -0.015011508017778397, -0.027074554935097694, 0.01126183569431305, -0.0007667598547413945, 0.013280889950692654, -0.00686478428542614, 0.011351571418344975, 0.016819043084979057, 0.01562683843076229, 0.0006806295714341104, -0.02206217311322689, -0.010575998574495316, 0.0014517961535602808, -0.010159367695450783, 0.02238265797495842, 0.014011595398187637, 0.013652652502059937, 0.05958453193306923, 0.0023010808508843184, -0.002387611661106348, 0.04053491726517677, 0.008441569283604622, 0.044098708778619766, -0.02370305545628071, 0.00686478428542614, 0.01626780815422535, -0.017818953841924667, -0.0008196398848667741, 0.005570025648921728, 0.02710019424557686, 0.015165340155363083, 0.001309180399402976, -0.02161349542438984, 0.013896220363676548, -0.010268333368003368, -0.004115024581551552, -0.02102380245923996, 0.007896745577454567, 0.002361973049119115, 0.03684293106198311, -0.019049616530537605, -0.009383794851601124, 0.024997813627123833, -0.0011088773608207703, 0.002809049328789115, -0.04153482988476753, -0.03356116637587547, -0.015101243741810322, 0.0023603704757988453, -0.012928356416523457, 0.002384406980127096, 0.019241906702518463, -0.0016360748559236526, 0.003371500177308917, 0.01037729810923338, -0.0035189231857657433, -0.009486350230872631, 0.023446667939424515, 0.00429129134863615, 0.010313200764358044, -0.00629752641543746, -0.017972787842154503, -0.00029985359287820756, 0.0035028988495469093, 0.006621215958148241, -0.009672231040894985, 0.00819800142198801, 0.028664160519838333, -0.017652302980422974, -0.03412522003054619, -0.006502636708319187, 0.00225461064837873, 0.017011333256959915, 0.0037849254440516233, 0.024408122524619102, -0.021536577492952347, -0.0050925035029649734, -0.014780758880078793, -0.00011537452519405633, -0.019370101392269135, -0.01776767708361149, 0.0034516211599111557, 0.004986743442714214, -0.007877516560256481, 0.01630626618862152, -0.02138274535536766, 0.024933718144893646, 0.013780846260488033, 0.023395389318466187, -0.007640357594937086, 0.036766014993190765, 0.04771377518773079, -0.04271421208977699, 0.00980683509260416, -0.02057512477040291, -0.010319610126316547, 0.0015767852310091257, 0.015960142016410828, -0.01793432980775833, -0.0018924627220258117, -0.000514378072693944, 0.0023411414586007595, -0.01843428611755371, 0.013960317708551884, 0.0018491973169147968, -0.006608396302908659, -0.0030590274836868048, 0.006601986940950155, 0.010755470022559166, -0.030074292793869972, -0.02383125014603138, -0.01952393352985382, -0.026536140590906143, 0.007845467887818813, 0.028023190796375275, 0.009031261317431927, -0.01884450577199459, 0.020600762218236923, 0.004406665917485952, 0.01134516205638647, -0.028715437278151512, -0.006300731096416712, -0.016998514533042908, -0.0006221411167643964, 0.013844943605363369, -0.005999475251883268, 0.024946536868810654, 0.015524283982813358, -0.04530373215675354, -0.029971737414598465, -0.021318648010492325, -0.028843631967902184, -0.003720828564837575, 0.005233516916632652, -0.0003393132647033781, -0.02356204204261303, 0.020190542563796043, 0.022574950009584427, -0.02279287949204445, -0.008845380507409573, -0.012377122417092323, 0.020062347874045372, 0.0025398419238626957, 0.020677678287029266, 0.005326457321643829, -0.01675494574010372, -0.01033242978155613, -0.004342569038271904, -0.031920284032821655, -0.0014654167462140322, 0.007428837474435568, -0.018959879875183105, -0.015011508017778397, -0.010185007005929947, -0.012236109934747219, -0.020780233666300774, -0.00011307104432489723, -0.001988608157262206, 0.027894996106624603, -0.015114063397049904, -0.015575560741126537, -0.0012579028261825442, 0.009076129645109177, 0.00389709509909153, -0.004073361866176128, -0.03868892416357994, 0.0069224718026816845, 0.025074729695916176, 0.007108352612704039, 0.000426645390689373, 0.0450473427772522, -0.007383969612419605, 0.008210820145905018, 0.002153657842427492, 0.01134516205638647, 0.012139963917434216, 0.0070378463715314865, -0.0029612795915454626, -0.022856974974274635, 0.007896745577454567, 0.0030702443327754736, 0.009691460058093071, 0.01907525584101677, 0.02912565879523754, -0.003579815151169896, -0.0075826700776815414, -0.00227063475176692, 0.011524633504450321, -0.04748302698135376, 0.011242606677114964, -0.025113189592957497, 0.02710019424557686, 0.004640619736164808, -7.686627213843167e-05, -0.0004951489972881973, -0.014011595398187637, -0.009063309989869595, 0.022856974974274635, 0.029458962380886078, -0.002852314617484808, -0.0018459924031049013, -0.015601200051605701, 0.0012522944016382098, 0.019177809357643127, -0.010883663780987263, 0.011556682176887989, -0.039714474231004715, -0.010326020419597626, 0.034458525478839874, 0.013947498053312302, 0.027920635417103767, -0.0007747720228508115, -0.021639132872223854, -0.005121347028762102, 0.010358069092035294, 0.006621215958148241, 0.015344812534749508, -0.018139438703656197, -0.008089036680758, 0.01848556287586689, -0.02201089635491371, 0.02474142611026764, 0.028664160519838333, -0.0024773473851382732, 0.03602249175310135, 0.01852402091026306, 0.022228825837373734, -0.001881245756521821, -0.004848935175687075, 0.00016685239097569138, 0.023036446422338486, 0.003240101272240281, -0.007063484750688076, -0.001326005905866623, 0.0007411210681311786, -0.0319972038269043, -0.0035734055563807487, 0.0027866153977811337, -0.008422340266406536, 0.03248433768749237, 0.014191066846251488, 0.023549223318696022, 0.013870581984519958, 0.01305014081299305, 0.0046342103742063046, -0.010838795453310013, -0.014267982915043831, 0.0002321511710761115, 0.010633685626089573, -0.013691110536456108, -0.016280626878142357, 0.0036439120303839445, 0.006198176182806492, 0.018870145082473755, 8.137309487210587e-05, -0.012812982313334942, 0.0028795558027923107, 0.007435247302055359, 0.011652827262878418, -0.008287737146019936, -0.001235468895174563, 0.015819130465388298, 0.011082364246249199, 0.005871281493455172, -0.01590886525809765, 0.006300731096416712, -0.007460886146873236, 0.005877691321074963, -0.010095271281898022, -0.0025077934842556715, 0.00940302386879921, 0.006890423130244017, 0.013447541743516922, 0.013242431916296482, 0.01898551918566227, 0.007967252284288406, -0.008287737146019936, -0.03035631962120533, -0.0017947148298844695, 0.0031135098543018103, -0.013921859674155712, 0.015114063397049904, 0.0070250267162919044, 0.011255426332354546, -0.008056988008320332, -0.012607871554791927, -0.0013532470911741257, 0.017959967255592346, 0.0019373305840417743, -0.008300555869936943, 0.00015253073070198298, 0.001855607028119266, -0.023164641112089157, 0.010499081574380398, 0.012069457210600376, 0.003139148699119687, -0.023305654525756836, 0.001383693073876202, 0.012428400106728077, -0.02445939928293228, 0.00046109751565381885, 0.029869183897972107, 0.008371062576770782, -0.002419660333544016, -0.02899746410548687, -0.00429129134863615, -0.01334498729556799, 0.06937854737043381, 0.03538152202963829, 0.005457856226712465, 0.010614456608891487, 0.012838620692491531, 0.01798560656607151, -0.028561605140566826, -0.002703289268538356, -0.005150190554559231, -0.002993328031152487, 0.011140051297843456, -0.016549834981560707, -0.002560673514381051, 0.022190367802977562, 0.011537453159689903, -0.008588992990553379, -0.003788130357861519, -0.013985957019031048, 0.01234507467597723, -0.01148617547005415, 0.014216705225408077, -0.002220959635451436, 0.021510940045118332, 0.014165428467094898, 0.017472831532359123, 0.0028635316994041204, 0.01943419873714447, 0.026561779901385307, -0.013139876537024975, -0.023139001801609993, -0.01744719222187996, 0.0050764791667461395, -0.005175829399377108, -0.013242431916296482, -0.015024327673017979, 0.0017049791058525443, -0.01580630987882614, 0.025497769936919212, 0.008364653214812279, -0.013832123950123787, 0.0027898200787603855, 0.005752702243626118, -0.01234507467597723, -0.009883751161396503, 0.001424554968252778, -0.0411246083676815, -0.0012538967421278358, 0.036535266786813736, -0.014832036569714546, -0.005836028140038252, 0.02201089635491371, 0.011825889348983765, -0.004400256089866161, -0.01816507801413536, 0.0028635316994041204, 0.008358243852853775, -0.006903242319822311, -0.0020511026959866285, -0.008736415766179562, 1.4910054233041592e-05, -0.02215190976858139, -0.01812661997973919, -0.013191154226660728, 0.0046213907189667225, -0.00389709509909153, -0.017639482393860817, -0.010313200764358044, -0.024984994903206825, -0.01766512170433998, 0.0012242519296705723, -0.0015976167051121593, -0.02124173194169998, -0.007005797699093819, 0.0066981324926018715, 0.017959967255592346, 0.0018956675194203854, -0.009076129645109177, -0.0020863560494035482, 0.004127844236791134, 0.012780933640897274, -0.003993240650743246, -0.003522127866744995, -0.0035349472891539335, 0.008031348697841167, -0.010992628522217274, 0.006355213467031717, 0.027382221072912216, -0.03430469334125519, -0.015370450913906097, 0.012530955485999584, -0.012088686227798462, 0.006223814561963081, 0.007210907991975546, -0.00915304571390152, -0.005711039062589407, -0.013511639088392258, 0.011614369228482246, 0.007845467887818813, -0.001077630091458559, -0.012389942072331905, -0.003788130357861519, 0.002228971803560853, -0.002297875937074423, -0.006858374457806349, 0.004733560606837273, 0.021549398079514503, 0.009544037282466888, 0.013396264985203743, -0.025074729695916176, 0.008172362111508846, 0.019831599667668343, -0.010031173937022686, -0.0013163912808522582, 0.010434985160827637, 0.007531392853707075, 0.007351921405643225, -0.0054161930456757545, 0.029382046312093735, -0.030228126794099808, -0.01811380125582218, 0.019870057702064514, -0.04115024954080582, 0.011672056280076504, -0.0007194883655756712, -0.023895345628261566, 0.000995105248875916, 0.015473006293177605, -0.023305654525756836, -0.0037368526682257652, 0.011768201366066933, -0.00030145602067932487, 0.033638086169958115, -0.023087725043296814, -0.0074865249916911125, -0.03492002189159393, -0.0018203536747023463, -0.009242781437933445, 0.00447396794334054, -0.010896483436226845, -0.01757538691163063, -0.003964397124946117, 0.008800512179732323, -0.001192203490063548, -0.033817555755376816, 0.0026808553375303745, -0.03456107899546623, 0.0041502779349684715, 0.01058240793645382, -0.0036503218580037355, 0.013819304294884205, 0.003390729194507003, 0.023677416145801544, -0.016883138567209244, 0.016742125153541565, 0.0019629693124443293, -0.031638260930776596, -0.024933718144893646, -0.019870057702064514, 0.025446493178606033, 0.028484689071774483, 0.02533111907541752, 0.0009967077057808638, 0.01280016265809536, -0.01925472728908062, -0.006621215958148241, 0.0055251577869057655, -0.0038009497802704573, 0.013575736433267593, -0.013434723019599915, 0.006060367450118065, 0.008262097835540771, 0.012755295261740685, -0.002858724445104599, 0.0009470325894653797, -9.874937677523121e-05, 0.02504909224808216, 0.0065539139322936535, -0.018267633393406868, -0.018793229013681412, -0.034458525478839874, 0.006025114096701145, -0.004457943607121706, 0.00976196676492691, 0.009287649765610695, 0.0006177344475872815, -0.009390204213559628, 0.01662675105035305, 0.0012659149942919612, 0.024664510041475296, -0.00013780845620203763, 0.024177372455596924, -0.012787343002855778, 0.011646417900919914, -0.013947498053312302, -0.01753692887723446, 0.009537627920508385, -0.04050927981734276, 0.015870407223701477, 0.00719167897477746, 0.028202662244439125, 0.012216880917549133, 0.00804416835308075, -0.0019453427521511912, 0.01148617547005415, -0.011197739280760288, 0.03412522003054619, -0.0027657838072627783, -0.01562683843076229, 0.027741163969039917, -0.025984907522797585, -0.01277452427893877, -0.022600587457418442, -0.013421903364360332, -0.04517553746700287, 0.014050053432583809, 0.012812982313334942, -0.030279403552412987, 0.03743262588977814, -0.01370393019169569, -0.0020126444287598133, -0.006034728605300188, 0.004935465753078461, 0.02953587844967842, -0.0037945399526506662, 0.02930513024330139, 0.009588904678821564, 0.0021857062820345163, 0.0037945399526506662, 0.00804416835308075, -0.009749147109687328, 0.004598957020789385, 0.009044080972671509, 0.008390291593968868, 0.02247239463031292, -0.007736503146588802, -0.0067942775785923, 0.023997901007533073, -0.0232415571808815, -0.021805785596370697, -0.000870116229634732, 4.0861810703063384e-05, 0.01134516205638647, -0.025356756523251534, -0.030330680310726166, -0.018472744151949883, 0.01703697256743908, -0.02710019424557686, -0.005624508019536734, -0.01058240793645382, -0.025792617350816727, -0.012896308675408363, 0.040714386850595474, -0.014652565121650696, 0.022139089182019234, -0.0014846458798274398, -0.0011168895289301872, -0.014896132983267307, -0.003390729194507003, -0.037124957889318466, 0.001235468895174563, 0.02256212942302227, 0.031510066241025925, -0.009044080972671509, 0.017421552911400795, -0.00633277976885438, 0.006666083820164204, -0.0011617573909461498, 0.009101768024265766, -0.0018363778945058584, 0.019267546012997627, -0.012172012589871883, -0.008454388938844204, -0.015639659017324448, -0.016293447464704514, -0.003297788556665182, 0.004477172624319792, -0.0029051946476101875, -0.012832211330533028, -0.011172099970281124, -0.02419019304215908, 0.007851877249777317, 0.022305741906166077, -0.03204847872257233, 0.009678641334176064, -0.004816886503249407, -0.007281414698809385, -0.04832910746335983, -0.018049703910946846, 0.03153570368885994, -0.014998688362538815, -0.025497769936919212, -0.01757538691163063, 0.015190979465842247, 0.017460010945796967, 0.009967077523469925, -0.015934504568576813, 0.007505754008889198, 0.018408646807074547, -0.043329544365406036, 0.027741163969039917, -0.014075692743062973, 0.0013548494316637516, -0.009723508730530739, 0.012511726468801498, -0.01302450243383646, 0.0038105642888695, 0.0042944964952766895, 0.004038108512759209, -0.036586545407772064, -0.006890423130244017, 0.006653264164924622, 0.009370975196361542, 0.007403198629617691, -0.009108178317546844, 0.01911371387541294, 0.0019004748901352286, -0.0042944964952766895, -0.009467121213674545, 0.003134341211989522, 0.011152870953083038, -0.015319173224270344, 0.0002513802610337734, 0.019036797806620598, -0.04227835312485695, -0.01247967779636383, 0.0064385393634438515, 0.013370625674724579, 0.025202924385666847, -0.03761209547519684, -0.01857529953122139, -0.018677854910492897, 0.045867785811424255, -0.008935116231441498, -0.009146636351943016, -0.013755207881331444, 0.015870407223701477, -0.018511202186346054, 0.010210645385086536, -0.031330592930316925, -0.0196649469435215, -0.01388340163975954, 0.0229723509401083, -0.001516694319434464, 0.002858724445104599, -0.011383620090782642, -0.008646680042147636, -0.02483116276562214, -0.004066952038556337, -0.03461235761642456, -0.025715699419379234, -0.01340908370912075, 0.031202400103211403, 0.02577979676425457, -0.019857237115502357, -0.024177372455596924, 0.017370276153087616, -0.013614194467663765, -0.021177634596824646, -0.0032913789618760347, -0.0033522709272801876, 0.003159980056807399, -0.013678290881216526, -0.018729131668806076, 0.011979721486568451, -0.0030381958931684494, 0.037894122302532196, -0.007390379440039396, -0.017383094877004623, 0.02106226049363613, -0.020216181874275208, 0.012146374210715294, -0.016152434051036835, -0.0063520087860524654, -0.0062334295362234116, 0.030228126794099808, 0.0010143343824893236, 0.01440899632871151, 0.006409695837646723, -0.013691110536456108, 0.00010405740613350645, -0.02084433101117611, 0.009473530575633049, 0.009531217627227306, 0.01470384281128645, 0.02370305545628071, -0.022587768733501434, -0.0028939777985215187, -0.022164728492498398, 0.004467558115720749, -0.003563791047781706, -0.011973312124609947, 0.006140488665550947, 0.0020398858468979597, 0.0023155026137828827, -0.0232415571808815, 0.01295399572700262, 0.007518573198467493, -0.023536402732133865, -0.0008112271316349506, 0.006723770871758461, -0.01811380125582218, 0.003249715780839324, -0.016831861808896065, -0.008576173335313797, 0.010633685626089573, -0.008460798300802708, -0.020831512287259102, -0.01159514021128416, 0.01807534322142601, -0.017562566325068474, -0.005422602873295546, -0.014165428467094898, 0.010499081574380398, -0.007166040129959583, 0.020036710426211357, -0.015614019706845284, -0.025126008316874504, -0.0051854439079761505, 0.028125746175646782, 0.00976196676492691, -0.0002728126710280776, -0.0038233837112784386, 0.0016440870240330696, 0.008640269748866558, 0.010755470022559166, -0.015844767913222313, -0.0029372430872172117, -0.024805523455142975, -0.014101331122219563, 0.011838708072900772, -0.029458962380886078, -0.029023103415966034, -5.548393164644949e-05, 0.0054258075542747974, 0.0005175829282961786, -0.0010471841087564826, 0.2116737961769104, -0.003599044168367982, 0.004105410072952509, 0.0627637431025505, 0.004890597891062498, 0.024126095697283745, 0.02510036900639534, -0.01562683843076229, 0.001434970647096634, 0.024036359041929245, 0.006374442484229803, 0.02138274535536766, -0.023126183077692986, 0.0017194009851664305, -0.015037146396934986, -0.012454039417207241, -0.027920635417103767, -0.029484601691365242, -0.024305567145347595, -0.0405861958861351, -0.0012891500955447555, -0.025677241384983063, -0.021049441769719124, -0.017460010945796967, 0.02922821417450905, -0.004874573554843664, -0.004855344537645578, -0.007890335284173489, 0.024305567145347595, -0.011633598245680332, 0.0009502374450676143, -0.002294671256095171, 0.013011682778596878, 0.011409258469939232, -0.021716048941016197, -0.009877341799438, 0.0019036796875298023, -0.008101855404675007, 0.02124173194169998, 0.01970340497791767, -0.02229292318224907, 0.01726772077381611, 0.0064577688463032246, 0.0007407204830087721, 0.0013788858195766807, 0.025587506592273712, -0.0018844505539163947, -0.02604900486767292, 0.014178247191011906, 0.029330769553780556, -0.002145645674318075, -0.005429012235254049, 0.020767414942383766, 0.04286804795265198, -0.017472831532359123, -0.01019141636788845, 0.006608396302908659, -0.008749235421419144, -0.015473006293177605, 0.0011425282573327422, -0.03661218285560608, 0.01044139452278614, 0.0002059114776784554, 0.026843806728720665, -0.009883751161396503, -0.0022353813983500004, -0.04617545008659363, -0.0036182734183967113, -0.020908428356051445, -0.011813069693744183, 0.0064353346824646, -0.014639745466411114, 0.004329749383032322, -0.02061358280479908, -0.01069137267768383, -0.017421552911400795, 0.026972001418471336, 0.005239926278591156, -0.0006281501846387982, 0.018639395013451576, -0.0037849254440516233, -0.018908603116869926, 0.008358243852853775, 0.016049878671765327, -0.0193060040473938, -0.017293360084295273, 0.010608047246932983, 0.012075867503881454, -0.0015631646383553743, -0.003961191978305578, 0.007768551353365183, 0.004486787132918835, 0.002977303694933653, 0.006723770871758461, 0.013293709605932236, 0.01871631294488907, 0.016998514533042908, 0.010608047246932983, 0.008217230439186096, 0.015101243741810322, -0.02722838893532753, -0.03184336796402931, 0.011697694659233093, 0.020998163148760796, -0.0065539139322936535, -0.018908603116869926, -0.014729481190443039, -0.009723508730530739, 0.008550534024834633, -0.012242519296705723, -0.0024244675878435373, -0.006005885079503059, 0.007807009853422642, -0.005916149355471134, 0.002956472337245941, -0.004278472159057856, -0.004900212399661541, -0.011197739280760288, -0.009210732765495777, -0.010422165505588055, 0.017883051186800003, -0.028561605140566826, -0.008300555869936943, 0.016831861808896065, -0.01603705994784832, -0.019318822771310806, 0.002164874691516161, 0.013460361398756504, 0.008089036680758, -0.03166389837861061, 0.0063359844498336315, -0.0019854032434523106, -0.004550884012132883, -0.004836115520447493, 0.0018443900626152754, 0.01675494574010372, 0.0018411851488053799, 0.016472918912768364, 0.008230049163103104, 0.016203710809350014, -0.0006630029529333115, -0.031561341136693954, 0.01821635663509369, -0.011518223211169243, 0.009537627920508385, -0.041380997747182846, -0.030510153621435165, -0.00268406025134027, -0.0160883367061615, -0.02197243832051754, -0.013947498053312302, -0.03768901154398918, 0.01589604653418064, -0.02188270166516304, 0.014152608811855316, -0.017870232462882996, -0.011492584832012653, -0.018229175359010696, -0.008441569283604622, 0.009486350230872631, -0.017549747601151466, 0.003746467176824808, 0.016639569774270058, -0.018177898600697517, -0.015075604431331158, 0.009633773006498814, -0.16398565471172333, 0.024882439523935318, 0.01862657628953457, -0.03512513265013695, 0.005871281493455172, -0.0009438277338631451, 0.0028971824795007706, 0.008492846973240376, -0.000383179634809494, 0.02079305425286293, -1.2312374565226492e-05, -0.007807009853422642, -0.023946624249219894, -0.012736066244542599, 0.007736503146588802, -0.01440899632871151, -0.008717186748981476, 0.008633860386908054, 0.0042752670124173164, 0.023215917870402336, 0.010095271281898022, -0.0015463391318917274, 0.005736677907407284, -0.011031086556613445, 0.0023507559671998024, 0.010274742729961872, -0.01898551918566227, 0.022754421457648277, -0.011524633504450321, -0.007819829508662224, -0.02763860858976841, -0.009044080972671509, 0.029279490932822227, 0.014934591948986053, -0.002212947467342019, -0.002361973049119115, -0.021575037389993668, -0.010428574867546558, -0.008851789869368076, 0.00629752641543746, -0.007915974594652653, 0.023126183077692986, 0.019267546012997627, -0.0016553039895370603, 0.0036310928408056498, -0.0019245111616328359, -0.0007619526004418731, -0.006710951682180166, 0.004246423486620188, 6.224415847100317e-05, 0.030689625069499016, -0.009281239472329617, 0.008576173335313797, 0.004143868573009968, 0.0026007341220974922, 0.022536490112543106, -0.0054097832180559635, 0.0024757450446486473, -0.016639569774270058, -0.00922355242073536, 0.006358418148010969, -0.018921421840786934, 0.020216181874275208, -0.013319347985088825, 0.007198088336735964, -0.02994609996676445, -0.005384144373238087, 0.0011761791538447142, -0.004300905857235193, 0.009877341799438, -0.010659324005246162, -0.01739591546356678, 0.017318997532129288, 0.0004699108249042183, 0.009999125264585018, 0.025972088798880577, -0.00772368349134922, 0.02595926821231842, 0.006137283984571695, 0.0010808350052684546, -0.016178073361516, 0.0003587426617741585, -0.014396176673471928, -0.002608746290206909, -0.021536577492952347, 0.006659673992544413, -0.0061276694759726524, 0.0013123851967975497, 0.016178073361516, -0.010415756143629551, 0.004233604297041893, -0.026125920936465263, 0.025215743109583855, -0.02501063421368599, 0.0036663461942225695, 0.00704425573348999, -0.0027145061176270247, 0.007204498164355755, 0.005852052476257086, 0.01305014081299305, 0.015460186637938023, -0.0031679922249168158, -0.009146636351943016, 0.0075826700776815414, 0.003275354625657201, 0.02419019304215908, 0.021036621183156967, 0.011672056280076504, 0.02822830155491829, 0.009691460058093071, -0.02302362769842148, 0.015396089293062687, 0.0026904698461294174, 0.029792265966534615, 0.010633685626089573, 0.023715874180197716, 0.011172099970281124, -0.013678290881216526, 0.05022637918591499, -0.011524633504450321, 0.030433235689997673, -0.007896745577454567, -0.016190892085433006, -0.004169507417827845, -0.007665996439754963, 0.007557031698524952, -0.08542842417955399, -0.019549572840332985, 0.008255688473582268, 0.011588729918003082, -0.002768988721072674, 0.005691810045391321, 0.005589254666119814, 0.005820003803819418, -0.003371500177308917, 0.02710019424557686, -0.00020791450515389442, -0.015819130465388298, 0.021280189976096153, -0.008364653214812279, 0.04209888353943825, -0.00010826376819750294, -0.008858200162649155, -0.005932173691689968, -0.01219124160706997, 0.007275004871189594, -0.01839582808315754, 0.011037496849894524, 0.002023861510679126, -0.024677328765392303, 0.0003038596478290856, 0.027920635417103767, -0.02070331759750843, 0.0038265883922576904, 0.017793316394090652, 0.018562478944659233, 0.021126357838511467, -0.022908253595232964, 0.007063484750688076, -0.01151181384921074, -0.02445939928293228, 0.00804416835308075, -0.015190979465842247, 0.00016875527217052877, 0.024318385869264603, -0.012248928658664227, 0.011684875935316086, 0.008371062576770782, 0.009069719351828098, -0.02283133752644062, 0.017831774428486824, -0.010909302160143852, -0.027843719348311424, 0.0077172741293907166, 0.006973749026656151, -0.010402936488389969, -0.014242344535887241, 0.009441481903195381, -0.02238265797495842, 0.009037671610713005, 0.0236902367323637, -0.010838795453310013, 0.0035830200649797916, 0.004320134874433279, -0.01420388650149107, -0.024754244834184647, -0.006464178208261728, 0.014396176673471928, -0.018921421840786934, 0.02506191097199917, 0.021587856113910675, 0.017677942290902138, -0.02472860738635063, -0.02224164456129074, 0.013447541743516922, -0.026331031695008278, -0.012889898382127285, 0.00955685693770647, -0.020357193425297737, 0.015755033120512962, -0.04045800119638443, -0.012627100571990013, -0.02506191097199917, -0.002386009320616722, 0.004095795564353466, -0.016370363533496857, -0.006723770871758461, -0.01216560322791338, 0.023497944697737694, 0.0015839961124584079, 0.0006333580822683871, 0.01798560656607151, 0.007819829508662224, 0.0065763480961322784, -0.00955685693770647, -0.008255688473582268, 0.004204760771244764, 0.03774029016494751, 0.019729044288396835, -0.02569006197154522, 0.0010624071583151817, 0.02220318652689457, -0.005916149355471134, -0.0039547826163470745, 0.04145791381597519, -0.014114150777459145, -0.017870232462882996, -0.010710601694881916, -0.06281501799821854, 0.031279318034648895, 0.005829618312418461, -0.01743437349796295, 0.026484863832592964, 0.01794714853167534, 0.0015118870651349425, 0.014844856224954128, 0.02545931190252304, 0.015498644672334194, -0.00980683509260416, 0.02133146859705448, 0.0024805522989481688, -0.006704541854560375, -0.036407072097063065, -0.02804883010685444, 0.01898551918566227, 0.02251085266470909, 0.011338751763105392, 0.009755557402968407, 0.016011420637369156, 0.0018203536747023463, 0.024036359041929245, 0.007217317819595337, -0.006156513001769781, -0.0005620502051897347, -0.013896220363676548, 0.02922821417450905, -0.033868834376335144, -0.004842525348067284, 0.04776505380868912, -0.02477988414466381, 0.006130874156951904, 0.05568743869662285, -0.009300468489527702, -0.003903504926711321, -0.01148617547005415, 0.004980333615094423, 0.014460274018347263, 0.009729918092489243, -0.011569500900804996, -0.023254377767443657, -0.011883576400578022, -0.028279578313231468, -0.016934417188167572, -0.004163097590208054, -0.017690761014819145, -0.0010960580548271537, 0.016190892085433006, 0.010710601694881916, -0.002543046837672591, 0.02595926821231842, 0.004704716615378857, -0.019498294219374657, -0.0100119449198246, -0.029843544587492943, 0.01037729810923338, 0.013306528329849243, -0.0069224718026816845, -0.0257413387298584, 0.005528362933546305, 0.0005808786954730749, 0.011710514314472675, 0.0042944964952766895, -0.0016440870240330696, -0.019280364736914635, -0.00837747287005186, 0.004762404132634401, 0.029253851622343063, -0.03722751513123512, -0.004900212399661541, 0.011037496849894524, 0.005730268079787493, 0.0041566877625882626, 0.019357282668352127, -0.010633685626089573, 0.002727325540035963, -0.0010808350052684546, -0.015370450913906097, 0.014267982915043831, 0.00447396794334054, 0.01662675105035305, -0.036945488303899765, 0.019011158496141434, 0.028843631967902184, 0.005861666984856129, -0.009576085954904556, -0.026843806728720665, -0.007627538405358791, 0.011396439746022224, 0.0030125570483505726, 0.016690848395228386, -0.005406578537076712, -0.004778428468853235, -0.010178596712648869, 0.013018092140555382, -0.008813331834971905, -0.03597121313214302, 0.007287824060767889, 0.011646417900919914, -0.006464178208261728, 0.0004282478184904903, -0.01370393019169569, -0.01889578439295292, -0.02522856369614601, 0.010133729316294193, -0.021049441769719124, -0.022908253595232964, 0.018177898600697517, 0.002616758458316326, 0.010601636953651905, 0.003922733943909407, -0.0004032099386677146, 0.008185181766748428, -0.012787343002855778, 0.001656906446442008, -0.02483116276562214, 0.002866736613214016, -0.018024064600467682, 0.018908603116869926, 0.028100106865167618, 0.0120245898142457, 0.019062435254454613, -0.023677416145801544, 0.0005700623150914907, 0.01585758849978447, 0.007800600025802851, -0.03207411989569664, 0.010313200764358044, 0.0014726276276633143, 0.0005376132321543992, 0.0008228447404690087, 0.0008845380507409573, -0.014691023156046867, 0.005477085243910551, 0.012889898382127285, -0.019331643357872963, 0.021818604320287704, 0.00797366164624691, 0.040714386850595474, 0.017883051186800003, -0.004823296330869198, 0.007640357594937086, 0.006973749026656151, 0.007608308922499418, 0.023177459836006165, -0.0007667598547413945, -0.03117676079273224, -0.015421728603541851, -0.020677678287029266, 0.00686478428542614, -0.0011497392551973462, -0.018049703910946846, -0.018998337909579277, 0.013114238157868385, -0.043380822986364365, 0.006723770871758461, -0.013306528329849243, -0.017460010945796967, -0.007781371008604765, 0.0082236398011446, 0.025536227971315384, 0.006534684915095568, 0.013101418502628803, 0.01698569394648075, 0.014242344535887241, 0.004544474650174379, -0.022677503526210785, -0.02183142490684986, 0.00015243058442138135, 0.009608134627342224, -0.04984179511666298, -0.018331730738282204, -0.0008188386564143002, -0.028535965830087662, -0.007576260715723038, -0.00450922129675746, 0.004544474650174379, 0.020357193425297737, -0.029612794518470764, 0.027510415762662888, -0.02048538811504841, -0.022369839251041412, 0.01440899632871151, 0.00804416835308075, 0.0018155464204028249, -0.009133816696703434, -0.03461235761642456]" +14,french fries,"[0.0014257068978622556, -0.016548126935958862, 0.0003075956483371556, -0.029714901000261307, -0.02748628333210945, 0.0023823154624551535, -0.018059488385915756, -0.02804984338581562, -0.0023550980258733034, -0.027793679386377335, 0.021812275052070618, 0.023835962638258934, -0.010496276430785656, -0.006544963456690311, -0.008421356789767742, 0.013717525638639927, 0.03857813775539398, -0.01430670078843832, 0.044239342212677, -0.014550055377185345, 0.007608039304614067, -0.002561629517003894, 0.006394467316567898, -0.01618949882686138, -0.0026016549672931433, -0.018827976658940315, -0.001866787439212203, -0.01950680837035179, 0.004658963531255722, -0.012263800948858261, 0.01744469627737999, 0.0033269161358475685, -0.02119748294353485, -0.015843678265810013, -0.016855521127581596, -0.004550094250589609, -0.005853323265910149, -0.005680413451045752, 0.016061415895819664, 0.00032920940429903567, 0.004825469572097063, -0.01077165175229311, -0.01038740761578083, 0.00601982930675149, -0.009964738972485065, 0.000710852153133601, 0.00024015275994315743, -0.006954824086278677, -0.01858462207019329, -0.0017707264050841331, 0.03604212775826454, 0.005843717139214277, -0.03468446433544159, -0.003003510646522045, -0.003986536059528589, 0.012225376442074776, -0.023541374132037163, 0.019596464931964874, -0.021389605477452278, -0.01448601484298706, 0.010022374801337719, 0.01992947794497013, -0.023259595036506653, 0.0076784840784966946, -0.01595895178616047, -0.002881833119317889, 0.019955093041062355, -0.015177654102444649, -0.0015377781819552183, 0.004002545960247517, 0.00872875191271305, 0.02176104299724102, 0.0016842713812366128, -0.00200447509996593, 0.03396720811724663, 0.0013224411522969604, -0.017073260620236397, 0.002715327311307192, 0.010957369580864906, 0.000987027888186276, 0.028101075440645218, -0.007134138140827417, 0.0032788857351988554, 0.01893044076859951, 0.0071661584079265594, 0.006061455700546503, -0.023426100611686707, 0.022414257749915123, -0.012430306524038315, -0.02833162248134613, -0.01950680837035179, 0.019545232877135277, -0.005529917776584625, 0.004495659843087196, -0.01568998023867607, 0.018200377002358437, 0.009394776076078415, 0.03581158071756363, -0.011098260059952736, -0.02331082709133625, -0.017777709290385246, 0.015164846554398537, -0.008043516427278519, -0.02281131036579609, 0.005302573088556528, 0.0062888003885746, -0.005968596786260605, -0.007319855969399214, -0.00022894563153386116, -0.01275691483169794, -0.006080667953938246, 0.02112063392996788, 0.03517117351293564, -0.0330706350505352, -0.0038680604193359613, -0.018968865275382996, 0.004015353973954916, -0.003490220056846738, -0.007223795168101788, -0.027153272181749344, 0.009887889958918095, 0.010336174629628658, 0.022913776338100433, -0.005674009211361408, 0.04088360443711281, -0.011552948504686356, 0.001959646586328745, -0.005449866876006126, -0.009580493904650211, -0.004105011001229286, 0.038962382823228836, 0.006615408230572939, 0.01738065667450428, -0.010630762204527855, -0.028101075440645218, 0.01575402170419693, -0.020531460642814636, 0.0019868637900799513, -0.01764962635934353, -0.009369160048663616, 0.01625353842973709, 0.023861577734351158, -0.019647696986794472, -0.0005175292026251554, -0.0017643222818151116, 0.032891321927309036, 0.003976929932832718, 0.015561899170279503, -0.010003162547945976, -0.006394467316567898, 0.011360826902091503, -0.005715635605156422, 0.049977391958236694, -0.025949306786060333, 0.01659935899078846, -0.0050111874006688595, -0.017752092331647873, 0.014742177911102772, -0.0037207668647170067, -0.005353805609047413, -0.01674024760723114, -0.011072643101215363, 0.007409512996673584, 0.0008145181345753372, 0.009554877877235413, 0.02930504083633423, 0.024758148938417435, 0.009087380021810532, 0.02112063392996788, -0.01105983555316925, 0.020890088751912117, 0.03194351866841316, -0.021171867847442627, 0.02501431107521057, 0.006519346963614225, 0.012718490324914455, 0.007499170023947954, -0.0007792956894263625, -0.015318544581532478, 0.0038776665460318327, -0.03609335795044899, 0.004527680110186338, 0.04562262073159218, 0.03460761532187462, 0.006487326696515083, 0.0019212220795452595, 0.014088962227106094, 0.011975618079304695, -0.020672349259257317, -0.011661818251013756, -0.00021173468849156052, 0.010854904539883137, 0.01581806130707264, -0.01681709662079811, -0.6975829601287842, -0.010547509416937828, 0.00536981550976634, -0.002050904557108879, 0.025949306786060333, 0.03842444345355034, 0.012878592126071453, 0.012686469592154026, -0.017290998250246048, 0.0011647408828139305, -0.013410130515694618, 0.0029875002801418304, -0.007620847783982754, -0.010995794087648392, 0.005545927677303553, -0.021671384572982788, 0.02168419398367405, -0.0198398195207119, -0.00010076409671455622, 0.02429705485701561, -0.01332047302275896, 0.030637089163064957, -0.0020396974869072437, 0.002484780503436923, 0.02551382966339588, 0.019058523699641228, -0.0043931943364441395, 0.0039128889329731464, -0.03250707685947418, -0.0053474013693630695, -0.018879208713769913, -0.01808510348200798, 0.012917016632854939, -0.02910011075437069, 0.06024952605366707, 0.010765247978270054, -0.008952895179390907, 0.02953558787703514, 0.030278461053967476, 0.04654480889439583, -0.017073260620236397, -0.023221170529723167, 0.0039705256931483746, 0.010188881307840347, -0.009100188501179218, 0.0019564444664865732, 0.015779636800289154, 0.01709887571632862, 0.0006612205761484802, -0.017547162249684334, 0.01017607282847166, -0.0007544799009338021, -0.005888545885682106, -0.0016634580679237843, 0.00715335039421916, 0.003490220056846738, 0.006295204162597656, -0.0316617414355278, 0.010156860575079918, 0.029356272891163826, -0.015702787786722183, 0.018187569454312325, -0.01788017340004444, -0.0020941321272403, 0.013256432488560677, -0.019237836822867393, -0.024988695979118347, -0.01239188201725483, 0.021005362272262573, -0.023823153227567673, 0.0064424979500472546, 0.023349251598119736, 0.0010366594651713967, -0.017816131934523582, 0.011770687066018581, 0.03363419324159622, 0.00865830760449171, 0.0007376692374236882, -0.002483179559931159, -0.0030819603707641363, 0.005949384532868862, 0.009285906329751015, -0.031764205545186996, 0.03893676772713661, 0.020108791068196297, 0.014165811240673065, -0.03240461274981499, 0.015946144238114357, -0.004835075698792934, -0.006051849573850632, 0.0062727900221943855, 0.015779636800289154, -0.003813625779002905, -0.02676902711391449, -0.007998688146471977, 0.017060453072190285, -0.050822727382183075, -0.017957022413611412, 0.00453728623688221, -0.004438023082911968, -0.017905790358781815, 0.023221170529723167, 0.006813934538513422, -0.002100536134094, 0.01412738673388958, 0.004825469572097063, 0.007761737331748009, 0.02664094604551792, 0.014780601486563683, -0.031687356531620026, -0.00039445090806111693, 0.0009069769294001162, -0.006452104076743126, -0.01360225211828947, -0.016407236456871033, -0.030047914013266563, -0.001586609287187457, 0.00042667140951380134, 0.005350603722035885, -0.026103004813194275, 0.02132556587457657, -0.015779636800289154, 0.036708150058984756, -0.004037768580019474, 0.014678136445581913, 0.009593302384018898, -0.01017607282847166, -0.018763935193419456, -0.029919831082224846, -0.00922186579555273, 0.0032884918618947268, 0.007697696331888437, 0.008754368871450424, -0.02276007831096649, -0.02407931722700596, 0.005709231831133366, 0.007127733901143074, -0.020582692697644234, 0.006967632099986076, -0.022375833243131638, -0.014524439349770546, -0.0026592914946377277, 7.419719622703269e-05, -0.004409204702824354, -0.002548821270465851, -0.02160734497010708, -0.012641641311347485, -0.003592685330659151, -0.025821225717663765, 0.006522548850625753, 0.014998340047895908, -0.005590756423771381, -0.030970100313425064, 0.013858415186405182, 0.027563132345676422, -0.008165193721652031, -0.007742525078356266, -0.007409512996673584, -0.0012527968501672149, -0.001372873317450285, -0.0009005728643387556, 0.0024623663630336523, -0.008261254988610744, 0.0038456462789326906, -0.014844642952084541, -0.02083885483443737, 0.0029650861397385597, 0.01515203807502985, -0.0064136795699596405, -0.010432235896587372, 0.025603486225008965, -0.020813239738345146, -0.014242659322917461, 0.00861347932368517, -0.020992552861571312, 0.037758417427539825, -0.007864202372729778, 0.00036843435373157263, 0.006999652367085218, -0.004857489839196205, 0.0019996720366179943, -0.008735156618058681, -0.01567717269062996, 0.001897206762805581, 0.018315650522708893, 0.0022142084781080484, -0.006320820655673742, 0.01172585878521204, -0.009510049596428871, 0.02013440802693367, -0.014537246897816658, 0.005574746057391167, -0.014434781856834888, 0.0041338293813169, -0.003467805916443467, -0.014063345268368721, 0.007390300743281841, 0.00466216541826725, 0.0053441994823515415, 0.010675590485334396, 0.027050806209445, -0.018251609057188034, 0.011168704368174076, -0.0020909300073981285, 0.020608309656381607, -0.04646795988082886, 0.012276609428226948, -0.002944272942841053, 0.011847536079585552, -0.00017721272888593376, -0.002204602351412177, -0.004668569657951593, -0.021594535559415817, 0.009708575904369354, 0.009490837343037128, 0.0410885363817215, 0.010585933923721313, 0.01190517283976078, -0.000910178991034627, -0.004975965246558189, 0.007934647612273693, -0.009112996980547905, 0.005975000560283661, -0.005200107581913471, -0.01002877950668335, 0.030252844095230103, 0.006186335347592831, 0.032097216695547104, 0.028280388563871384, -0.005645190831273794, 0.0007080503855831921, 0.015946144238114357, -0.015997376292943954, 0.005283360835164785, 0.03038092516362667, 0.0048638940788805485, 0.01553628221154213, -0.0363239049911499, 0.011732262559235096, 0.017342232167720795, 0.017009219154715538, 0.020608309656381607, 0.010124840773642063, 0.01080367248505354, 0.005120056681334972, 0.0006588191026821733, 0.006903591565787792, 0.015023957006633282, -0.015305736102163792, 0.0027697619516402483, 0.008773581124842167, 0.026384783908724785, -0.011629797518253326, -0.009804637171328068, -0.0008285270305350423, -0.0018443731823936105, 0.019609274342656136, 0.010746035724878311, 0.027947377413511276, 0.015485050156712532, 0.004735812544822693, 0.01052189338952303, -0.003855252405628562, 0.014332316815853119, -0.00886323768645525, -6.639223283855245e-05, -0.009394776076078415, -0.012558388523757458, 0.0019180200761184096, 0.001310433610342443, -0.021351180970668793, -0.005209713708609343, 0.006897187326103449, -0.00685235857963562, -0.01116230059415102, -0.006090274080634117, 0.0064424979500472546, 0.004140233621001244, -0.01334608905017376, -0.01169383805245161, -0.000987828359939158, -0.007947455160319805, 0.02641039900481701, 0.021440839394927025, -0.0016370413359254599, -0.01759839430451393, -0.03163612261414528, 0.018238801509141922, -0.011616989970207214, 0.00667304452508688, -0.0025087958201766014, 0.014050537720322609, -0.006589791737496853, 0.013115542940795422, -0.021159058436751366, 0.005648392718285322, 0.0053474013693630695, -0.005641988944262266, 0.03412090614438057, 0.019903860986232758, -0.008382932282984257, -0.00715335039421916, -0.023157130926847458, -0.02240145020186901, 0.036913082003593445, 0.008312487974762917, 0.0007816972211003304, -0.01900728978216648, 0.01066918671131134, -0.009580493904650211, -0.0093243308365345, 0.009401179850101471, -0.013935264199972153, -0.003813625779002905, -0.002204602351412177, -0.0188664011657238, -0.02925380878150463, 0.007684888318181038, 0.04116538539528847, 0.004979167133569717, -0.0066922567784786224, -0.022503914311528206, -0.01618949882686138, 0.010957369580864906, 0.04021758213639259, 0.04436742141842842, 0.012154932133853436, 0.0009454013779759407, 0.0023086685687303543, -6.824341107858345e-05, -0.005398633889853954, -0.01228941697627306, 0.012519964016973972, 0.007326260209083557, 0.018392499536275864, -5.4934942454565316e-05, 0.022708844393491745, -0.003102773567661643, 0.012878592126071453, -0.0067434897646307945, -0.01681709662079811, -0.029996680095791817, -0.001064677257090807, -0.004172253888100386, -0.004975965246558189, 0.008446972817182541, 0.013230816461145878, 0.012852976098656654, 0.029151342809200287, 0.0062407697550952435, 0.027563132345676422, 0.047441378235816956, 0.007755333092063665, -0.012481539510190487, -0.03950032591819763, -0.03304501995444298, 0.0002697716117836535, -0.018494965508580208, 0.007236603181809187, 9.456014959141612e-05, 0.029971064999699593, 0.0082676587626338, 0.012532772496342659, 0.004835075698792934, 0.021018169820308685, -0.005702827591449022, 0.006596195977181196, -0.031969133764505386, 0.007992283441126347, -0.026999574154615402, -0.0085110142827034, 0.023900002241134644, 0.00022714448277838528, -0.01553628221154213, 0.014050537720322609, 0.003928899299353361, -0.005529917776584625, -0.0007336667040362954, -0.005722039844840765, -0.002872226992622018, -0.00577327236533165, -0.004982369486242533, -0.01052189338952303, -0.0174575038254261, 0.011373634450137615, -0.03319871798157692, -0.0008765576058067381, -0.0019564444664865732, -0.010144053027033806, -0.016407236456871033, -0.005549130029976368, -0.014844642952084541, -0.01942995935678482, 0.03291693702340126, 0.00025516230380162597, -0.015933334827423096, -0.02986859902739525, -4.152641486143693e-05, 0.02874148264527321, 0.021863507106900215, -0.008062728680670261, 0.014537246897816658, -0.007044481113553047, 0.0037143626250326633, -0.022913776338100433, -0.010720419697463512, -0.010784460231661797, 0.003935303073376417, -0.016983604058623314, 0.0070316726341843605, 0.026666563004255295, 0.0011231143726035953, -0.017278190702199936, -0.0018827976891770959, 0.020044749602675438, -0.007486362010240555, 0.003608695464208722, 0.0008237239671871066, 0.008280467242002487, -0.01497272402048111, 0.011681030504405499, -0.020249681547284126, -0.015395392663776875, -0.00333652226254344, 0.007844990119338036, -0.013397322036325932, -0.012507155537605286, -0.007588827051222324, 0.02012159861624241, -0.006865167059004307, 0.017700860276818275, -0.00499837938696146, -0.001927626202814281, 0.002776165958493948, 0.014857450500130653, -0.013640676625072956, -0.021107826381921768, 0.019468383863568306, 0.026794644072651863, 0.02945873886346817, -0.005110450554639101, 0.008261254988610744, -0.02429705485701561, -0.012257397174835205, 0.005209713708609343, -0.025603486225008965, 0.0055139074102044106, 0.012910612858831882, 0.006557771470397711, 0.005241734441369772, 0.009490837343037128, -0.044188108295202255, -0.022414257749915123, -0.0053441994823515415, 0.0003003910824190825, 0.03427460044622421, -0.009311523288488388, -0.017470313236117363, -0.010854904539883137, -0.002867423929274082, 0.017611201852560043, 0.018264418467879295, -0.00974700041115284, -0.020044749602675438, -0.009439604356884956, -0.018840784206986427, -0.009228270500898361, 0.0021533698309212923, -0.002252632984891534, -0.031200647354125977, -0.002129354514181614, -0.0003866459592245519, 0.0047262064181268215, 0.022427065297961235, -0.015203271061182022, -0.02204282209277153, -0.0146909449249506, -0.003903282806277275, 0.011309593915939331, -0.020224064588546753, -0.015318544581532478, -0.016714632511138916, 0.018277226015925407, 0.04047374427318573, 0.021658577024936676, 0.008952895179390907, 0.026256700977683067, 0.0035094323102384806, 0.0012704081600531936, -0.003142799250781536, 0.001344855409115553, 0.0005411442252807319, -0.020377762615680695, 0.01878955215215683, 0.039449092000722885, 0.019045714288949966, 0.009247482754290104, 0.004739014431834221, -0.013743141666054726, 0.008280467242002487, 0.007159754168242216, 0.01066918671131134, -0.0014241058379411697, -0.026589713990688324, 0.02436109632253647, -0.0002169379877159372, 0.0023518961388617754, 0.005629180930554867, 0.015933334827423096, 0.0008461382240056992, -0.0011391246225684881, -0.016343194991350174, -0.010611549951136112, 0.0045564984902739525, 0.028510935604572296, -0.02026248909533024, 0.015997376292943954, -0.01522888708859682, 0.012507155537605286, -0.01722695864737034, -0.009010531939566135, 0.005081632640212774, -0.02012159861624241, 0.000755280430894345, -0.0045629022642970085, -0.002515199827030301, -0.012904208153486252, -0.010419427417218685, -0.013819990679621696, 0.015843678265810013, -0.010598741471767426, -0.01080367248505354, -0.007659272290766239, -0.020044749602675438, 0.0009638131014071405, -0.02720450423657894, -0.019891053438186646, -0.015421009622514248, 0.011469695717096329, 0.008472589775919914, -0.027102040126919746, 0.02188912406563759, -0.009727788157761097, -0.031251877546310425, -0.004972763359546661, -0.005433856509625912, 0.004457235336303711, -0.004982369486242533, 0.02881833165884018, 0.0067498935386538506, -0.0041338293813169, -0.0326351597905159, 0.016291962936520576, 0.008664711378514767, -0.004454032983630896, 0.0007276628748513758, 0.0059365760535001755, -0.0034774120431393385, -0.006372053176164627, -0.003072354244068265, 0.03417213633656502, -0.011885960586369038, -0.043701399117708206, 0.028306005522608757, -0.0011775490129366517, 0.008357316255569458, -0.0191353727132082, -0.02598773129284382, -0.004540488123893738, 0.03511993959546089, -0.021453646942973137, -0.010297750122845173, -0.019891053438186646, -0.023182746022939682, -0.04329153895378113, 0.04275359585881233, -0.005123259034007788, 0.008991319686174393, 0.0052065118215978146, -0.01773928478360176, 0.004438023082911968, -0.012225376442074776, -0.02712765522301197, 0.03022722713649273, -0.0015914123505353928, 0.016970794647932053, -0.002902646316215396, 0.02197878062725067, 0.005126460921019316, 0.013397322036325932, -0.010906137526035309, 0.0017643222818151116, 0.0010966976406052709, 0.01750873774290085, -0.021517686545848846, -0.010816480033099651, -0.01731661520898342, 0.013192391954362392, 0.029766134917736053, -0.0018619843758642673, -0.01342293806374073, -0.004578912630677223, -0.0007836985168978572, -0.029714901000261307, 0.009766212664544582, -0.004271517042070627, -0.024284247308969498, -0.017124492675065994, -0.014998340047895908, -0.014908683486282825, -0.017329422757029533, 0.0007572817266918719, 0.01589491032063961, -0.007992283441126347, -0.007403109222650528, -0.02090289629995823, 0.012097295373678207, -0.010060799308121204, 0.0018827976891770959, -0.0055139074102044106, 0.008632691577076912, 0.021171867847442627, -0.017009219154715538, 0.03837320953607559, -0.016586551442742348, 0.002283052308484912, -0.008274063467979431, 0.018815169110894203, -0.008472589775919914, 0.007697696331888437, 0.014114578254520893, -0.010445044375956059, -0.015100806020200253, -0.008325295522809029, -0.018328458070755005, -0.001527371583506465, 0.014165811240673065, -0.005104046780616045, 0.03465884551405907, 0.021351180970668793, -0.005914161913096905, -0.0335061140358448, -0.012122911401093006, 0.008459781296551228, -0.008882449939846992, 0.014063345268368721, 0.03806581348180771, 0.0019580454099923372, 0.009971142746508121, 0.00991990976035595, 0.0023534970823675394, 0.01451163087040186, -0.018879208713769913, -0.029202574864029884, -0.0067498935386538506, 0.03757910430431366, -0.006596195977181196, 0.010944562032818794, -0.022696036845445633, 0.003643917851150036, -0.007652868051081896, 0.03348049521446228, -0.024104932323098183, -0.0020621116273105145, 0.004124223254621029, 0.023502949625253677, -0.010912541300058365, -0.003458199789747596, -0.002777766901999712, -0.002840206725522876, -0.028562167659401894, -0.001095096580684185, -0.007684888318181038, -0.00040605830145068467, -0.015651555731892586, 0.02381034567952156, 0.01659935899078846, -0.015715597197413445, -0.00783858634531498, 0.01800825446844101, -0.022631995379924774, 0.015139230526983738, -0.018200377002358437, 0.010656378231942654, 0.02183789201080799, -0.011399251408874989, -0.019378727301955223, 0.004838277585804462, 0.006993248593062162, 0.010156860575079918, -0.014421973377466202, -0.004601326771080494, 0.02492465451359749, 0.0018139538588002324, -0.00808834470808506, 0.004450831096619368, -0.037118010222911835, -0.020364955067634583, 0.033941589295864105, -0.00935635156929493, 0.033378031104803085, 0.005975000560283661, 0.002608058974146843, -0.009887889958918095, -0.014601287432014942, -0.008184405975043774, -0.005030399654060602, -0.001897206762805581, 0.0284084714949131, -0.012238184921443462, -0.005738049745559692, 0.00894008670002222, 0.006301608402282, 0.008280467242002487, -0.0036951503716409206, -0.005414644256234169, 0.007038076873868704, 0.016829906031489372, -0.03045777417719364, -0.0061319004744291306, 0.01575402170419693, -0.017124492675065994, 0.010944562032818794, -0.017534352838993073, -0.0068843793123960495, 0.011501716449856758, 0.00037703983252868056, -0.028126690536737442, -0.00657057948410511, -0.026871493086218834, -0.033454880118370056, -0.016804289072752, 0.010957369580864906, -0.004373982083052397, 0.003072354244068265, -0.005421048495918512, 0.02296500839293003, -0.013218007981777191, 0.011354422196745872, -0.01551066618412733, -0.00725581543520093, 0.011610585264861584, 0.0015489852521568537, 0.011079047806560993, 0.0026160641573369503, 0.011405655182898045, 0.011873152107000351, 0.006903591565787792, -0.0015633944422006607, -0.008562246337532997, 0.010406619869172573, -0.03809142857789993, 0.016266347840428352, 0.03248146176338196, -0.022068437188863754, -0.02302904799580574, -0.005613170564174652, -0.00540183624252677, -0.001895605819299817, 0.026871493086218834, 0.17265382409095764, -0.011962809599936008, 0.007223795168101788, 0.04831233248114586, -0.0053153811022639275, 0.02614142931997776, 0.023746304214000702, -0.004755024798214436, -0.005718837957829237, 0.03488939255475998, 0.010733227245509624, 0.002452760236337781, -0.02351575903594494, -0.003298097988590598, 0.003006712533533573, -0.012327841483056545, -0.01780332438647747, -0.001219975994899869, -0.005421048495918512, -0.01080367248505354, -0.007146946154534817, -0.020172832533717155, -0.014345125295221806, -0.009388372302055359, 0.03230214864015579, 0.0014937501400709152, 0.001574601628817618, 0.0012575999135151505, 0.013768758624792099, 0.0031331931240856647, -0.010419427417218685, -0.004764630924910307, 0.01232143770903349, 0.013230816461145878, -0.010047991760075092, 0.006807530298829079, -0.00992631446570158, 0.0038296361453831196, 0.0198398195207119, 0.0019004088826477528, 0.005613170564174652, -0.024399520829319954, 0.0050400057807564735, -0.014434781856834888, -0.010502681136131287, 0.004354770295321941, 0.0077873533591628075, -0.011207128874957561, 0.00610948633402586, 0.02281131036579609, -0.0035894832108169794, -0.017009219154715538, 4.4378230086294934e-05, 0.029971064999699593, -0.013563827611505985, 0.0014585277531296015, 0.004492457490414381, 0.005744453985244036, -0.016202306374907494, -0.0028946413658559322, 0.014281083829700947, 0.028280388563871384, -0.02301624044775963, 0.03383912518620491, -0.007588827051222324, 0.022696036845445633, -0.03801457956433296, -0.0023695072159171104, -0.010169669054448605, -0.02226055972278118, -0.0026272712275385857, -0.02748628333210945, -0.003749585011973977, -0.012641641311347485, -0.015305736102163792, -0.023041857406497, 0.02487342245876789, 0.01590771973133087, 0.012603216804564, 0.028434086591005325, -0.011552948504686356, -0.012494347989559174, -0.004614135250449181, 0.01420423574745655, -0.018482156097888947, -0.04032004624605179, 0.02945873886346817, -0.009721383452415466, -0.003083561547100544, -0.006922803819179535, 0.017828941345214844, -0.012020446360111237, 0.001389683922752738, -0.005056016147136688, 0.019750162959098816, 0.004745418671518564, -0.01631757989525795, 0.005786080379039049, -0.011290381662547588, 0.0009029743960127234, -0.01688113808631897, -0.04882465675473213, 0.0242330152541399, -0.0125776007771492, -0.02183789201080799, -0.026461632922291756, -0.016125457361340523, 0.018674278631806374, -0.005744453985244036, -0.002704120008274913, -0.009939122013747692, -0.019084138795733452, 0.0016218316741287708, 0.0017194937681779265, 0.0035894832108169794, 0.013045097701251507, -0.005587554071098566, -0.012103699147701263, -0.009298714809119701, -0.03335241600871086, 0.016330387443304062, -0.0005051213083788753, 0.015600323677062988, -0.003749585011973977, -0.03955155983567238, -0.03017599508166313, -0.024988695979118347, 0.015600323677062988, 0.021556111052632332, -0.051104508340358734, 0.02692272514104843, -0.023976851254701614, -0.012801743112504482, 0.004284325055778027, -0.016279155388474464, 0.013397322036325932, -0.01334608905017376, 0.02274726890027523, -0.013179583474993706, 0.020685158669948578, -0.0016138266073539853, 0.008101153187453747, -0.01504957303404808, 0.012455923482775688, 0.002484780503436923, -0.02669217810034752, 0.014217043295502663, 0.013730334118008614, -0.006820338312536478, 0.0037431810051202774, -0.008222830481827259, -0.031200647354125977, -0.0006540160393342376, -0.009112996980547905, -0.004799853079020977, -0.02337486855685711, -0.03519678860902786, -0.02910011075437069, 0.013794374652206898, 0.006948419846594334, -0.020249681547284126, -0.019865436479449272, 0.02062111720442772, -0.00039224952342920005, -0.010086416266858578, -0.0197885874658823, -0.1642516851425171, 0.02048022672533989, 0.005798888858407736, 0.0009069769294001162, 0.022555148229002953, -0.003101172624155879, 0.01180270779877901, 0.005609968677163124, 0.029842983931303024, 0.00048310731654055417, 0.022926583886146545, 0.010080011561512947, -0.018840784206986427, -0.018392499536275864, 0.014012113213539124, -0.015856485813856125, -0.02028810605406761, 0.021299948915839195, 0.0050400057807564735, 0.007460745982825756, 0.026948342099785805, -0.020890088751912117, 0.02296500839293003, -0.009663746692240238, -0.017214149236679077, 0.01182832382619381, 0.0034165733959525824, 0.0095676863566041, -0.013986497186124325, 0.0023230777587741613, -0.018751127645373344, -0.015638748183846474, 0.002220612484961748, 0.027998609468340874, -0.0066922567784786224, -0.010611549951136112, -0.017624011263251305, -0.0008009094744920731, -0.008216426707804203, 0.016496893018484116, 0.01921222172677517, 0.05630461499094963, 0.004815863445401192, -0.032814472913742065, -0.0032036378979682922, -0.009574090130627155, 0.018187569454312325, -0.0006916399579495192, 0.0031267888844013214, 0.0019452373962849379, 0.027793679386377335, -0.026013346388936043, 0.0005355406319722533, -5.70863121538423e-05, 0.013743141666054726, -0.021312756463885307, -0.008741560392081738, 0.009695767425000668, 0.006071061827242374, 0.013435746543109417, -0.004518073983490467, 0.0016018189489841461, 0.014921491965651512, 0.007998688146471977, -0.017073260620236397, -0.03693869709968567, -0.02288815937936306, -0.014165811240673065, -0.019340302795171738, 0.01232143770903349, -0.007050884887576103, 0.0001672063663136214, 0.027870528399944305, -0.013807183131575584, 0.0019788588397204876, 0.00506562227383256, -0.011777091771364212, 0.009183441288769245, -0.012046062387526035, -0.004063384607434273, 0.0016746652545407414, 0.012206164188683033, -0.027050806209445, -0.0006664239335805178, 0.00487350020557642, 0.003269279608502984, 0.022644804790616035, 0.014665328897535801, 0.0050336020067334175, -0.01836688257753849, 0.01935311034321785, -0.02085166424512863, 0.023784728720784187, -0.015638748183846474, -0.01659935899078846, 0.017982639372348785, 0.009593302384018898, 0.00922186579555273, -0.001913217012770474, -0.012103699147701263, -0.005574746057391167, 3.224551255698316e-05, -0.015164846554398537, 0.0032612744253128767, 0.03312186896800995, 0.004550094250589609, 0.014242659322917461, 0.015421009622514248, 0.04359893500804901, -0.00499837938696146, 0.006737085524946451, 0.01211010292172432, 0.019173797219991684, 0.015267311595380306, 0.011354422196745872, 0.016125457361340523, 0.00240953266620636, -0.014063345268368721, 0.04083237424492836, 0.022555148229002953, 0.031123798340559006, -0.007089309394359589, -0.0023823154624551535, -0.003730372991412878, -0.0039128889329731464, 0.009196249768137932, -0.07761736959218979, -0.034377068281173706, 0.010861309245228767, 0.030124763026833534, -0.011501716449856758, 0.005571544170379639, 0.004457235336303711, 0.006119092460721731, -0.0037367769982665777, 0.030534623190760612, -0.006967632099986076, -0.033249951899051666, 0.015651555731892586, 0.0036631301045417786, 0.010810076259076595, 0.02669217810034752, 0.008203618228435516, 0.012436711229383945, -0.012238184921443462, 0.013006673194468021, -0.006039041560143232, -0.002359901089221239, -0.003855252405628562, -0.01764962635934353, -0.007223795168101788, 0.01009922381490469, -0.027819296345114708, 0.01639442890882492, 0.008626286871731281, -0.0024655682500451803, 0.002680104924365878, -0.0008997723343782127, 0.025808416306972504, -0.02720450423657894, 0.0010566721903160214, 0.0028017822187393904, -0.0012287816498428583, -0.020826047286391258, 0.011245553381741047, -0.016868330538272858, -0.004274718929082155, -0.010681995190680027, 0.016650591045618057, -0.025731567293405533, 0.0242330152541399, -0.013627869077026844, -0.012840167619287968, -0.0032212489750236273, 0.01126476563513279, -0.024040892720222473, -0.01730380766093731, -0.0043867905624210835, -0.027947377413511276, 0.009689363650977612, 0.031764205545186996, 0.0033589366357773542, 0.0047294083051383495, -0.014268276281654835, -0.01136723067611456, -0.01786736585199833, -0.011789899319410324, -0.0030659502372145653, -0.03009914606809616, 0.018892018124461174, 0.003986536059528589, 0.017969829961657524, -0.013057906180620193, -0.039244163781404495, 0.0012920218287035823, -0.0006536157452501357, 0.0021261523943394423, 0.0013224411522969604, -0.014780601486563683, 0.016266347840428352, -0.04490536451339722, -0.02381034567952156, -0.013269240967929363, -0.016727440059185028, 0.005878939758986235, -0.04398317635059357, -0.022836927324533463, -0.01002877950668335, 0.012487943284213543, -0.01667620800435543, -0.005222522187978029, 0.011501716449856758, 0.02301624044775963, -0.003033929970115423, -0.02276007831096649, -0.023054664954543114, 0.005894949659705162, 0.0221709031611681, 0.017547162249684334, -0.016612166538834572, -0.0005155279068276286, 0.018546197563409805, 0.0030483391601592302, 0.012090890668332577, -0.005453068763017654, -0.018418116495013237, -0.009279502555727959, -0.011950001120567322, -0.04590439796447754, 0.010688398964703083, -0.020467419177293777, -0.009964738972485065, 0.031892288476228714, -0.01674024760723114, 0.01850777305662632, -0.020172832533717155, -0.0001042663207044825, 0.01999351754784584, 0.004274718929082155, 0.011008602567017078, -0.006160718854516745, -0.003794413525611162, -0.01360225211828947, -0.021786658093333244, 0.024706916883587837, 0.025091160088777542, 0.016624975949525833, 0.013282048515975475, 0.0038680604193359613, 0.01009922381490469, 0.027844911441206932, 0.006916399579495192, -0.023477334529161453, 0.011527332477271557, -0.003640715964138508, 0.03601650893688202, -0.01275691483169794, -0.017060453072190285, 0.02761436626315117, -0.01766243577003479, -0.008338104002177715, 0.009413988329470158, -0.016586551442742348, 0.0039705256931483746, -0.0006384060834534466, 0.005597160197794437, 0.013499787077307701, 0.0016186295542865992, -0.014153002761304379, -0.026589713990688324, 0.026384783908724785, -0.020019134506583214, 0.006647428497672081, -0.0068907830864191055, -0.026871493086218834, 0.0035574629437178373, 0.021914739161729813, 0.007620847783982754, -0.020083174109458923, 0.024476369842886925, 0.019084138795733452, -0.013538211584091187, -0.012641641311347485, -0.027742447331547737, 0.018354075029492378, 0.02062111720442772, -0.010124840773642063, -0.01296184491366148, 0.017982639372348785, 0.017175724729895592, -0.0004290729411877692, -0.021210292354226112, 0.010067204013466835, 0.006295204162597656, -0.01479340996593237, -0.022862542420625687, 0.010938157327473164, -0.046596039086580276, -0.011706646531820297, 0.007326260209083557, 0.022298984229564667, 0.0004566904972307384, 0.02126152440905571, 0.01038740761578083, -0.007351876702159643, -0.013935264199972153, -0.007268623448908329, 0.0344795323908329, 0.0033525326289236546, 0.011136683635413647, -0.026090195402503014, 0.008555842563509941, -0.0003940506430808455, -0.0034934221766889095, -0.025347324088215828, 0.004233092535287142, -0.026897110044956207, 0.015241695567965508, -0.013218007981777191, 0.011251957155764103, -0.000463094562292099, -0.0016570540610700846, 0.010342579334974289, 0.05043848231434822, -0.009772616438567638, -0.025129584595561028, -0.007851393893361092, 0.0028097874019294977, -0.008645499125123024, -0.01551066618412733, -0.018981674686074257, 0.0055139074102044106, -0.015984566882252693, 0.0009077774593606591, -0.008280467242002487, -0.025244858115911484, 0.0018267619889229536, 0.014934299513697624, 0.02656409703195095, 0.02160734497010708, -0.0029538790695369244, 0.028639016672968864, -0.0016698621911928058, 0.004947146866470575, -0.02986859902739525, -0.024130549281835556, 0.0004879103507846594, -0.002902646316215396, 0.04464920237660408, 0.029766134917736053, 0.016804289072752, 0.013102734461426735, -0.002579240594059229, -0.0009670151048339903, 0.002974692266434431, -0.03581158071756363, -0.004297133535146713, -0.009689363650977612, -0.0057956865057349205, 0.009721383452415466, -0.009401179850101471, -0.013871223665773869, -0.012238184921443462, 0.001356863067485392, 0.007441533729434013, 0.03463323041796684, -0.03184105455875397, 0.04395756125450134, -0.009093784727156162, 0.010316962376236916, 0.0009245881228707731, 0.027639981359243393, 0.025116777047514915, -0.00166505912784487, -0.013922455720603466, -0.020800430327653885, -0.020595500245690346, -0.011495311744511127, -0.007454341743141413, 0.007819374091923237, -0.02281131036579609, -0.02273446135222912, 0.0025232050102204084, -0.01907133124768734, 0.006292002275586128, -0.017278190702199936, -0.012263800948858261, 0.028767099604010582, 0.017995446920394897, 0.029279423877596855, 0.013551020063459873, -0.01553628221154213, -0.003989737946540117, 0.013819990679621696, -0.02579560875892639, -0.009170633740723133, -0.03163612261414528, 0.000524733797647059, -0.0012247790582478046, -0.03857813775539398, 0.0011047027073800564, 0.01590771973133087, -0.004578912630677223, 0.0015978163573890924, -0.009516453370451927, 0.014652520418167114, 0.020377762615680695, -0.013230816461145878, 0.013474171049892902, -0.01750873774290085, -0.00478384317830205, 0.02986859902739525, 0.01942995935678482, 0.012436711229383945, 0.013153967447578907, -0.0027841709088534117]" +15,latte,"[-0.015675576403737068, -0.003918894100934267, 0.004835132975131273, -0.04474814236164093, -0.01050757709890604, -0.008874133229255676, -0.026272375136613846, -0.00011442261165939271, -0.029154924675822258, -0.029868697747588158, 0.02281331643462181, 0.026739073917269707, -0.019258173182606697, -0.008379981853067875, -0.011434110812842846, -0.0012242253869771957, 0.026533177122473717, 0.009265336208045483, 0.036924079060554504, -0.0057273502461612225, -0.01237437129020691, 0.0020538161043077707, 0.014591188170015812, -0.0227035041898489, -0.018571851775050163, -0.016059916466474533, -0.001575965085066855, -0.00888785906136036, 0.0066264308989048, -0.011852767318487167, 0.030884454026818275, -0.017858076840639114, -0.029484357684850693, 0.0040698847733438015, -0.01625208556652069, -0.012696942314505577, -0.001209641108289361, 0.002875685691833496, 0.020232748240232468, -0.00991734117269516, 0.003877714741975069, -0.0026457682251930237, 0.018942464143037796, -0.018311049789190292, -0.015483406372368336, 0.008016231469810009, 0.002930591581389308, 0.013596022501587868, -0.010837011970579624, 0.004790521692484617, 0.011008592322468758, 0.02896275371313095, -0.019958220422267914, -0.013438168913125992, -0.007130877114832401, -0.008798637427389622, -0.018626756966114044, 0.013499937951564789, 0.015620670281350613, -0.01876402087509632, -0.004238033201545477, 0.003205119865015149, -0.016114821657538414, 0.02337609976530075, 0.012834206223487854, 0.004543446470052004, -0.032778698951005936, 0.022621147334575653, -0.0005035881767980754, -0.013630338944494724, 0.005868046078830957, 0.012175338342785835, 0.0033286577090620995, -0.009464369155466557, 0.024419307708740234, -0.0008351670694537461, -0.005995015613734722, 0.010006562806665897, -0.0033235102891921997, 0.0032411518041044474, 0.006454851012676954, -0.005188588052988052, -0.022099541500210762, 0.01507161371409893, 0.021989731118083, -0.0005065908189862967, -0.013856824487447739, 0.031653132289648056, -0.014193122275173664, -0.015002980828285217, -0.006578388623893261, -0.014989254996180534, 0.04510502889752388, 0.02229171246290207, -0.011379205621778965, 0.0028139168862253428, 0.011111539788544178, 0.02997850999236107, -0.018063973635435104, -0.011516469530761242, -0.006351902615278959, 0.014000952243804932, -0.01066543161869049, -0.015524585731327534, -0.004811111371964216, -0.015799114480614662, 2.9329507015063427e-05, 0.005926383659243584, 0.025599779561161995, -0.004059589933604002, -0.01373328734189272, 0.05391739308834076, 0.02731558308005333, -0.042716629803180695, -0.003090161131694913, -0.012237106449902058, 0.005298399366438389, -0.02649199776351452, 0.00440618209540844, -0.0198895875364542, 0.0021807856392115355, 0.01094682328402996, 0.01345875859260559, -0.016883501783013344, 0.003030108055099845, 0.00881236419081688, 0.008935902267694473, -0.007988778874278069, -0.018873833119869232, 0.01373328734189272, 0.018667936325073242, -0.01844831369817257, -0.0010672294301912189, 0.005147408694028854, -0.021619116887450218, 0.0012036358239129186, -0.03055501915514469, -0.0013966636033728719, -0.019409162923693657, -0.014151942916214466, 0.010912506841123104, 0.027329308912158012, 0.012532224878668785, 0.015373595058918, -0.03157077357172966, 0.023485912010073662, 0.015030434355139732, 0.004035568796098232, 0.0009394021471962333, 0.008180948905646801, 0.012394960969686508, -0.025970393791794777, 0.016883501783013344, 0.012003757990896702, -0.013314630836248398, 0.009114345535635948, -0.022181900218129158, 0.03294341638684273, -0.027192045003175735, 0.007075971458107233, -0.009759487584233284, -1.6058844266808592e-05, 0.03448077663779259, 0.008750595152378082, 0.03961445763707161, 0.03571615368127823, 0.0320923775434494, -0.001894246437586844, 0.026272375136613846, -0.0040698847733438015, 0.0031845304183661938, 0.025448789820075035, -0.03837908059358597, 0.03752804175019264, 0.01809142716228962, 0.022840769961476326, -0.0004525430267676711, -0.002997507806867361, -0.009834982454776764, -0.008880996145308018, -0.014522556215524673, 0.016169726848602295, 0.022017184644937515, 0.01573048159480095, -0.00547341164201498, -0.0320923775434494, 0.009690855629742146, -0.009237883612513542, 0.004389023873955011, -0.015250056982040405, -0.020479824393987656, 0.03793983533978462, -0.015922650694847107, -0.0033406682778149843, -0.6812698841094971, -0.03689662739634514, 0.010356586426496506, -0.008098590187728405, -0.00635533407330513, 0.027892092242836952, -0.0024347244761884212, -0.011694912798702717, -0.0031845304183661938, 0.014467651024460793, -0.007384816184639931, 0.018791474401950836, 0.014035268686711788, 0.005006712861359119, -0.021042607724666595, -0.015483406372368336, 0.016210906207561493, -0.007535806857049465, -0.01124880462884903, 0.007048518396914005, -0.018311049789190292, 0.028770584613084793, -0.005572928115725517, 0.024529119953513145, 0.02168774977326393, 0.006544072646647692, 0.03382190689444542, -0.01840713433921337, -0.022840769961476326, 0.008126042783260345, -0.01017128024250269, 0.007679934147745371, 0.0022957443725317717, -0.007734839804470539, 0.05268201604485512, -0.009196704253554344, -0.017720812931656837, 0.02603902667760849, 0.0034110164269804955, 0.012511635199189186, -0.02264859899878502, -0.0335199274122715, 0.006423966493457556, -0.008702552877366543, -0.0036580918822437525, -4.656796591007151e-05, 0.030719736590981483, 0.0017226662021130323, -0.012621446512639523, -0.021179871633648872, 0.017926709726452827, -0.012408686801791191, -0.009423189796507359, -0.0015665281098335981, -0.004742479417473078, 0.005150840617716312, 0.03560634329915047, -0.03244926407933235, -0.0031073191203176975, 0.024254590272903442, -0.0009059439762495458, 0.000587662507314235, -0.00440618209540844, -0.007103424519300461, -0.015250056982040405, -0.0055283172987401485, -0.005119956098496914, 0.005312126129865646, 0.013582296669483185, -0.00412479043006897, 0.009526138193905354, 0.020411191508173943, 0.004121358972042799, -0.0028997070621699095, 0.025284072384238243, 0.01127625722438097, 0.020891616120934486, 0.0030078026466071606, 0.009697718545794487, -0.007679934147745371, 0.0021052903030067682, -0.014989254996180534, -0.025558600202202797, 0.015744207426905632, 0.03310813382267952, -0.014138216152787209, -0.02367808111011982, 0.00471502635627985, 0.008894722908735275, -0.003285762621089816, 0.009464369155466557, 0.035386718809604645, 0.011626280844211578, -0.01773453876376152, -0.01209297962486744, -0.004248328041285276, -0.013355810195207596, 0.0038811464328318834, -0.014906896278262138, -0.029154924675822258, -0.0013975214678794146, 0.03481021150946617, 0.004783658776432276, 0.00988988857716322, 0.0022356912959367037, 0.025558600202202797, -0.031351152807474136, 0.03404153138399124, 0.029429452493786812, -0.04985437169671059, -0.017720812931656837, 0.005861183162778616, -0.0055248853750526905, -0.01610109582543373, 0.01722666248679161, -0.025105629116296768, 0.005195451434701681, -0.011784134432673454, 0.00804368406534195, -0.014975528232753277, 0.007762292865663767, 0.014234301634132862, 0.021742654964327812, 0.013348947279155254, -0.013685244135558605, 0.018462039530277252, -0.00288941222243011, -0.015085339546203613, -0.02050727792084217, -0.004214012064039707, 0.0024244296364486217, 0.024364402517676353, 0.015250056982040405, 0.0029872129671275616, 0.006063647568225861, 0.0017509768949821591, 0.014577462337911129, -0.0072887311689555645, 0.004515993408858776, -0.005164566915482283, -0.018846379593014717, -0.012161611579358578, -0.005092503037303686, 0.005469979718327522, -0.00796818919479847, -0.015922650694847107, -0.008098590187728405, 0.0027847483288496733, -0.031900208443403244, 0.03711624816060066, -0.017569823190569878, -0.016773689538240433, -0.010370313189923763, 0.001928562531247735, 0.017597274854779243, -0.007172056473791599, -0.014055858366191387, -0.020205296576023102, 0.0014155374374240637, -0.0024621773045510054, 0.0017844351241365075, 0.01691095344722271, -0.03876342251896858, 0.017405105754733086, 0.0014232585672289133, -0.031653132289648056, -0.0012628310360014439, 0.019450342282652855, -0.01094682328402996, -0.030719736590981483, -0.011626280844211578, -0.023307466879487038, -0.00010750578076113015, 0.018420860171318054, -0.0046463944017887115, 0.0005233199335634708, -0.00881922710686922, -0.0012139305472373962, -0.0041694012470543385, -0.004632668104022741, 0.009265336208045483, 0.015497132204473019, -0.013493075035512447, 0.0023094709031283855, 0.02474874258041382, 0.014563735574483871, 0.024789921939373016, 0.017103124409914017, -0.008084863424301147, 0.004262054804712534, -0.011461563408374786, -0.011948851868510246, -0.0049071963876485825, -0.009725171141326427, 0.013396989554166794, -0.030829546973109245, -0.001663470990024507, 0.011001728475093842, 0.014385292306542397, -0.014673546887934208, 0.010466397739946842, -0.005343010649085045, 0.017611002549529076, -0.001727813621982932, 0.015620670281350613, -0.045434463769197464, 0.001481595914810896, -0.01876402087509632, 0.027713648974895477, 0.02116614580154419, 0.013547980226576328, -0.03741823136806488, -0.027535205706954002, -0.001115271938033402, 0.023719260469079018, 0.029896151274442673, 0.011029181070625782, 0.009176114574074745, -0.0014592903899028897, -0.012319465167820454, 0.0009033702663145959, 0.0012207938125357032, 0.005950404796749353, -0.023650627583265305, -0.02824898064136505, 0.003568870248273015, -0.0039257570169866085, 0.01763845421373844, 0.005559201817959547, -0.018942464143037796, -0.005679307971149683, 0.010912506841123104, -0.01666387915611267, 0.00740540586411953, -0.009265336208045483, -0.010191869921982288, -0.0014901749091222882, -0.026437092572450638, 0.029429452493786812, -0.0030541291926056147, -0.010795832611620426, -0.002848232863470912, 0.03577106073498726, -0.022058362141251564, 0.009361420758068562, 0.004320391919463873, 0.013520527631044388, 0.012923427857458591, -0.003393858205527067, -0.011036044918000698, -0.005634697154164314, 0.02896275371313095, -0.018489493057131767, 0.01927189901471138, 0.03406898304820061, -0.014083310961723328, 0.018434587866067886, 0.011434110812842846, 0.020795531570911407, 0.01406958419829607, 0.019848408177495003, 0.013376399874687195, 0.012806753627955914, -0.007769155781716108, -0.012497908435761929, -0.014412744902074337, 0.013342084363102913, -0.011928262189030647, -0.008441750891506672, 0.006729379296302795, 0.01071347389370203, -0.008846679702401161, 0.00881236419081688, -0.013644065707921982, 0.021948551759123802, -0.01450883038341999, -0.018956191837787628, 0.006382787134498358, 0.032833606004714966, -0.007817198522388935, -0.04916805028915405, -0.03475530445575714, 0.02470756322145462, 0.004413045477122068, 0.00938201043754816, 0.0035860282368957996, -0.025503695011138916, 0.004488540813326836, -0.020479824393987656, -0.002218533307313919, 0.023897703737020493, 0.005974425934255123, 0.018585577607154846, -0.012847932986915112, 0.007480901200324297, -0.02429576963186264, 0.009855572134256363, -0.010185006074607372, -0.004649825859814882, 0.01584029383957386, -0.007515217177569866, -0.008798637427389622, 0.0014387008268386126, -0.01717175543308258, 0.04106945917010307, -0.018667936325073242, -0.025860581547021866, -0.0022339755669236183, 0.006159732583910227, 0.004076747689396143, 0.004941512364894152, 0.0013958057388663292, 0.004732184577733278, -0.020740626379847527, 0.021825013682246208, 0.006334744393825531, 0.008373118937015533, 0.005154272075742483, 0.038516346365213394, -0.00035131064942106605, 0.0036924080923199654, -0.027892092242836952, -0.018365954980254173, 0.00015313542098738253, 0.017542369663715363, 0.0432656891644001, 0.003884577890858054, 0.010212459601461887, 0.010109511204063892, -0.004756205715239048, -0.016938406974077225, 0.017240388318896294, -0.00822899118065834, 0.0099447937682271, 0.006382787134498358, -0.009759487584233284, 0.02214072085916996, -0.004358139354735613, 0.02142694778740406, -0.0012491046218201518, 0.003702702932059765, -0.003616912756115198, 0.028825489804148674, -0.01614227518439293, 0.002347218571230769, 0.001697787083685398, 0.016924681141972542, -0.023801619186997414, 0.01942288875579834, -0.010850737802684307, 0.02435067668557167, 0.028413698077201843, 0.007103424519300461, -0.021742654964327812, 0.010377176105976105, -0.000872056873049587, 3.876642222166993e-05, -0.005672444589436054, -0.022483881562948227, 0.01135175209492445, 0.01584029383957386, 0.008977081626653671, 0.03409643843770027, -0.010356586426496506, 0.020122937858104706, 0.004224306903779507, 0.001071518985554576, 0.012175338342785835, 0.011681186966598034, -0.02710968628525734, -0.008963354863226414, 0.04230483993887901, 0.002808769466355443, -0.0202464759349823, 0.04491285979747772, 0.006557798944413662, -0.013074418529868126, 0.003368121339008212, 0.010281091555953026, 0.02367808111011982, -0.0071446034125983715, -0.010610525496304035, 0.00439588725566864, -6.857849803054705e-05, -0.023074118420481682, -0.003266888903453946, -0.004986123647540808, -0.007776019163429737, 0.003354394808411598, -0.028770584613084793, -0.017199208959937096, -0.020685721188783646, -0.029182376340031624, 0.0034247427247464657, -0.006997044663876295, -0.0025050723925232887, -0.021825013682246208, -0.011111539788544178, 0.010569346137344837, 0.02311529777944088, -0.0072681414894759655, -0.02069944702088833, 0.01191453542560339, 0.02275841124355793, -0.0040287054143846035, -0.0056072440929710865, -0.023252561688423157, -0.030719736590981483, -0.00685634883120656, -0.0011624564649537206, 0.002513651270419359, -0.011598828248679638, 0.003520827740430832, 0.002620031125843525, 0.021989731118083, -0.006921549327671528, 0.01660897210240364, -0.018942464143037796, -0.016169726848602295, -0.005730781704187393, 0.029896151274442673, 0.001131572062149644, -0.008352529257535934, -0.023032939061522484, 0.009615359827876091, 0.0004147953586652875, -0.008970217779278755, 0.007178919855505228, 0.014769632369279861, 0.012717531993985176, -0.002467324724420905, 0.0017020765226334333, -0.02393888309597969, 0.0071651930920779705, 0.03516709804534912, 0.003939483780413866, 0.021138692274689674, -0.00771425012499094, -0.0073299105279147625, 0.01947779580950737, -0.01584029383957386, 0.003285762621089816, -0.004282644018530846, -0.018571851775050163, -0.007940736599266529, -0.027041055262088776, 0.022332891821861267, 0.013753877021372318, 0.016581520438194275, 0.00802309438586235, 0.019189540296792984, -0.008640783838927746, -0.014248027466237545, 0.00048557223635725677, 0.015222604386508465, 0.014385292306542397, -0.003097024280577898, -0.025489969179034233, -0.046724747866392136, -0.02015038952231407, -0.006454851012676954, -0.0026491996832191944, -0.005068481899797916, -0.014302933588624, -0.010548756457865238, 0.011976304464042187, -0.004955239128321409, -0.007721113506704569, -0.007515217177569866, -0.02706850692629814, 0.01071347389370203, -0.007872103713452816, -0.006087669171392918, 0.022387797012925148, -0.020822985097765923, 0.013143050484359264, -0.008956491947174072, -0.0030541291926056147, -0.009189840406179428, -0.006358765996992588, -0.02748030051589012, -0.01486571691930294, 0.014316660352051258, 0.0018427723553031683, 0.019642513245344162, 0.006314154714345932, 0.007878967560827732, -0.03330030292272568, -0.0024244296364486217, -0.0007262136205099523, -0.009436916559934616, -0.013932320289313793, -0.005041029304265976, 0.013973499648272991, 0.03412389010190964, 0.0038193773943930864, 0.038516346365213394, -0.011461563408374786, -0.01799534074962139, 0.03417879343032837, -0.0007703955634497106, -0.012367507442831993, -0.044473614543676376, 0.0012911417288705707, 0.009766350500285625, 0.003809082554653287, -0.005995015613734722, 0.00343332183547318, 0.0237329863011837, -0.011193898506462574, 0.04065766558051109, -0.0027332741301506758, 0.01045267190784216, -0.007515217177569866, 0.019615059718489647, -0.026258649304509163, 0.01748746447265148, -0.001440416555851698, -0.00032278543221764266, -0.004642962943762541, -0.03607304021716118, 0.019395437091588974, 0.0034178795758634806, 0.012998923659324646, -0.003435037564486265, 0.012518498115241528, 0.021358314901590347, 0.005988152232021093, -0.004083611071109772, 0.010830148123204708, 0.001696071238256991, -0.0015459384303539991, -0.003333805128931999, -0.018626756966114044, -0.020726900547742844, -0.03168058767914772, -0.025874309241771698, -0.03541417419910431, 0.007069108076393604, -0.002101858612149954, -0.03275124728679657, 0.027041055262088776, -0.022483881562948227, -0.015126518905162811, 0.00848293025046587, 0.014879443682730198, 0.01589519903063774, -0.004821406211704016, 0.02819407358765602, 0.011173308826982975, -0.008784911595284939, 0.0035585754085332155, 0.019862135872244835, -0.004347844514995813, -0.01076151616871357, 0.005102797877043486, 0.029045112431049347, 0.008379981853067875, -0.011852767318487167, 0.0019783207681030035, 0.038571249693632126, -0.0023094709031283855, -0.007748566102236509, 0.005119956098496914, 0.01024677511304617, -0.015977557748556137, -0.03417879343032837, -0.03044520877301693, -0.005308694206178188, -0.006056784652173519, -0.0011718934401869774, 0.009821256622672081, -0.0008793490123935044, 0.004179696086794138, -0.009464369155466557, 0.021907372400164604, -0.03714370355010033, 0.026670441031455994, -0.0160873681306839, -0.02978633902966976, -0.004097337368875742, -0.0037781980354338884, -0.01068602129817009, -0.005572928115725517, -0.005542043596506119, 0.02741166763007641, -0.01777571812272072, 0.01660897210240364, -0.006863211747258902, -0.000755811226554215, -0.015318688936531544, 0.019711144268512726, -0.0035242591984570026, 0.0247624684125185, 0.007604438811540604, -0.002599441446363926, 0.0019903313368558884, -0.008290760219097137, 0.010205595754086971, -0.01973859779536724, -0.0036272075958549976, 0.014000952243804932, -0.015497132204473019, -0.002599441446363926, 0.005198882892727852, -0.003311499720439315, -0.02455657161772251, -0.008105453103780746, -0.00048600119771435857, -0.012298875488340855, -0.023156477138400078, 0.0014215427218005061, 0.008215264417231083, -0.008119179867208004, -0.025489969179034233, -0.007810335140675306, -0.006513188127428293, -0.017569823190569878, 0.019958220422267914, -0.009745760820806026, -0.007384816184639931, 0.020109210163354874, -0.021344589069485664, 0.0275763850659132, -0.004313528537750244, -0.010006562806665897, -0.005950404796749353, 0.01912090927362442, -0.00492092315107584, 0.00824958086013794, 0.027301857247948647, -0.008997670374810696, 0.000564499176107347, -0.0008750595152378082, -0.001995478756725788, -0.004461087752133608, 0.04063021391630173, -0.0018959622830152512, 0.04161851853132248, 0.0033235102891921997, -0.006695063319057226, -0.024529119953513145, -0.0019937630277127028, 0.005504296161234379, -0.020836710929870605, -0.016732510179281235, 0.002719547599554062, -0.026533177122473717, 0.005027302540838718, -0.004426771774888039, 0.0065303463488817215, 0.004931217525154352, -0.03681426867842674, 0.0025153672322630882, -0.003333805128931999, 0.031131528317928314, -0.025201713666319847, -0.012854795902967453, 0.00315193017013371, 0.0038880095817148685, -0.009972247295081615, 0.01752864383161068, -0.01666387915611267, -0.010555620305240154, 0.028097989037632942, 0.017748266458511353, -0.004924354609102011, 0.01916208676993847, -0.0160873681306839, -0.028660772368311882, -0.003476216923445463, -0.025846855714917183, 0.006152869667857885, -0.014440197497606277, -0.013307767920196056, 0.012909702025353909, -0.017720812931656837, -0.006420534569770098, -0.04337549954652786, 0.01610109582543373, -0.027768556028604507, 0.006276407279074192, -0.008009368553757668, -0.013472485356032848, 0.011797861196100712, -0.001357200206257403, -0.0018925307085737586, 0.013870551250874996, -0.004543446470052004, 0.020589634776115417, 8.820299990475178e-05, -0.002719547599554062, 0.021399494260549545, -0.03008832037448883, 0.022236807271838188, -0.027329308912158012, -0.029539264738559723, -0.01216847449541092, 0.04491285979747772, 0.020987702533602715, 0.023348646238446236, 0.017254114151000977, -0.01578538678586483, -0.021701475605368614, -0.00888785906136036, -0.0030129500664770603, -0.004986123647540808, -0.001744113746099174, 0.01973859779536724, -0.027439121156930923, -0.010061468929052353, 0.00579255074262619, 0.015318688936531544, -0.007707386743277311, 0.009395737200975418, 0.0014429902657866478, -0.0007442295318469405, 0.011681186966598034, -0.005469979718327522, -0.0007210662006400526, -0.003239436075091362, -0.024886006489396095, 0.013856824487447739, 0.005370463244616985, -0.00960849691182375, 0.02973143383860588, -0.004574330523610115, -0.011138993315398693, 0.022511335089802742, 0.0018496356206014752, -0.03445332497358322, -0.015387320891022682, 0.011729229241609573, -0.0104595348238945, 0.011667460203170776, 0.013136187568306923, 0.013856824487447739, -0.00526408338919282, 0.0015699596842750907, -0.01516769826412201, -0.002940886188298464, 0.010500714182853699, 0.014357839711010456, 0.02798817865550518, -0.03398662433028221, 0.0015905493637546897, -0.003237720113247633, 0.011825313791632652, -0.007824061438441277, 0.0006816027453169227, 0.011049770750105381, -0.0048282695934176445, -0.023513363674283028, 0.00743285845965147, -0.004509130027145147, -0.020589634776115417, -0.018695389851927757, -0.017967889085412025, -0.004289507400244474, -0.0007566690910607576, 0.20139409601688385, -0.015963830053806305, -0.00303697120398283, 0.043540216982364655, -0.027233224362134933, -0.0054253689013421535, 0.012621446512639523, 0.011132129468023777, -0.005775392986834049, 0.032778698951005936, -0.0018753726035356522, 0.007425995077937841, 0.0011710355756804347, 0.004546877928078175, -0.007961325347423553, 0.009217293933033943, -0.01850321888923645, -0.03445332497358322, 0.012031210586428642, -0.006784284953027964, 0.020370012149214745, -0.010754653252661228, 0.001799877267330885, -0.00930651556700468, 0.03453568369150162, 0.01345189567655325, 0.004938080906867981, -0.008036821149289608, 0.024487940594553947, 0.010095784440636635, -0.0005267515080049634, 0.02142694778740406, -0.0026045888662338257, 0.005130250938236713, -0.009457506239414215, 0.01219592709094286, -0.005991584155708551, -0.018269870430231094, 0.033492475748062134, 0.03837908059358597, 0.007192646153271198, 0.009292788803577423, 0.020383739843964577, -0.010274228639900684, -0.012415550649166107, 0.021797560155391693, -0.008112316019833088, -0.02105633355677128, 0.014289206825196743, 0.020287655293941498, -0.025874309241771698, 0.025229167193174362, 0.02455657161772251, 0.010885054245591164, -0.00881236419081688, 0.029539264738559723, 0.0012010621139779687, 0.01752864383161068, -0.0022871652618050575, 0.0006459997966885567, -0.0078034717589616776, 0.026560630649328232, -0.00022991759760770947, 0.02763129025697708, -0.006156301125884056, -0.0057891192846000195, -0.01219592709094286, -0.019505247473716736, -0.01726784184575081, -0.004704731982201338, -0.0019457205198705196, -0.01936798356473446, -0.0003468066861387342, 0.002680084202438593, -0.00938201043754816, -0.03955955430865288, 0.007535806857049465, 0.0258331298828125, -0.013362673111259937, 0.022785862907767296, 0.0011392931919544935, -0.02532525174319744, -0.0010792401153594255, -0.003990957513451576, -0.009052576497197151, -0.049524936825037, -0.02474874258041382, -0.0015442227013409138, -0.007693660445511341, 0.0012885680189356208, 0.00580627704039216, -0.02553114853799343, -0.0021344588603824377, 0.004358139354735613, 0.015648122876882553, 0.013650928623974323, -0.022332891821861267, 0.015359868295490742, -0.018338501453399658, 0.0036512287333607674, -0.017542369663715363, -0.012106705456972122, 0.024872280657291412, 0.02296430617570877, -0.015373595058918, 0.0012104989727959037, -0.010521303862333298, -0.0070244972594082355, 0.011777271516621113, -0.021083787083625793, -0.016389349475502968, -0.029429452493786812, 0.013046965934336185, -0.011392931453883648, -0.016032462939620018, -0.0012817048700526357, 0.010205595754086971, -0.012772437185049057, -0.014577462337911129, 0.004793953616172075, 0.04013606160879135, -0.029511811211705208, 0.005137114319950342, 0.013630338944494724, -0.006063647568225861, -0.021921098232269287, -0.016128547489643097, 0.0027298424392938614, -0.0005147408810444176, -0.02920982986688614, 0.01068602129817009, -0.01296460721641779, 0.006986749824136496, -0.019669964909553528, -0.015387320891022682, 0.007878967560827732, 0.011921399272978306, -0.0027624426875263453, 0.005957267712801695, -0.0014026688877493143, 0.0025170829612761736, -0.014700999483466148, 0.005137114319950342, -0.015565764158964157, 0.002817348577082157, -0.022277986630797386, -0.010576209984719753, -0.008826090954244137, -0.029154924675822258, -0.027150865644216537, -0.018777748569846153, -0.017350200563669205, 0.0026063048280775547, -0.00804368406534195, 0.030994264408946037, -0.004262054804712534, -0.037555497139692307, -0.019999399781227112, 0.010589935816824436, 0.0022768706548959017, -0.02382907085120678, -0.02167402394115925, 0.0028242117259651423, -0.016265811398625374, -0.009505548514425755, -0.008071137592196465, -0.17943181097507477, -0.0037919245660305023, 0.011434110812842846, -0.013040103018283844, 0.0006502893520519137, 0.002940886188298464, 0.030994264408946037, 0.016306990757584572, -0.020822985097765923, 0.015044160187244415, 0.015359868295490742, 0.0019251309568062425, -0.030225584283471107, -0.004310097079724073, 9.1902693384327e-05, 0.00413851672783494, 0.008963354863226414, 0.005579791497439146, 0.019395437091588974, 0.004241465125232935, 0.037555497139692307, -0.016265811398625374, 0.00851038284599781, -0.007117150817066431, 0.023554543033242226, 0.008784911595284939, -0.012731257826089859, 0.040108609944581985, -0.011125266551971436, 0.011344889178872108, -0.020973974838852882, 0.009134935215115547, 0.04562663286924362, 0.015675576403737068, 0.011640007607638836, 0.000947123218793422, -0.00519201997667551, -0.012621446512639523, -0.01649916172027588, 0.01076151616871357, 0.016897227615118027, 0.012937154620885849, 0.02506444975733757, 0.00492092315107584, -1.3129913895681966e-05, 0.017336472868919373, 0.013849961571395397, -0.011578238569200039, 0.023087844252586365, -0.012237106449902058, 0.019079729914665222, -0.04787776619195938, 0.00033994344994425774, 0.0014429902657866478, -0.004588057287037373, 0.013980362564325333, 0.00093082309467718, 0.013204819522798061, -0.0008398855570703745, 0.0001475590543122962, -0.021193597465753555, -0.028605867177248, 0.0039669363759458065, -0.000865193665958941, 0.0055489069782197475, -0.03316304087638855, -0.009793803095817566, 0.027562659233808517, -0.0009076597634702921, -0.005257220473140478, -0.019107181578874588, -0.018736569210886955, 0.013596022501587868, -0.017254114151000977, 0.00963594950735569, 0.011132129468023777, -0.014700999483466148, 0.014522556215524673, 0.02424086444079876, -0.01998567394912243, -0.0328061543405056, 0.028633320704102516, -0.0004371007962618023, 0.007576985750347376, -0.0005700755282305181, 0.002184217097237706, -0.0013674949295818806, 0.0025857151485979557, -0.0028276434168219566, -0.026739073917269707, 0.0314609631896019, -0.021536758169531822, -0.01784435100853443, -0.03481021150946617, 0.0015244908863678575, 2.0227707864250988e-05, -0.0054665482603013515, 0.012799889780580997, -0.004272349178791046, 0.008826090954244137, 0.0030129500664770603, -0.01876402087509632, -0.03695153445005417, 0.026944970712065697, 0.01584029383957386, 0.0065886834636330605, -0.0039291889406740665, 0.012017483823001385, 0.018777748569846153, -0.016114821657538414, -0.024309497326612473, 0.006393081974238157, 0.012532224878668785, 0.01706194505095482, -0.0014086742885410786, 0.005593517795205116, -0.006835759151726961, -0.014879443682730198, 0.03335520997643471, -0.014344112947583199, 0.013781329616904259, -0.002131027402356267, -0.0001884166122181341, 0.0010011710692197084, -0.0005387621349655092, -0.005006712861359119, -0.1019049733877182, -0.023444732651114464, 0.012243970297276974, 0.0099447937682271, -0.0181875117123127, 0.00274185324087739, -0.010356586426496506, 0.010981138795614243, -0.007858377881348133, 0.03310813382267952, -0.012504772283136845, -0.004306665621697903, -0.0020658266730606556, 0.02034256048500538, 0.03931247815489769, -0.0004396745061967522, 0.004951807204633951, -0.01649916172027588, -0.03991644084453583, 0.0058714780025184155, 0.010541893541812897, -0.008983944542706013, 0.008544698357582092, 0.0006468577194027603, -0.025105629116296768, -0.008874133229255676, -0.013232272118330002, 0.02157793752849102, 0.02619001641869545, 0.012051800265908241, 0.02511935494840145, -0.005284673068672419, 0.014577462337911129, -0.031131528317928314, -0.002366092288866639, -0.008400571532547474, -0.017542369663715363, 0.015030434355139732, 0.020054304972290993, -0.010335996747016907, -0.010809558443725109, 0.013465621508657932, -8.755957242101431e-05, -0.02300548553466797, -0.010596798732876778, -0.005957267712801695, 0.007014202419668436, 0.00635533407330513, 0.0029391704592853785, -0.030582472681999207, 0.0006923265173099935, -0.00935455784201622, -0.031543321907520294, -0.003071287414059043, 0.024172231554985046, -0.02855096198618412, 0.0016986449481919408, 0.011784134432673454, -0.01726784184575081, -0.021770108491182327, -0.020466098561882973, 0.008524109609425068, 0.0015356437070295215, 0.010027152486145496, 0.011331162415444851, -0.007178919855505228, -0.010212459601461887, -0.014289206825196743, 0.012799889780580997, 0.009883024729788303, -0.012580267153680325, 0.0029065702110528946, -0.001004602643661201, 0.007343636825680733, -0.021770108491182327, -0.011784134432673454, -0.02019156888127327, -0.016993312165141106, 0.003936051856726408, -0.004512561950832605, -0.019546426832675934, -0.014563735574483871, -0.006358765996992588, -0.014357839711010456, 0.02721949853003025, 0.005998447071760893, 0.004697868600487709, 0.012456730008125305, -0.0032034041360020638, -0.027507754042744637, -0.006729379296302795, 0.013753877021372318, 0.020026851445436478, -0.04104200750589371, -0.016979586333036423, 0.018365954980254173, -0.006173458881676197, -0.008359392173588276, 0.035084739327430725, -0.007625028491020203, -0.012394960969686508, 0.0006653026212006807, -0.0622081533074379, 0.017460010945796967, 0.0104595348238945, -0.007906420156359673, 0.010514440946280956, -0.007776019163429737, -0.011049770750105381, -0.00740540586411953, -0.0020847006235271692, -0.009491821750998497, -0.02418595924973488, 0.019971946254372597, 0.0004023557994514704, -0.009279062040150166, -0.013843098655343056, -0.01573048159480095, 0.02669789455831051, 0.00719950906932354, 0.006149437744170427, 0.02034256048500538, 0.016416803002357483, 0.01968369260430336, -0.0019302783766761422, -0.004742479417473078, -0.015675576403737068, 0.007611302193254232, -0.01066543161869049, 0.007721113506704569, -0.009594770148396492, -0.00263204169459641, 0.011365478858351707, -0.010040879249572754, 0.0009265335975214839, 0.020630814135074615, -0.014591188170015812, -0.023952608928084373, -0.015181425027549267, 0.022003456950187683, -0.0010792401153594255, 0.0181875117123127, -0.01216847449541092, -0.01702076569199562, 0.007940736599266529, -0.021028881892561913, -0.02356826886534691, -0.0008973649819381535, -0.010287954472005367, 0.01953270100057125, 0.025036996230483055, 0.0065303463488817215, 0.01540104765444994, 0.02547624334692955, 0.013911730609834194, -0.02787836641073227, 0.0020744057837873697, -0.03214728459715843, 0.020122937858104706, 0.013417579233646393, 0.0171168502420187, -0.015222604386508465, 0.021138692274689674, 0.01460491493344307, -0.004255191422998905, -0.007776019163429737, 0.009038849733769894, -0.0031931092962622643, -0.00883981678634882, -0.002633757656440139, 0.021358314901590347, -0.019711144268512726, 0.006695063319057226, 0.017007039859890938, -0.006997044663876295, 0.005826866719871759, 0.028770584613084793, -0.023746713995933533, 0.02629982866346836, -0.002223680727183819, -0.023485912010073662, 0.010631115175783634, 0.006197480484843254, -0.010370313189923763, -0.004598352126777172, 0.014948075637221336, 0.013307767920196056, 0.018063973635435104, -0.006842622067779303, 0.003870851593092084, 0.013108734972774982, 0.024254590272903442, -0.0016926396638154984, -0.0028448014054447412, 0.001232804381288588, 0.002916865050792694, 0.0034419007133692503, -0.0010740926954895258, 0.002614883705973625, -0.010583072900772095, 0.007734839804470539, 0.017542369663715363, 0.01158510148525238, -0.015332415699958801, -0.0018667936092242599, -0.027178319171071053, -0.007652481086552143, 0.006135711446404457, -0.036210305988788605, -0.038818325847387314, 0.004389023873955011, 0.01271066814661026, 0.025023270398378372, 0.002880833111703396, 0.017048219218850136, 0.02532525174319744, -0.013280315324664116, 0.0002155477413907647, -0.02731558308005333, -0.0012817048700526357, -0.013163640163838863, 0.04139889404177666, 0.02356826886534691, 0.006715652998536825, 0.031598228961229324, -0.004327255301177502, 0.00771425012499094, 0.01401467900723219, 0.011619417928159237, -0.023925157263875008, 0.02896275371313095, 0.018626756966114044, -0.014179395511746407, 0.00958790723234415, -0.021605391055345535, -0.020726900547742844, -0.01516769826412201, 0.020575908944010735, 0.012559677474200726, 0.033382661640644073, -0.011983168311417103, 0.05622343346476555, -0.016375623643398285, -0.01634817011654377, -0.004488540813326836, 0.028358791023492813, 0.030280491337180138, 0.008462340570986271, -0.004951807204633951, -0.027713648974895477, -0.01219592709094286, 0.007487764116376638, 0.015469679608941078, 0.004752774257212877, -0.022415250539779663, -0.004347844514995813, 0.003915462177246809, -0.020644541829824448, 0.01019873283803463, -0.024213410913944244, -0.026835158467292786, 0.016581520438194275, 0.015016707591712475, 0.008441750891506672, -0.015346141532063484, -0.0016806289786472917, 0.011770408600568771, 0.01665015146136284, -0.013520527631044388, -0.0035122486297041178, -0.027919545769691467, 0.009162387810647488, 0.016526613384485245, -0.020877890288829803, -0.016032462939620018, 0.037555497139692307, -0.029758887365460396, -0.008414297364652157, 0.007844651117920876, 0.0032565940637141466, 0.007213235832750797, -0.013218546286225319, 0.011935125105082989, -0.02937454730272293, -0.031955115497112274, 0.029813792556524277, -0.014934348873794079, -0.0015159118920564651, -0.014563735574483871, -0.02639591321349144]" +16,cake,"[-0.013669422827661037, -0.016827937215566635, -0.007942156866192818, -0.011683883145451546, -8.861820970196277e-05, -0.026867033913731575, -0.02442934177815914, -0.038452621549367905, 0.0005950884078629315, -0.024416236206889153, 0.03404904901981354, 0.031952112913131714, -0.014272292144596577, -0.015805678442120552, -0.016447866335511208, 0.035962507128715515, 0.04521525278687477, 0.0040628197602927685, 0.004836066160351038, -0.04466480389237404, -0.022699367254972458, 0.0019380305893719196, 0.007876628078520298, -0.018164735287427902, -0.02503221109509468, 0.00815185159444809, 0.008112533949315548, -0.005766582675278187, 0.017312854528427124, 0.010733707807958126, 0.006172864697873592, -0.0018839688273146749, -0.035962507128715515, -0.012634058482944965, -0.01572704315185547, -0.022948378697037697, -0.007306522689759731, 0.0017250601667910814, 0.005789517890661955, 0.00513422442600131, 0.022397931665182114, -0.004718113224953413, 0.0037089611869305372, -0.004878660198301077, -0.037037190049886703, -0.0010886063100770116, -0.003594284877181053, -0.015779467299580574, -0.022738683968782425, -0.00430855480954051, 0.026971880346536636, 0.003129026386886835, -0.014560621231794357, -0.016487184911966324, 0.005108012817800045, -0.0031093675643205643, -0.00019679282559081912, -0.0018905217293649912, -0.00233448320068419, -0.011126883327960968, -0.00855813268572092, 0.014259186573326588, -0.0012131121475249529, 0.0036729201674461365, 0.01050435472279787, -0.006441534962505102, -0.009901484474539757, 0.013171399012207985, -0.010012884624302387, 0.0029029501602053642, 0.015910526737570763, 0.020576216280460358, 0.009036497212946415, -0.00796836894005537, 0.011067907325923443, -0.007647274993360043, -0.022411037236452103, 0.0033714850433170795, 0.006117164622992277, 0.0007351574022322893, 0.03425874561071396, -0.01758807711303234, -0.01808609999716282, 0.024953575804829597, 0.003967802040278912, 0.008374650962650776, -0.030903641134500504, -0.007470346055924892, 0.007693145889788866, -0.007712804712355137, -0.0024049270432442427, 0.013282799161970615, 0.00478364247828722, 0.009639367461204529, -0.023223601281642914, 0.03509752079844475, 0.0012057400308549404, 0.03758763521909714, 0.013394199311733246, -0.021755743771791458, 0.027102939784526825, 0.028492162004113197, -0.017640501260757446, -0.022817319259047508, -0.029461996629834175, -0.038662318140268326, 0.015045538544654846, -0.010648519732058048, 0.02739126794040203, -0.014324716292321682, -0.02351193130016327, 0.04408814758062363, 0.016264384612441063, -0.006559487897902727, -0.009324826300144196, 0.0026162592694163322, -0.013341776095330715, -0.005399618297815323, -0.00856468640267849, -0.013538363389670849, 0.012620952911674976, 0.02068106271326542, 0.036434318870306015, -0.011369341984391212, 0.00944277923554182, -0.0020953009370714426, -0.013944645412266254, -0.026119999587535858, 0.0006597986212000251, -0.015491138212382793, 0.038793373852968216, 0.008086321875452995, 0.02549091726541519, -0.012502999976277351, 0.01133002433925867, 0.0012253988534212112, -0.02739126794040203, 0.011533165350556374, 0.004374084062874317, -0.038216717541217804, -0.00047713558888062835, 0.024822518229484558, -0.024023059755563736, -0.002295165555551648, 0.00022034243738744408, 0.010838554240763187, 0.013931539840996265, 0.011932894587516785, -0.008545027114450932, -0.006716758478432894, 0.021467415615916252, -0.009344485588371754, 0.03284331038594246, 0.006163035519421101, 0.03119197115302086, 0.0026457475032657385, -0.007896286435425282, 0.0035549672320485115, -0.017168689519166946, 0.005940235685557127, 0.00017191215010825545, 0.01406259834766388, 0.02550402283668518, 0.005334089044481516, 0.0020051980391144753, 0.01794193685054779, 0.01643476076424122, 0.00495729548856616, 0.0013228737516328692, -0.016460971906781197, 0.007057511247694492, 0.01110067218542099, -0.026552492752671242, 0.0026162592694163322, -0.006952663883566856, 0.004210260696709156, 0.005304601043462753, 0.014560621231794357, -0.016211960464715958, 0.0002971346548292786, 0.0024196712765842676, 0.005104736424982548, 0.03328891098499298, 0.03811186924576759, -0.014337821863591671, -0.006828158162534237, 0.01235228218138218, 0.004026778507977724, 0.0005864877020940185, -0.0008879227098077536, 0.005838665179908276, 0.013983963057398796, 0.020877651870250702, -0.01541250292211771, -0.6798276901245117, -0.025215694680809975, -0.0030127118807286024, -0.01690657250583172, 0.02102181501686573, 0.04005153849720955, 0.01959327608346939, 0.020759698003530502, -0.003197832265868783, -0.025543341413140297, 0.003974355291575193, 0.013420410454273224, 0.006926452275365591, -0.008073216304183006, 0.010897531174123287, -0.0009215064928866923, -0.008898885920643806, -0.013250034302473068, -0.0318472646176815, 0.013263140805065632, -0.010130837559700012, 0.007378604728728533, -0.02102181501686573, -0.0072213346138596535, 0.011782176792621613, 0.020943179726600647, 0.010333978570997715, -0.026395222172141075, -0.006546381860971451, 0.004534631036221981, -0.022620731964707375, 0.007994581013917923, -0.013892222195863724, -0.009796638041734695, 0.040208809077739716, 0.01960638165473938, -0.019658805802464485, 0.02385268360376358, 0.01959327608346939, 0.05609312281012535, -0.012332623824477196, -0.02324981428682804, 0.01399706955999136, 0.01749633625149727, -0.01098927203565836, 0.004898319020867348, 0.032659828662872314, -0.003951419610530138, -0.0011352959554642439, -0.01960638165473938, -0.002119874581694603, -0.010727155022323132, 0.005661735776811838, -0.007725910283625126, 0.006513617467135191, -0.010098072700202465, 0.031218182295560837, -0.01517659705132246, 0.0024933917447924614, 0.017627395689487457, 0.0003186364774592221, 0.013020682148635387, -0.023918213322758675, -0.026735974475741386, -0.009783531539142132, 0.007503110449761152, -0.018046783283352852, 0.010963059961795807, 0.03284331038594246, -0.013590787537395954, -0.0020576214883476496, 0.003564796643331647, -0.000955090275965631, -0.021048028022050858, 0.006376005709171295, 0.021939227357506752, 0.023066330701112747, -0.02289595454931259, -0.0020969391334801912, -0.010183260776102543, 0.01463925652205944, 0.004862277768552303, -0.02694566920399666, -0.017339065670967102, 0.038085658103227615, -0.009593497030436993, -0.016985207796096802, -0.0062711588107049465, 0.01051746029406786, -0.009318273514509201, 0.017273535951972008, 0.04773157835006714, -0.015635302290320396, -0.008597450330853462, -0.020471369847655296, -0.006235117558389902, -0.021795062348246574, -0.011238283477723598, 0.009423120878636837, -0.012240882962942123, 0.003423908492550254, 0.020353415980935097, -0.0007765227928757668, 0.011408659629523754, 0.018688971176743507, 0.010471589863300323, 0.0021935950499027967, 0.017758453264832497, 0.06411391496658325, -0.03564796596765518, 0.00481313094496727, -0.016251279041171074, -0.008905438706278801, -0.007581745740026236, 0.005707606207579374, -0.023669201880693436, -0.010137390345335007, 0.014914480037987232, 0.02324981428682804, -0.0008772742003202438, 0.0013990516308695078, -0.003908825572580099, 0.014141233637928963, -0.02277800254523754, -0.007653828244656324, 0.015019327402114868, -0.0032338735181838274, -0.025333646684885025, -0.015910526737570763, -0.006978875957429409, 0.022371720522642136, 0.015281444415450096, 0.0021018539555370808, -0.016107114031910896, 0.02196543850004673, 0.009652473032474518, 0.011834600940346718, -0.011159648187458515, -0.004059543367475271, -0.016696877777576447, -0.014442669227719307, 0.003948143217712641, -0.003820361103862524, -0.01235228218138218, 0.01617264375090599, 0.0018348217708989978, -0.029016396030783653, -0.009423120878636837, -0.022175131365656853, 0.039160341024398804, 0.0036270495038479567, 0.002503221156075597, -0.0015251956647261977, 0.01488826796412468, 0.011985317803919315, -0.011264495551586151, -9.867798326013144e-06, -0.02656559832394123, 0.017771560698747635, -0.011618353426456451, 0.00839430931955576, 0.02833489142358303, -0.017509441822767258, -0.012090165168046951, -0.009993226267397404, -0.031585145741701126, 0.0026916181668639183, 0.007011640351265669, 0.004157837480306625, -0.02491425909101963, 0.009796638041734695, -0.04762673005461693, -0.004111966583877802, 0.009934249334037304, 0.002219806658104062, 0.026316586881875992, -0.0026572151109576225, -0.012181906029582024, 0.014599938876926899, 0.012404706329107285, -0.008636767975986004, 0.020117510110139847, -0.018492382019758224, -0.02373472973704338, 0.024494871497154236, 0.006025423761457205, -0.008997179567813873, 0.029461996629834175, -0.02339397743344307, 0.007516216486692429, -0.0032224059104919434, 0.02597583457827568, -0.014966903254389763, 0.007457240018993616, 0.015530455857515335, -0.004521524999290705, 0.0074179223738610744, -0.0007466250099241734, -0.0018839688273146749, 0.0032486175186932087, 0.01961948722600937, 0.005727265030145645, 0.01192634180188179, -0.003228958696126938, 0.01972433365881443, -0.07087654620409012, 0.029383361339569092, -0.009403461590409279, 0.04049713909626007, 0.004632925149053335, 0.0035484142135828733, -0.018937982618808746, -0.027102939784526825, 0.0027178297750651836, 0.01487516239285469, 0.030064865946769714, -0.01269958820194006, 0.007136146072298288, -0.012837199494242668, -0.01702452450990677, 0.005068695172667503, -0.02513705939054489, -0.004419954493641853, -0.006631570402532816, -0.009659025818109512, 0.02927851304411888, 0.0007052596192806959, 0.019291840493679047, 0.023787153884768486, -0.03352481499314308, -0.008892333135008812, 0.02680150419473648, 0.007568640168756247, 0.015255232341587543, -0.0008195264381356537, 0.005501188803464174, 0.02138878032565117, -0.010674730874598026, 0.02280421368777752, 0.014272292144596577, -0.011271048337221146, 0.02313186042010784, 0.02410169504582882, -0.013033787719905376, 0.014599938876926899, -0.008459839038550854, 0.01581878587603569, 0.0077652279287576675, 0.0032109380699694157, 0.0023787154350429773, -0.0034828849602490664, 0.011775624006986618, -0.043983299285173416, 0.009364143945276737, 0.03187347576022148, -0.010661625303328037, 0.01629059575498104, 0.021401885896921158, 0.041047584265470505, 0.02975032478570938, 0.012771670706570148, 0.005645353347063065, 0.001299119321629405, -0.02220134437084198, 0.009659025818109512, -0.00891854427754879, 0.01581878587603569, -0.033472392708063126, -0.00174963369499892, -0.0013933178270235658, 0.002868547337129712, -0.009632814675569534, 0.0008682638872414827, 0.0016013735439628363, -0.0056224181316792965, -0.00017549579206388444, -0.00885301548987627, 0.011408659629523754, -0.00587470643222332, 0.0021034921519458294, -0.00601887097582221, -0.01972433365881443, 0.004403572529554367, 0.0038989963941276073, 0.01948842965066433, -0.01463925652205944, -0.02340708300471306, 0.0009886741172522306, -0.004288895986974239, 0.01653960719704628, 5.0196507800137624e-05, 0.030536677688360214, 0.016120219603180885, -0.0027260209899395704, -0.009659025818109512, 0.001264716498553753, 0.03048425354063511, 0.00962626188993454, -0.0001958713255589828, 0.00611388823017478, 0.014678574167191982, 0.007273757830262184, -0.0008608918287791312, -0.015766361728310585, 0.011336577124893665, -0.002475371118634939, -0.013669422827661037, -0.00029590597841888666, -0.004256131127476692, -0.004367531277239323, -0.004747601225972176, -0.003905549179762602, -0.014377139508724213, 0.004403572529554367, 0.003921931609511375, 0.0018577571026980877, -0.02387889474630356, -0.021349461749196053, 0.018937982618808746, 0.019658805802464485, -0.012234329245984554, 0.0014572088839486241, -0.027574749663472176, 0.009298615157604218, 0.06872718036174774, 0.02846594899892807, 0.0024917535483837128, 0.005868153180927038, -0.007162358146160841, -0.008060109801590443, -0.027417480945587158, -0.010871319100260735, 0.012647164985537529, 0.01630370318889618, 0.012732353061437607, 0.002033048076555133, 0.012004977092146873, -0.007811098359525204, 0.01322382315993309, -0.003009435487911105, -0.012719246558845043, -0.0013564575929194689, 0.009580391459167004, -0.004157837480306625, -0.007463792804628611, -0.01463925652205944, -4.799512680619955e-07, 0.019868498668074608, 0.01045193150639534, -0.00855813268572092, 0.0010967975249513984, 0.042567864060401917, -0.006392388138920069, -0.00798147451132536, -0.014966903254389763, -0.004596883896738291, -0.0013343413593247533, -0.007431028410792351, 0.002116597956046462, 0.011447977274656296, 0.0023623330052942038, 0.013132081367075443, 0.01972433365881443, -0.018269583582878113, 0.00370568479411304, -0.0007154985796660185, -0.015976056456565857, -0.014141233637928963, 0.010877871885895729, -0.03368208557367325, 0.004213537089526653, 0.02564818784594536, -0.006795393768697977, 0.00023733911802992225, 0.04408814758062363, 0.012470235116779804, 0.0038826139643788338, -0.027469903230667114, 0.006893687415868044, -0.0007986389682628214, 0.0002670320973265916, -0.02749611623585224, 0.005858324002474546, -0.018112313002347946, -0.01323692873120308, -0.013787374831736088, -0.018623441457748413, -0.001895436435006559, 0.007929051294922829, -0.024023059755563736, -0.023905107751488686, -0.03250255808234215, -0.01925252377986908, -0.010065307840704918, -0.0028701855335384607, -0.013282799161970615, -0.013040340505540371, -0.011965659447014332, 0.00034402907476760447, 0.01404949277639389, 0.01782398298382759, -0.009822849184274673, -0.0048524485900998116, 0.009468991309404373, 0.0068543702363967896, -0.009075814858078957, -0.024743882939219475, -0.026395222172141075, -0.03908170387148857, 0.006821605376899242, 0.006068017799407244, -0.03166378289461136, -0.02112666331231594, 0.00910202693194151, 0.007214781362563372, 0.025019105523824692, 0.01926562935113907, -0.007988028228282928, -0.010949954390525818, -0.003192917676642537, 0.02196543850004673, 0.020851438865065575, -0.024390025064349174, -0.01722111366689205, 0.00422664312645793, -0.02408858947455883, -0.015897421166300774, 0.006795393768697977, 0.01817784085869789, 0.003423908492550254, 0.013315564021468163, 0.009364143945276737, 0.0031880028545856476, 0.00516371289268136, 0.015478032641112804, -0.012253988534212112, 0.0031044529750943184, -0.0018020571442320943, -0.009069262072443962, 0.03591008484363556, -0.01699831336736679, 0.01985539309680462, -0.03307921439409256, -0.029828960075974464, -0.006893687415868044, -0.024770094081759453, 0.023446401581168175, 0.005216136109083891, -0.01264061126857996, 0.005819006357342005, -0.0028030178509652615, -0.010301213711500168, -0.0006339964456856251, 0.013420410454273224, -0.003679472953081131, 0.009049603715538979, -0.0069854287430644035, -0.016356125473976135, -0.01807299442589283, -0.025071529671549797, 0.00422664312645793, 0.020602427423000336, 0.0011000739177688956, -0.021899908781051636, -0.012044294737279415, 0.002770253224298358, 0.004859001375734806, -0.017325960099697113, -0.01463925652205944, -0.04959261044859886, -0.008859568275511265, 0.008702297694981098, -0.003915378823876381, 0.023302236571907997, -0.012011529877781868, -0.005448765587061644, -0.013184505514800549, -0.005006442312151194, -0.009462438523769379, -0.013538363389670849, -0.021283932030200958, 0.017208008095622063, 0.004587054718285799, 0.027941714972257614, 0.025019105523824692, 0.010445378720760345, 0.004616542719304562, -0.002070727525278926, -0.001476867706514895, 0.006592252757400274, 0.0017545484006404877, 0.023066330701112747, -0.019658805802464485, 0.01298791728913784, 0.006356346886605024, 0.003446843707934022, -0.003114282386377454, -0.01276511698961258, -0.00024204903456848115, 0.038924433290958405, -0.009003732353448868, -0.02115287445485592, -0.022738683968782425, -0.025307435542345047, -0.0068543702363967896, -0.008754720911383629, -0.013918434269726276, -0.006467747036367655, 0.012850305996835232, -0.007109934464097023, 0.0032224059104919434, 0.01352525781840086, 0.020169934257864952, -0.003915378823876381, 0.02162468619644642, -0.012398152612149715, 0.010058755055069923, -0.026172421872615814, 0.008754720911383629, 0.011526612564921379, -0.02470456436276436, 0.01947532221674919, 0.01619885489344597, 0.01328935194760561, 0.01205084752291441, 0.010419166646897793, -0.019776757806539536, -0.00755553413182497, -0.014508198015391827, 0.02103492058813572, -0.009003732353448868, -0.004380636848509312, 0.018505487591028214, -0.026775293052196503, -0.006300646811723709, -0.0006557030719704926, -0.027469903230667114, -0.02056311070919037, 0.011670777574181557, -0.016696877777576447, -0.020510686561465263, 0.029016396030783653, -0.018833134323358536, -0.00845328625291586, -0.00087481684749946, -0.023184284567832947, 0.016251279041171074, -0.007470346055924892, 0.028177620843052864, 0.024507977068424225, 0.014835844747722149, -0.016618242487311363, -0.005612588953226805, 0.004229919519275427, -0.019986452534794807, -0.006628293544054031, 0.012358835898339748, 0.018020572140812874, -0.004351148847490549, -3.551639565557707e-06, 0.033026792109012604, -0.007902839221060276, -0.01341385766863823, 0.007293416652828455, 0.00863021519035101, -0.003636878915131092, -0.023472612723708153, -0.017522547394037247, -0.013367987237870693, 0.009632814675569534, -0.016277490183711052, -0.002268953714519739, -0.044822074472904205, -0.01737838424742222, -0.012365388683974743, 0.019173888489603996, -0.01138900127261877, 0.027417480945587158, 0.007378604728728533, -0.009718002751469612, 0.001086968113668263, -0.01050435472279787, -0.03150651231408119, 0.0049310834147036076, 0.006510341074317694, 0.03168999403715134, -0.018859347328543663, 0.00868919212371111, 0.01702452450990677, -0.0037810434587299824, -0.007575192954391241, 0.000662665581330657, 0.001058298978023231, 0.023590566590428352, 0.002239465480670333, -0.0072344401851296425, -0.007666933815926313, 0.002861994318664074, 0.03682749345898628, -0.006795393768697977, -0.01477031596004963, -0.016146432608366013, -0.014940692111849785, -0.019920922815799713, 0.010982719250023365, 0.014468880370259285, -0.0077521223574876785, -0.013027234934270382, -0.006474299822002649, 0.0014555706875398755, -0.023433296009898186, -0.005183371715247631, -0.0022067008540034294, -0.009246191009879112, -0.0074834516271948814, 0.00755553413182497, -0.017168689519166946, -0.006274435203522444, 0.016749301925301552, -0.0003360426926519722, 0.00832878053188324, 0.020746592432260513, -0.010012884624302387, 0.03116575814783573, -0.010098072700202465, -0.02209649607539177, 0.0053078774362802505, -0.010412613861262798, -0.00962626188993454, -0.01205084752291441, 0.011670777574181557, -0.0008002771646715701, -0.01723421923816204, -0.02289595454931259, 0.007090275641530752, 0.0026408329140394926, 0.028859125450253487, -0.0007204132853075862, 0.023760942742228508, -0.018256476148962975, -0.019278734922409058, -0.02668355219066143, -0.024625929072499275, 0.011782176792621613, -0.03142787516117096, -0.0026801503263413906, 0.02930472604930401, 0.003140493994578719, -0.04220090061426163, 0.015779467299580574, 0.023708518594503403, 0.01293549407273531, -0.020851438865065575, -0.004940913058817387, -0.0007269662455655634, 0.03766626864671707, -0.00863021519035101, 0.0020838333293795586, -0.016618242487311363, -0.006815052591264248, 0.0015047177439555526, 0.014914480037987232, -0.020051980391144753, -0.02077280357480049, -0.0001435502344975248, 0.028020350262522697, -0.013918434269726276, 0.03226665034890175, -0.0008813697495497763, -0.01795504242181778, -0.01133002433925867, -0.01796814799308777, -0.009993226267397404, -0.015255232341587543, -0.01996023952960968, 0.027705809101462364, 0.010727155022323132, -0.008833356201648712, -0.01517659705132246, -0.004125072620809078, -0.007024746388196945, -0.014141233637928963, -0.007109934464097023, 0.014652363024652004, 0.005599482916295528, -0.010445378720760345, 0.015766361728310585, 0.02572682313621044, 0.009062709286808968, 0.01428539864718914, -0.019082147628068924, -0.020576216280460358, 0.032083168625831604, -0.013983963057398796, 0.017614290118217468, -0.007162358146160841, -0.016487184911966324, -0.00422664312645793, 0.025241905823349953, 0.014796527102589607, 0.016749301925301552, 0.014547515660524368, 0.003948143217712641, -0.020484475418925285, -0.017273535951972008, 0.003048753133043647, 0.0025277945678681135, 0.009809743613004684, 0.009246191009879112, -0.011683883145451546, -0.004731219261884689, -0.0046591367572546005, -0.02479630522429943, -0.009534520097076893, -0.0024131182581186295, 0.0007834853022359312, -0.007149252109229565, 0.016369231045246124, -0.009088920429348946, 0.0041381786577403545, -0.005914024077355862, -0.053445737808942795, 0.016578925773501396, -0.014416457153856754, 0.013066552579402924, 0.01690657250583172, 0.013433516956865788, -0.01351215224713087, 9.276498894905671e-05, -0.011631459929049015, -0.03488782420754433, -0.01594984345138073, 0.017574971541762352, -0.015242126770317554, -0.006605358328670263, 0.003224044106900692, 0.021454310044646263, -0.02927851304411888, 0.012090165168046951, -0.006408770568668842, -0.01233917661011219, -0.0077652279287576675, 0.026355905458331108, 0.021559156477451324, -0.005206306930631399, -0.008407415822148323, 0.011015484109520912, -0.02292216755449772, 0.010432272218167782, -0.016094008460640907, 0.007817651145160198, -0.007431028410792351, -0.010871319100260735, 0.01676240749657154, -0.020287886261940002, -0.02836110256612301, 0.0027063621673732996, 0.010956507176160812, 0.001233590068295598, -0.013682528398931026, 0.22269494831562042, -0.005088353995233774, -0.005953341256827116, 0.051217738538980484, -0.011775624006986618, -0.002506497548893094, 0.007503110449761152, 0.010320872999727726, -0.01428539864718914, 0.012004977092146873, 0.002957012038677931, 0.002689979737624526, -0.005360300652682781, -0.0027440416160970926, 0.007562086917459965, -0.006379282101988792, -0.026657339185476303, -0.02372162416577339, -0.024822518229484558, -0.06442845612764359, 0.00726720504462719, -0.011113777756690979, -0.01097616646438837, -0.013866010122001171, 0.03381314501166344, 0.011854259297251701, 0.0053209830075502396, -0.009947354905307293, 0.010537119582295418, -0.003820361103862524, -0.02446865849196911, 0.003656537737697363, -0.003086432348936796, 0.0010779578005895019, -0.02112666331231594, -0.0051669892854988575, 0.005435659550130367, -0.006588976364582777, 0.02917366661131382, 0.027469903230667114, -0.0040857549756765366, -0.0014940692344680429, 0.007096828427165747, -0.01080578938126564, -0.024652142077684402, 0.018112313002347946, 0.01068128366023302, -0.025110846385359764, 0.015281444415450096, 0.019278734922409058, -0.023774048313498497, 0.011205518618226051, 0.02115287445485592, 0.02361677773296833, 0.020628638565540314, 0.008997179567813873, 0.033708296716213226, -0.014193656854331493, -0.013643210753798485, 0.006769181694835424, -0.026657339185476303, 0.029566843062639236, -0.02691945619881153, 0.018937982618808746, -0.02419343590736389, 0.010445378720760345, -0.014088810421526432, -0.0026146210730075836, 0.005294771399348974, -0.027102939784526825, -0.0047115604393184185, -0.029357148334383965, 0.0003358379181008786, 0.0017398042837157845, -0.02397063560783863, -0.019200099632143974, 0.018230265006422997, 0.01982918195426464, 0.01901661790907383, 0.022935273125767708, -0.0016644455026835203, -0.001247514970600605, 0.0065201702527701855, -0.004311831202358007, 0.004446166567504406, -0.028963971883058548, 0.036198414862155914, 0.023538142442703247, -0.011231730692088604, -0.024376917630434036, -0.017561865970492363, -0.02055000513792038, 0.0187545008957386, -0.012470235116779804, 0.02009129896759987, 0.020484475418925285, 0.003771214047446847, 0.028072774410247803, -0.013335222378373146, 0.01701141893863678, -0.01843995973467827, -0.026133105158805847, 0.028780490159988403, 0.009547626599669456, -0.0024327770806849003, -0.02621174044907093, -0.009167555719614029, 0.015163491480052471, 0.009868720546364784, -0.025818563997745514, -0.001035363762639463, -0.021192191168665886, 0.011906682513654232, -0.008761273697018623, 0.015294549986720085, 0.00092642119852826, -0.029016396030783653, -0.00945588480681181, 0.000211536927963607, -0.0012294944608584046, 0.013721846044063568, -0.030982276424765587, 0.010314319282770157, 0.02634279802441597, -0.022620731964707375, 0.002578579820692539, -0.015530455857515335, 0.008256698027253151, 0.008590897545218468, -0.042331960052251816, 0.010910636745393276, -0.011434871703386307, 0.006769181694835424, 0.015373185276985168, -0.014521303586661816, 0.007437581196427345, 0.0077521223574876785, -0.0077521223574876785, -0.011434871703386307, 0.01269958820194006, -0.007090275641530752, -0.012299858964979649, -0.010438825935125351, 0.014757209457457066, -0.009790085256099701, -0.01785019412636757, 0.007548981346189976, 0.018859347328543663, -0.024363812059164047, -0.007791439536958933, -0.03174241632223129, -0.014809633605182171, 0.00015952301328070462, -0.02326291985809803, 0.03258119150996208, -0.00910202693194151, -0.011828048154711723, -0.04416678100824356, -0.01328935194760561, 0.011795283295214176, -0.03234528750181198, -0.01404949277639389, 0.014403351582586765, -0.002997967880219221, -0.011959106661379337, -0.021428097039461136, -0.16985207796096802, 0.013669422827661037, -0.00451497221365571, -0.01702452450990677, 0.021100450307130814, -0.0028112090658396482, 0.008086321875452995, 0.0026539387181401253, -0.004747601225972176, 0.010255343280732632, 0.012850305996835232, 0.007712804712355137, -0.035595543682575226, -0.008020792156457901, 0.012031188234686852, -0.016945889219641685, 0.005560165271162987, 0.013374540023505688, 0.01832200586795807, 0.010799236595630646, 0.01429850421845913, -0.02207028493285179, 0.011605247855186462, -0.01074026059359312, 0.014324716292321682, 0.008446733467280865, -0.02398374304175377, -0.000857615377753973, 0.002514688763767481, 0.002617897465825081, -0.012057400308549404, -0.03024834766983986, 0.030379407107830048, 0.023184284567832947, -0.01854480616748333, -0.006893687415868044, -0.0020428774878382683, -0.004790195729583502, 0.0032371499110013247, 0.03837398812174797, 0.01027500256896019, 0.023223601281642914, 0.007594851776957512, -0.009862166829407215, -0.013905327767133713, 0.007018193602561951, 0.0009124961798079312, 0.003974355291575193, 0.01701141893863678, -0.004691901616752148, 0.03092985413968563, -0.00549463601782918, 0.01735217124223709, 0.010052202269434929, 0.020877651870250702, 0.01783708855509758, 0.010995824821293354, 0.006392388138920069, 0.00021604206995107234, -0.0020543450955301523, 0.018361324444413185, -0.038688529282808304, 0.011526612564921379, -0.0007212323835119605, -0.03234528750181198, -0.026303481310606003, -0.006487405858933926, 0.007136146072298288, -0.0040857549756765366, 0.0020756421145051718, 0.0011541356798261404, 0.00035897796624340117, 0.02562197670340538, -0.011631459929049015, -0.011644565500319004, -0.0034435673151165247, -0.013774269260466099, 0.005389789119362831, 0.01246368233114481, 0.004980230703949928, -0.003099538153037429, 0.04935670644044876, -0.026500068604946136, -0.008964414708316326, 0.006251499988138676, -0.009547626599669456, 0.00617614109069109, 0.017574971541762352, -0.005360300652682781, -0.002151001011952758, 0.02254209667444229, -0.026971880346536636, -0.020038874819874763, -0.025346752256155014, 0.005923853255808353, 0.024049270898103714, -0.0038367435336112976, 0.011264495551586151, 0.013603893108665943, 0.012994470074772835, -0.007129593286663294, 0.00032989931060001254, -0.0073523931205272675, 0.017194900661706924, 0.04112622141838074, -1.7815791579778306e-05, 0.01192634180188179, 0.003935037646442652, 0.028649432584643364, 0.02575303427875042, -0.014128128066658974, 0.026971880346536636, 0.024888047948479652, 0.023079436272382736, 0.026539387181401253, 0.008735062554478645, 0.003473055548965931, -0.018715182319283485, 0.02125772088766098, 0.00422664312645793, 0.028256256133317947, -0.004580501466989517, -0.02162468619644642, 0.01712937280535698, -0.008250145241618156, -0.001629223464988172, -0.07140077650547028, -0.040313657373189926, 0.008368098177015781, 0.025582658126950264, -0.013682528398931026, -0.003029094310477376, -0.014547515660524368, 0.01808609999716282, -0.014966903254389763, 0.03756142407655716, -0.02528122253715992, -0.029357148334383965, -0.002418033080175519, -0.009436226449906826, 0.002349227201193571, 0.003885890357196331, -0.014036387205123901, -0.005904194433242083, 0.002799741458147764, 0.00041140144458040595, -0.0038989963941276073, 0.01174941286444664, 0.010661625303328037, -0.016211960464715958, -0.00525873014703393, -0.003774490673094988, -0.010727155022323132, 0.02162468619644642, 0.01830890029668808, 0.013354881666600704, 0.015635302290320396, -0.01180183608084917, -0.004374084062874317, -0.03203074634075165, -0.010196367278695107, 0.0015768000157549977, -0.02977653592824936, -0.004551013465970755, 0.018164735287427902, -0.025123951956629753, 0.018361324444413185, -0.010111178271472454, 0.004000566899776459, -0.034416016191244125, -0.0025425388012081385, 0.0033944202587008476, -0.021677108481526375, 0.0019150952575728297, 0.0002918104000855237, -0.02516327053308487, -0.01608090288937092, -0.0013138634385541081, -0.012817541137337685, -0.014337821863591671, 0.033000580966472626, -0.032319076359272, -0.005412724334746599, 0.009010286070406437, -0.006343241315335035, -0.005733818281441927, -0.005737094674259424, 0.004511695820838213, -0.015281444415450096, 0.038190506398677826, 0.016356125473976135, 0.02218823879957199, -0.03163757175207138, -0.02302701398730278, 0.008014239370822906, -0.013918434269726276, 0.007706251461058855, 0.007509663701057434, -0.005773135926574469, 0.03176862746477127, -0.008662980049848557, 3.606673999456689e-05, -0.027338845655322075, -0.01664445549249649, -0.0035582436248660088, -0.030326982960104942, 0.006353070493787527, -0.012411259114742279, 0.01652650162577629, 0.0026719593442976475, 0.017535654827952385, 0.005511018447577953, 0.0013400751631706953, 0.00519647728651762, 0.0035320320166647434, -0.022044073790311813, 0.01268648263067007, 0.016251279041171074, 0.04311831295490265, -0.0011656032875180244, -0.017312854528427124, -0.01749633625149727, -0.02398374304175377, -0.002658853307366371, 0.01381358690559864, -0.01347283460199833, -0.01210327073931694, -0.01584499701857567, -0.0688844546675682, 0.02374783717095852, 0.005773135926574469, 0.01003909669816494, 0.01737838424742222, -0.010406061075627804, 6.757714345440036e-06, -0.010851660743355751, -0.018453065305948257, 0.032633617520332336, -0.0074048168025910854, 0.006441534962505102, -0.007621063385158777, 0.004531354643404484, -0.02174263820052147, -0.028754279017448425, 0.02149362675845623, 0.020589321851730347, -0.0011139989364892244, 0.0057502007111907005, 0.021048028022050858, -0.005304601043462753, 0.021637791767716408, 0.01174941286444664, -0.01180183608084917, 0.020366521552205086, -0.012326071038842201, 0.01889866404235363, -0.00349926738999784, -0.013243481516838074, 0.022148920223116875, -0.020130615681409836, 0.005006442312151194, 0.02302701398730278, -0.015097962692379951, -0.026172421872615814, 0.008433626964688301, 0.018099207431077957, -0.0009084006305783987, -0.0025130505673587322, -0.007902839221060276, -0.02043205127120018, -0.0005115384701639414, -0.016709985211491585, 0.0028636325150728226, -0.006136823445558548, 0.000443142227595672, 0.006123717874288559, 0.01830890029668808, 0.0008600727305747569, -0.002917694393545389, 0.023092543706297874, 0.015556667931377888, 0.006277711596339941, -0.010465037077665329, -0.02492736466228962, 0.013669422827661037, 0.0007281948928721249, -0.0005643715267069638, -0.03593629598617554, 0.015438714995980263, 0.007942156866192818, 0.014744103886187077, -0.005658459383994341, 0.014455774798989296, 0.0002137895062332973, -0.014783421531319618, 0.010832001455128193, 0.011382448486983776, -0.02762717381119728, -0.01864965260028839, -0.008800591342151165, 0.011952553875744343, -0.013616998679935932, 0.0036008378956466913, -0.0019249246688559651, -0.0012401429703459144, -0.004131625406444073, -0.013616998679935932, 0.03210937976837158, 0.026408327743411064, 0.0016652646008878946, -0.023787153884768486, 0.023695413023233414, 0.018859347328543663, -0.0027522325981408358, -0.0031093675643205643, 0.006841264199465513, 0.0028161238878965378, 0.015202809125185013, -0.01340075209736824, 0.010222578421235085, 0.03260740637779236, -0.007057511247694492, 0.012719246558845043, 0.009292061440646648, -8.672400144860148e-05, -0.005068695172667503, 0.016238173469901085, 0.02632969245314598, 0.021310145035386086, -0.007129593286663294, -0.017548760399222374, -0.008158404380083084, -0.01146108377724886, -0.00028935304726473987, -0.013420410454273224, -0.015792572870850563, 0.010838554240763187, 0.020340310409665108, 0.01275201141834259, -0.018033677712082863, -0.000499251764267683, 0.028203831985592842, -0.01617264375090599, 0.02360367216169834, -0.017155583947896957, -0.01807299442589283, -0.016277490183711052, 0.005717435851693153, 0.015451820567250252, -0.012974811717867851, 0.011913236230611801, -0.021768849343061447, 0.0036106673069298267, 0.0003780224360525608, 0.011723200790584087, -0.023708518594503403, 0.013551469892263412, 0.0016955719329416752, 0.026775293052196503, -0.005484806839376688, -0.02387889474630356, -0.012843752279877663, -0.009508308954536915, 0.004862277768552303, 0.006687270011752844, 0.03672264888882637, -0.0074048168025910854, 0.04684038087725639, 0.006054911762475967, 0.00027665673405863345, 0.010183260776102543, 0.002698170952498913, 0.019055934622883797, 0.008210827596485615, -2.964179111586418e-05, -0.013695633970201015, -0.006736417300999165, 0.007155804894864559, 0.0036696435417979956, -0.019894709810614586, -0.01639544405043125, -0.015504244714975357, 0.004455995745956898, -0.00915445014834404, 0.008361545391380787, -0.0007355669513344765, -0.005819006357342005, 0.0003860088181681931, 0.01074026059359312, 0.010543672367930412, -0.011159648187458515, -0.0050261011347174644, 0.00661846436560154, 0.02431138977408409, -0.007627616170793772, -0.004315107595175505, -0.03132303059101105, -0.0002770662831608206, 0.005727265030145645, -0.033236484974622726, -0.011742859147489071, 0.011506954208016396, -0.021467415615916252, 0.013892222195863724, -0.01689346693456173, -0.012542317621409893, 0.016841042786836624, -0.015163491480052471, 0.023315342143177986, -0.03769248351454735, -0.02775823324918747, 0.016107114031910896, -0.0025163269601762295, 0.01760118268430233, -0.005137501284480095, -0.010838554240763187]" +17,brown,"[-0.0033683686051517725, -0.015937969088554382, 0.005524801556020975, -0.02111070044338703, -0.02968226745724678, 0.011963632889091969, -0.006388051901012659, -0.016858769580721855, 0.006557316519320011, -0.01886286400258541, -0.011855303309857845, 0.022153371945023537, 0.002312156604602933, 0.001237325370311737, -0.020122194662690163, 0.003723824629560113, 0.029276032000780106, 0.004295939579606056, 0.01227508019655943, -0.022667936980724335, -0.031388457864522934, 0.00681459903717041, -0.02257314883172512, -0.0034631569869816303, 0.004536295309662819, -0.0068653784692287445, 0.030928056687116623, -0.02515951357781887, 0.011090226471424103, -0.008361678570508957, 0.010196508839726448, -0.008436155505478382, -0.004367030691355467, -0.005663598887622356, -0.024617865681648254, 0.014732804149389267, -0.011388133279979229, -0.002906275913119316, 0.003581642173230648, -0.012647463008761406, -0.0006753663765266538, 0.006482840050011873, 0.006401593331247568, 0.011273032985627651, -0.011916238814592361, -0.008835620246827602, 0.004681863356381655, -0.0030146052595227957, -0.038159046322107315, 0.000594965647906065, -0.004989924840629101, 0.014990086667239666, -0.011482921428978443, -0.009174149483442307, 0.008287202566862106, 0.0066047110594809055, -0.0006588630494661629, 0.02693340741097927, -0.013845857232809067, -0.004312865901738405, 0.009912144392728806, 0.006902616936713457, -0.0091267554089427, -0.005416472442448139, -0.006540390197187662, -0.01760353520512581, 0.004651395604014397, 0.016262957826256752, -0.01073138602077961, -0.0013685055309906602, 0.027705255895853043, 0.004915448371320963, 0.008767914026975632, 0.006618252024054527, 0.031361375004053116, -0.003832154208794236, -0.02130027674138546, 0.006404978223145008, 0.006438831333070993, -0.008835620246827602, 0.006736737210303545, 0.0009318024967797101, -0.011909468099474907, 0.02338561974465847, 0.01461093407124281, 0.01790144108235836, -0.02193671278655529, 0.016723357141017914, -0.021070076152682304, -0.011056373827159405, 0.008876243606209755, 0.009634549729526043, 0.00026320668985135853, 0.008524172939360142, -0.033609211444854736, 0.010507956147193909, -0.0033802171237766743, 0.03404252976179123, 0.020271146669983864, -0.03144261986017227, 0.006357584148645401, -0.0003960795293096453, -0.02484806627035141, -0.015897346660494804, -0.008476778864860535, -0.007149743381887674, -0.006032595876604319, 0.008774684742093086, 0.012965680100023746, -0.0017070351168513298, 0.0018788387533277273, 0.03098222054541111, 0.004790192469954491, -0.046852484345436096, -0.0052099693566560745, 0.0037102834321558475, -0.014231780543923378, -0.005345380865037441, -0.004478745628148317, -0.019255558028817177, 0.013920333236455917, 0.01258652750402689, 0.007109120022505522, -0.016750440001487732, 0.0034157629124820232, 0.0044855158776044846, -0.012681315653026104, -0.003933712840080261, 0.010981897823512554, 0.0012093966361135244, 0.02062321826815605, 0.02517305500805378, 0.02421163022518158, -0.006411748938262463, -0.01210581511259079, 0.012904745526611805, -0.0313342921435833, 0.020040947943925858, -0.0316321961581707, -0.011638645082712173, 0.0024204859510064125, 0.009119984693825245, -0.021544018760323524, -0.012837039306759834, -0.0014649864751845598, 0.023358536884188652, 0.02353457175195217, 0.003717054147273302, -0.008734061382710934, 0.0018839167896658182, 0.01547756977379322, 0.0038152276538312435, 0.01547756977379322, -0.014421357773244381, -0.019594088196754456, -0.000532337639015168, 0.010609515011310577, 0.028111491352319717, -0.02079925313591957, 0.014692180790007114, -0.009377267211675644, 0.0038998599629849195, 0.02968226745724678, -0.0009639628115110099, 0.026405302807688713, 0.014164075255393982, -0.006029210519045591, 0.022491900250315666, 0.008077314123511314, -0.01840246468782425, -0.010589202865958214, 0.026527171954512596, -0.01949930004775524, 0.034475844353437424, 0.003402221715077758, 0.0226137712597847, 0.007691390346735716, -0.006838296074420214, -0.019404511898756027, -0.0063643548637628555, -0.0019211550243198872, 0.009492367506027222, 0.02418454922735691, 0.019919076934456825, 0.006729966960847378, 0.002784405369311571, 0.018795158714056015, -0.016059840098023415, 0.019269099459052086, 0.0026473007164895535, 0.01692647486925125, 0.03095513954758644, 0.008361678570508957, -0.012410491704940796, -0.6725091934204102, -0.01410991046577692, 0.021516935899853706, 0.01920139417052269, 0.013575033284723759, 0.030738480389118195, 0.0067604342475533485, -0.005626360420137644, -0.002554205246269703, 0.0009995084255933762, 0.007156514097005129, -0.005700836889445782, -0.005771928001195192, -0.016059840098023415, 0.017292087897658348, 0.002728547900915146, 0.017319170758128166, 0.009722568094730377, 0.01745458133518696, 0.012640692293643951, -0.022004418075084686, 0.02159818261861801, -0.014516145922243595, -0.0022613771725445986, 0.03439459949731827, 0.0004565916897263378, -0.0021310432348400354, -0.004840971902012825, 0.0034394599497318268, -0.003144939197227359, -0.008767914026975632, 0.023507488891482353, 0.005941193085163832, -0.0047089457511901855, 0.043819259852170944, 0.005294601432979107, -0.019607629626989365, 0.05012945085763931, 0.021706512197852135, 0.02759692631661892, -0.013974498026072979, -0.009973079897463322, 0.02724485471844673, -0.03165927901864052, -0.016235874965786934, 0.030603067949414253, -0.0034411526285111904, 0.0013913563452661037, 0.002129350556060672, -0.034421682357788086, 0.002769171493127942, 0.006912772543728352, 0.008023149333894253, -0.010034014470875263, 0.00039904165896587074, 0.011889156885445118, 0.021367982029914856, 6.562315206792846e-07, -0.008388761430978775, -0.0145973926410079, -0.01630358211696148, -0.0001257848780369386, -0.01137459184974432, -0.008063772693276405, -0.012735480442643166, -0.00033895266824401915, -0.048937827348709106, -0.009147067554295063, 0.03128012642264366, -0.012552674859762192, 0.005683910567313433, 0.015233827754855156, -0.0059682754799723625, -0.0014057437656447291, 0.0013236503582447767, 0.012214144691824913, 0.020298229530453682, -0.006374510936439037, -0.0012830268824473023, 0.008497091010212898, 0.006096916738897562, -0.012356326915323734, -0.009675173088908195, -0.006262795999646187, 0.025877196341753006, -0.01404220424592495, -0.021327359601855278, -0.008287202566862106, 0.008165331557393074, -0.012369868345558643, -0.005819322541356087, 0.03306756168603897, -0.02001386508345604, 0.014123450964689255, -0.007833573035895824, -0.0019939388148486614, 0.007968984544277191, -0.009472055360674858, -0.002775941975414753, -0.021219030022621155, -0.004123289603739977, -0.0020125580485910177, 0.019715959206223488, 0.009323102422058582, 0.0024661875795572996, -0.0022342947777360678, -0.005355536937713623, 0.019959699362516403, 0.027948996052145958, -0.02065030112862587, -0.009756420738995075, -0.0022613771725445986, 0.0030975451227277517, 0.01838892325758934, 0.0035477892961353064, -0.027488596737384796, -0.0022105977404862642, -0.014556769281625748, 0.008910097181797028, -0.015558816492557526, 0.016411911696195602, 0.00677059032022953, 0.01627649925649166, -0.01837538182735443, 0.010027243755757809, 0.018185805529356003, -0.01080586202442646, -0.013568262569606304, -0.02063675969839096, 0.010765238665044308, -0.002648993395268917, 0.01741395890712738, 0.01970241777598858, 0.0003914247499778867, 0.018822241574525833, 0.01267454493790865, 0.012227686122059822, -0.03585704788565636, 0.01853787712752819, -0.010988667607307434, -0.017982687801122665, -0.005064401309937239, 0.018659746274352074, 0.005680525209754705, 0.0010460561607033014, -0.029276032000780106, -0.025064725428819656, -0.008246579207479954, -0.0204742643982172, 0.012681315653026104, -0.002412022789940238, -0.007474731653928757, 0.004143601283431053, -0.012965680100023746, 0.025565749034285545, -0.01741395890712738, -0.013128174468874931, -0.027339642867445946, 0.015531734563410282, 0.010047555901110172, 0.02227524295449257, 0.02388664335012436, -0.011895927600562572, 0.0034800833091139793, 0.004370416048914194, -0.04067770764231682, -0.0012026261538267136, 0.007786178961396217, 0.0025728242471814156, -0.03255299851298332, 0.005274289753288031, -0.029628103598952293, 0.004482130985707045, -0.012200603261590004, -0.002005787333473563, -0.020379476249217987, -0.011631874367594719, -0.0031517096795141697, -0.005382619332522154, 0.019634712487459183, 0.0021039608400315046, 0.009715797379612923, -0.02954685688018799, -0.01484113372862339, 0.03369045630097389, 0.006763819605112076, -0.004136830568313599, 0.008368449285626411, -0.03469250351190567, 0.0017755873268470168, -0.013676592148840427, 0.01821288838982582, 0.005853175185620785, 0.010480874218046665, 0.009702255949378014, -0.0053487662225961685, 0.018917029723525047, 0.01305369846522808, 0.007373172789812088, 0.011266262270510197, 0.03694033995270729, -0.01362919807434082, 0.03645285964012146, 0.005223510321229696, 0.011076685972511768, -0.025254301726818085, 0.02418454922735691, -0.02566053718328476, 0.00782680232077837, 0.015937969088554382, -0.0007392638362944126, -0.03829445689916611, -0.007386714220046997, -0.020745089277625084, 0.04176099970936775, 0.022654395550489426, -0.0041639129631221294, 0.01856495812535286, 0.005213354714214802, -0.021354442462325096, 0.013595345430076122, -0.01852433569729328, 0.00950590893626213, -0.007840343751013279, -0.01581609807908535, 0.011273032985627651, 0.016249416396021843, 0.02501055970788002, 0.01809101738035679, -0.0013634276110678911, 0.006922928616404533, 0.021665889769792557, -0.0009512679534964263, 0.010948044247925282, -0.016750440001487732, -0.018659746274352074, -0.0073799435049295425, -0.00758306123316288, 0.04002773016691208, 0.010548579506576061, -0.006198475603014231, 0.0515918992459774, 0.02147631160914898, -0.016655651852488518, 0.024631407111883163, -0.01986491121351719, 0.02518659643828869, 0.02180130034685135, -0.008124708198010921, 0.005497719161212444, -0.0008619807776995003, -0.009140296839177608, -0.011279803700745106, -0.01708897016942501, 0.0123427864164114, -0.024292878806591034, 0.04514629766345024, 0.024401206523180008, 0.03279674053192139, 0.023493947461247444, 0.014814051799476147, -0.009871521033346653, -0.018768075853586197, -0.003359905444085598, 0.02002740651369095, 0.007935131900012493, -0.0204742643982172, 0.0023510875180363655, -0.007725243456661701, -0.012295392341911793, -0.009329873137176037, -0.009912144392728806, 0.0051964279264211655, -0.02258668839931488, 0.03377170488238335, -0.003332823049277067, -0.0035613304935395718, 0.02013573609292507, -0.003601954085752368, -0.0263105146586895, -0.02771879732608795, -0.01841600611805916, 0.020352395251393318, 0.025037642568349838, -0.01057566236704588, -0.02582303062081337, -0.023155419155955315, -0.006103686988353729, -0.011442297138273716, 0.011564168147742748, 0.013906792737543583, 0.016344204545021057, -0.00976319145411253, 0.010494414716959, 0.02146277204155922, 0.005734689999371767, 0.00436364533379674, -0.0052438220009207726, 0.009952767752110958, -0.021042995154857635, 0.0003943868796341121, -0.015044251456856728, 0.0021395066287368536, -0.009228314273059368, 0.011814679950475693, 0.00012567908561322838, 0.0007599987438879907, -0.02455016039311886, -0.010568891651928425, -0.002616833196952939, -0.012755791656672955, 0.0070007904432713985, 0.004637854173779488, -0.0018263667589053512, 0.004790192469954491, -0.008530943654477596, -0.010067868046462536, -0.021273193880915642, 0.01837538182735443, 0.022532524541020393, -0.009939226321876049, -0.02838231436908245, -0.018781617283821106, -0.0069872490130364895, 0.10507956147193909, 0.042492225766181946, 0.006946625653654337, 0.02255960740149021, 0.03016974963247776, -0.009275708347558975, -0.015761934220790863, 0.007461190689355135, 0.015843180939555168, 0.0014895298518240452, 0.003039994975551963, -0.002701465506106615, -0.0015809328760951757, -0.005284445825964212, 0.002660841913893819, -0.02922186814248562, -0.0038152276538312435, -0.020365934818983078, 0.0028944273944944143, -0.010799091309309006, -0.015694228932261467, -0.006946625653654337, 0.0002953670045826584, 0.03014266863465309, 0.011300114914774895, 0.003202489111572504, 0.007197137456387281, 0.01901181787252426, 0.018145181238651276, -0.011076685972511768, -0.01792852394282818, 0.005690681282430887, 0.004512598272413015, 0.0014150533825159073, -0.010345461778342724, 0.0148546751588583, 0.009343414567410946, 0.010521497577428818, 0.03228217363357544, -0.0019482373027130961, 0.02161172404885292, 0.026716750115156174, 0.00822626706212759, -0.012938598170876503, 0.03404252976179123, -0.027813585475087166, -0.0010841407347470522, 0.02243773639202118, -0.010210050269961357, 0.002190286060795188, 0.03209259733557701, 0.01436719298362732, -0.02193671278655529, -0.02761046774685383, 0.011577709577977657, 0.005734689999371767, 0.01776602864265442, 0.005081328097730875, 0.009621009230613708, 0.0029045832343399525, -0.027488596737384796, -0.02610739693045616, -0.005132107529789209, -0.006635178346186876, -0.006577628664672375, -0.03661535307765007, -0.026892784982919693, 0.013663051649928093, 0.0017121130367740989, -0.010954814963042736, 0.0019685490988194942, -0.0091267554089427, -0.006432060617953539, 0.004597230814397335, 0.02805732563138008, 0.02821982093155384, 0.019079523161053658, -0.0313342921435833, 0.004634469281882048, 0.015111957676708698, 0.015206745825707912, -0.0069872490130364895, 0.016560863703489304, -0.02563345432281494, 0.004749569110572338, -0.010704303160309792, 0.005423242691904306, -0.01757645234465599, -0.027299020439386368, 0.021882547065615654, 0.011570938862860203, 0.008449696935713291, 0.013412538915872574, -0.008429384790360928, -0.011347508989274502, -0.00548756355419755, 0.01402866281569004, 0.005592507775872946, 0.001880531432107091, -0.03295923396945, -0.0012601760681718588, -0.007021102122962475, -0.014177615754306316, -0.010832944884896278, 0.006513307802379131, 0.012891204096376896, -0.006564087234437466, 0.0035613304935395718, -0.02744797244668007, -0.008104396983981133, 0.029438527300953865, -0.04498380050063133, 0.006723196245729923, 0.002569439122453332, 0.014231780543923378, 0.004746183753013611, -0.002065029926598072, 0.02498347871005535, 0.010149114765226841, -0.018903488293290138, 0.00044262735173106194, -0.04604001343250275, 0.029736433178186417, 0.021990876644849777, -0.003642577677965164, 0.008700208738446236, -0.007948673330247402, -0.005592507775872946, -0.01267454493790865, 0.024279337376356125, 0.006140925455838442, 0.015206745825707912, -0.007224219851195812, -0.016885852441191673, -0.03853819891810417, -0.003723824629560113, -0.011510003358125687, 0.011821450665593147, -0.022329406812787056, -0.010433479212224483, -0.03228217363357544, 0.012552674859762192, 0.02272210083901882, -0.017034804448485374, -0.0073325494304299355, -0.04739413037896156, 0.0014869909500703216, 0.021882547065615654, -0.00773878488689661, 0.0297093503177166, -0.026175102218985558, -0.015369240194559097, -0.0006034288671799004, 0.0067265816032886505, -0.0017738946480676532, -0.0322280116379261, -0.012126127257943153, 0.005545113235712051, 0.03130720928311348, 0.02341270074248314, 0.019770123064517975, 0.00407589552924037, -0.006777361035346985, 0.002237680135294795, 0.013236504048109055, -4.961573358741589e-05, -0.004113133531063795, -0.0032194156665354967, -0.005094869062304497, 0.02112424187362194, -6.246927659958601e-05, 0.028761466965079308, 0.010941273532807827, 0.005998742766678333, 0.0018449858762323856, 0.041977658867836, -0.012512050569057465, -0.0007798873702995479, -0.01710251159965992, -0.025227218866348267, -0.008774684742093086, -0.014678639359772205, -0.012288621626794338, 0.013825545087456703, -0.0036290364805608988, 0.004231618717312813, 0.016899393871426582, 0.02824690192937851, 0.005755001679062843, -0.0012339401291683316, 0.02339915931224823, -0.015125499106943607, 0.016872311010956764, -0.032011352479457855, -0.008456467650830746, 0.006635178346186876, -0.02644592523574829, 0.011510003358125687, 0.01691293530166149, 0.023521030321717262, -0.00015244407404679805, 0.008388761430978775, -0.014516145922243595, -0.008612191304564476, -0.012139668688178062, 0.003910015802830458, -0.0077590965665876865, -0.01970241777598858, 0.007129431702196598, -0.01725146360695362, -0.024401206523180008, -0.03128012642264366, -0.0159650519490242, -0.026418844237923622, -0.01307400967925787, 0.0028368772473186255, -0.011191785335540771, 0.015003628097474575, 0.023155419155955315, -0.0013405769132077694, 0.012539133429527283, -0.007569519802927971, 0.022017959505319595, -0.0020836491603404284, 0.04322344809770584, 0.030223915353417397, -0.013771380297839642, -0.013405769132077694, 0.015247369185090065, 0.004028501454740763, -0.0017332711722701788, 0.004932375159114599, 0.019160769879817963, -0.013365144841372967, 0.002676075790077448, -0.00613076938316226, -0.005189657676964998, -0.018510794267058372, -0.02840939722955227, 0.00870697945356369, 0.0005175269907340407, 0.011347508989274502, -0.015450486913323402, 0.006391437258571386, -0.02373768948018551, 0.013446392491459846, -0.022004418075084686, -0.010948044247925282, -0.012153209187090397, -0.010778780095279217, -0.02211274765431881, 0.01857849955558777, -0.0049222190864384174, 0.014868216589093208, 0.0035613304935395718, -0.008422614075243473, -0.022776266559958458, 0.005281060468405485, -0.008016378618776798, 0.006919543258845806, 0.0137104457244277, 0.03691325709223747, -0.01428594533354044, 0.0013261893764138222, -0.006056292913854122, 0.0082398084923625, -0.012044880539178848, -0.00769816106185317, -0.015518193133175373, 0.032986316829919815, -0.015518193133175373, -0.004905292764306068, -0.015206745825707912, -0.002738703740760684, 0.027624009177088737, -0.012322474271059036, -0.01903890073299408, -0.016858769580721855, -0.01791498251259327, 0.004610771778970957, 0.020244065672159195, 0.018740994855761528, -0.0319301038980484, 0.017210841178894043, -0.02255960740149021, -0.013426080346107483, -0.011401673778891563, -0.00047394132707268, 0.01250527985394001, 0.0002560129505582154, -0.003090774407610297, -0.007657537702471018, -0.0008467469597235322, 0.017292087897658348, 0.01711605302989483, -0.01970241777598858, 0.00848354957997799, 0.02467203140258789, -0.009492367506027222, 0.019891994073987007, -0.014421357773244381, 0.0014717570738866925, -0.028842715546488762, -0.004996695555746555, 0.01566714607179165, -0.02805732563138008, 0.014624474570155144, -0.005616204813122749, -0.016560863703489304, -0.014055745676159859, -0.007718472741544247, 0.014299486763775349, 0.019472217187285423, -0.009316332638263702, 0.0082398084923625, 0.009621009230613708, -0.001547926221974194, -0.013920333236455917, -0.025294926017522812, 0.02051488868892193, 0.013534409925341606, 0.010027243755757809, 0.01347347442060709, -0.026242807507514954, -0.014055745676159859, -0.006489610765129328, 0.028192738071084023, 0.017210841178894043, -0.0030823112465441227, -0.03176761046051979, -0.0030992378015071154, 0.042844295501708984, -0.0002083014405798167, -0.02840939722955227, -0.009783502668142319, -0.008652814663946629, -0.01937742903828621, 0.02840939722955227, -0.007880967110395432, 0.0016503314254805446, 0.009776731953024864, 0.02051488868892193, 0.00014027816359885037, 0.018781617283821106, -0.015125499106943607, -0.023141877725720406, -0.00350716570392251, -0.030034339055418968, -0.018849322572350502, -0.016493158414959908, -0.0017840504879131913, 0.021828383207321167, 0.018754534423351288, -0.025213677436113358, -0.02131381817162037, 0.02402205392718315, -0.028815632686018944, -0.005490948911756277, 0.006763819605112076, 0.01371721550822258, 0.012721939012408257, -0.00460400152951479, 0.00564328720793128, 0.013988039456307888, -0.005927651654928923, -0.005700836889445782, -0.02178775891661644, -0.018497252836823463, 0.0016858769813552499, 0.0029942935798317194, 0.02450953610241413, -0.0037779894191771746, -0.030061420053243637, -0.007786178961396217, 0.018740994855761528, 0.015003628097474575, -0.00475972518324852, 0.01096158567816019, -0.015572357922792435, -0.0024509537033736706, -0.01565360464155674, 0.01933680661022663, 0.019323265179991722, 0.022383570671081543, -0.0030010640621185303, -0.014231780543923378, -0.009458514861762524, -0.013331292197108269, 0.0050745573826134205, -0.025525124743580818, -0.00831428449600935, 0.011069915257394314, -0.007447649259120226, 0.007562749553471804, -0.009492367506027222, 0.014935921877622604, 0.005372463259845972, -0.03063015080988407, 0.01539632212370634, -0.00013752761879004538, 0.013168797828257084, 0.031063469126820564, 0.005521416198462248, -0.0009191076387651265, -0.006516693159937859, -0.007109120022505522, -0.008930408395826817, 0.0035951833706349134, -0.024820983409881592, -0.005616204813122749, 0.0027200847398489714, -0.013493786565959454, 0.008646043948829174, -0.03480083495378494, 0.005880257580429316, -0.011347508989274502, -0.0274208914488554, -0.016330663114786148, 0.016655651852488518, 0.0003203335509169847, -0.018957652151584625, -0.021259654313325882, -0.005778698716312647, -0.01146260928362608, 0.004986539948731661, 0.005518031306564808, -0.006289878394454718, -0.0033615981228649616, -0.004184224642813206, 0.0008734061266295612, -0.0007642303826287389, -0.03921525925397873, 0.0055586546659469604, 0.0039370981976389885, 0.011090226471424103, 0.006289878394454718, 0.22684185206890106, 0.011868844740092754, 0.0007925822283141315, 0.05871455743908882, -0.003011220134794712, 0.010636596940457821, 0.04029855504631996, -0.0024154081474989653, -0.0002447991573717445, -0.0033717539627104998, -0.022315865382552147, -0.006631792988628149, -0.019756581634283066, 0.008043461479246616, 0.010744926519691944, 0.008652814663946629, -0.024929312989115715, -0.0203253123909235, -0.019878452643752098, -0.007407025899738073, -0.001131534925661981, -0.00701433140784502, -0.013974498026072979, -0.004285783506929874, 0.012877662666141987, -0.007975755259394646, -0.006279722321778536, -0.010948044247925282, 0.00799606740474701, -0.0010105106048285961, -0.005690681282430887, -0.001790821086615324, -0.014001580886542797, -0.011868844740092754, -0.013845857232809067, 0.0033565200865268707, 0.013507327996194363, 0.0026659199502319098, 0.018280593678355217, 0.012904745526611805, 0.005044089630246162, 0.016398370265960693, -0.024252254515886307, 0.003916786517947912, -0.020393017679452896, 0.035396646708250046, -0.011733433231711388, 0.0011281495681032538, 0.008991343900561333, 0.015531734563410282, -0.0387277752161026, 0.00411990424618125, 0.018470169976353645, 0.022830430418252945, -0.0020514889620244503, 0.011956862173974514, 0.0322280116379261, 0.018023312091827393, -0.015599439851939678, -0.008233037777245045, -0.024238713085651398, 0.01838892325758934, -0.02193671278655529, 0.03198426961898804, -0.026581337675452232, 0.020569052547216415, -0.013696904294192791, 0.0029942935798317194, -0.0017180372960865498, -0.010948044247925282, 0.0037035129498690367, -0.013568262569606304, -0.004702175036072731, 0.02406267821788788, -0.022871054708957672, -0.029573937878012657, 0.012437574565410614, 0.03388003259897232, 0.006994019728153944, 0.004482130985707045, -0.013974498026072979, 0.005964890122413635, -0.012180292047560215, -0.006966937333345413, -0.006520078517496586, -0.04067770764231682, -0.0019313108641654253, -0.015030710026621819, 0.0012000871356576681, -0.01949930004775524, 0.004045427776873112, -0.012545904144644737, 0.0091267554089427, -0.01726500503718853, 0.0057279192842543125, 0.015382780693471432, 0.009275708347558975, 0.016005676239728928, -0.03918817639350891, 0.028626056388020515, -0.01153031550347805, -0.013771380297839642, 0.03287798538804054, 0.006763819605112076, 0.0019499299814924598, -0.007989296689629555, -0.009810585528612137, 0.008029920049011707, -0.0025880581233650446, -0.013669821433722973, -0.007474731653928757, -0.022546065971255302, -0.002237680135294795, -0.005362307652831078, 0.01516612246632576, 0.012762562371790409, -0.011889156885445118, -0.024820983409881592, 0.003930327482521534, -0.006523463875055313, 0.0054841781966388226, -0.014136992394924164, 0.037536151707172394, -0.007088807877153158, -0.006506537087261677, 0.0018500637961551547, -0.009167379699647427, -0.0030789258889853954, 0.0015411556232720613, -0.019959699362516403, 0.004780036862939596, -0.017942063510417938, 0.0003664582036435604, -0.008828849531710148, -0.010210050269961357, 0.008266890421509743, -0.020365934818983078, -0.00903873797506094, -0.00027886367752216756, 0.012640692293643951, -0.0068315258249640465, -0.007170055061578751, 0.022654395550489426, 0.0005615358240902424, -0.004661551211029291, -0.0461212620139122, 0.02112424187362194, 0.007163284346461296, -0.038511116057634354, 0.001269485685043037, -0.02675737254321575, -0.0070752669125795364, -0.01646607555449009, -0.009553303010761738, 0.025416795164346695, 0.0059682754799723625, -0.016994182020425797, -0.019891994073987007, -0.010223591700196266, -0.009864750318229198, -0.029817679896950722, 0.021692970767617226, 0.02094820700585842, -0.012038109824061394, -0.02532200701534748, 0.0007079498609527946, -0.17646867036819458, 0.0393235869705677, 0.015558816492557526, -0.02146277204155922, 0.001005432684905827, 0.0028622669633477926, 0.010670450516045094, 0.009675173088908195, -0.012193833477795124, 0.009059050120413303, 0.015897346660494804, 0.009174149483442307, -0.03328422084450722, -0.013324521481990814, -0.01025067362934351, -0.013101092539727688, -0.004302710294723511, 0.02241065353155136, 0.008937179110944271, 0.006794287357479334, 0.023521030321717262, -0.021855466067790985, -0.008029920049011707, -0.014069286175072193, -0.0008179719443432987, 0.008023149333894253, 0.0016884159995242953, 0.01509841624647379, 0.0007261458085849881, -0.016533780843019485, -0.02162526547908783, -0.04319636523723602, -0.0065911696292459965, -0.00040263854316435754, 0.010108491405844688, 0.011503232643008232, -0.005633131135255098, -0.0023578580003231764, 0.003490239381790161, 0.02515951357781887, 0.015057792887091637, 0.02792191505432129, -0.005853175185620785, 0.009546532295644283, 0.01155062671750784, 0.025118889287114143, 0.006628408096730709, 0.026432383805513382, 0.016330663114786148, -0.015721309930086136, -0.0010359003208577633, -0.015545275062322617, 0.009885061532258987, 0.010067868046462536, 0.0032244937028735876, 0.004658166319131851, 0.00528783118352294, 0.018849322572350502, -0.018510794267058372, -0.007217449136078358, -0.035884127020835876, -0.00487482501193881, -0.011002209037542343, 0.021422147750854492, -0.011185015551745892, -0.01578901708126068, -0.00419099535793066, -0.003444537753239274, -0.027150066569447517, 0.002542356727644801, -0.007955444045364857, -0.014949463307857513, 0.001090064994059503, -0.027204232290387154, -0.012979221530258656, 0.017224382609128952, -0.018280593678355217, 0.009668403305113316, -0.006912772543728352, 0.0019313108641654253, -0.01646607555449009, 0.05887705460190773, -0.022830430418252945, 0.005108410492539406, 0.0011069915490224957, 0.020555512979626656, -0.002896120073273778, -0.004641239531338215, 0.007874196395277977, -0.017698323354125023, 0.015843180939555168, -0.020907582715153694, -0.008713750168681145, -0.033636294305324554, -0.0004201997653581202, 0.015369240194559097, 0.002464494900777936, 0.009411120787262917, 0.021652348339557648, 0.010216820985078812, 0.018361840397119522, 0.001042670919559896, -0.013845857232809067, 0.014218240045011044, 0.025863654911518097, -0.005260748788714409, -0.0011501540429890156, 0.007237760815769434, 0.03190302103757858, 0.006039366591721773, -0.018036851659417152, 0.01760353520512581, 0.02436058409512043, 0.010636596940457821, -0.007447649259120226, -0.002369706518948078, 0.011983945034444332, -0.016696276143193245, 0.04021730646491051, -0.02616156078875065, 0.04135476425290108, -0.0006123152561485767, -0.017143134027719498, -0.0007075266912579536, 0.010643367655575275, -0.008910097181797028, -0.10838361084461212, -0.03485500067472458, 0.0010359003208577633, 0.03144261986017227, -0.005568810738623142, 0.0022766110487282276, -0.009241855703294277, 0.02903229184448719, -0.012363097630441189, 0.03791530430316925, -0.020745089277625084, -0.015260910615324974, -0.005433398764580488, 0.003581642173230648, 0.023669984191656113, -0.000910644419491291, 0.013656280934810638, -0.012078733183443546, -0.022139830514788628, 0.029248949140310287, -0.012552674859762192, 0.0036832010373473167, -0.011692809872329235, 0.010331920348107815, 0.010480874218046665, -0.005220124963670969, -0.030440574511885643, 0.018429547548294067, 0.0220992062240839, 9.722144750412554e-05, 0.006916157901287079, -0.0007549208239652216, 0.003023068653419614, -0.028463561087846756, -0.0043162512592971325, -0.002017635852098465, -0.02291167713701725, -0.0038558512460440397, 0.009296020492911339, -0.02595844306051731, 0.016980640590190887, 0.004522754345089197, 2.9065931812510826e-05, -0.023480407893657684, -0.0069872490130364895, 0.005717763677239418, -0.005551883950829506, 0.006134154740720987, 0.01696709915995598, -0.03049473837018013, -0.005585737060755491, 0.011564168147742748, -0.0008192414534278214, -0.02626989036798477, 0.026540713384747505, -0.02437412552535534, 0.011455838568508625, 0.009336643852293491, -0.011631874367594719, 0.0193638876080513, -0.000589887669775635, -0.002632067073136568, -0.022207535803318024, 0.04487547278404236, 0.021191947162151337, -0.0019397741416469216, -0.036534104496240616, -0.012525591999292374, 0.005805781111121178, -0.035423729568719864, -0.0021310432348400354, 0.014583851210772991, -0.014516145922243595, 0.015734851360321045, -0.010514726862311363, 0.013304210267961025, -0.02857189066708088, -0.018835783004760742, 0.01726500503718853, -0.04693373292684555, -0.010440249927341938, -0.024956395849585533, 0.0193638876080513, -0.03239050507545471, 0.00895072054117918, 0.008943949826061726, 0.012627150863409042, -0.002828414086252451, 0.015044251456856728, -0.019472217187285423, 0.029655184596776962, 0.0002854226913768798, 0.024739736691117287, -0.03788822144269943, -0.012789645232260227, -0.0013972806045785546, -0.010758467949926853, -0.021747136488556862, 0.014881757088005543, -0.009702255949378014, -0.011212097480893135, -0.008544485084712505, -0.06857253611087799, 0.017319170758128166, -0.0022038270253688097, -0.009932455606758595, 0.007664308417588472, 0.016100464388728142, 0.006994019728153944, -0.01578901708126068, -0.02675737254321575, 0.025728242471814156, -0.014218240045011044, 0.020257605239748955, -0.0011992407962679863, -0.03401544690132141, -0.017170216888189316, -0.01540986355394125, 0.009512679651379585, -0.006872149184346199, 0.012336015701293945, 0.020988829433918, 0.01744103990495205, 0.009302791208028793, 0.02242419496178627, -0.01888994686305523, -0.012241227552294731, -0.012146439403295517, -0.015220287255942822, 0.01184176281094551, -0.023263748735189438, -0.02484806627035141, -0.0006030056974850595, -0.014895298518240452, -0.014800510369241238, 0.03146970272064209, 0.0001858738687587902, -0.030711397528648376, 0.01757645234465599, 0.02566053718328476, -0.003048458369448781, -0.005748230963945389, -0.019959699362516403, -0.032200928777456284, 0.004021730739623308, -0.01047410350292921, 0.0011340738274157047, 0.002901197876781225, -0.007230990566313267, 0.0007621145923621953, 0.028815632686018944, -0.009675173088908195, -0.001390510005876422, -0.006465913727879524, 0.009539761580526829, -0.02938436158001423, -0.011753744445741177, -0.012065191753208637, 0.003122934838756919, 0.011916238814592361, -0.026418844237923622, -0.017806652933359146, 0.01565360464155674, -0.003832154208794236, 0.0016943402588367462, 0.0038592363707721233, 0.020420100539922714, -0.021909629926085472, -0.004529525060206652, -0.004387342371046543, 0.0177389457821846, -0.03301339969038963, -0.020907582715153694, -0.0003444537869654596, 0.019323265179991722, -0.0022562991362065077, 0.014583851210772991, -0.00046336225932464004, -0.0032278788276016712, 0.01612754538655281, -0.0062120165675878525, 0.025850113481283188, 0.011598020792007446, 0.008111166767776012, -0.026513632386922836, 0.021042995154857635, 0.022871054708957672, 0.024875149130821228, -0.01696709915995598, -0.008097626268863678, 0.002571131568402052, 0.023642901331186295, 5.866081846761517e-05, 0.0058633312582969666, 0.016723357141017914, -0.00829397328197956, -0.000652938790153712, 0.010440249927341938, 0.003801686456426978, 0.008598649874329567, 0.022031500935554504, 0.017820194363594055, 0.007820031605660915, 0.0011179937282577157, 0.0023612433578819036, -0.005169345531612635, 0.004427966196089983, 0.01137459184974432, -0.020244065672159195, 0.01461093407124281, -0.00773878488689661, 0.0010494415182620287, 0.017237922176718712, -0.014935921877622604, -0.015247369185090065, 0.027353184297680855, -0.025606373324990273, 0.009167379699647427, -0.01853787712752819, -0.01402866281569004, -0.034611258655786514, 0.019567005336284637, 0.027299020439386368, -0.01508487481623888, 0.020054487511515617, -0.0015360777033492923, -0.002269840333610773, 0.0011467686854302883, 0.03114471584558487, -0.03409669175744057, -0.006652105133980513, 0.004113133531063795, 0.01508487481623888, -0.025213677436113358, -0.024116842076182365, -0.0013075702590867877, -0.005321683827787638, -0.003649348160251975, 0.003744136542081833, 0.02421163022518158, -0.007684620097279549, 0.04484838992357254, -0.001158617320470512, -0.024130383506417274, -0.006239098962396383, -0.01711605302989483, 0.0064557576552033424, 0.020772170275449753, 0.009715797379612923, -0.02208566479384899, -0.013581803999841213, -0.004834201652556658, -0.014313028194010258, -0.0031313979998230934, -0.01901181787252426, -0.021869007498025894, -0.0003433958627283573, -0.0076236845925450325, 0.01428594533354044, -0.004901907406747341, -0.002564361086115241, 0.016845228150486946, 0.014786968939006329, 0.030250998213887215, 0.0102371321991086, -0.028273984789848328, -0.015883805230259895, 0.010521497577428818, -0.007359631825238466, -0.0007159899105317891, -0.01917431131005287, 0.02310125343501568, 0.0008818694041110575, -0.02903229184448719, 0.008409073576331139, 0.012755791656672955, -0.01484113372862339, -0.011144391261041164, -0.003761062864214182, -0.006327116396278143, 0.010223591700196266, -0.0052472073584795, 0.0023087712470442057, -0.022193994373083115, -0.030250998213887215, 0.010325150564312935, 0.013933874666690826, -0.022627312690019608, -0.025850113481283188, -0.013534409925341606]" +18,cheeseburger,"[-0.01824556663632393, 0.00504859397187829, 0.012778435833752155, -0.04983197897672653, -0.013471636921167374, 0.012045998126268387, -0.031207112595438957, -0.027126383036375046, 0.002787517150864005, -0.0424814336001873, 0.01798398047685623, 0.016793768852949142, -0.008952752687036991, 0.001656161155551672, -0.008102601394057274, -0.004731421824544668, 0.0426645427942276, -0.005306909326463938, 0.021633094176650047, -0.01925266906619072, 0.008939673192799091, -0.015695111826062202, 0.0213584303855896, -0.021633094176650047, -0.00905084703117609, -0.007213211618363857, 0.01275881752371788, -0.019422700628638268, -0.0023951393086463213, 0.008187616243958473, 0.015642793849110603, 0.005777762737125158, -0.02559611015021801, -0.009691731072962284, -0.012405677698552608, 0.0012106489157304168, -0.009384368546307087, -0.01718614622950554, 0.03745899721980095, -0.0022823307663202286, 0.004325964953750372, -0.00952170044183731, 0.001798398094251752, -0.000738569418899715, -0.02652473747730255, 0.016479866579174995, 0.005355956498533487, -0.025059860199689865, -0.037615951150655746, -0.005205545108765364, 0.03390143811702728, -2.230115933343768e-05, -0.016283677890896797, -0.005934713874012232, -0.0005534161464311182, -0.0004602264380082488, -0.017421573400497437, -0.006418646313250065, -0.00961325503885746, -0.010443788021802902, -0.0026681688614189625, -0.010398010723292828, -0.02976839430630207, 0.01181711070239544, -0.010999657213687897, -0.014151758514344692, -0.013432399369776249, -0.00698432419449091, 0.014204075559973717, 0.014138679020106792, 0.02042980305850506, 0.017565445974469185, 0.006807754281908274, -0.007481336127966642, 0.012784975580871105, 0.007324384991079569, -0.012314122170209885, 0.006245346274226904, -0.00020589615451171994, 0.00318316463381052, 0.0320965014398098, -0.016584500670433044, -0.0025455509312450886, 0.01801013946533203, 0.005208814982324839, 0.015341971069574356, -0.017879346385598183, 0.01921343244612217, -0.005398464389145374, -0.01802321895956993, -0.00252102711237967, 0.024994464591145515, 0.011647080071270466, 0.011588223278522491, -0.0133408447727561, 0.02335955761373043, 0.009247036650776863, 0.02874821238219738, -0.009233957156538963, -0.029506808146834373, 0.00952170044183731, 0.008573454804718494, 0.005660049617290497, -0.022614039480686188, -0.0019340954022482038, -0.004816437140107155, 0.003206053515896201, -0.01341931987553835, 0.004780469462275505, -0.032619673758745193, -0.012484152801334858, 0.03316900134086609, 0.019527334719896317, -0.03850533813238144, 0.012961545959115028, -0.008638850413262844, -0.001091300742700696, 0.013550112955272198, -0.016597580164670944, -0.021855441853404045, 0.015158860944211483, 0.004159204196184874, 0.034738510847091675, -0.015368129126727581, 0.017787791788578033, 0.0007234465447254479, -0.0059118252247571945, 0.008318408392369747, 0.0028022313490509987, 0.0054900189861655235, 0.03630802407860756, 0.02020745538175106, 0.04650984704494476, 0.0009915713453665376, -0.01593053713440895, -0.002707406645640731, -0.02887900359928608, -0.0014207345666363835, -0.008324948139488697, -0.044364847242832184, 0.010398010723292828, 0.026158519089221954, -0.008710786700248718, -0.004231140483170748, -0.023111050948500633, 0.01020182203501463, 0.01437410619109869, 0.010568041354417801, -0.013484716415405273, -0.0044763763435184956, 0.012660723179578781, -0.005516177508980036, 0.02560918964445591, -0.024968305602669716, 0.008181076496839523, 0.015433525666594505, -0.0044763763435184956, 0.016623739153146744, -0.005898745730519295, -0.021933916956186295, -0.008259552530944347, -0.010973498225212097, 0.03437229245901108, -0.022980257868766785, 0.029428333044052124, 0.038793083280324936, 0.021567698568105698, 0.021685412153601646, 0.009855221956968307, -0.021672332659363747, 0.006363059394061565, 0.04917801544070244, -0.026393944397568703, 0.02440589852631092, -0.007500955369323492, 0.007141275331377983, 0.006938546895980835, 0.015655873343348503, -0.01715998724102974, 0.013183893635869026, -0.03510473296046257, 0.0076840645633637905, 0.02866973541676998, 0.03709277883172035, -0.0009670477011241019, -0.008671549148857594, 0.00914894137531519, -0.018428675830364227, -0.0003911515814252198, -0.01492343470454216, 0.010960419662296772, 0.01807553693652153, 0.012418756261467934, -0.006827373523265123, -0.6876551508903503, -0.009397448040544987, 0.02032516896724701, -0.0039008890744298697, 0.020966053009033203, 0.03492162376642227, -0.0026240262668579817, 0.005754874087870121, 0.006336900871247053, 0.012713040225207806, 0.0010528803104534745, 0.004790278617292643, -0.010044870898127556, -0.008266091346740723, -0.017931664362549782, -0.00961325503885746, 0.02864357829093933, -0.01171901635825634, 0.00039707813994027674, 0.018546389415860176, 0.006755437236279249, 0.003923777956515551, -0.01277189701795578, 0.009220877662301064, 0.016466787084937096, 0.022875623777508736, 0.009384368546307087, 0.0017934934003278613, 0.010895023122429848, 0.004460027441382408, -0.023921964690089226, -0.00186542933806777, -0.006114553660154343, -0.03664808347821236, 0.05676398426294327, 0.002087776781991124, -0.019422700628638268, 0.0028447387740015984, 0.023241844028234482, 0.02230013720691204, -0.004106887616217136, -0.0428738109767437, 0.017735475674271584, 0.0018556199502199888, -0.0046529462561011314, 0.0006470145890489221, 0.018755657598376274, 0.006127633154392242, -0.010312995873391628, -0.01163400150835514, 0.003537939628586173, 0.012117933481931686, 0.022169344127178192, 0.018716419115662575, 0.006945086643099785, 0.0004957856726832688, 0.03505241498351097, -0.019475016742944717, 0.00480662751942873, 0.02457592822611332, -0.01115006860345602, 0.014740325510501862, -0.01599593460559845, -0.01821940764784813, -0.017447732388973236, -0.014897276647388935, -0.023765014484524727, -0.006840452551841736, 0.020691387355327606, -0.0025586301926523447, 0.012000219896435738, 0.021881600841879845, -0.0014011156745254993, -0.007906411774456501, 0.01124816294759512, 0.024209707975387573, 0.004368472378700972, 0.0004880198684986681, -0.0007896602619439363, 0.019775839522480965, -0.0009572382550686598, -0.0007794420816935599, -0.011555525474250317, 0.03076241724193096, 0.03303821012377739, -0.01831096224486828, -0.01806245744228363, -0.004064379725605249, -0.0018556199502199888, -0.01715998724102974, 0.02576613985002041, 0.012804594822227955, -0.01823248714208603, -0.00608839513733983, -0.02539992146193981, 0.009822523221373558, -0.01908263936638832, 0.008377265185117722, 0.022927941754460335, -0.03502625599503517, -0.004760850220918655, 0.019461937248706818, -0.0038714606780558825, 0.0160613302141428, 0.002141728764399886, 0.023241844028234482, 0.000635161530226469, 0.015211177989840508, 0.02757107838988304, -0.03395375609397888, 0.008710786700248718, -0.010175663977861404, -0.00608839513733983, -0.028460467234253883, 0.006549438927322626, -0.022117028012871742, 0.011784412898123264, 0.007088958285748959, 0.019658125936985016, -0.018559468910098076, 0.0213715098798275, -0.002619121689349413, 0.011307019740343094, -0.010646517388522625, 0.0026975972577929497, 0.016296757385134697, -0.01011026743799448, -0.030265405774116516, -0.03528784215450287, -0.011594763025641441, 0.0040970779955387115, 0.010156044736504555, 0.010489566251635551, -0.007173973601311445, -0.019880473613739014, 0.015734348446130753, 0.03531400114297867, -0.022143185138702393, 0.004381551872938871, 0.002388599794358015, -0.003913968335837126, -0.0011313558788970113, -0.0067815957590937614, 0.0035444791428744793, -0.022770989686250687, -0.022156264632940292, -0.010731532238423824, 0.0017804141389206052, -0.013046560809016228, 0.007056260481476784, 0.011673239059746265, -0.014047124423086643, -0.004865484312176704, 0.014988831244409084, 0.019906632602214813, -0.018651023507118225, -0.016322916373610497, -0.015603556297719479, 0.0016144710825756192, -0.021672332659363747, 0.0268124807626009, 0.031233271583914757, -0.0319657102227211, -0.033430587500333786, -0.02027285099029541, -0.009417066350579262, 0.013497795909643173, -0.0032534657511860132, -0.01937038265168667, -0.02359498292207718, -0.012444915249943733, -0.012039458379149437, 0.00333194131962955, -0.00610147463157773, -0.005689477548003197, 0.0321749784052372, -0.02360806241631508, -0.020678307861089706, -0.004836055915802717, -0.006729278713464737, 0.012052536942064762, 0.003001689910888672, -0.030056137591600418, 0.017866268754005432, 0.014557215385138988, -0.00907046627253294, -0.005467130336910486, 0.02762339450418949, -0.017290780320763588, 0.010868864133954048, 0.005476939957588911, -0.0005387020064517856, -0.017382334917783737, 0.016584500670433044, 0.0042703780345618725, -0.008200695738196373, 0.008174536749720573, 0.02122763730585575, 0.004574470687657595, 0.029637601226568222, 0.02015513926744461, 0.0029722617473453283, 0.012412216514348984, -0.00907046627253294, 0.008403424173593521, -0.03740668296813965, -0.01341931987553835, -0.01491035521030426, 0.019736602902412415, 0.006448074709624052, -0.01011026743799448, -0.012641103938221931, -0.003109593875706196, 0.015551239252090454, 0.016571421176195145, 0.030134612694382668, -0.0011092846980318427, 0.01920035295188427, 0.014858038164675236, 0.0016904942458495498, 0.012497232295572758, -0.01492343470454216, 0.008409963920712471, -0.009390908293426037, 0.012117933481931686, 0.037720583379268646, 0.011496668681502342, 0.02877436950802803, 0.009704810567200184, -0.003098149551078677, 0.025033701211214066, -0.00019761943258345127, 0.011751714162528515, 0.019461937248706818, 0.005928174126893282, 0.007141275331377983, 0.010515724308788776, -0.007756000850349665, 0.014648769982159138, 0.01616596430540085, -0.014230233617126942, 0.032541196793317795, -0.002800596412271261, 0.008128759451210499, 0.0009449764620512724, 0.003132482524961233, 0.0013234575744718313, 0.013471636921167374, -0.009142402559518814, 0.01114352885633707, 6.973902054596692e-05, 0.009469383396208286, -0.022077789530158043, 0.00020681579189840704, 0.013563191518187523, -0.015603556297719479, 0.022653276100754738, 0.012150632217526436, 0.020612912252545357, 0.018624864518642426, 0.00956093892455101, 0.001010372769087553, -0.024157391861081123, -0.019514255225658417, -0.009462843649089336, 0.020900655537843704, -0.002736835042014718, -0.013837856240570545, -0.013458557426929474, -0.004129776265472174, 0.011097751557826996, 0.0015940347220748663, 0.0106922946870327, -0.005306909326463938, 0.006425186060369015, -0.017369255423545837, -0.00914894137531519, 0.040022533386945724, -0.0043782819993793964, -0.01009064819663763, -0.010443788021802902, -0.01695071905851364, 0.032436564564704895, 0.0158389825373888, 0.00037357633118517697, -0.005362496245652437, -0.02233937382698059, -0.005287290550768375, -0.01539428811520338, 0.00962633453309536, 0.0016226456500589848, 0.02041672356426716, 0.021907759830355644, 0.005666588898748159, -0.007193592377007008, 0.017591603100299835, 0.00955439917743206, -0.014648769982159138, 0.01230104360729456, 0.015577397309243679, 0.013020402751863003, -0.008717326447367668, -0.005045324098318815, -0.007402860559523106, 0.026917114853858948, -0.014400264248251915, -0.016375232487916946, -0.021894680336117744, 0.015263495035469532, 0.0033711791038513184, 0.0014387185219675303, 0.024915989488363266, -0.013942490331828594, -0.0035739075392484665, -0.013066180050373077, 0.002213664585724473, -0.017500048503279686, -0.014138679020106792, 0.01702919602394104, 0.02443205565214157, -0.02347726933658123, -0.026014646515250206, -0.016466787084937096, 0.011568604968488216, 0.05472362041473389, 0.02025977335870266, 0.016506025567650795, 0.012111393734812737, 0.023948123678565025, 0.0049014524556696415, -0.0105811208486557, -0.0320441834628582, 0.0055586849339306355, -0.007010482717305422, -0.008717326447367668, -0.002594598103314638, 0.026328548789024353, -0.012994243763387203, 0.031311746686697006, -0.023084891960024834, -0.006363059394061565, -0.028538944199681282, 0.014073282480239868, 0.0036850813776254654, -0.00480662751942873, 0.011071592569351196, 0.016558341681957245, 0.010293376632034779, 0.03664808347821236, 0.0038649211637675762, 0.028565101325511932, 0.036569610238075256, -0.0013814967824146152, -0.030683942139148712, -0.02785882167518139, 0.0019553492311388254, 0.02227397821843624, -0.013281987980008125, -0.003534669755026698, 0.012248726561665535, 0.004894912708550692, 0.0073440042324364185, 0.025269128382205963, 0.005627351347357035, 0.008625771850347519, 0.0075794304721057415, -0.008449201472103596, -0.020769864320755005, -0.007141275331377983, -0.026093121618032455, -0.0011959347175434232, 0.027152542024850845, 0.005195735488086939, -0.005614271853119135, 0.020560596138238907, -0.015041148290038109, -0.007160894572734833, -0.012137552723288536, -0.011856348253786564, -0.022679435089230537, 0.0027597236912697554, -0.018389439210295677, -0.020534437149763107, 0.0037962549831718206, -0.009122783318161964, -0.04575124755501747, -0.007775619626045227, 0.0033139572478830814, 0.007324384991079569, -0.025282207876443863, -0.015132702887058258, -0.005898745730519295, -0.011941364035010338, 0.013275448232889175, -0.01708151213824749, -0.014583374373614788, -0.006722739432007074, -0.013942490331828594, 0.01113044936209917, 0.009861761704087257, -0.002632200950756669, 0.010319535620510578, -0.010182203724980354, 0.006336900871247053, -0.003636033972725272, -0.026864798739552498, 0.0003102236660197377, -0.026380864903330803, -0.040022533386945724, -0.0024834242649376392, 0.03272430598735809, -0.01389017328619957, -0.008743484504520893, 0.011764793656766415, 0.01798398047685623, 0.00250631314702332, 0.009214337915182114, -0.0015220987843349576, 0.0009809444891288877, -0.02651165798306465, 0.003930317237973213, -0.0015057497657835484, 0.01491035521030426, -0.007370162755250931, 0.008344567380845547, 0.009345130994915962, -0.005267671775072813, 0.0051728468388319016, 0.02785882167518139, -0.010018712840974331, 0.00792603101581335, 0.01340624038130045, -0.0022414580453187227, 0.00613744230940938, 0.008913515135645866, 0.0017738745082169771, -0.003129212651401758, -0.005192466080188751, 0.017800871282815933, 0.025334525853395462, -0.0005534161464311182, 0.002125379629433155, -0.024745957925915718, -0.020612912252545357, 0.017630841583013535, -0.010227981023490429, 0.025753062218427658, 0.030108455568552017, 0.021109923720359802, 0.0003788897884078324, -0.014020965434610844, -0.021528460085392, -0.031128637492656708, 0.011084672063589096, 0.002297044964507222, 0.018755657598376274, -0.020665230229496956, -0.029062114655971527, -0.01931806653738022, -0.004744501318782568, 0.0019079368794336915, 0.03484314680099487, 0.0002807953569572419, -0.04452179744839668, -0.032671988010406494, -0.00048515875823795795, -0.001960254041478038, -0.0012915768893435597, 0.0019275557715445757, -0.034686196595430374, -0.020469041541218758, 0.003081800416111946, 0.004921071231365204, 0.018363280221819878, -0.00770368380472064, -0.0016488040564581752, -0.00952824018895626, 0.017578523606061935, 0.019631968811154366, -0.02880052849650383, -0.011751714162528515, 0.0068862298503518105, 0.02551763504743576, 0.034764669835567474, 0.0006376138771884143, -0.002439281903207302, 0.018938766792416573, 0.0012621484929695725, -0.009286274202167988, 0.004355393350124359, -0.0007929300772957504, 0.020534437149763107, -0.015655873343348503, 0.031233271583914757, 0.01933114416897297, 0.015812823548913002, 0.018716419115662575, 0.01273265853524208, -0.0034660035744309425, 0.016257518902420998, 0.012889609672129154, 0.0037700964603573084, -0.02966376021504402, -0.017761634662747383, 0.010254139080643654, -0.00294773792847991, -0.015446605160832405, -0.002365710912272334, 0.013654747046530247, -0.013772459700703621, 0.016192123293876648, 0.002401679055765271, 0.014544135890901089, -0.009600176475942135, 0.01333430502563715, -0.024929067119956017, 0.015145782381296158, -0.007389781530946493, -0.005120529793202877, 0.007553271949291229, -0.030056137591600418, 0.013720142655074596, -0.012104853987693787, 0.011019275523722172, 0.009096624329686165, 0.02354266680777073, -0.022103948518633842, -0.0160613302141428, -0.005084562115371227, 0.017526207491755486, -0.013059640303254128, -0.02968991920351982, 0.003361369716003537, -0.03541863337159157, -0.012713040225207806, -0.02227397821843624, 0.003192974254488945, -0.03086705133318901, 0.008416503667831421, -0.013393161818385124, -0.038950033485889435, 0.03717125579714775, -0.007082419004291296, -0.012085235677659512, -0.002983706071972847, 0.008815420791506767, 0.027440285310149193, -0.008207235485315323, 0.03704046085476875, 0.012032918632030487, -0.0072001321241259575, -0.018938766792416573, 0.020560596138238907, 0.007330924738198519, -0.018598707392811775, -0.0022496324963867664, -0.0006511018727906048, 0.03442461043596268, -0.01171901635825634, 0.009214337915182114, 0.022077789530158043, -0.031416378915309906, -0.025282207876443863, -0.004129776265472174, 0.01113698910921812, 0.01115006860345602, -0.023163368925452232, -0.017748555168509483, 0.009933697059750557, -0.003433305537328124, -0.004662755876779556, -0.005254592280834913, -0.02240477129817009, -0.02890516258776188, -0.02359498292207718, 0.020861418917775154, -0.02363422140479088, 0.01125470269471407, 0.02141074649989605, -0.01599593460559845, -0.00916202086955309, -0.015812823548913002, -0.018284805119037628, 0.028512785211205482, 0.0020567134488373995, 0.026197755709290504, 0.0015572493430227041, 0.03813911974430084, -0.0037733663339167833, 0.003078530542552471, -0.008527676574885845, 0.010711912997066975, 0.013576271012425423, 0.01437410619109869, -0.017918584868311882, -0.013550112955272198, -0.028172723948955536, -0.011117369867861271, 0.02141074649989605, -0.004034951329231262, -0.016532182693481445, -0.017853189259767532, -0.011431272141635418, -0.020704466849565506, -0.008900435641407967, 0.008854658342897892, -0.033587537705898285, -0.01599593460559845, -0.00965903326869011, 0.001994587015360594, -0.03102400340139866, 0.0015131067484617233, 0.005506367888301611, -0.0160874892026186, -0.0024556308053433895, -0.013523953966796398, 0.020756784826517105, -0.0041003478690981865, 0.0160613302141428, -0.0031275779474526644, 0.0033973376266658306, 0.01595669612288475, -0.04172283783555031, 0.022731753066182137, -0.02254864200949669, -0.005885666701942682, -0.009011609479784966, -0.0061864894814789295, 0.010875403881072998, -0.011496668681502342, -0.0019962219521403313, -0.015420446172356606, 0.012804594822227955, -0.022156264632940292, -0.01814093254506588, 0.007644827011972666, 0.02236553281545639, -0.0018441755091771483, 0.009181640110909939, 0.014204075559973717, 0.014177916571497917, -0.026093121618032455, -0.010509184561669827, 0.010319535620510578, -0.01379861868917942, 0.007317845709621906, 0.007167433854192495, 0.000729986175429076, -0.006761976983398199, -0.024745957925915718, 0.014648769982159138, 0.005640430375933647, -0.007841016165912151, -0.006918928120285273, -0.01823248714208603, 0.03528784215450287, -0.018821053206920624, -0.0015057497657835484, -0.01179095171391964, -0.0034954319708049297, -0.00318316463381052, 0.035837169736623764, 0.012497232295572758, -0.014269472099840641, 0.01832404173910618, 0.03863613307476044, -0.011941364035010338, 0.01804937794804573, -0.03549711033701897, -0.02230013720691204, -0.006091665010899305, -0.0022790608927607536, -0.01688532344996929, 0.003910698462277651, -0.01799705997109413, 0.005849698558449745, -0.0005407456192187965, -0.011575144715607166, -0.028591260313987732, 0.010980037972331047, -0.02764955349266529, 0.00212864950299263, 0.00481970701366663, -0.00961979478597641, 0.023869648575782776, -0.020756784826517105, -0.021816205233335495, 0.014047124423086643, -0.006748897954821587, 0.02220858260989189, 0.004155934788286686, -0.006117823533713818, 0.01595669612288475, -0.008527676574885845, 0.010855785571038723, 0.015250416472554207, -0.02233937382698059, -0.012536469846963882, 0.03709277883172035, 0.014701087027788162, 0.014897276647388935, 0.028355833142995834, -0.0063957576639950275, -0.024327421560883522, -0.012909228913486004, -0.01909571886062622, 0.016205202788114548, -0.003230577101930976, 0.007272067945450544, -0.013105417601764202, -0.015368129126727581, -0.0016005743527784944, 0.009338591247797012, -7.210197054519085e-06, -0.008880817331373692, -0.0047575803473591805, -0.01387709379196167, 0.004077459219843149, -0.015747427940368652, 0.0039564757607877254, -0.0016806848580017686, -0.0015188290271908045, 0.01910879835486412, -0.006918928120285273, -0.030474673956632614, 0.00509764114394784, 0.0011583318701013923, -0.01908263936638832, 9.625517122913152e-05, -0.005117260385304689, -0.020573673769831657, -0.007971808314323425, -0.008370725437998772, -0.0159043800085783, -0.007854094728827477, 0.0035019717179238796, 0.02653781697154045, -0.0014141949359327555, 0.023686537519097328, -0.03834838792681694, -0.004783738870173693, -0.028041930869221687, 0.018677182495594025, 0.011189306154847145, -0.004845865536481142, -0.0020093012135475874, 0.004051300697028637, 0.009678651578724384, -0.008723866194486618, -0.016754530370235443, 0.0007430654368363321, -0.020678307861089706, -0.020455962046980858, 0.02982071042060852, -0.022718673571944237, -0.019972028210759163, -0.025988487526774406, 0.014020965434610844, 0.0017019385704770684, 0.02222166210412979, 0.17568060755729675, -0.004822976887226105, -0.0019455398432910442, 0.04475722461938858, -0.0008338027982972562, 0.011457431130111217, -0.0016471692360937595, 0.010777309536933899, 0.0011844903929159045, 0.028120407834649086, 0.002571709221228957, 0.009462843649089336, -0.03531400114297867, -0.008861198090016842, -0.009122783318161964, -0.01593053713440895, -0.03724972903728485, -0.006801215000450611, -0.021855441853404045, -0.03282894194126129, -0.012163710780441761, -0.014190996065735817, -0.009691731072962284, -0.018755657598376274, 0.03662192448973656, -0.016833007335662842, -0.002800596412271261, -0.006320551969110966, 0.03740668296813965, 0.013615508563816547, -0.017866268754005432, -0.005862778052687645, 0.009417066350579262, 0.004322695080190897, -0.012680341489613056, 0.011280860751867294, -0.022927941754460335, -0.0018376358784735203, 0.030160771682858467, 0.000584479421377182, 0.0051728468388319016, -0.010764230042696, 0.018637944012880325, -0.02974223531782627, -0.00721975089982152, 0.0009163655922748148, 0.0020125710871070623, -0.0013259098632261157, 0.027911139652132988, 0.011823650449514389, -0.026184676215052605, -0.007559811696410179, 0.00119266496039927, 0.035837169736623764, 0.01696379855275154, 0.0026779782492667437, 0.0020975861698389053, -0.004960309248417616, -0.01823248714208603, -0.014308709651231766, -0.010927720926702023, 0.03071010112762451, -0.023804251104593277, 0.035627901554107666, 0.011679778806865215, 0.019579650834202766, 0.014701087027788162, 0.022954100742936134, -0.0010896658059209585, -0.018637944012880325, -0.003822413505986333, -0.029323698952794075, -0.002749914303421974, -0.014596452936530113, -0.021606937050819397, -0.02778034657239914, 0.015368129126727581, 0.019435778260231018, 0.0038910796865820885, 0.011581684462726116, -0.0266293715685606, -0.005764683708548546, 0.0024539961013942957, -0.008906975388526917, -0.01810169406235218, -0.02989918738603592, 0.030579308047890663, 0.0011477050138637424, -0.009181640110909939, -0.007978348061442375, 0.0015670587308704853, -0.00961979478597641, 0.01122200395911932, -0.008324948139488697, 0.005650239996612072, 0.01067267544567585, 0.00027384699205867946, 0.024902909994125366, -0.014478740282356739, 0.002720485907047987, -0.01179749146103859, -0.04894258826971054, 0.019697364419698715, -0.03866228833794594, -0.02219550311565399, -0.026210835203528404, -0.010254139080643654, 0.0158520620316267, -0.001168958842754364, -0.017892425879836082, -0.01396864838898182, -0.008946212939918041, -0.0031749901827424765, -0.004453487694263458, 0.017591603100299835, 0.026393944397568703, -0.0016545263351872563, -0.02783266268670559, -0.007670985534787178, -0.027492603287100792, 0.011280860751867294, -0.021083766594529152, 0.009979474358260632, 0.009312432259321213, -0.0321749784052372, -0.01925266906619072, 0.005836619529873133, -0.00038093343027867377, 0.016728373244404793, -0.032436564564704895, 0.009920618496835232, -0.024955226108431816, 0.01122854370623827, 0.023137209936976433, -0.014413343742489815, 0.005225163884460926, 0.0105811208486557, -0.003312322311103344, -0.008292250335216522, 0.02351650781929493, 0.008887357078492641, -0.000616768840700388, 0.0041036177426576614, -0.02037748508155346, -0.019854314625263214, -0.04928264766931534, 0.0068208337761461735, 0.006977784913033247, -0.025059860199689865, -0.005038784816861153, -0.01806245744228363, -0.005355956498533487, -0.0017411763546988368, -0.00897891167551279, -0.002749914303421974, -0.025896932929754257, -0.04671911522746086, -0.0427168607711792, -0.003449654672294855, -0.0016193757764995098, -0.0068208337761461735, -0.005496558733284473, 0.018834132701158524, -0.025177573785185814, -0.024811355397105217, -0.00907700601965189, -0.16804231703281403, 0.01171247661113739, 0.018402516841888428, -0.009966395795345306, 0.010267218574881554, -0.0026436452753841877, 0.025910012423992157, 0.001057785120792687, 0.020704466849565506, -0.013497795909643173, 0.005761413834989071, -0.01126124244183302, -0.03392759710550308, -0.020037425681948662, 0.02783266268670559, -0.007867174223065376, -0.020769864320755005, 0.015459684655070305, -0.003985904157161713, 0.0058071911334991455, 0.0425599105656147, -0.01595669612288475, 0.020442882552742958, 0.005355956498533487, 0.009423606097698212, 0.02339879423379898, -0.007657906040549278, 0.014740325510501862, -0.017303859815001488, 0.00481970701366663, -0.016767609864473343, -0.011385494843125343, 0.003202783642336726, 0.00848843902349472, -0.010005633346736431, -0.010012173093855381, 0.01921343244612217, 0.004273647908121347, -0.0044796462170779705, 0.012693420983850956, 0.008423042483627796, 0.0322796106338501, 0.0030997844878584146, 0.006938546895980835, 0.0068862298503518105, -0.005758143961429596, 0.026969432830810547, 0.0010724992025643587, 0.000196495428099297, -0.0031243080738931894, 0.008004507049918175, -0.02239169180393219, -0.0034856225829571486, 0.007265528663992882, 0.03709277883172035, -0.006104744039475918, 0.00020415906328707933, 0.024026598781347275, -0.008651929907500744, 0.006451344583183527, 0.003088340163230896, -0.01918727345764637, 0.017748555168509483, 0.008102601394057274, -0.014125599525868893, -0.02351650781929493, -0.02015513926744461, 0.0032354816794395447, 0.011915205046534538, -0.00504859397187829, -0.006160330958664417, -0.002815310610458255, 0.026119280606508255, -0.009567477740347385, 0.014177916571497917, 0.008076442405581474, -0.017408493906259537, 0.020573673769831657, -0.005185926333069801, -0.014871117658913136, 0.0071347360499203205, 0.031521014869213104, -0.03824375569820404, -0.016335994005203247, 0.0055586849339306355, -0.009907539002597332, 0.008854658342897892, 0.00795219000428915, 0.0031422919128090143, -0.009574017487466335, 0.02997766248881817, -0.013105417601764202, -0.012804594822227955, -0.006304203066974878, -0.017709316685795784, 0.02120147831737995, 0.00019884560606442392, -0.0019324605818837881, -0.0013806793140247464, -0.0036196850705891848, 0.0009449764620512724, -0.0013806793140247464, -0.010960419662296772, 0.03335211053490639, 0.017447732388973236, 0.023804251104593277, -0.004669295623898506, 0.01824556663632393, 0.01332122553139925, 0.015760507434606552, -0.003763556946069002, 0.0007737199193798006, 0.019932791590690613, 0.03397991508245468, -0.001311195781454444, -0.004303076304495335, -0.00851459801197052, 0.006072046235203743, 0.01920035295188427, 0.007494415622204542, 0.019788919016718864, -0.0019291907083243132, -0.009515160694718361, -0.010548422113060951, -0.015302733518183231, 0.012314122170209885, -0.09213030338287354, -0.011875967495143414, 0.010973498225212097, 0.029009796679019928, -0.014491818845272064, 0.009423606097698212, 0.0040970779955387115, 0.012608406133949757, -0.0058039212599396706, 0.041095033288002014, -0.009600176475942135, -0.020848339423537254, 0.00373739842325449, -0.018363280221819878, 0.026969432830810547, 3.412869045860134e-05, 0.006408837158232927, 0.0033777186181396246, 0.0027662632055580616, 0.01170593686401844, -0.012791515327990055, 0.005800651386380196, 0.017369255423545837, -0.017473889514803886, -0.017696237191557884, -0.0032927035354077816, -0.004865484312176704, 0.02460208721458912, 0.01934422366321087, 0.011405114084482193, 0.008154918439686298, -0.0026044074911624193, 0.0066638826392591, -0.035758692771196365, -0.002882341854274273, -0.013033481314778328, -0.0323319286108017, -0.010646517388522625, 0.006474233232438564, -0.02984686940908432, 0.007121656555682421, -0.0033548299688845873, -0.0017918584635481238, -0.03709277883172035, -0.003622954711318016, -0.002444186480715871, -0.00850151851773262, 0.005480209831148386, -0.0021319191437214613, -0.005163037683814764, -0.006392487790435553, -0.01926574856042862, -0.009122783318161964, 0.015028068795800209, 0.0318610742688179, 0.0032632751390337944, 0.003750477684661746, 0.0019063020590692759, -0.0009784920839592814, -0.007494415622204542, -0.02349034883081913, -0.0032256722915917635, -0.02968991920351982, 0.022954100742936134, 0.002517757471650839, 0.011614382266998291, -0.014727246016263962, -0.0031684504356235266, 0.017657000571489334, -0.024772116914391518, -0.004852405283600092, -0.00038338577724061906, -0.01705535314977169, 0.02984686940908432, -0.015590476803481579, -0.027047907933592796, -0.023751934990286827, -0.027074066922068596, 0.024837512522935867, -0.04499265179038048, -0.010986577719449997, -0.020652150735259056, 0.011182766407728195, -0.01171901635825634, 0.009469383396208286, -0.002179331611841917, 0.02325492352247238, 0.004610438831150532, 0.0016062965150922537, -0.028041930869221687, 0.016349073499441147, 0.007082419004291296, 0.019605809822678566, -0.01434794720262289, -0.01696379855275154, 0.0017003037501126528, -0.020495198667049408, 0.004051300697028637, 0.026943273842334747, -0.01275881752371788, -0.0037897152360528708, -0.012961545959115028, -0.04894258826971054, 0.002602772554382682, -0.017827030271291733, -0.016532182693481445, 0.023673459887504578, -0.012693420983850956, -0.01341931987553835, -0.010829626582562923, 0.004466567188501358, 0.02759723737835884, -0.01715998724102974, 0.01228796411305666, 0.01599593460559845, 0.002308489289134741, -0.011974061839282513, -0.0158520620316267, 0.033666014671325684, 0.018664103001356125, 0.005136879161000252, 0.017421573400497437, -0.010175663977861404, 0.01905648037791252, 0.02253556437790394, 0.00905738677829504, -0.016571421176195145, 0.028329676017165184, 0.0005329797859303653, 0.042036738246679306, -0.006676961667835712, -0.014753404073417187, 0.007782159373164177, -0.014688008464872837, -0.005522717256098986, -0.001074951607733965, -0.01718614622950554, -0.024170471355319023, -0.019815078005194664, 0.026158519089221954, 0.004633327480405569, 0.0019013972487300634, -0.014269472099840641, -0.011921744793653488, 0.012628024443984032, -0.009305892512202263, 0.008279170840978622, -0.00905738677829504, -0.011856348253786564, 0.007906411774456501, 0.020495198667049408, 0.012628024443984032, 0.01494959369301796, 0.022666355594992638, 0.017330018803477287, -0.017316939309239388, -0.00850805826485157, -0.026053884997963905, 0.0007434741128236055, -0.008285710588097572, 0.005800651386380196, -0.00792603101581335, 0.03285510092973709, 0.0029035955667495728, 0.0044763763435184956, -0.006264965049922466, 0.0268124807626009, 0.0006715382332913578, -0.0062911235727369785, -0.006487312726676464, 0.025308366864919662, -0.044286370277404785, -0.007062799762934446, 0.024000439792871475, 0.007736381608992815, -0.0029657220002263784, 0.004551582038402557, 0.012497232295572758, 0.012680341489613056, -0.000604915723670274, 0.006297663319855928, 0.029035955667495728, 0.02146306447684765, -0.0002832477039191872, -0.01446566078811884, -0.0006633636658079922, 0.01122200395911932, 0.01484495960175991, -0.02142382599413395, -0.01169285736978054, 0.007716762833297253, -0.011503208428621292, -0.014204075559973717, -0.0012825848534703255, 0.006690041162073612, -2.6413972591399215e-05, -0.0051761167123913765, 0.03622954711318016, 0.015642793849110603, -0.008285710588097572, 0.009809444658458233, 0.022718673571944237, 0.009587096981704235, -0.0030360231176018715, -0.025033701211214066, -0.013746301643550396, -0.004254029132425785, 0.0008166362531483173, -0.014884197153151035, -0.016793768852949142, -0.006640993990004063, -0.0037962549831718206, 0.026315469294786453, -0.012948466464877129, -0.021123003214597702, 0.031547173857688904, 0.010751151479780674, 0.023673459887504578, -0.010960419662296772, -0.01909571886062622, -0.01114352885633707, 0.034738510847091675, 0.023895805701613426, 0.014544135890901089, 0.008344567380845547, 0.0012825848534703255, 0.0007144545088522136, -0.002574979094788432, 0.01058766059577465, -0.01726462133228779, -0.010221441276371479, 0.0016823196783661842, -0.033430587500333786, -0.005715636070817709, -0.0014517977833747864, -0.02992534451186657, -0.017827030271291733, 0.022823307663202286, 0.007520574145019054, 0.018559468910098076, -0.03405839204788208, 0.037746742367744446, 0.015603556297719479, 0.024131232872605324, 0.01814093254506588, 0.014269472099840641, 0.020730625838041306, 0.009606716223061085, 0.0026583594735711813, -0.010881943628191948, -0.01539428811520338, 0.009809444658458233, -0.01228796411305666, 0.023071812465786934, -0.014805721119046211, -0.0069254678674042225, -0.0010398010490462184, -0.011980601586401463, 0.005970682017505169, -0.0266555305570364, -0.013138115406036377, -0.0022071250714361668, -0.0010586025891825557, 0.02239169180393219, 0.0063957576639950275, -0.016741450875997543, 0.003949936479330063, 0.02576613985002041, -0.01539428811520338, 0.004178823437541723, -0.0318087600171566, -0.0011959347175434232, -0.004381551872938871, -0.06712275743484497, -0.010005633346736431, 0.0016888593090698123, -0.010077569633722305, -0.01275881752371788, 0.008776183240115643, 0.01715998724102974, 0.024248946458101273, 0.00014019331138115376, 0.024824433028697968, -0.030631624162197113, -0.010613818652927876, 0.02759723737835884, 0.004322695080190897, -0.00905738677829504, 0.025792298838496208, -0.009737508371472359]" +19,espresso,"[-0.022529492154717445, -0.012672839686274529, 0.0010728329652920365, -0.04892118647694588, -0.003731447272002697, 0.005856997799128294, -0.0131019726395607, -0.022878164425492287, 0.0008658097358420491, -0.021684637293219566, 0.006373298354446888, 0.024018049240112305, -0.03207770735025406, -0.011807868257164955, -0.023240244016051292, -0.02075931802392006, 0.03229227289557457, 0.010326017625629902, 0.03205088526010513, -0.008160236291587353, -0.009749369695782661, 0.009259889833629131, 0.014523476362228394, -0.020142439752817154, -0.02183215133845806, -0.002843007445335388, -0.004113643895834684, -0.007824975997209549, -0.015301280654966831, -0.015301280654966831, 0.03164857253432274, -0.0051931822672486305, -0.027343831956386566, -0.013343360275030136, -0.025198165327310562, -0.005756419617682695, -0.015502437017858028, -0.005525089800357819, 0.019753538072109222, -0.0014449718873947859, 0.012578967027366161, -0.01374567300081253, -0.0030424874275922775, -0.015180586837232113, -0.018278392031788826, 0.00991029478609562, 0.0052971127443015575, 0.009601855650544167, 0.005823471583425999, 0.013893187046051025, 0.01216994971036911, 0.01316902507096529, -0.04186730831861496, 0.0022177470382303, -0.00011755064770113677, -0.010802087374031544, -0.02016925998032093, 0.011117232032120228, 0.017004402354359627, -0.007047171704471111, 0.005320581141859293, 0.014174805954098701, -0.021067757159471512, 0.01838567480444908, -0.0020350301638245583, 0.004700349643826485, -0.010788677260279655, 0.004090175963938236, 0.015086714178323746, -0.017513997852802277, 0.012820354662835598, 0.010312607511878014, -0.011271451599895954, 0.008435149677097797, 0.01371885184198618, -0.007851796224713326, -0.006960004102438688, 0.017969952896237373, 0.005806708708405495, 0.004365089349448681, 0.00016281078569591045, -0.024983597919344902, -0.026700131595134735, 0.008173646405339241, 0.021094579249620438, 0.01711168698966503, -0.014966020360589027, 0.01611931622028351, -0.009112374857068062, 0.005129482597112656, 0.00019319375860504806, -0.00940069928765297, 0.012786827981472015, 0.025251805782318115, -0.017245789989829063, 0.014563707634806633, -0.004197459202259779, 0.03462568670511246, -0.009930410422384739, -0.009843242354691029, -0.018627062439918518, 0.02671354077756405, -0.020960474386811256, -0.010366248898208141, -0.00991700030863285, 0.002930175047367811, 0.0047037024050951, -0.007134339306503534, 0.016923939809203148, 0.004066707566380501, -0.008877692744135857, 0.02383030205965042, 0.005897229071706533, -0.03736140951514244, -0.00685942592099309, -0.0005188153591006994, 0.010232144966721535, -0.03760279715061188, 0.00743607385084033, -0.013879776932299137, -0.018238160759210587, 0.014174805954098701, 0.03800510987639427, -0.003334163688123226, 0.015033072791993618, 0.0063163042068481445, -0.004650060553103685, 0.0037649732548743486, -0.008307750336825848, -0.010949601419270039, 0.0272767785936594, -0.0033006377052515745, 0.01197549793869257, -0.01212301291525364, -0.028617819771170616, 0.014711222611367702, -0.025117702782154083, 0.003181620268151164, -0.04133089259266853, -0.02451423369348049, 0.026150304824113846, 0.020397236570715904, 0.0039828927256166935, 0.006795726716518402, -0.011566480621695518, 0.02379007264971733, 0.005474800709635019, 0.002940232865512371, 0.028617819771170616, -0.0030441635753959417, 0.018989143893122673, -0.0314071848988533, 0.01039977464824915, 0.00011482666013762355, 0.010098041035234928, 0.017071455717086792, -0.012994689866900444, 0.023602325469255447, -0.019860820844769478, 0.015475615859031677, -0.015609719790518284, -0.022019896656274796, 0.025587067008018494, -0.016964171081781387, 0.021845562383532524, 0.034572042524814606, 0.01418821606785059, 0.0007467923569492996, 0.034947533160448074, -0.0011390468571335077, -0.014670991338789463, 0.027290189638733864, -0.03687863424420357, 0.027679091319441795, 0.026217356324195862, 0.01752740889787674, 0.012283938005566597, 0.015261049382388592, -0.006564396899193525, -0.012364400550723076, -0.001266445848159492, 0.024956777691841125, 0.020853191614151, 0.006507402751594782, -0.006856073159724474, -0.010942896828055382, 0.010265670716762543, 0.0020467641297727823, 0.007255033124238253, -0.01910983771085739, -0.014107753522694111, 0.013397001661360264, 0.009018502198159695, 0.0012421394931152463, -0.6930501461029053, -0.027048802003264427, -0.0009160988265648484, -0.017178738489747047, 0.0003817776741925627, 0.03561805561184883, 0.0015363303245976567, 0.004304742440581322, 0.007449483964592218, -0.004928326699882746, -0.013591453433036804, 0.007469599600881338, -0.0009831509087234735, 0.0061252061277627945, -0.020745908841490746, -0.02404486946761608, 0.019981514662504196, -0.010346133261919022, 0.006792373955249786, 0.003962777089327574, -0.01654844917356968, 0.020236313343048096, -0.015126945450901985, 0.029878398403525352, 0.019176889210939407, -0.00930012110620737, 0.019847409799695015, -0.02880556508898735, -0.03556441515684128, 0.011519544757902622, -0.004184048622846603, 0.01680324599146843, 0.005055725574493408, -0.005276997108012438, 0.056484658271074295, -0.0018539895536378026, -0.005283702630549669, 0.01578405499458313, -0.00012540830357465893, 0.05879124999046326, -0.013584747910499573, -0.0069398884661495686, -0.001989769982174039, -0.006718616466969252, 0.011546364985406399, -0.0015748853329569101, 0.02944926545023918, -0.013370181433856487, 0.00011975079542025924, -0.03467932716012001, 0.03518892079591751, 0.0037951467093080282, 0.005820118822157383, 0.019981514662504196, -0.010728330351412296, 0.004485783167183399, 0.024313077330589294, -0.01261249277740717, 0.004619887098670006, 0.010828908532857895, 0.014389372430741787, 0.02714267559349537, -0.018573421984910965, -0.01944509893655777, 0.001268122112378478, -0.0012211856665089726, -0.020947065204381943, -0.007100813556462526, 0.006919772829860449, -0.006165436934679747, 0.0024926604237407446, 0.0066079809330403805, 0.0011834688484668732, -0.013202550821006298, 0.02322683483362198, 0.01480509527027607, 0.0062827784568071365, -0.007878617383539677, 0.006980119738727808, -0.0038823143113404512, -0.00980971660465002, 0.0006856073159724474, -0.03475978970527649, 0.007496420759707689, 0.034732967615127563, -0.011472607962787151, -0.022650185972452164, -0.016226598992943764, -0.0006072402466088533, 0.017795616760849953, 0.013759083114564419, 0.0072818538174033165, 0.008542432449758053, -0.008817345835268497, -0.023079320788383484, -0.004515956621617079, -0.023347528651356697, 0.005340696778148413, 0.011237925849854946, -0.03620811551809311, -0.0162131879478693, 0.017286021262407303, 0.005964281037449837, 0.010822203010320663, 0.015891339629888535, 0.03154129162430763, -0.020531341433525085, 0.024313077330589294, 0.03229227289557457, -0.043288812041282654, -0.0037716785445809364, -0.004442199133336544, -0.006671680137515068, -0.007771334145218134, -0.00680913683027029, -0.030522098764777184, 0.004257806111127138, -0.020222902297973633, 0.010440005920827389, -0.018989143893122673, -0.007261738181114197, -0.012753302231431007, 0.003397863358259201, -0.01159330178052187, -0.003650984726846218, 0.0005950870690867305, -0.01044671144336462, -0.023883944377303123, -0.03237273544073105, -0.014536887407302856, 0.014523476362228394, 0.014375962316989899, -0.0023468222934752703, 0.005615610163658857, 0.01095630694180727, 0.001351937185972929, -0.0019378046272322536, 0.0060413908213377, 0.01542197447270155, -0.024487413465976715, -0.01697758212685585, -0.014885557815432549, -0.005461390595883131, 0.007469599600881338, -0.009896884672343731, -0.03301643580198288, 0.005407748743891716, -0.014416193589568138, -0.019632844254374504, 0.02152371220290661, 0.0009035265538841486, -0.0011365324025973678, -0.030790306627750397, 0.015944980084896088, 0.01782243885099888, -0.019552381709218025, -0.01731284335255623, -0.013624979183077812, -0.014952610246837139, -0.003012313973158598, -0.002323353895917535, 0.019337814301252365, -0.02403145842254162, 0.02050452120602131, -0.0035302911419421434, -0.024433771148324013, -0.00829434022307396, 0.012176654301583767, -0.02204671874642372, -0.02974429540336132, 0.0035571118351072073, -0.015247639268636703, 0.0073354956693947315, 0.019042786210775375, -0.006289483513683081, 0.009615265764296055, -0.024474002420902252, 0.0008624571491964161, 0.0038353779818862677, -0.012176654301583767, 0.006027980241924524, -0.002127226674929261, -0.015529257245361805, 0.0017936426447704434, 0.027464523911476135, 0.015395153313875198, 0.017205558717250824, 0.021590763702988625, -0.025251805782318115, 0.005934107583016157, -0.015623130835592747, 0.0032369382679462433, -0.008562548086047173, 0.02230151556432247, 0.008696652948856354, -0.01931099407374859, 0.013289718888700008, 0.02851053699851036, 0.00440532062202692, 0.0016788160428404808, 0.031085336580872536, -0.014885557815432549, -0.0017014461336657405, -0.01251191459596157, 0.01833203434944153, -0.04390569031238556, 0.004083470441401005, -0.01531469076871872, 0.020839780569076538, 0.018787987530231476, 0.010138271376490593, -0.026391692459583282, -0.027518166229128838, -0.008696652948856354, 0.0077311028726398945, 0.014121164567768574, 0.009239774197340012, 0.021939434111118317, -0.010969717055559158, 0.0065375762060284615, 0.00023174869420472533, -0.0028195392806082964, 0.004023123532533646, -0.018197929486632347, -0.025426141917705536, 0.010775266215205193, 0.011150757782161236, 0.03164857253432274, 0.006346477661281824, -0.02859099954366684, -0.0010133242467418313, 0.018828218802809715, -0.005608905106782913, -0.0014508389867842197, 0.017326252534985542, -0.006105090491473675, 0.002123874146491289, -0.03183631971478462, 0.0314071848988533, -0.0075902934186160564, -0.006470524240285158, -0.0003249929577577859, 0.049296677112579346, -0.008046247065067291, 0.01689711958169937, -0.009266595356166363, 0.023723019286990166, -0.00030362012330442667, 0.015073304064571857, 0.0008209687075577676, -0.009487866424024105, 0.016494806855916977, -0.0016553477616980672, 0.01944509893655777, 0.025882096961140633, -0.021979665383696556, 0.021349376067519188, 0.00995723158121109, 0.02574799209833145, 0.029878398403525352, -0.0007392489933408797, 0.005206592846661806, 0.01952556148171425, -0.008374802768230438, -0.009642086923122406, -0.015100124292075634, 0.0092531843110919, -0.007778039202094078, -0.005927402526140213, 0.0018741051899269223, 0.005303818266838789, 0.012304053641855717, -0.002834626007825136, 0.0035805802326649427, 0.0200351569801569, -0.003496765159070492, -0.005846939980983734, 0.003513528034090996, 0.025895506143569946, -0.005126130301505327, -0.01586451753973961, -0.02757180854678154, 0.03119261935353279, 0.0055016218684613705, 0.0007685842574574053, -6.249461875995621e-05, -0.014791685156524181, -0.015636540949344635, -0.02365596778690815, 0.0014114459045231342, 0.0114457868039608, 0.024178974330425262, -0.010366248898208141, -0.028698282316327095, -0.011150757782161236, -0.01825157180428505, 0.010681393556296825, -0.015100124292075634, -0.0015497407875955105, -0.0018456079997122288, 0.008944745175540447, -0.024608107283711433, -0.007603703998029232, -0.016025442630052567, 0.03561805561184883, 0.0025915622245520353, -0.013839545659720898, -0.0298247579485178, 0.030495278537273407, -0.0014600586146116257, -0.0030089612118899822, 0.014845326542854309, -0.011090410873293877, -0.01001757849007845, 0.004479077644646168, 0.0026636430993676186, -0.007871911861002445, -0.0005632373504340649, 0.0540439635515213, -0.0025345678441226482, -0.006306246388703585, -0.029422445222735405, -0.001429047086276114, -0.014080933295190334, 0.04149181768298149, 0.031460829079151154, -0.009393993765115738, 0.02425943687558174, -0.0027290189173072577, -0.005608905106782913, -0.008629600517451763, 0.0031296550296247005, 0.0037649732548743486, -0.006775611080229282, 0.006919772829860449, -0.0019478624453768134, 0.017795616760849953, -0.015287870541214943, 0.007704282179474831, 0.0017022842075675726, -0.001417313003912568, -0.021215273067355156, 0.01744694635272026, -0.02492995746433735, 0.0026452038437128067, -0.0009286710410378873, 0.008924629539251328, 0.0010476884199306369, 0.020732497796416283, 0.012069371528923512, 0.014952610246837139, 0.013055036775767803, 0.00991029478609562, -0.028966490179300308, -0.0027491345535963774, 0.009246479719877243, 0.01219006534665823, -0.007610409054905176, -0.007288559339940548, -0.012827059254050255, 0.020450878888368607, 0.002385377185419202, 0.021765099838376045, 0.0031397128477692604, 0.023280475288629532, 0.021376198157668114, -0.011787752620875835, 0.011834689415991306, 0.0037146841641515493, -0.03438429906964302, -0.004230984952300787, 0.02101411670446396, 0.006960004102438688, -0.02183215133845806, 0.02455446496605873, 0.019243942573666573, -0.017983363941311836, -0.012270526960492134, -0.017031224444508553, 0.03524256497621536, -0.0019629490561783314, -0.003406244795769453, -0.012136423029005527, -0.007858501747250557, -0.025090882554650307, 0.003721389453858137, 0.0015740471426397562, -0.0011608388740569353, 0.005679309833794832, -0.01846613734960556, -0.006353182718157768, 0.007442778907716274, -0.005873760674148798, -0.002309943549335003, -0.008428444154560566, 0.0020467641297727823, -0.012498504482209682, 0.0008892779587768018, 0.03720048442482948, 0.02230151556432247, -0.001040983246639371, -0.004224279895424843, 0.027290189638733864, 0.02837643213570118, -0.012337579391896725, -0.0020283248741179705, -0.020397236570715904, -0.031889960169792175, 0.0023166488390415907, 0.01813087798655033, -0.0038823143113404512, -0.01711168698966503, -0.009454340673983097, -0.009393993765115738, 0.00891121942549944, -0.002392082242295146, 0.02302567847073078, -0.007536652032285929, -0.006661622319370508, 0.0032821984495967627, 0.037039559334516525, 0.009702433831989765, -0.002616706769913435, -0.0026535852812230587, 0.0051764193922281265, -0.007831680588424206, -0.005347401835024357, 0.017286021262407303, 0.004251100588589907, 0.009963936172425747, -0.0018606947269290686, 0.001677139662206173, -0.021255504339933395, -0.003354279324412346, 0.029905220493674278, -0.007114223670214415, 0.018117466941475868, -0.004264511168003082, -0.0015623130602762103, 0.010748445987701416, -0.02322683483362198, 0.02263677679002285, -0.014751453883945942, 0.0036778056528419256, -0.008562548086047173, -0.03642268106341362, 0.032104525715112686, 0.022355157881975174, 0.004536071792244911, 0.006671680137515068, 0.009722549468278885, -0.003396186977624893, 0.009434225037693977, -0.009628675878047943, -0.00603133300319314, 0.017983363941311836, -0.008924629539251328, 0.0036174587439745665, -0.038568347692489624, -0.010245555080473423, -0.005186477210372686, 0.013195846229791641, -0.0043248580768704414, -0.02480926364660263, -0.020558161661028862, 0.009440930560231209, 0.0020383826922625303, 0.0016251743072643876, -0.0002874857163988054, -0.026646489277482033, 0.007979195564985275, 0.014094343408942223, -0.006507402751594782, 0.006477229297161102, -0.020705677568912506, 0.015515847131609917, -0.010312607511878014, 0.006148674059659243, -0.02030336484313011, -0.040150776505470276, -0.016830068081617355, -0.02680741436779499, 0.007067287340760231, 0.031004874035716057, 0.025292037054896355, 0.0019310994539409876, 0.009528097696602345, 0.0013058389304205775, -0.01480509527027607, -0.0014600586146116257, 0.010574109852313995, -0.013893187046051025, 0.0071075186133384705, 0.02463492751121521, 0.029288340359926224, -0.003094452666118741, 0.018948912620544434, -0.00885087251663208, -0.007301969453692436, 0.014885557815432549, -0.008502201177179813, 0.007328790612518787, -0.021161630749702454, -0.008663126267492771, 0.017218969762325287, 0.005769830197095871, -0.002373642986640334, 0.013893187046051025, 0.016132725402712822, -0.0047808121889829636, 0.026794003322720528, 0.0012253763852640986, 0.014952610246837139, -0.0016813304973766208, 0.0072483280673623085, -0.021389607340097427, 0.01570359244942665, -0.0025664176791906357, -0.016320472583174706, 0.007496420759707689, -0.031594932079315186, 0.01523422822356224, 0.008052952587604523, 0.014496656134724617, 0.001351937185972929, 0.011814573779702187, 0.007067287340760231, 0.019257351756095886, 0.003942661453038454, 0.01723238080739975, 0.02008879743516445, -0.024541053920984268, 0.005930754821747541, -0.02574799209833145, -0.01791631057858467, -0.029878398403525352, -0.0110635906457901, -0.03889019787311554, 0.011479313485324383, -0.004774106666445732, -0.028188686817884445, 0.0334455668926239, -0.024447182193398476, -6.14993114140816e-05, -0.012974574230611324, 0.004666823428124189, 0.030066145583987236, 0.011646943166851997, 0.03816603496670723, 0.011888330802321434, -0.009621971286833286, -0.009689022786915302, -0.004026476293802261, 0.014684401452541351, 0.0009982376359403133, -0.009440930560231209, 0.03859516605734825, 0.009836537763476372, -0.004810985643416643, 0.0027323714457452297, 0.01715191826224327, -0.024071689695119858, 0.003493412397801876, 0.028242329135537148, -0.0104265958070755, -0.009554918855428696, -0.024433771148324013, -0.013443938456475735, -0.0018037004629150033, 0.0073354956693947315, -0.022100359201431274, -0.0006990177789703012, -0.008663126267492771, -0.006933183409273624, -0.01566336117684841, 0.04098222032189369, -0.022569723427295685, 0.02144324965775013, -0.0034364182502031326, -0.022542903199791908, -0.009092259220778942, -0.007120929192751646, -0.01684347726404667, -0.0041035860776901245, 0.004479077644646168, 0.022006487473845482, -0.010044398717582226, 0.00019057453027926385, 0.00222277594730258, 0.006892952136695385, -0.030602561309933662, 0.0015338158700615168, 0.019136657938361168, 0.024272846058011055, 0.005796650890260935, -0.022690417245030403, -0.005696072708815336, -0.017259201034903526, 0.02794729918241501, -0.018224749714136124, -0.01253203023225069, 0.004334915895015001, -0.008200467564165592, -0.0055887894704937935, -0.007047171704471111, 0.0031330075580626726, -0.011452492326498032, -0.0018657236360013485, -0.012444863095879555, -0.015502437017858028, -0.0221271812915802, -0.008006015792489052, 0.004076765384525061, -0.005266939289867878, -0.02054475247859955, -0.013430528342723846, 0.014067522250115871, 0.004153875168412924, 0.007603703998029232, 0.012867290526628494, -0.008924629539251328, 0.02177850902080536, -0.012538735754787922, 0.005062430631369352, -0.0037884414196014404, -0.0047104074619710445, -0.00523341353982687, 0.02794729918241501, -0.011861509643495083, -0.008616190403699875, 0.04084811732172966, -0.01842590607702732, -0.005873760674148798, -0.009474456310272217, -0.0040700603276491165, 0.014080933295190334, 0.04041898250579834, -0.004837806336581707, 0.03532302752137184, 0.006323009263724089, 0.008797230198979378, -0.017044633626937866, -0.029127415269613266, 0.01880139857530594, -0.015797466039657593, -0.015086714178323746, 0.016025442630052567, -0.027303600683808327, 0.006473876535892487, 0.007583588361740112, 0.006614685989916325, 0.018278392031788826, -0.03328464552760124, -0.0011750874109566212, -0.014349141158163548, 0.02910059504210949, -0.017715154215693474, -0.02034359611570835, -0.001825492363423109, 0.01433573104441166, -0.01936463639140129, 0.033257823437452316, -0.0016603766707703471, -0.0033995395060628653, 0.005099309142678976, 0.01633388176560402, 0.0042611584067344666, 0.005856997799128294, -0.012109602801501751, -0.023253655061125755, -0.013906598091125488, -0.022945215925574303, -0.011968793347477913, -0.02234174683690071, 0.0019243941642343998, 0.011385439895093441, 0.019780358299613, -0.01322937197983265, -0.04245736449956894, 0.01112393755465746, -0.0478215292096138, -0.0063699460588395596, -0.014375962316989899, 0.007670755963772535, 0.024943366646766663, -0.014054112136363983, -0.008710063062608242, 0.002806128701195121, 0.003188325557857752, 0.01650821790099144, -0.0032017359044402838, -0.003634221851825714, 0.01369873620569706, -0.022019896656274796, -0.002127226674929261, -0.013893187046051025, -0.03773690015077591, -0.015328101813793182, 0.026391692459583282, 0.016521628946065903, 0.020061977207660675, -0.0030089612118899822, -0.00921295303851366, 0.021899202838540077, 0.0006252604653127491, -0.008415034040808678, 0.004992025904357433, -0.002692140405997634, 0.01817110925912857, -0.033043257892131805, -0.026311229914426804, 0.015126945450901985, 0.014416193589568138, -0.010681393556296825, 0.012733186595141888, -0.01219006534665823, -0.007985901087522507, -0.002853065263479948, -0.016347292810678482, 0.0020953768398612738, 0.013651800341904163, -0.013048331253230572, 0.0008850872400216758, 0.006846015341579914, -0.001350260921753943, 0.015730414539575577, -0.017259201034903526, -0.0065375762060284615, 0.005974338855594397, -0.013289718888700008, -0.035591233521699905, 0.007027056068181992, 0.014818505384027958, -0.018734347075223923, -0.020370416343212128, -0.01261249277740717, 0.002549654571339488, 0.009005092084407806, 0.02177850902080536, -0.01322937197983265, -0.004707054700702429, 0.028135044500231743, -0.005528442561626434, 0.035591233521699905, -0.02502382919192314, 0.008596074767410755, 0.01807723566889763, 0.011827983893454075, -0.011338504031300545, 0.004381852224469185, 0.0036141062155365944, -0.03730776906013489, -0.0034179789945483208, -0.0002302819339092821, -0.014282089658081532, -0.022489260882139206, -0.010393070057034492, 0.005075841210782528, 0.016240010038018227, 0.015019661746919155, 0.19793768227100372, -0.02224787510931492, -0.02271723933517933, 0.052702922374010086, 0.007771334145218134, 0.009172721765935421, 0.008917924016714096, 0.0022579783108085394, -0.008555843494832516, 0.02590891718864441, -0.01151283923536539, 0.007898733019828796, -0.01931099407374859, 0.001598353497684002, 0.008347981609404087, -0.0028379785362631083, -0.03556441515684128, -0.03285551071166992, -0.004800927825272083, -0.01153295487165451, -0.006390061695128679, -0.025493193417787552, 0.0015455500688403845, -0.01693735085427761, 0.027813196182250977, -0.007221506908535957, -0.007818270474672318, 0.006239194422960281, 0.04302060231566429, 0.005954223219305277, -0.0014449718873947859, 0.016320472583174706, 0.00978289544582367, 0.010440005920827389, -0.01693735085427761, 0.013571337796747684, 0.004063354805111885, -0.007845091633498669, -0.007228212431073189, 0.017044633626937866, -0.014536887407302856, 0.007114223670214415, 0.011036769486963749, -0.0149123789742589, -0.0014164748135954142, -0.003168209921568632, -0.0026452038437128067, -0.02122868224978447, 0.01040648017078638, 0.01361827366054058, -0.039372969418764114, 0.01261249277740717, 0.006487287115305662, 0.022623365744948387, -0.0027323714457452297, 0.009326942265033722, -0.01102335937321186, 0.011888330802321434, 0.0003161923959851265, -0.0029670537915080786, -0.004593066405504942, 0.045246731489896774, -0.020826371386647224, 0.00745618948712945, -0.0017534114886075258, -0.002475897315889597, -0.0053675174713134766, -0.005632373038679361, -0.02012902870774269, -0.009427519515156746, -0.0029771116096526384, -0.010949601419270039, 0.008428444154560566, 0.009313531219959259, -0.019203711301088333, -0.02383030205965042, 0.024111920967698097, 0.018908681347966194, -0.0051764193922281265, 0.019257351756095886, 0.010473532602190971, -0.004643355496227741, -0.005303818266838789, -0.003335840068757534, -0.0017902901163324714, -0.04854569211602211, 0.003919193055480719, 0.01574382372200489, -0.010218733921647072, 0.0055720265954732895, 0.0114457868039608, -0.015851108357310295, -0.003573874942958355, -0.015167176723480225, 0.010460121557116508, 0.009119080379605293, -0.024366719648241997, 0.022180821746587753, -0.007288559339940548, 0.0070203510113060474, -0.011009948328137398, -0.01803700439631939, 0.015515847131609917, -0.0017969952896237373, -0.01429549977183342, 0.002806128701195121, -0.007818270474672318, 0.00927329994738102, 0.00932023674249649, -0.00036145251942798495, -0.011948677711188793, -0.015006251633167267, 0.016655731946229935, -0.012290642596781254, -0.00991029478609562, -0.004807632882148027, -0.009018502198159695, -0.012283938005566597, -0.0061754947528243065, -0.009662202559411526, 0.028698282316327095, -0.02234174683690071, 0.005612257402390242, 0.016052262857556343, 0.006279425695538521, -0.0164679866284132, -0.0056591941975057125, 0.01809064671397209, -0.010010872967541218, -0.02676718309521675, 0.010527173988521099, 0.007228212431073189, 0.020517930388450623, -0.013712146319448948, -0.0032101175747811794, -0.008716767653822899, 0.004274568986147642, -0.003728094743564725, -0.006601275410503149, -0.0040164184756577015, 0.012223591096699238, -0.019673075526952744, -0.004629944916814566, 0.00872347317636013, 0.009541508741676807, -0.021389607340097427, 0.007201391272246838, 0.005669252015650272, -0.025131113827228546, -0.010118156671524048, -0.016065673902630806, -0.016521628946065903, 0.002464163349941373, -0.007033761125057936, 0.0282959695905447, -0.013343360275030136, -0.034867070615291595, -0.007811565417796373, 0.0021976314019411802, -0.0033827766310423613, -0.016990993171930313, -0.014174805954098701, -0.0025161285884678364, -0.02369619905948639, -0.013879776932299137, 0.00459641870111227, -0.1748717725276947, 0.009943820536136627, 0.002834626007825136, -0.020786140114068985, 0.004747285973280668, -0.0077646286226809025, 0.018104057759046555, 0.018010184168815613, 0.0003486707282718271, 0.014416193589568138, 0.009950526058673859, -0.00934035237878561, -0.0483311265707016, -0.03730776906013489, 0.025600478053092957, 0.017379894852638245, -0.013671915978193283, -0.003969482146203518, 0.01607908494770527, 0.0010703185107558966, 0.029797935858368874, -0.021416429430246353, 0.002231157384812832, -0.003721389453858137, 0.004214222077280283, -0.00883075688034296, -0.0024004639126360416, 0.025332268327474594, -0.02152371220290661, 0.007087402977049351, -0.026539206504821777, -0.00556196877732873, 0.02514452300965786, 0.014751453883945942, 0.004807632882148027, 0.002935203956440091, -0.006302894093096256, 0.0005829338915646076, 0.0027943947352468967, 0.02612348273396492, 0.033418748527765274, 0.02169804647564888, 0.004784164484590292, 0.004130407236516476, 0.0013795961858704686, 0.011479313485324383, 0.025855274870991707, -0.006654917262494564, 0.003466591704636812, 0.021470069885253906, 0.015180586837232113, -0.04133089259266853, -0.00012677030463237315, 0.0010233820648863912, 0.020021745935082436, -0.0006147836102172732, -0.0071946862153708935, 0.026753772050142288, 0.009226364083588123, -0.0012186712119728327, 0.0026653194800019264, -0.02177850902080536, 0.023977817967534065, -0.02710244432091713, -0.004170638509094715, -0.027840016409754753, -0.008663126267492771, 0.01842590607702732, 0.0017534114886075258, 0.007684166543185711, -0.02459469623863697, -0.007818270474672318, -0.011070295237004757, -0.01531469076871872, 0.016535038128495216, 0.005468095652759075, -0.01414798479527235, 0.01476486399769783, 0.010064514353871346, -0.015220818109810352, -0.02020949125289917, 0.018399085849523544, 0.011459197849035263, 0.006671680137515068, 0.0025815044064074755, 0.019458508118987083, 0.008207172155380249, 0.01151283923536539, -0.0013175730127841234, -0.0231463722884655, 0.030870769172906876, -0.014161395840346813, 0.004318153019994497, -0.010480237193405628, 0.011077000759541988, 0.005977691151201725, -0.011318388395011425, 0.01711168698966503, 0.0050356099382042885, -0.01035954337567091, 0.010480237193405628, -0.0005703616188839078, -0.029583370313048363, 0.024366719648241997, 0.013464054092764854, 0.018989143893122673, 0.011948677711188793, 0.009789600968360901, 0.026512386277318, -0.00521329790353775, -0.009581740014255047, 0.025251805782318115, 0.009393993765115738, 0.020947065204381943, -0.007369021885097027, 0.013135499320924282, 0.005159656051546335, -0.022355157881975174, 0.024366719648241997, -0.010386364534497261, 0.019391456618905067, -0.015542668290436268, -0.0036677478346973658, 0.0002422255784040317, -0.0011600006837397814, -0.02365596778690815, -0.09151265770196915, -0.029261520132422447, 0.01960602216422558, 0.0004276664403732866, -0.001343555748462677, 0.014979430474340916, -0.0051931822672486305, 0.01965966448187828, -0.025815043598413467, 0.017393305897712708, -0.006514107808470726, -0.015636540949344635, 0.02208695001900196, -0.0025027182418853045, 0.0616878978908062, 0.0027290189173072577, -0.015623130835592747, -0.003173238830640912, -0.03974846377968788, 0.018841629847884178, -0.01672278344631195, 0.0049652052111923695, -0.011928562074899673, 0.014443013817071915, -0.003919193055480719, 0.0020920243114233017, -0.0060715642757713795, 0.014094343408942223, 0.028349611908197403, -0.007301969453692436, -0.002529539167881012, 0.0012153186835348606, 0.0020869954023510218, -0.017299432307481766, -0.00012027463526464999, -0.0010208676103502512, 0.0057295989245176315, -0.011673764325678349, 0.03773690015077591, -0.026270998641848564, 8.465322753181681e-05, 0.00521329790353775, -0.007851796224713326, -0.029637010768055916, -0.013383591547608376, -0.00020440401567611843, -0.006631448864936829, 0.005293760448694229, 0.012632608413696289, -0.019203711301088333, -0.01709827594459057, 0.006601275410503149, -0.0021071110386401415, -0.006842663045972586, 0.019243942573666573, -0.007664050906896591, 0.022019896656274796, -0.0007748703937977552, -0.01142567116767168, -0.024527644738554955, 0.013946829363703728, -0.02165781706571579, 0.00014300947077572346, 0.012176654301583767, 0.009749369695782661, -0.011412261053919792, -0.02348163165152073, -0.023267066106200218, 8.077677921392024e-05, -0.005592142231762409, -0.010855728760361671, -0.010983128100633621, -0.010218733921647072, 0.015515847131609917, -0.04436164349317551, -0.02148348093032837, -0.00463664997369051, -0.016347292810678482, 0.010191913694143295, 0.00812670961022377, -0.02297203615307808, -0.024447182193398476, -0.006483934354037046, -0.012270526960492134, 0.022060127928853035, 0.02075931802392006, 0.007892027497291565, 0.0009948849910870194, -0.011841394007205963, -0.02586868591606617, -0.011418966576457024, -0.004971910268068314, 0.018533190712332726, -0.04060672968626022, -0.016856888309121132, 8.884398266673088e-05, 0.006115148309618235, -0.004485783167183399, 0.03510845825076103, -0.0021808682940900326, 0.006356535479426384, -0.00818705651909113, -0.0513886995613575, 0.006038038060069084, -0.018627062439918518, -0.01809064671397209, 0.0185063686221838, -0.011640237644314766, -0.01676301471889019, 0.009742665104568005, 0.01210289727896452, -0.01864047348499298, -0.02476903237402439, -0.0023384406231343746, 0.0062123737297952175, -0.000789957121014595, -0.024313077330589294, 0.009092259220778942, 0.04275239631533623, -0.00923306867480278, 0.013269603252410889, 0.005059078335762024, -0.0044656675308942795, 0.017540819942951202, 0.00014887652650941163, -0.006470524240285158, -0.022744059562683105, -0.015529257245361805, -0.008019426837563515, 0.017889490351080894, -0.015891339629888535, 0.001519567333161831, 0.00870335754007101, -0.028403254225850105, 0.0027960711158812046, 0.0264587439596653, -0.0028279207181185484, -0.018372265622019768, -0.007483010180294514, 0.02880556508898735, -0.010453416965901852, 0.020370416343212128, -0.025587067008018494, -0.02208695001900196, 0.020611803978681564, -0.021094579249620438, -0.024527644738554955, 0.001348584657534957, -0.011003243736922741, 0.00993711594492197, 0.021215273067355156, -0.0016033824067562819, 0.00987006351351738, 0.023253655061125755, -0.0036241640336811543, -0.016199778765439987, -0.00020209910871926695, -0.038058750331401825, 0.011372029781341553, 0.01944509893655777, 0.007892027497291565, -0.018197929486632347, 0.05128141865134239, 0.010493647307157516, 0.009166017174720764, -0.016749605536460876, 0.005498269107192755, -0.02301226742565632, -0.005273644812405109, -0.007442778907716274, 0.013772493228316307, -0.03234591335058212, 0.009568328969180584, -0.008280930109322071, -0.0057631246745586395, 0.018653884530067444, 0.02510429173707962, -0.03178267925977707, 0.024353308603167534, -0.003325782250612974, -0.019471919164061546, 0.011841394007205963, 0.007369021885097027, -0.004643355496227741, 0.0015807523159310222, 0.017245789989829063, 0.040660370141267776, 0.029368802905082703, -0.006591217592358589, -0.009621971286833286, -0.0009823127184063196, 0.01766151376068592, -0.007664050906896591, 0.010882549919188023, -0.0036677478346973658, 0.01715191826224327, 0.014778274111449718, 0.006789021193981171, -0.007174570579081774, -0.023562094196677208, 0.006420235149562359, 0.017862670123577118, 0.015810877084732056, 0.004090175963938236, 0.004294684622436762, -0.023816892877221107, 0.0033676899038255215, -0.0048948004841804504, -0.02966383285820484, -0.02293180488049984, -0.011204399168491364, 0.0019361282465979457, 0.030280711129307747, 0.0027239900082349777, 0.022395389154553413, 0.019968103617429733, -0.027129264548420906, -0.0020098856184631586, -0.021456660702824593, -0.004542777314782143, -0.008006015792489052, 0.02322683483362198, 0.02404486946761608, 0.0109093701466918, 0.022073538973927498, -0.0003243643441237509, 0.011372029781341553, 0.010104745626449585, 0.012505210004746914, -0.0282959695905447, 0.009119080379605293, 0.006068211514502764, 0.0037884414196014404, 0.00022860562603455037, -0.01807723566889763, -0.02743770368397236, -0.02352186292409897, 0.006356535479426384, 0.004831101279705763, 0.022784290835261345, 0.0005816766642965376, 0.05289066582918167, 0.010741740465164185, -0.015810877084732056, 0.0033911580685526133, 0.008160236291587353, 0.03237273544073105, -0.0023300591856241226, -0.010171798057854176, -0.023709610104560852, -0.02488972619175911, 0.012987984344363213, 0.015636540949344635, 0.012270526960492134, -0.01617295667529106, -0.014215037226676941, -0.004549482371658087, -0.009467750787734985, 0.012806943617761135, -0.01719214953482151, -0.010024283081293106, 0.013356770388782024, 0.005997806787490845, 0.009742665104568005, -0.006430292967706919, -0.013866366818547249, -0.0006885408656671643, 0.025010420009493828, 0.005401043687015772, -0.011056885123252869, -0.03068302385509014, 0.0185063686221838, -0.011459197849035263, -0.04983309283852577, -0.013262897729873657, 0.012646018527448177, 0.00331404828466475, -0.011110526509582996, -0.00039225455839186907, 0.03127308189868927, 0.030307531356811523, -0.00818705651909113, 0.011418966576457024, -0.021000705659389496, -0.03151446953415871, 0.015354922041296959, -0.028108224272727966, -0.0035369961988180876, 0.006966709159314632, -0.02122868224978447]" +20,cheesecake,"[0.011245746165513992, -0.012743037194013596, -0.0071844253689050674, -0.03804275393486023, -0.004446889273822308, -0.01168915070593357, -0.024702085182070732, -0.03264479711651802, 0.0020611847285181284, -0.04724498838186264, 0.050586581230163574, 0.012453860603272915, -0.02003670670092106, -0.0024997687432914972, -0.01046818308532238, 0.012640219181776047, 0.02351967617869377, -0.009292199276387691, 0.006779578514397144, -0.03400713577866554, -0.022787095978856087, -0.020743582397699356, 0.018121717497706413, -0.028043678030371666, -0.017273467034101486, -0.0033930023200809956, 0.00674744788557291, -0.0035568689927458763, 0.008360409177839756, 0.016772227361798286, 0.03719450533390045, -0.00492885010316968, -0.02053794637322426, -0.02330118604004383, -0.009748456068336964, -0.0025511779822409153, 0.0005743363290093839, -0.011920491233468056, 0.02172035537660122, -0.000339782185619697, -0.003502246690914035, -0.009170102886855602, 0.0018443024018779397, -0.011438530869781971, -0.02394380047917366, 0.022915618494153023, 0.01692645438015461, -0.032593388110399246, -0.007974840700626373, -0.0015928796492516994, 0.040638916194438934, -0.0024997687432914972, -0.0293803159147501, -0.001300490228459239, 0.005600381642580032, -0.013854759745299816, -0.030434202402830124, -0.012717332690954208, 0.0055457595735788345, -0.005565037950873375, -0.0018892853986471891, 0.008302574045956135, -0.020949218422174454, 0.017877524718642235, -0.0018057456472888589, -0.0030620561446994543, -0.020807843655347824, -0.015011465176939964, -0.0038974543567746878, 0.0010016746819019318, 0.033801499754190445, 0.03102540783584118, -0.015988238155841827, -0.003768931608647108, 0.0028869437519460917, -0.006683186627924442, -0.003278938354924321, 0.00934360921382904, -0.0006751464097760618, 0.008443948812782764, 0.024997688829898834, -0.011920491233468056, -0.008084084838628769, 0.03218211233615875, -0.00862388126552105, 0.021283378824591637, -0.02544751763343811, 0.018494432792067528, 0.008244738914072514, -0.022247299551963806, -0.01281372457742691, 0.0008482505800202489, 0.015345624648034573, 0.005716052372008562, -0.02755529247224331, 0.028120793402194977, 0.00864315964281559, 0.026784155517816544, 0.0028451739344745874, -0.014433111995458603, 0.024997688829898834, 0.016193874180316925, 0.011779116466641426, -0.02909756638109684, -0.016052499413490295, -0.008219034411013126, 0.008341130800545216, -0.0064871893264353275, 0.016476625576615334, -0.01907278597354889, -0.03454693406820297, 0.030716953799128532, 0.013173588551580906, -0.013649123720824718, -0.0057192654348909855, -0.014792975969612598, -0.003486181376501918, 0.009780586697161198, -0.002141511533409357, -0.017196353524923325, -7.585858838865533e-05, 0.0007145065465010703, 0.03901952877640724, -0.022709982469677925, 0.012216093949973583, 0.004109517205506563, -0.000542205641977489, 0.0009149218094535172, 0.008135494776070118, -0.003119891509413719, 0.04935276135802269, -0.007679238449782133, 0.05444226413965225, -0.017260614782571793, 0.007248687092214823, -0.007415766827762127, -0.029431724920868874, 0.0077949087135493755, -0.0013077196199446917, -0.024187995120882988, -0.004752131178975105, 0.025833087041974068, -0.009478557854890823, -0.0009237577323801816, -0.006072703283280134, 0.0002445949940010905, 0.017761852592229843, 0.010603132657706738, -0.0115799056366086, -0.0010064942762255669, 0.010673820041120052, -0.0018202044302597642, 0.032799024134874344, 0.007833465933799744, 0.01469015795737505, 0.006365092471241951, -0.012093997560441494, -0.008964466862380505, -0.01574404537677765, -0.01807030849158764, -0.00021487408957909793, 0.005372253712266684, 0.022748539224267006, -0.00810336321592331, 0.0037946361117064953, 0.03220781683921814, 0.019959593191742897, 0.01774900034070015, 0.004430823959410191, -0.008752403780817986, -0.00509271677583456, 0.029842998832464218, -0.020666468888521194, 0.015397033654153347, -0.023031288757920265, 0.021784618496894836, 0.012093997560441494, -0.003341593313962221, -0.014047544449567795, 0.004337645135819912, -0.011367843486368656, 0.012942248024046421, 0.028300724923610687, 0.030896885320544243, 0.00930505245923996, -0.007190851494669914, 0.003437985433265567, 0.0033223149366676807, 0.005471859127283096, -0.016695113852620125, 0.002395343966782093, 0.013559157028794289, -0.015576965175569057, -0.013469191268086433, -0.6769554018974304, -0.023918095976114273, 0.0024242617655545473, -0.006818135268986225, 0.0019358749268576503, 0.04809323698282242, 0.03542088717222214, -0.0014185706386342645, 0.0062815528362989426, -0.021733207628130913, -0.011020831763744354, 0.009921961463987827, -0.0018780396785587072, -0.006792430765926838, -0.02111629955470562, -0.012370320968329906, 0.023712459951639175, -0.01095014438033104, -0.005128060467541218, 0.014651601202785969, -0.02069217339158058, 0.004189843777567148, -0.03454693406820297, 5.343612428987399e-06, 0.006304044276475906, 0.03274761512875557, 0.011040110141038895, -0.01893141120672226, -0.01030752994120121, 0.010063336230814457, -0.012569531798362732, 0.012749463319778442, -0.026604223996400833, -0.022491492331027985, 0.05397958308458328, 0.003936011344194412, -0.02390524372458458, 0.008418244309723377, 0.016772227361798286, 0.03665470704436302, -0.03084547631442547, -0.01753051206469536, 0.012447434477508068, 0.0032564469147473574, -0.017119240015745163, -0.003206644207239151, 0.025280438363552094, 0.008090510964393616, -0.0128844128921628, -0.002531899604946375, 0.01499861292541027, -0.01234461646527052, 0.007917005568742752, 0.010654541663825512, 0.013559157028794289, -0.0012924575712531805, 0.04120441526174545, -0.005857427604496479, 0.009632784873247147, 0.031076816841959953, -0.00903515424579382, 0.012665923684835434, -0.03274761512875557, -0.043929100036621094, -0.017479103058576584, 0.00314880907535553, -0.008887352421879768, 0.008463227190077305, 0.02047368511557579, -0.012299633584916592, -0.0011559020495042205, -0.0005980327259749174, 0.0030973998364061117, -0.007480028085410595, 0.01907278597354889, 0.021964550018310547, 0.015384181402623653, -0.0007932267617434263, -0.0012723759282380342, -0.006287978962063789, 0.004469381179660559, -0.004247678909450769, -0.006063064094632864, 0.005741756875067949, 0.039816368371248245, -0.014381702989339828, -0.020872104912996292, -0.0030459908302873373, 0.008745977655053139, 0.019047081470489502, 0.03354445472359657, 0.02644999511539936, 0.0027343230322003365, -0.0032452011946588755, -0.006239783018827438, 0.0027487818151712418, -0.02755529247224331, 0.0023760655894875526, -0.0016707966569811106, -0.02927749790251255, -0.009459279477596283, 0.020319458097219467, -0.00013083220983389765, 0.013751941733062267, -0.007929857820272446, 0.021244822070002556, -0.004877441097050905, -0.003437985433265567, 0.045754123479127884, -0.038736775517463684, -0.01620672643184662, -0.0176461823284626, -0.01660514809191227, -0.02053794637322426, 0.007595698349177837, -0.0236610509455204, 0.002457998925819993, -0.003115071915090084, 0.028326429426670074, -0.038891006261110306, 0.01138069573789835, 0.008585324510931969, 0.014471669681370258, -0.01664370484650135, 0.013623418286442757, 0.012685202062129974, -0.006120899226516485, -0.01265307143330574, -0.03213070333003998, -0.0008418244542554021, 0.0176461823284626, 0.02265857346355915, -0.0019872840493917465, -0.022928470745682716, 6.782590935472399e-05, -0.0106802461668849, 0.010114746168255806, -0.017222058027982712, -0.0036886048037558794, -0.034161366522312164, 0.00686311861500144, 0.005873492918908596, -0.018057456240057945, -0.0036500480491667986, 0.00016657762171234936, -0.013970430009067059, -0.013340668752789497, -0.008225460536777973, -0.02452215366065502, 0.02376386895775795, 0.021347640082240105, -0.010750933550298214, -0.009459279477596283, 0.016412364318966866, 0.03793993592262268, -0.0104296263307333, -0.005009176675230265, 0.0008490538457408547, 0.005446154624223709, -0.024830607697367668, 0.0008900205139070749, 0.03300466015934944, -0.04015052691102028, -0.026501405984163284, -0.012530975043773651, -0.01606535166501999, -0.001168754417449236, -0.006165882106870413, 0.0003837611002381891, -0.01567978411912918, 0.00025242683477699757, -0.0006136964657343924, 0.010172581300139427, 0.015589817427098751, -0.008925910107791424, 0.034701161086559296, -0.003974568098783493, -0.0263728816062212, 0.007345078978687525, -0.008418244309723377, -0.002525473479181528, 0.026475699618458748, -0.015114283189177513, -0.0044597419910132885, -0.0003468107897788286, 0.018455876037478447, 0.005118421278893948, 0.03768289089202881, -0.015615521930158138, 0.015756897628307343, -0.01327640749514103, 0.01114935427904129, -0.02486916445195675, 0.012890839017927647, 0.035600822418928146, -0.009748456068336964, 0.01628384180366993, 0.015191396698355675, 0.0075571415945887566, 0.0195483211427927, 0.022054515779018402, 0.006284765899181366, 0.020126672461628914, -0.012768741697072983, 0.013764793984591961, -0.05200033262372017, 0.014805828221142292, 0.004070960450917482, 0.034161366522312164, 0.003891028231009841, 0.0037175226025283337, -0.0222601518034935, -0.02061505988240242, 0.00034620834048837423, 0.015448442660272121, 0.03171943128108978, -0.008752403780817986, 0.015024317428469658, -0.012781593948602676, -0.01850728504359722, 0.011406400240957737, -0.019663991406559944, 0.023288333788514137, -0.020782139152288437, -0.004228400532156229, 0.03801704943180084, 0.013340668752789497, 0.028660587966442108, 0.017054978758096695, -0.015898272395133972, 0.005195534788072109, 0.01968969590961933, 0.00043296124204061925, 0.03125675022602081, 0.009208659641444683, 0.0006952281109988689, 0.020049558952450752, -0.02337830141186714, 0.021771766245365143, 0.014124657958745956, -0.011046536266803741, 0.0197539571672678, 0.00398099422454834, 0.008533915504813194, -0.004080599639564753, 0.012460287660360336, 0.003958502784371376, 0.0038878151681274176, -0.0028981894720345736, 0.006185160484164953, -0.024959132075309753, 0.0004879850603174418, -0.032978955656290054, 0.012023309245705605, 0.03590927645564079, -0.007165146991610527, 0.004157713148742914, 0.019882479682564735, 0.02591020055115223, 0.017260614782571793, 0.012974378652870655, 0.0056100208312273026, -0.024792050942778587, -0.022183038294315338, -0.01044890470802784, -0.01510143093764782, 0.006965936627238989, -0.012569531798362732, -0.014535930939018726, -0.016258137300610542, 0.017222058027982712, -0.010962996631860733, 0.0013784072361886501, -8.961454295786098e-05, 0.0011575085809454322, -0.017633330076932907, -0.00837326142936945, 0.017029274255037308, 0.0048099663108587265, -0.008591750636696815, 0.0009068891522474587, -0.010031205601990223, 0.010982275009155273, -0.007473601959645748, 0.012029735371470451, -0.013520600274205208, -0.030357088893651962, -0.0049834721721708775, 0.0007249490008689463, 0.020178083330392838, 0.0004799524031113833, 0.028686292469501495, 0.010050483979284763, -0.011843377724289894, -0.025010541081428528, 0.020178083330392838, 0.018455876037478447, -0.0021206263918429613, -0.0005755412275902927, 0.01989533193409443, 0.012396025471389294, 0.0004273383819963783, 0.005738543812185526, -0.01240245159715414, 0.018301649019122124, 0.003711096476763487, -0.01807030849158764, -0.007422192953526974, 0.008405392058193684, -0.013880464248359203, -0.0025720628909766674, 0.013237849809229374, -0.01014687679708004, -0.01259523630142212, 0.013584861531853676, -0.0013302111765369773, -0.013610566034913063, -0.023493971675634384, 0.024997688829898834, 0.017556216567754745, -0.009337183088064194, -0.0256660059094429, -0.01710638776421547, -0.005661430303007364, 0.06287336349487305, 0.025010541081428528, -0.001710960059426725, 0.015731193125247955, 0.017736148089170456, 0.017800411209464073, -0.033261705189943314, -0.017479103058576584, 0.010975848883390427, 0.007627829443663359, 0.004601116757839918, 0.0115799056366086, 0.010481036268174648, 0.009529966861009598, 0.028969043865799904, -0.00246442505158484, 0.0035118861123919487, -0.01152207050472498, 0.01650233007967472, 0.001979251392185688, -0.0028403543401509523, -0.015011465176939964, 0.011091519147157669, 0.019419798627495766, 0.04480305314064026, 0.019059933722019196, 0.02899474836885929, 0.02562744915485382, -0.018777184188365936, -0.028480656445026398, -0.023930948227643967, -0.0011759838089346886, 0.007133016362786293, -0.0029769097454845905, 0.004996324423700571, 0.010545297525823116, 0.004328005947172642, 0.012235372327268124, 0.023673903197050095, -0.0012522941688075662, -0.008771682158112526, -0.007640681695193052, -0.011914065107703209, -0.021103447303175926, 0.011258598417043686, -0.022542903199791908, 0.00041247790795750916, 0.029483133926987648, -0.020049558952450752, -0.0004968210123479366, 0.03300466015934944, 0.0005012389738112688, -0.0002688938402570784, -0.0013494895538315177, 0.0012306059943512082, -0.010821620933711529, -0.011657019145786762, -0.014266032725572586, -0.004160926211625338, -0.017491955310106277, -0.021694650873541832, -0.014651601202785969, -0.012550253421068192, -0.00033195034484378994, 0.012428156100213528, -0.03704027459025383, -0.01692645438015461, -0.025139063596725464, -0.04084455221891403, -0.004533642437309027, -0.0019888905808329582, -0.007113737985491753, -0.020268049091100693, -0.02089780941605568, 0.021039186045527458, 0.007261539343744516, 0.004443676210939884, -0.004241252783685923, 0.009125120006501675, 0.0066767605021595955, -0.009870552457869053, -0.0206536166369915, -0.020705025643110275, -0.023326890543103218, -0.03727161884307861, -0.00048035403597168624, 0.024072322994470596, -0.038171276450157166, -0.007068755105137825, 0.004160926211625338, 0.010583854280412197, 0.013507748022675514, 0.013379225507378578, -0.007332226727157831, -0.009260068647563457, -0.025923052802681923, -0.0006165078957565129, 0.007756351958960295, -0.00919580738991499, -0.00550398975610733, 0.008617455139756203, -0.0029399595223367214, 0.015808306634426117, 0.005327270831912756, 0.008688142523169518, 0.013212145306169987, 0.010590280406177044, -0.0014675699640065432, -0.00866243802011013, -0.00014418653154280037, 0.022684277966618538, 0.006387583911418915, 0.003974568098783493, 0.005677495617419481, -0.004414758644998074, 0.02318551577627659, -0.0131864408031106, 0.005918475799262524, -0.04385198652744293, -0.007062328979372978, 0.018031751736998558, -0.021167708560824394, 0.015654079616069794, 0.01442025974392891, -0.010705950669944286, -0.004630034323781729, -0.001290047774091363, -0.016116760671138763, 0.00810336321592331, 0.002448359737172723, 0.007454323582351208, 0.014767271466553211, -0.02333974465727806, -0.015217101201415062, -0.010230416432023048, -0.007782056462019682, 0.020884957164525986, 0.02326262928545475, 0.005111995153129101, -0.021463310346007347, -0.003126317635178566, 0.02047368511557579, -0.004238039720803499, -0.0003783390566240996, -0.013000083155930042, -0.03567793592810631, -0.005156978033483028, -0.0052373046055436134, -0.009279347024857998, 0.010069762356579304, -0.025858791545033455, -0.01193334348499775, -0.01057742815464735, -0.011586331762373447, -0.0003753267810679972, -0.03195077180862427, -0.015808306634426117, 0.002943172585219145, 0.009240790270268917, 0.021424753591418266, 0.019998149946331978, 0.002090102294459939, 0.014188919216394424, -0.007261539343744516, 0.004565773066133261, -0.000378941505914554, -0.0010972635354846716, 0.01650233007967472, -0.009028728120028973, 0.03986777737736702, 0.008739551529288292, 0.015037169679999352, 0.0016282234573736787, -0.004103091079741716, -0.0045400685630738735, 0.03819698095321655, 0.012877986766397953, -0.0241622906178236, -0.02652711048722267, -0.029791589826345444, 0.012698054313659668, 0.002435507485643029, -0.011207189410924911, -0.0074928803369402885, 0.017556216567754745, 0.005712839309126139, 0.02043512836098671, 0.014561635442078114, 0.0014764058869332075, -0.0008691355469636619, 0.0282750204205513, -0.021784618496894836, 0.010545297525823116, -0.024457892403006554, -0.007480028085410595, 0.012209667824208736, -0.019021376967430115, 0.017209205776453018, -0.02262001670897007, 0.007968414574861526, 0.015795454382896423, 0.020949218422174454, -0.004581838380545378, -0.01850728504359722, -0.021604685112833977, 0.01810886524617672, -0.006043785717338324, -0.01007618848234415, 0.015242806635797024, -0.03418707102537155, -0.010493888519704342, -0.017581921070814133, -0.009452853351831436, -0.03321029618382454, 0.016592295840382576, -0.013212145306169987, -0.02927749790251255, 0.03565223142504692, -0.022812800481915474, 0.0005189108778722584, -0.019021376967430115, -0.008116216398775578, 0.03146238625049591, 0.011162206530570984, 0.04189843684434891, 0.011226467788219452, 0.00810979027301073, -0.01071880292147398, 0.01714494451880455, 0.0231598112732172, -0.012396025471389294, 0.002311804099008441, 0.021630389615893364, 0.01965113915503025, -0.0006177127943374217, 0.004344071261584759, 0.01832735352218151, -0.030357088893651962, -0.01656659133732319, 0.0007904153317213058, 0.0019888905808329582, 0.010641689412295818, -0.02033231034874916, -0.013944725506007671, 0.00024118110013660043, 0.022889913991093636, -0.007441471330821514, -0.007775630336254835, -0.017016422003507614, -0.012665923684835434, -0.00977416057139635, 0.03593498095870018, -0.01929127424955368, 0.03231063485145569, 0.0002799387730192393, -0.019406946375966072, -0.0064711240120232105, -0.01778755709528923, -0.014214623719453812, 0.012993657030165195, 0.0014025052078068256, 0.02909756638109684, -1.775974487827625e-05, 0.0151399876922369, -0.001985677517950535, 0.013893316499888897, -0.01055814977735281, -3.243192986701615e-05, 0.005459006875753403, 0.012974378652870655, 0.004276596941053867, -0.025601744651794434, -0.017080683261156082, -0.003775357734411955, 0.026398586109280586, -0.008077658712863922, 0.006683186627924442, 0.00233590230345726, -0.00316808745265007, -0.022208742797374725, -0.0077949087135493755, 0.0023391153663396835, -0.02351967617869377, -0.011862656101584435, 0.0011382302036508918, -0.02462497167289257, -0.024329369887709618, -0.0003859700809698552, 0.00017852622841019183, -0.013000083155930042, 0.004694296047091484, 0.0006506467470899224, -0.008090510964393616, 0.0017302384367212653, 0.021591832861304283, -0.013739089481532574, -0.009909109212458134, 0.004591477569192648, -0.017479103058576584, 0.011200763285160065, -0.020769286900758743, -0.01286513451486826, -0.008964466862380505, -0.004238039720803499, -0.006435780320316553, -0.004051681607961655, 0.014060396701097488, -0.0035729343071579933, -0.0035343775525689125, -0.026655633002519608, 0.0017302384367212653, 0.007383635733276606, 0.02340400591492653, 0.0014523077988997102, 0.021887436509132385, 0.014214623719453812, 0.020126672461628914, -0.022131629288196564, -0.025074802339076996, 0.011965474113821983, -0.014780123718082905, 0.004617182072252035, 0.038736775517463684, -0.01789037697017193, -0.008925910107791424, 0.006721743382513523, 0.009266494773328304, 0.010995127260684967, -0.015319920144975185, 0.020203787833452225, -0.020088115707039833, 0.02151471935212612, -0.013623418286442757, -0.0015045201871544123, -0.01283300295472145, -0.009671341627836227, -0.0013269981136545539, 0.021707503125071526, -0.0018443024018779397, -0.028866223990917206, 0.0005707216332666576, 0.03395572677254677, -0.012106849811971188, 0.013327816501259804, -0.017800411209464073, 0.0033448063768446445, -0.02125767432153225, -0.019998149946331978, -0.014073248952627182, -0.00770494295284152, -0.003923159092664719, 0.021103447303175926, 0.01034608669579029, -0.009247216396033764, -0.03632054850459099, -0.0045561338774859905, -0.024740641936659813, -0.006358666345477104, -0.012723758816719055, 0.0005675085703842342, 0.014677305705845356, -0.016810784116387367, -0.02881481498479843, 0.014086101204156876, 0.005934541113674641, 0.012325338087975979, 0.0039038804825395346, -0.021090595051646233, 0.04038187116384506, -0.01670796610414982, 0.01322499755769968, -0.01044890470802784, -0.03482968360185623, -0.006959510501474142, 0.031179634854197502, 0.0035761473700404167, 0.014741566963493824, -0.0008024643175303936, 0.01555126067250967, -0.015011465176939964, -0.019239865243434906, -0.023365449160337448, -0.013983282260596752, 0.009979796595871449, 0.029842998832464218, -0.018237387761473656, -0.007235834840685129, -0.018275944516062737, -0.011849803850054741, -0.004209122154861689, -0.009099415503442287, -0.02175891399383545, -0.016438068822026253, 0.024997688829898834, -0.005179469473659992, -0.007904153317213058, -0.0201523769646883, -0.02783804200589657, -0.0016997142229229212, -0.007390061859041452, 0.0017720083706080914, 0.0026973725762218237, 0.0007759564905427396, -0.0156412273645401, 0.010879456996917725, -0.010223990306258202, -0.026180097833275795, -0.004141647834330797, 0.021823175251483917, -0.017659034579992294, -0.011573479510843754, 0.002591341268271208, 0.011136502027511597, -0.013674828223884106, 0.02855776995420456, -0.020820695906877518, 0.002115806797519326, 0.003711096476763487, 0.022067368030548096, 0.047399215400218964, -0.006313683465123177, 0.014021839015185833, 0.018121717497706413, -0.007030198350548744, -0.0032050376757979393, -0.012049013748764992, 0.011046536266803741, -0.02434222213923931, -0.01275588944554329, 0.027298247441649437, -0.03886530175805092, -0.025177620351314545, -0.011162206530570984, 0.00034982303623110056, -0.004276596941053867, 0.006310470402240753, 0.18013757467269897, 0.0003773349744733423, -0.009658489376306534, 0.04595975950360298, 0.019998149946331978, 0.028146497905254364, 0.0021270527504384518, -0.0024049831554293633, -0.008790960535407066, 0.017838967964053154, 0.0047617703676223755, -0.002323049819096923, -0.0206536166369915, -0.0016515181632712483, -0.0002831518359016627, -0.023429710417985916, -0.011001553386449814, -0.004915997851639986, -0.007402914110571146, -0.04302943870425224, 0.0027921581640839577, -0.001468373229727149, -0.005012389738112688, 0.003868536790832877, 0.029585951939225197, 0.0004992308095097542, 0.0010225597070530057, -0.005825296510010958, 0.026707042008638382, 0.006734595634043217, -0.006483976263552904, 0.006175521295517683, -0.004922423977404833, 0.02279994823038578, -0.0375029593706131, 0.023635346442461014, -0.004549707751721144, -0.00590562354773283, 0.03860825300216675, 0.02781233750283718, -0.016553739085793495, -0.003952076658606529, 0.007749925833195448, -0.004006698727607727, -0.025820234790444374, 0.004915997851639986, -0.0022025597281754017, -0.0017238123109564185, 0.023288333788514137, 0.022003106772899628, -0.023172663524746895, -0.01957402564585209, 0.017916081473231316, 0.030768362805247307, 0.02480490319430828, 0.014253180474042892, 0.009529966861009598, -0.01696501113474369, -0.019239865243434906, -0.00923436414450407, -0.013880464248359203, 0.04153857380151749, -0.008726699277758598, 0.018520137295126915, -0.008032675832509995, 0.006830987986177206, -0.020280901342630386, 0.005407597403973341, 0.010069762356579304, -0.01327640749514103, 0.01168915070593357, -0.037425845861434937, 0.001042641350068152, -0.008630307391285896, -0.02605157531797886, -0.042926620692014694, 0.03565223142504692, -0.0007329817162826657, 0.013893316499888897, 0.006410075351595879, -0.006837414111942053, -0.006072703283280134, -0.005786739755421877, -0.015769749879837036, -0.007171573117375374, -0.03919946029782295, 0.050201013684272766, 0.01646377332508564, -0.01606535166501999, -0.0011575085809454322, -0.0151399876922369, -0.00021527572243940085, 0.00618194742128253, -0.010436052456498146, 0.030125748366117477, 0.0056389388628304005, -0.0031086455564945936, 0.019535468891263008, -0.011489939875900745, 0.012852281332015991, -0.015615521930158138, -0.042746689170598984, 0.003942437469959259, 0.006683186627924442, -0.013302111998200417, -0.029123270884156227, -0.010564575903117657, 0.016733670607209206, 0.011586331762373447, -0.013096475042402744, -0.017312023788690567, -0.01861010491847992, 0.011014405637979507, -0.01152207050472498, 0.011451383121311665, -0.0043665627017617226, -0.025280438363552094, -0.017273467034101486, -0.005446154624223709, -0.012839429080486298, 0.01327640749514103, -0.03367297723889351, 0.004193056840449572, 0.02151471935212612, -0.017659034579992294, -0.016258137300610542, -0.012055439874529839, 0.010834473185241222, 0.022195890545845032, -0.055316220968961716, 0.019741104915738106, -0.014355998486280441, -0.0007402111077681184, 0.015872567892074585, 0.00035725327325053513, 0.006034146528691053, 0.012550253421068192, 0.02172035537660122, -0.007364357355982065, 0.01016615517437458, -0.007627829443663359, -0.00356972124427557, -0.012749463319778442, -0.004189843777567148, -0.019085638225078583, -0.02039657160639763, -0.004090238828212023, 0.01839161477982998, -0.019445503130555153, -0.021450458094477654, -0.029354611411690712, -0.016990715637803078, 0.008161199279129505, -0.014972908422350883, 0.013970430009067059, -0.018648661673069, -0.026861269026994705, -0.04559989646077156, -0.01636095531284809, 0.01286513451486826, -0.024432187899947166, 0.004173778463155031, 0.028326429426670074, -0.014741566963493824, -0.024894868955016136, -0.00948498398065567, -0.16306975483894348, 0.009337183088064194, 0.005436514969915152, -0.022003106772899628, 0.02133478783071041, 0.008983745239675045, 0.03153949975967407, 0.012800872325897217, 0.014073248952627182, 0.0046653784811496735, 0.01413751021027565, 0.011920491233468056, -0.03765718638896942, 0.01018543355166912, 0.026938382536172867, -0.015191396698355675, -0.005436514969915152, 0.01610390841960907, 0.006972362753003836, 0.014201771467924118, 0.011612036265432835, -0.014844385907053947, 0.01692645438015461, 0.0031231045722961426, 0.018700070679187775, 0.013674828223884106, -0.02201595902442932, -0.0005329680861905217, -0.008848795667290688, 0.012980804778635502, -0.010493888519704342, -0.008488931693136692, 0.029894407838582993, 0.015666931867599487, -0.0074928803369402885, -0.022928470745682716, 0.016052499413490295, 0.026205802336335182, -0.0005393942119553685, 0.01071880292147398, -0.008501783944666386, 0.03292754665017128, 0.010500314645469189, 0.017517659813165665, -0.004450102802366018, -0.003968141973018646, 0.01003763172775507, -0.007602124474942684, 0.004013124853372574, 0.014201771467924118, 0.01086017768830061, -0.029534542933106422, 0.011663445271551609, 0.0069145276211202145, 0.03318459168076515, 0.017838967964053154, 0.022452935576438904, -0.005060586147010326, -0.004623608198016882, -0.006175521295517683, 0.011052962392568588, -0.025396108627319336, 0.02819790691137314, -0.0007040640339255333, -0.018700070679187775, -0.02522902935743332, -0.01057742815464735, 0.013404930010437965, 0.025151915848255157, 0.002168822567909956, 0.0003205037792213261, -0.00451757712289691, 0.05120348930358887, -0.005693560931831598, 0.009909109212458134, 0.028532065451145172, -0.02799226902425289, 0.03914805129170418, 0.007884874939918518, -0.0069787888787686825, 0.00480354018509388, 0.021501867100596428, -0.028943339362740517, -0.009581375867128372, 0.01567978411912918, -0.017132092267274857, -0.002379278652369976, 0.009517114609479904, -0.009986222721636295, -0.006371518597006798, 0.008141920901834965, -0.03223352134227753, -0.0029030090663582087, -0.016849340870976448, -0.0016049286350607872, 0.015191396698355675, -0.012228946201503277, 0.004212335217744112, -0.0015358476666733623, -0.009491410106420517, 0.0023503610864281654, 0.009864126332104206, -0.0066446298733353615, 0.016450921073555946, 0.003200218081474304, 0.028403542935848236, -0.002830715151503682, 0.02304414100944996, 0.021039186045527458, 0.006927379872649908, -0.01907278597354889, 0.022774243727326393, 0.03074265830218792, 0.024393631145358086, 0.012678775936365128, 0.025061950087547302, 0.010828047059476376, 0.00482281856238842, 0.021694650873541832, 0.009992648847401142, 0.02701549604535103, -0.012788020074367523, -0.00991553533822298, 0.006657482124865055, 0.004250891972333193, 0.0024403270799666643, -0.09022302180528641, -0.026861269026994705, -0.006689612753689289, 0.017813263460993767, -0.024997688829898834, 0.010776638053357601, 0.012087571434676647, 0.02168179862201214, -0.023828130215406418, 0.04179561883211136, -0.008006971329450607, -0.02037086710333824, 0.008771682158112526, -0.014767271466553211, 0.017877524718642235, -0.0029335333965718746, -0.012858708389103413, -0.0018459089333191514, 0.013147884048521519, -0.005221239291131496, -0.026784155517816544, -0.004954554606229067, 0.018661513924598694, -0.014792975969612598, -0.004797114059329033, 0.012235372327268124, 0.003701457055285573, 0.02290276624262333, 0.016695113852620125, 0.025383256375789642, 0.007711369078606367, -0.013610566034913063, -0.004173778463155031, -0.01979251392185688, -0.0065514505840837955, -0.02719542756676674, -0.006133751478046179, -0.010609558783471584, 0.023275481536984444, -0.031153930351138115, -0.0028596327174454927, -0.006242996081709862, 0.010474609211087227, -0.04241253063082695, -0.002130265813320875, -0.007068755105137825, -0.020088115707039833, -0.003836406162008643, 0.0043183667585253716, -0.008546767756342888, -0.005690347868949175, -0.014972908422350883, -0.024971984326839447, -0.0007088836864568293, 0.029894407838582993, -0.01965113915503025, 0.0104296263307333, 0.00025262765120714903, 0.00314880907535553, -0.02698979154229164, -0.022555755451321602, 0.0022716408129781485, -0.012325338087975979, 0.02719542756676674, 0.035703640431165695, 0.019998149946331978, -0.0120811453089118, -0.015062874183058739, 0.022915618494153023, -0.015332772396504879, 0.01075735967606306, 0.005998802371323109, -0.019227012991905212, 0.02053794637322426, -0.018121717497706413, -0.015075726434588432, -0.021643241867423058, -0.019175603985786438, 0.004472594242542982, -0.037245914340019226, -0.01139997411519289, -0.009414296597242355, 0.007717795204371214, -0.005963458679616451, 0.03837691247463226, -0.011175058782100677, 0.01800604723393917, 0.003874962916597724, -0.012087571434676647, -0.01943265087902546, 0.011014405637979507, 0.018982820212841034, 0.028223611414432526, -0.014677305705845356, -0.005565037950873375, -0.005417236592620611, -0.03341593220829964, -0.002964057493954897, 0.027118314057588577, -0.008611029013991356, -0.007113737985491753, -0.0017061404651030898, -0.04516291990876198, 0.02168179862201214, 0.0059249019250273705, -0.015037169679999352, 0.006959510501474142, -0.010603132657706738, -0.026424290612339973, -0.00891305785626173, -0.010159729048609734, 0.02999722585082054, -0.020383719354867935, -0.002178461756557226, 0.014895794913172722, 0.0033769370056688786, -0.019021376967430115, -0.008148347027599812, 0.019458355382084846, 0.001573601271957159, 0.006024506874382496, -0.0035504428669810295, -0.0016394691774621606, 0.0005189108778722584, 0.007248687092214823, 0.0002078454999718815, -0.010249694809317589, 0.015332772396504879, -0.0009751668549142778, 0.03814557194709778, -0.01839161477982998, -0.006069490220397711, 0.030665544793009758, -0.028326429426670074, -0.002721470780670643, 0.03336452320218086, -0.014934351667761803, -0.002936746459454298, -0.005664643365889788, 0.011252172291278839, 0.01650233007967472, -0.00302028632722795, -0.01983107067644596, -0.01983107067644596, 0.027118314057588577, -0.007126590237021446, -0.028403542935848236, 0.003900667419657111, -0.01678507961332798, 0.003486181376501918, 0.03156520426273346, 0.0017944998107850552, -0.00453685550019145, 0.020023854449391365, 0.012704480439424515, -0.0156412273645401, -0.024380778893828392, -0.026861269026994705, -0.0031504156067967415, -0.003396215382963419, 0.011001553386449814, -0.023326890543103218, 0.003470116062089801, 0.016733670607209206, 0.00550398975610733, -0.005118421278893948, 0.005012389738112688, -0.0015221921494230628, -0.025036245584487915, 0.003874962916597724, 0.004790687933564186, -0.050766512751579285, -0.004495085682719946, 0.025601744651794434, -0.0003847651823889464, -0.004279810003936291, 0.002690946450456977, 0.009780586697161198, -0.002110987203195691, -0.008572472259402275, -0.00273753609508276, 0.034521229565143585, 0.014355998486280441, 0.01098870113492012, -0.034418411552906036, 0.030794067308306694, 0.01682363636791706, 0.002295738784596324, -0.007300096098333597, -0.006034146528691053, 0.0006406059255823493, 0.006516106892377138, 0.015808306634426117, -0.004369775764644146, 0.010628837160766125, -0.005047733895480633, -0.008533915504813194, 0.02899474836885929, 0.015217101201415062, -0.009170102886855602, 0.016476625576615334, 0.01900852471590042, 0.0003984207287430763, 0.007756351958960295, -0.0062815528362989426, -0.0046653784811496735, -0.013931873254477978, -0.024959132075309753, -0.032978955656290054, -0.01850728504359722, 0.007415766827762127, -0.008874500170350075, 0.03639766201376915, 0.014047544449567795, -0.00578031362965703, 0.026115836575627327, -0.002690946450456977, 0.011798394843935966, -0.0136876804754138, 0.002196133602410555, -0.018880002200603485, -0.001037018490023911, 0.013649123720824718, -0.001468373229727149, 0.025473222136497498, 0.00012892445374745876, 0.0009872158989310265, 0.01220324169844389, 0.0145873399451375, -0.0011727707460522652, -0.008880926296114922, 0.008026249706745148, 0.0012522941688075662, -0.015217101201415062, -0.012164684943854809, -0.01710638776421547, -0.021553276106715202, 0.007614977192133665, -0.005722478497773409, 0.021810322999954224, -0.04544566944241524, 0.032696206122636795, 0.022504344582557678, -0.0008691355469636619, 0.009189381264150143, 0.0012667530681937933, 0.014394555240869522, 0.017620477825403214, -0.0026813072618097067, 0.0070109195075929165, -0.027709519490599632, 0.009163676761090755, -0.004205909091979265, 0.007576419971883297, -0.011502792127430439, -0.017350580543279648, -0.006082342471927404, -0.02107774280011654, 0.013572009280323982, -0.017479103058576584, -0.009947665967047215, 0.00044982985127717257, 0.020178083330392838, 0.0028291086200624704, -0.012807298451662064, 0.009549245238304138, 0.007994119077920914, 0.01746625080704689, -0.00923436414450407, -0.0030829410534352064, -0.029611656442284584, -0.010731655173003674, -0.0009020694997161627, -0.055059175938367844, -0.018096012994647026, 0.007100885733962059, -0.01390616875141859, 0.023506823927164078, 0.002862845780327916, 0.021951697766780853, 0.023493971675634384, -0.024316517636179924, 0.001620994065888226, -0.03156520426273346, -0.0263728816062212, 0.013919021002948284, -0.00133744056802243, 0.020499389618635178, 0.011612036265432835, -0.02558889240026474]" +21,black,"[-0.015190942212939262, -0.031228860840201378, 0.008661022409796715, -0.036693230271339417, -0.016037918627262115, 0.007253948133438826, -0.015218264423310757, -0.04254010319709778, -0.006171320099383593, -0.030764389783143997, -0.0048632873222231865, 0.012779789976775646, 0.002143056830391288, -0.015682734549045563, -0.024972161278128624, 2.3226231860462576e-05, 0.030846355482935905, 0.018551528453826904, 0.015450499951839447, -0.006984144914895296, -0.010566720739006996, 0.023537764325737953, -0.006813383661210537, -0.004234884865581989, -0.016106223687529564, 0.018920373171567917, 0.01135222427546978, -0.030217953026294708, -0.004101690836250782, -0.0077047585509717464, 0.00679289223626256, 0.00022519171761814505, -0.010266181081533432, -0.002435058820992708, -0.03745824098587036, 0.006796307396143675, -0.02021816000342369, 0.0016435793368145823, 0.0054780286736786366, -0.007376896217465401, -0.0027680438943207264, 0.0031437191646546125, 0.015641752630472183, -0.003667956916615367, -0.009337238036096096, 0.0065162586979568005, -0.0076979282312095165, -0.0036372197791934013, -0.0256415456533432, -0.017076149582862854, 0.0027407219167798758, 0.017035165801644325, 0.0036406349390745163, -0.013954629190266132, 0.01114731002599001, -0.006823629140853882, 0.007991638034582138, 0.021584251895546913, 0.007650114595890045, -0.0026399726048111916, 0.01775919459760189, 0.005700018722563982, -0.011058514006435871, -0.013954629190266132, -0.010730652138590813, -0.027390142902731895, -0.017062488943338394, 0.018674476072192192, -0.010081758722662926, 0.012670502997934818, 0.023387493565678596, 0.02270444855093956, 0.00793016329407692, -0.004357833415269852, 0.03065510280430317, -0.0029166063759475946, -0.01628381572663784, 0.006656283047050238, -0.0037021092139184475, -0.00020331289852038026, 0.007465692237019539, -0.014234677888453007, -0.009193798527121544, 0.008729327470064163, 0.014302982948720455, 0.008633701130747795, -0.006847535725682974, 0.004409061744809151, -0.027007637545466423, -0.012397284619510174, 0.011645933613181114, 0.008503922261297703, 0.020996833220124245, 0.015559786930680275, -0.015149959363043308, -0.01159812044352293, -0.004436383489519358, 0.023578746244311333, 0.0075339968316257, -0.019330201670527458, 0.006936331745237112, 0.010436942800879478, -0.02566886693239212, 6.467591447290033e-05, -0.009514830075204372, -0.013210109435021877, -0.007902842015028, -0.006113261450082064, 0.00961045641452074, -0.011488833464682102, -0.005710264202207327, 0.041665803641080856, 0.011236106045544147, -0.053987953811883926, 0.002990033710375428, -0.01786848157644272, -0.005423385184258223, -0.01885206811130047, -0.0019603418186306953, -0.027827292680740356, 0.0011065345024690032, 0.019903959706425667, 0.02907043695449829, -0.0077047585509717464, 0.041201334446668625, 0.014425930567085743, 0.0009212582372128963, -0.006857781670987606, 0.004432968329638243, 0.009166477248072624, 0.0366659089922905, 0.021447643637657166, -0.0006766424048691988, -0.006058617495000362, -0.006325005553662777, 0.016174528747797012, -0.03715769946575165, 0.024944838136434555, -0.032321736216545105, -0.006714341696351767, -0.004002649337053299, 0.010450603440403938, 0.0012755882926285267, 0.0001098209831980057, -0.006864611990749836, 0.020832901820540428, 0.01684391312301159, 0.0025477614253759384, -0.007622792851179838, -0.01786848157644272, 0.005966406315565109, -0.010962887667119503, 0.00890691950917244, 0.0007744033937342465, -0.012178709730505943, 0.01303934771567583, 0.008326330222189426, 0.014562539756298065, 0.006195227149873972, 0.004907685332000256, -0.025873782113194466, -5.2295705245342106e-05, 0.008012128993868828, 0.000626694702077657, 0.026269948109984398, 0.035791609436273575, -0.002889284398406744, -0.008442448452115059, -0.0005925424047745764, -0.008626870810985565, -0.02320990152657032, 0.010908244177699089, -0.004149504471570253, 0.02517707459628582, -0.006909010000526905, 0.01870179921388626, 0.028442034497857094, -0.006915840320289135, -0.03251298889517784, -0.00617815088480711, -0.01336720958352089, -0.0016674859216436744, 0.026925671845674515, 0.02620164304971695, -0.006092770025134087, 0.00033661359339021146, 0.02319624088704586, -0.021379338577389717, 0.0019535114988684654, -0.013380870223045349, 0.02363339066505432, 0.015423177741467953, -0.003404984250664711, -0.0042690373957157135, -0.6889474987983704, -0.014125390909612179, 0.01881108619272709, -0.004330511204898357, 0.018018752336502075, 0.011222445406019688, 0.015983276069164276, 0.0008653338300064206, -0.012055761180818081, -0.014316643588244915, 0.0038387184031307697, 0.02070995420217514, -0.011270258575677872, -0.031911905854940414, -0.0042690373957157135, -0.02080558054149151, 0.012752467766404152, 0.00419048685580492, 0.00989733636379242, 0.004443213809281588, -0.020067891106009483, -0.006850950885564089, -0.01380435936152935, 0.004443213809281588, 0.02027280442416668, 0.01722641848027706, 0.004979405086487532, -0.018524207174777985, -0.018373936414718628, -0.013025686144828796, -0.03275888413190842, 0.0563376322388649, -0.016994183883070946, -0.01557344850152731, 0.053140975534915924, 0.008790801279246807, -0.030381884425878525, 0.05278579145669937, 0.017390349879860878, 0.028906505554914474, -0.01969904638826847, -0.00015165754302870482, 0.013934137299656868, -0.031338147819042206, -0.0011082420824095607, 0.00866785366088152, 0.004870117641985416, 0.006827044300734997, 0.018428580835461617, -0.013428683392703533, 0.0226907879114151, 0.010949227027595043, -0.006171320099383593, 0.012902738526463509, 0.00234626280143857, 0.004665203858166933, 0.02027280442416668, 0.004169995430856943, -0.001892037340439856, 0.004470536019653082, -0.01878376491367817, 0.0029405129607766867, -0.008456109091639519, -0.031392794102430344, -0.0187564417719841, 0.004234884865581989, -0.031884584575891495, 0.0001994707708945498, 0.028551321476697922, -0.003169333329424262, 0.004002649337053299, 0.00814190786331892, -0.029043113812804222, 0.0005750393029302359, 0.012998364865779877, 0.006058617495000362, 0.024425724521279335, 0.005126259755343199, -0.01684391312301159, 0.006758739706128836, -0.011782542802393436, -0.01874278113245964, -0.004627636633813381, -0.006154244299978018, 0.0337151475250721, -0.012629520148038864, -0.009719744324684143, -0.006441123317927122, 0.013947798870503902, -0.0004888047697022557, 0.020860223099589348, 0.02866060845553875, -0.007718419190496206, 0.008695174939930439, -0.00014610780635848641, -0.007219796068966389, 0.019958602264523506, -0.0227590911090374, -0.006447954103350639, -0.019535114988684654, -0.0191799309104681, -0.008080434054136276, 0.0003184701781719923, 0.008879597298800945, 0.016570694744586945, 0.019849315285682678, -0.024575993418693542, 0.024453045800328255, 0.026051372289657593, -0.033824436366558075, -0.012103574350476265, 0.02066897042095661, -0.009494339115917683, -0.009829031303524971, 0.009186968207359314, -0.031228860840201378, 0.009706082753837109, 0.00026830899878405035, 0.04494442418217659, -0.02665245346724987, 0.004002649337053299, 0.0017170067876577377, 0.0049179308116436005, -0.00790967233479023, 0.005081862211227417, 0.013230600394308567, -0.005112599115818739, -0.013558462262153625, -0.0296441949903965, -0.00837414339184761, 0.009931487962603569, 0.01304617803543806, 0.024480367079377174, -0.004330511204898357, 0.024521350860595703, -0.0029797879979014397, 0.012233353219926357, -0.01160495076328516, 0.01381802000105381, 0.007643284276127815, -0.013428683392703533, -0.005392647814005613, -0.0006224256358109415, 0.023783661425113678, 0.005542918108403683, -0.017567941918969154, -0.03319603577256203, -0.016679981723427773, 0.0038660401478409767, 0.01528656855225563, -0.01238362304866314, -0.0006032149540260434, -0.00013959751231595874, 0.0035894066095352173, 0.017404010519385338, -0.029316332191228867, 0.01213089656084776, -0.038742367178201675, -0.010860431008040905, 0.008421956561505795, 0.026447540149092674, 0.017089810222387314, -0.017649907618761063, -0.010764804668724537, 0.0028431788086891174, -0.03106493130326271, -0.02219899371266365, 0.017554281279444695, 0.006864611990749836, -0.01384534128010273, -0.006973899435251951, -0.0037055243737995625, 0.008538074791431427, 0.009002545848488808, 0.002303572604432702, -0.013749714940786362, -0.000478985981317237, 0.014398609288036823, 0.004036801867187023, 0.02263614349067211, 0.019671723246574402, 0.0027202304918318987, -0.040190424770116806, 0.005956160835921764, 0.025409309193491936, 0.0036201435141265392, 0.010197876021265984, 0.01685757376253605, -0.01685757376253605, -0.01882474683225155, -0.026857366785407066, 0.008162399753928185, -0.012274336069822311, -0.0003353328793309629, 6.531627150252461e-05, -0.010648686438798904, 0.013947798870503902, 0.011263428255915642, -0.0022011157125234604, 0.0049418373964726925, 0.031857263296842575, -0.016570694744586945, 0.03404301032423973, -0.008107755333185196, 0.009822200983762741, -0.01631113700568676, 0.008510752581059933, -0.026993976905941963, 0.020573344081640244, 0.027909258380532265, 0.0006518819718621671, -0.024070540443062782, -0.005389232654124498, -0.010102249681949615, 0.026884689927101135, 0.018879391252994537, -0.012021608650684357, -0.011727899312973022, 0.017950447276234627, -0.030436528846621513, 0.006813383661210537, -0.009453356266021729, 0.0018049490172415972, 0.003941175062209368, -0.0043475874699652195, -0.01236313208937645, 0.018169023096561432, 0.017882144078612328, 0.0033213109709322453, -0.016461407765746117, -0.004634466953575611, 0.022417569532990456, -0.005768323317170143, 0.009262103587388992, 0.010942396707832813, -0.013893155381083488, 0.010874091647565365, -0.006581147667020559, 0.02923436649143696, 0.0013498695334419608, -0.010757974348962307, 0.03696644678711891, 0.013551631942391396, -0.01180986501276493, 0.009036698378622532, -0.014466913416981697, 0.02524537965655327, 0.012322149239480495, 0.0075339968316257, 0.0024589654058218002, 0.0010484755039215088, 0.022117028012871742, 0.0009588257526047528, 0.007247117813676596, 0.02076459676027298, -0.02274543046951294, 0.03513588383793831, 0.0008179475553333759, 0.003423767862841487, 0.008312669582664967, 0.023865625262260437, 0.005614637862890959, -0.003404984250664711, -0.006932916585355997, -0.0031590876169502735, -0.013988781720399857, -0.01628381572663784, -0.00216696341522038, -0.0010459141340106726, 0.0019210667815059423, -0.002785119926556945, -0.022827396169304848, 0.024944838136434555, 0.0025409311056137085, 0.018155362457036972, 0.0019808332435786724, -0.0022369755897670984, 0.0007389703532680869, 0.04390619322657585, -0.0113795455545187, -0.011522985063493252, -0.04297725111246109, 0.02616066113114357, 0.002103781560435891, 0.00867468398064375, -0.03352389484643936, -0.014425930567085743, -0.012916399165987968, 0.0017690890235826373, 0.020641649141907692, 0.004443213809281588, 0.0276087187230587, 0.0048837787471711636, -0.003548423759639263, -0.0018971601966768503, -0.0013737762346863747, 0.02131103351712227, -0.024507688358426094, 0.013134974054992199, 0.014275660738348961, -0.008503922261297703, -0.007902842015028, -0.0016939539927989244, -0.018947694450616837, 0.007335913833230734, 0.022786414250731468, -0.00814190786331892, -0.007513505406677723, -0.0172127578407526, -0.022048722952604294, -0.00690559484064579, -0.01525924727320671, -0.011536646634340286, 0.00108348170761019, -0.003572330344468355, -0.0077730631455779076, -0.016420425847172737, -0.029015792533755302, 0.00938505120575428, 0.012486080639064312, 0.004053877666592598, -0.013162295334041119, -0.007998468354344368, -0.023783661425113678, 0.07611864060163498, 0.03745824098587036, -0.005768323317170143, 0.019931280985474586, 0.014398609288036823, -0.01237679272890091, -0.027963902801275253, 0.013667750172317028, 0.006926086265593767, -0.0055292570032179356, 0.018128039315342903, -0.013312566094100475, -0.006458199582993984, 0.008449278771877289, 0.014507896266877651, -0.01361310575157404, 0.003316188231110573, 6.520954775623977e-05, 0.027909258380532265, -0.0022728354670107365, -0.019002338871359825, -0.004012895282357931, 0.0042178090661764145, 0.018660815432667732, 0.0043510026298463345, 0.0061030155047774315, -0.009938319213688374, 0.006154244299978018, 0.025504935532808304, -0.03805932030081749, -0.018975017592310905, -0.00788918137550354, 0.006847535725682974, 0.0033076500985771418, -0.008066772483289242, 0.0017059072852134705, 0.009009376168251038, 0.0060449568554759026, 0.0373762771487236, -0.0072607784532010555, 0.020081551745533943, 0.003982157912105322, -0.002614358440041542, -0.022581499069929123, 0.004146088846027851, -0.0301359873265028, 0.003995819017291069, 0.015177281573414803, -0.01627015508711338, -0.029507584869861603, 0.029944734647870064, 0.02769068256020546, -0.03696644678711891, -0.007766232825815678, 0.01823732815682888, 0.009460186585783958, 0.015027010813355446, -0.016010597348213196, 0.0002806892152875662, -0.01881108619272709, -0.022813735529780388, -0.028824539855122566, 0.018169023096561432, -0.009535321965813637, 0.0015257538761943579, -0.026269948109984398, -0.008811293169856071, -0.008462939411401749, -0.018373936414718628, -0.009835861623287201, 0.011174632236361504, -0.03833254054188728, 0.0027902426663786173, 0.027294516563415527, 0.022417569532990456, 0.007875519804656506, 0.02024548314511776, -0.033879078924655914, 0.005191149190068245, 0.0324583426117897, 0.0027168153319507837, -0.008831784129142761, -0.0010109080467373133, -0.023455798625946045, -0.00020534069335553795, 0.00407778425142169, 0.019658062607049942, -0.028933826833963394, -0.015600769780576229, 0.015013350173830986, 0.009870014153420925, -0.014972367323935032, 0.0036167283542454243, -0.001157762948423624, -0.016966862604022026, -0.011864508502185345, 0.02077825739979744, -0.0021994078997522593, 0.0072334567084908485, 0.0012644887901842594, 0.0018288556020706892, -0.005898101720958948, 0.009064019657671452, -0.006878273095935583, 0.017567941918969154, 0.013961459510028362, -0.0007090871222317219, 0.006977314595133066, -0.03065510280430317, -0.006809968501329422, 0.02758139558136463, -0.02866060845553875, 0.005488274153321981, -0.018961356952786446, 0.013783867470920086, 0.026379235088825226, -0.007650114595890045, 0.02519073523581028, -0.015942292287945747, -0.0115912901237607, -0.013988781720399857, -0.028442034497857094, 0.022390246391296387, 0.01627015508711338, -0.0007573271868750453, 0.010805787518620491, -0.005085277371108532, -0.00433392683044076, -0.026952993124723434, 0.01827831007540226, 0.0011270258110016584, 0.020983172580599785, -0.0016734625678509474, -0.004719847813248634, -0.04202098771929741, -0.008988885208964348, -0.010785295628011227, 0.013681410811841488, 0.006208887789398432, -0.004074369091540575, -0.009726574644446373, 0.01525924727320671, 0.0291524026542902, -0.03453480452299118, -0.0028039037715643644, -0.04232152923941612, -0.006376233883202076, -0.01137271523475647, -0.019917620345950127, 0.022007741034030914, -0.02363339066505432, -0.00989050604403019, 0.004193902015686035, -0.009166477248072624, 0.0023121105041354895, -0.034370873123407364, -0.03305942565202713, -0.002083290135487914, 0.023073293268680573, 0.03275888413190842, 0.01435762643814087, -0.007834536954760551, 0.010805787518620491, 0.018442241474986076, 0.012656841427087784, -0.004508103244006634, 0.01305983867496252, 0.020846562460064888, -0.00016425120702479035, -0.0002990460488945246, 0.010341315530240536, 0.013257922604680061, 0.01780017837882042, 0.0036201435141265392, 0.0022045308724045753, 0.038250572979450226, 0.0086063789203763, -0.01528656855225563, -0.032813526690006256, -0.011652763932943344, -0.006314760074019432, -0.009043528698384762, -0.01636578142642975, 0.024862872436642647, -0.01628381572663784, -0.009207459166646004, 0.020095212385058403, 0.011400037445127964, -0.01435762643814087, -0.01581934466958046, 0.028824539855122566, 0.004118767101317644, 0.029726160690188408, -0.0036577112041413784, -0.00652991933748126, 0.007971146143972874, -0.016652660444378853, -0.007568149361759424, -0.010491586290299892, 0.018032412976026535, 0.022854717448353767, 0.014425930567085743, 0.0006629814743064344, -0.009630948305130005, -0.008742988109588623, 0.018647154793143272, -0.004760830197483301, -0.016529712826013565, -0.0034066918306052685, -0.043168503791093826, -0.010942396707832813, -0.005399478133767843, -0.003500610589981079, -0.021884793415665627, -0.0027253534644842148, 0.00866785366088152, -0.014425930567085743, 0.024535011500120163, 0.011106327176094055, -0.0198083333671093, 0.02117442525923252, -0.015368534252047539, 0.023824643343687057, -0.009173307567834854, 0.031775299459695816, 0.050190217792987823, -0.005256038624793291, -0.005635129287838936, -0.0002148392959497869, -0.006266946904361248, -0.01159812044352293, 0.029944734647870064, 0.02715790830552578, -0.011263428255915642, 0.013722393661737442, 0.006202057469636202, 0.005785399116575718, -0.013940968550741673, -0.019876638427376747, 0.029726160690188408, -0.006874857470393181, 0.006266946904361248, -0.0345621258020401, 0.00889325886964798, -0.03767681494355202, 0.02127005159854889, -0.01258853729814291, -0.0006369403563439846, -0.010505246929824352, -0.006956823170185089, -0.02219899371266365, 0.008947902359068394, -0.008114585652947426, 0.03199387341737747, 0.02961687371134758, -0.006082524545490742, -0.006424047518521547, 0.005846873391419649, -0.0006412094226107001, 0.0011176340049132705, 0.0017673814436420798, 0.0356823205947876, 0.00278853508643806, 0.003674787236377597, 0.012718316167593002, 0.001695661572739482, -0.0029029452707618475, -0.02025914378464222, -0.0065674870274960995, 0.025969408452510834, -0.022062385454773903, 0.013230600394308567, -0.01283443346619606, -0.002008155221119523, 0.01722641848027706, 0.002453842666000128, -0.028387390077114105, -0.01979467272758484, -0.022103367373347282, 0.00020854247850365937, 0.006427462678402662, 0.028551321476697922, -0.04101007804274559, -0.0008828369318507612, -0.03019063174724579, -0.01881108619272709, -0.0019108210690319538, -0.00617815088480711, 0.018100718036293983, 0.00790967233479023, -0.017895804718136787, -0.015122638083994389, -0.000349207257386297, 0.005396062973886728, 0.01483575813472271, -0.021106120198965073, 0.01034814678132534, 0.029726160690188408, -0.0126090282574296, 0.002266004914417863, -0.006068863440304995, 0.0033383872359991074, -0.017444994300603867, 0.0007786724017933011, 0.019521454349160194, -0.020368430763483047, 0.013148634694516659, -0.014425930567085743, -0.011058514006435871, -0.025067787617444992, -0.026051372289657593, 0.0029712498653680086, 0.0314747579395771, -0.013093991205096245, -0.002107196720317006, 0.003080537309870124, 0.020368430763483047, -0.018346615135669708, -0.0028517169412225485, 0.008633701130747795, -0.013155465014278889, 0.007008051499724388, 0.013565292581915855, -0.02176184393465519, 0.001456595491617918, -0.007486183661967516, 0.014152712188661098, 0.018660815432667732, 0.0018988677766174078, -0.01635212078690529, -0.017185436561703682, 0.028278103098273277, -0.003107859054580331, -0.03199387341737747, -0.00239919894374907, -0.002330894349142909, -0.021966759115457535, 0.027280855923891068, 0.007342744152992964, -0.0011236106511205435, 0.005177488550543785, 0.023455798625946045, 0.009098172187805176, 0.013797528110444546, -0.005522426683455706, -0.010204706341028214, 0.011966965161263943, -0.004726678133010864, -0.01405708584934473, -0.02025914378464222, -0.002918313955888152, 0.01872912049293518, -0.001701638218946755, -0.009480678476393223, -0.01972636766731739, 0.022376585751771927, -0.02719889022409916, -0.01770455203950405, 0.0005904078716412187, 0.010341315530240536, 0.029698839411139488, 0.0006083378102630377, -0.009999793022871017, 0.005317512899637222, 0.006857781670987606, 0.0009110125829465687, -0.010416450910270214, -0.010641856119036674, -0.014904063194990158, -0.008264856413006783, 0.004958913661539555, -0.021365677937865257, -0.019466809928417206, -0.009712914004921913, 0.03999917209148407, 0.004187071695923805, 0.007718419190496206, 0.025081448256969452, -0.006447954103350639, -0.013756546191871166, -0.0010604289127513766, 0.005385817494243383, 0.009576304815709591, -0.004238300025463104, 0.009972470812499523, -0.03707573562860489, -0.019398504868149757, 0.01083310879766941, 0.019535114988684654, -0.00036372197791934013, 0.0025272700004279613, -0.011912321671843529, 0.0016572403255850077, 0.0126090282574296, -0.006451369263231754, -0.00730859162285924, 0.0003460054867900908, -0.008442448452115059, 0.0030702915973961353, -0.0007116484921425581, -0.0021208578255027533, 0.03248566761612892, 0.004405646584928036, -0.005986897740513086, 0.002938805380836129, -0.013148634694516659, -0.02762237936258316, -0.003937759902328253, 0.0015803975984454155, -0.022117028012871742, 0.015559786930680275, -0.008695174939930439, 0.014248338527977467, -0.007438370492309332, -0.009699252434074879, -0.028004884719848633, -0.016898557543754578, -0.002873915946111083, 0.025504935532808304, 0.014466913416981697, -0.006816798821091652, 0.0027134001720696688, -0.013264752924442291, -0.016584355384111404, 0.00014642797759734094, -0.007595471106469631, -0.0145762013271451, -0.020873885601758957, 0.010771634988486767, 0.00629768380895257, -0.012048930861055851, -0.0327315628528595, -0.0355457104742527, -0.017035165801644325, 0.004716432187706232, 0.008722497150301933, 0.16863039135932922, -0.006140583194792271, -0.002023523673415184, 0.03997185081243515, -0.01725374162197113, 0.0005844312254339457, 0.030709747225046158, 0.010860431008040905, 0.0008034328348003328, 0.022813735529780388, -0.01558710914105177, 0.003835303010419011, -0.010751143097877502, 0.002978080417960882, 0.010703329928219318, 0.005054540000855923, -0.02909775823354721, -0.03562767803668976, -0.007342744152992964, -0.003780659520998597, 0.0004172984044998884, 0.00728810066357255, -0.0345621258020401, -0.004525179509073496, 0.028469355776906013, 0.00991099700331688, -0.019876638427376747, -0.003217146499082446, -0.002298449631780386, -0.017895804718136787, 0.01669364422559738, -0.012294827029109001, -0.008804462850093842, -0.002581913722679019, -0.00039638011367060244, 0.005170657765120268, 0.004173411056399345, -0.003331556683406234, 0.017649907618761063, 0.018633494153618813, -0.01482209749519825, 0.017199097201228142, -0.017458654940128326, -0.011236106045544147, -0.006728002801537514, 0.014904063194990158, -0.01833295449614525, 0.0029866185504943132, -0.005150166805833578, 2.202889845648315e-06, -0.017923125997185707, 0.00019456137670204043, 0.0406002514064312, 0.014999689534306526, 0.005962991155683994, 0.007329083047807217, 0.029015792533755302, 0.0066392067819833755, -0.011625442653894424, -0.0010920197237282991, -0.0034305984154343605, 0.025942085310816765, -0.003804566105827689, 0.026515845209360123, 0.010027115233242512, 0.03054581582546234, -0.023032309487462044, -0.005829797126352787, -0.01725374162197113, -0.02561422437429428, 0.013674580492079258, -0.030819034203886986, 0.007021712604910135, 0.023032309487462044, -0.01982199400663376, -0.034398194402456284, 0.02266346476972103, 0.010662347078323364, 0.02967151626944542, 0.014986028894782066, -0.021433982998132706, -0.006338666658848524, -0.01461718324571848, -0.016598017886281013, -0.013107651844620705, -0.03407033160328865, 0.004200732801109552, -0.0025119015481323004, -0.000577600731048733, 0.002602405147626996, 0.018920373171567917, -0.01581934466958046, -0.0091323247179389, -0.014658166095614433, 0.0032700826413929462, 0.012793450616300106, 0.013524309732019901, 0.013128143735229969, -0.00867468398064375, 0.015368534252047539, -0.009200628846883774, -0.02375633828341961, 0.013237430714070797, -0.0002510194026399404, 0.0011031192261725664, -0.010450603440403938, -0.005153581965714693, -0.012028439901769161, -0.010956057347357273, -0.00813507754355669, -0.023305527865886688, -0.017117131501436234, -0.004897439386695623, -0.005884441081434488, 0.010942396707832813, 0.01885206811130047, -0.008852276019752026, 0.005672696977853775, 0.0036884481087327003, -0.008770310319960117, -0.025381987914443016, -0.023906609043478966, 0.022417569532990456, -0.005696603562682867, -0.023059632629156113, -0.0021345186978578568, -0.008640531450510025, -0.0036645415239036083, -0.009439695626497269, -0.027758987620472908, 0.010266181081533432, -0.01461718324571848, 0.02172086201608181, -0.004904270172119141, -0.005177488550543785, 0.02415250614285469, 0.006632376462221146, -0.02364705130457878, -0.025914764031767845, 0.013988781720399857, -0.012793450616300106, 0.0003549704561010003, 0.020382091403007507, 0.0037977355532348156, -0.0027355991769582033, -0.025436632335186005, 0.008763480000197887, -0.003650880651548505, -0.012492910958826542, -0.02319624088704586, -0.009111832827329636, -0.00020352634601294994, -0.02262248285114765, 0.004593484103679657, 0.022376585751771927, 0.018961356952786446, -0.010553060099482536, -0.0020047398284077644, -0.02871525287628174, 0.00679289223626256, -0.02956222929060459, 0.009665100835263729, 0.05737585946917534, -0.014425930567085743, -0.016529712826013565, -0.0015897895209491253, -0.17835696041584015, 0.03213048353791237, 0.0055053504183888435, -0.025955745950341225, 0.01383168064057827, 0.0027116925921291113, 0.005539502948522568, -0.00021505275799427181, -0.00867468398064375, 0.006656283047050238, 0.0003445112961344421, -0.013326226733624935, -0.025463953614234924, -0.012404114939272404, -0.013442344963550568, 0.0014190280344337225, 0.006369403563439846, 0.028797218576073647, 0.02225363813340664, 0.007670606020838022, 0.013934137299656868, -0.01975368894636631, 0.0038660401478409767, -0.012438267469406128, 0.009692422114312649, 0.013128143735229969, -0.01979467272758484, 0.004173411056399345, -0.01576470024883747, -0.0060791089199483395, -0.006721172481775284, -0.02565520629286766, 0.015969615429639816, 0.008708836510777473, 0.006789477076381445, 0.012083083391189575, -0.0006377941463142633, -0.002071336843073368, 0.0027407219167798758, 0.029289010912179947, 0.01931653916835785, 0.027950240299105644, 0.00036927172914147377, -0.003261544508859515, -0.016598017886281013, 0.0345621258020401, -0.0020730444230139256, 0.0077798934653401375, 0.012315318919718266, -0.0145762013271451, 0.0009357729577459395, -0.011038023047149181, -0.0015129467938095331, 0.003041262272745371, 0.018087057396769524, -0.003471581032499671, -0.003807981265708804, 0.008333160541951656, -0.0042178090661764145, -0.0005276530282571912, -0.032376378774642944, -0.01134539395570755, -0.006813383661210537, 0.02217167243361473, -0.013913646340370178, -0.0031266428995877504, -0.023988574743270874, -0.00019690934277605265, -0.020614327862858772, 0.0010843354975804687, -0.01381118968129158, -0.005741001572459936, -0.012786620296537876, -0.0363926887512207, 0.0026877857744693756, 0.004487611819058657, -0.010546229779720306, 0.012390454299747944, 0.01236996240913868, -0.02169354073703289, -0.014166373759508133, 0.033277999609708786, -0.018565189093351364, 0.01161178108304739, 0.01924823597073555, 0.014781114645302296, -0.015218264423310757, -0.00730859162285924, -0.011789373122155666, -0.01404342520982027, 0.017171775922179222, -0.021994080394506454, 0.0018852069042623043, -0.032895494252443314, 0.014904063194990158, 0.003667956916615367, 0.006728002801537514, -0.0009707791032269597, 0.007479353342205286, 0.007431540172547102, 0.002259174594655633, 0.012233353219926357, -0.02461697719991207, 0.013278413563966751, 0.03450748324394226, 0.00679972255602479, -0.00892741046845913, 0.0016410179669037461, 0.04051828756928444, 0.005778568796813488, -0.023045970126986504, 0.005884441081434488, 0.01460352260619402, -0.0030941981822252274, 0.017540620639920235, 0.024029556661844254, 0.013182787224650383, -0.019671723246574402, 0.0236060693860054, -0.018524207174777985, 0.03472605720162392, 0.011673255823552608, -0.00016147633141372353, 0.006499182432889938, 0.003116397187113762, -0.02622896432876587, -0.11945107579231262, -0.020108873024582863, -0.003804566105827689, 0.032813526690006256, 0.01114731002599001, 0.013729223981499672, -0.002322356216609478, -0.014262000098824501, 0.006174735724925995, 0.051146481186151505, -0.012779789976775646, -0.029944734647870064, -0.00691925548017025, 0.01579202339053154, 0.027922919020056725, 0.003804566105827689, 0.008094094693660736, -0.015969615429639816, -0.020955849438905716, 0.01874278113245964, -0.016174528747797012, 0.0043510026298463345, -0.0059937285259366035, 0.004634466953575611, 0.013906816020607948, 0.00935772992670536, -0.01922091282904148, 0.01631113700568676, 0.014999689534306526, 0.008517582900822163, 0.0007556196069344878, 0.002686078194528818, 0.0049657439813017845, -0.025026803836226463, -0.0077525717206299305, 0.009999793022871017, -0.012936891056597233, -0.008783970959484577, 0.0396166667342186, -0.002785119926556945, 0.011051683686673641, 0.012328979559242725, 0.029862768948078156, -0.04398816078901291, 0.010464264079928398, -0.00838780403137207, 0.003644050331786275, 0.01135222427546978, 0.012028439901769161, -0.028797218576073647, -0.002291619312018156, -0.009870014153420925, -0.03538178279995918, 7.812338299117982e-05, 0.04778589680790901, -0.026543166488409042, 0.010443773120641708, 0.0101500628516078, -0.004118767101317644, 0.020600667223334312, 0.003140303771942854, 0.004842795897275209, -0.009999793022871017, 0.05150166526436806, -0.015559786930680275, 0.00617815088480711, -0.024043217301368713, -0.00012422898726072162, 0.013899985700845718, -0.0314747579395771, -0.00580247538164258, 0.03251298889517784, -0.018537867814302444, 0.005010141991078854, -0.016078902408480644, 0.03142011538147926, -0.02277275174856186, -0.00958996545523405, 0.01359944511204958, -0.013981951400637627, -0.011782542802393436, -0.012226522900164127, 0.013961459510028362, -0.04387887194752693, 0.01237679272890091, -0.01059404294937849, 0.007465692237019539, -0.015559786930680275, 0.0072061349637806416, -0.010327654890716076, 0.006150829140096903, 0.00866785366088152, 0.014316643588244915, -0.0216388963162899, -0.007001221179962158, 0.012185540050268173, 0.0014113436918705702, -0.006823629140853882, 0.014180034399032593, -0.008018959313631058, -0.013100821524858475, -0.01684391312301159, -0.07130999863147736, 0.010921904817223549, 0.0017451824387535453, -0.01974002830684185, 0.0005643667536787689, 0.010874091647565365, 0.007424709852784872, -0.016461407765746117, -0.026830045506358147, -0.003910438157618046, -0.012185540050268173, 0.04254010319709778, -0.01458986196666956, -0.017390349879860878, -0.020040567964315414, -0.022895701229572296, 0.016461407765746117, 0.007875519804656506, 0.010095419362187386, -0.003328141523525119, 0.01637944206595421, 0.01669364422559738, 0.0016478484030812979, 0.007738910615444183, -0.006335251498967409, -0.004600314423441887, -0.013141804374754429, 0.0008307546377182007, -0.02525904029607773, -0.0055121807381510735, 0.0026929087471216917, -0.0034391365479677916, -0.003476704005151987, 0.023496780544519424, -0.015327551402151585, -0.01182352565228939, 0.014016102999448776, 0.01681659184396267, -0.01381802000105381, -0.010901413857936859, -0.0014523265417665243, -0.024794569239020348, 0.004422722849994898, 0.0054575372487306595, 0.011755221523344517, 0.014972367323935032, -0.01881108619272709, 0.028032205998897552, -0.0071583217941224575, -0.006301098968833685, 0.005034048575907946, 0.0071378303691744804, -0.010416450910270214, -0.02569619007408619, -0.01138637587428093, -0.0231825802475214, 0.0118030346930027, 0.005706849042326212, -0.0020286464132368565, -0.018496884033083916, 0.002824394963681698, -0.01774553395807743, 0.009692422114312649, -0.004654958378523588, 0.016598017886281013, -0.015136298723518848, -0.004627636633813381, -0.0042690373957157135, 0.01258853729814291, -0.04344172403216362, -0.017062488943338394, 0.010273011401295662, 0.021078798919916153, 0.016078902408480644, 0.0012047223281115294, -0.001366945798508823, -0.009323577396571636, -0.0015932046808302402, 0.004661788698285818, 0.021433982998132706, -0.006195227149873972, 0.017991431057453156, -0.03538178279995918, 0.016065241768956184, 0.013619937002658844, 0.014398609288036823, -0.02766336128115654, 0.007793554570525885, 0.011762051843106747, -0.0028278103563934565, -0.0015616138698533177, 0.021065138280391693, 0.024425724521279335, -0.0042212242260575294, -0.008080434054136276, 0.0036782026290893555, 0.004207563120871782, -0.008114585652947426, 0.029398297891020775, 0.022827396169304848, 0.003835303010419011, 0.0035825760569423437, -0.013654088601469994, -0.026775401085615158, 0.006915840320289135, 0.030272597447037697, 0.0072061349637806416, -0.0023411400616168976, -0.020067891106009483, 0.004146088846027851, 0.01730838418006897, 0.005156997125595808, -0.02659780904650688, 0.016106223687529564, -0.021051475778222084, 0.014699148945510387, -0.027799971401691437, -0.02364705130457878, -0.02363339066505432, 0.02811417169868946, 0.00730176130309701, 0.01280711218714714, 0.012991534546017647, -0.0103618074208498, 0.003020770847797394, -0.006147413514554501, 0.026570487767457962, -0.02773166634142399, 0.0075339968316257, 0.006803137715905905, 0.015450499951839447, 0.0006719464436173439, -0.023483119904994965, 0.023305527865886688, -0.030409205704927444, 0.010710161179304123, 0.014630844816565514, 0.030791712924838066, 0.01303934771567583, 0.034862667322158813, 0.012247013859450817, -0.020095212385058403, 0.009548982605338097, -0.0006471860688179731, -0.007356405258178711, 0.013141804374754429, 0.015805684030056, -0.0376494936645031, -0.014412269927561283, 0.0150679936632514, -0.012479249387979507, -0.004084615036845207, -0.015983276069164276, -0.009521660394966602, 0.002522147260606289, -0.011106327176094055, 0.04109204560518265, -0.015136298723518848, 0.007226626388728619, 0.013210109435021877, 0.018387597054243088, 0.02822345867753029, 0.006963653489947319, -0.008339990861713886, -0.020013246685266495, 0.012861755676567554, 0.01780017837882042, -0.02132469415664673, -0.02266346476972103, 0.015996936708688736, 0.02868792973458767, -0.018059736117720604, -0.018414918333292007, 0.01781383901834488, -0.029316332191228867, -0.003241053083911538, -0.00457982299849391, -0.0020286464132368565, 0.02081924118101597, -0.009863183833658695, 0.00517407339066267, -0.03417962044477463, -0.02917972393333912, 0.029835447669029236, 0.004180241376161575, -0.006823629140853882, -0.008053111843764782, -0.014863080345094204]" +22,mocha,"[-0.012487593106925488, -0.026140518486499786, -0.0033453640062361956, -0.03967425972223282, -0.008647293783724308, 0.010229761712253094, -0.020883280783891678, -0.016857588663697243, -0.0027080730069428682, -0.020750857889652252, 0.016301406547427177, 0.0065847886726260185, 0.0046944343484938145, -0.020817069336771965, -0.026921819895505905, -0.00695888651534915, 0.037131719291210175, 0.013374834321439266, 0.01967822201550007, -0.012315441854298115, -0.008647293783724308, 0.02362445928156376, 0.0011554002994671464, -0.020340342074632645, -0.008713506162166595, 0.010878640227019787, 0.01503013540059328, -0.021174613386392593, -0.007071447093039751, 0.005184403620660305, 0.04857316240668297, -0.007203871384263039, -0.025875670835375786, -0.03159639239311218, -0.023717157542705536, -0.018406949937343597, -0.0025425427593290806, -0.00545918382704258, 0.00021767211728729308, -0.0023571490310132504, 0.007025098893791437, -0.002201550640165806, 0.0034628903958946466, -0.029980817809700966, -0.016778133809566498, 0.026670213788747787, 0.006485470570623875, -0.0030440990813076496, -0.02831227332353592, 0.012785547412931919, 0.012302199378609657, 0.014500439167022705, -0.00926306564360857, -0.008283128030598164, 0.0024200505577027798, 0.013811834156513214, -0.02857712097465992, 0.013758864253759384, 0.007647491991519928, -0.020538978278636932, -0.00372442789375782, 0.020194675773382187, -0.03257633000612259, 0.010309216566383839, 0.02094949409365654, -0.008965112268924713, -0.01958552561700344, 0.017069466412067413, -0.0022992135491222143, -0.014871226623654366, 0.012368411757051945, 0.022671006619930267, 0.0071111745201051235, -0.0056710620410740376, 0.033768147230148315, 0.004830169025808573, -0.025518124923110008, 0.01921473816037178, 0.010084095411002636, -0.015480377711355686, 0.032496873289346695, -0.02399524673819542, -0.01747998222708702, 0.024551428854465485, 0.005826660431921482, 0.004826858639717102, 0.006094819400459528, -0.0004506557888817042, -0.0024995049461722374, -0.0036847006995230913, 0.01610277034342289, -0.0027775955386459827, 0.019413374364376068, 0.007806400768458843, -0.018764495849609375, 0.012136668898165226, 0.011600351892411709, 0.030722392722964287, 0.01741376891732216, 0.003966101910918951, -0.014262075535953045, 0.012653123587369919, -0.008177188225090504, -0.01508310530334711, -0.021187856793403625, -0.020075494423508644, 0.012567047029733658, -0.003472822019830346, 0.02284315787255764, -0.009388868696987629, 0.0007117795757949352, 0.04136928915977478, 0.02611403353512287, -0.03337087482213974, -0.032602813094854355, -0.012388275004923344, 0.006505334284156561, -0.018459919840097427, 0.0232536718249321, -0.0243130661547184, -0.01457989402115345, 0.018605586141347885, 0.017294587567448616, -0.019135283306241035, 0.02273721806704998, 0.00792558304965496, 0.013268895447254181, 0.0004783820768352598, -0.0021303726825863123, -0.0028537395410239697, 0.024087944999337196, -0.010732973925769329, 0.017546193674206734, 0.00626366026699543, -0.02379661239683628, 0.02553136646747589, -0.042084380984306335, -0.004558699671179056, -0.018989617004990578, -0.00707806833088398, 0.0026104100979864597, 0.01847316324710846, 0.013772106729447842, 0.0010287697659805417, -0.014619621448218822, 0.01481825765222311, 0.026590760797262192, 0.006472228094935417, 0.004446139093488455, -0.0091836117208004, 0.02195591665804386, -0.02815336361527443, 0.0076342495158314705, 0.0057505168952047825, 0.0005843213875778019, 0.013758864253759384, 0.0023621148429811, 0.028391728177666664, -0.024882489815354347, 0.011746018193662167, -0.0156392864882946, -0.007184007670730352, 0.007422370836138725, -0.007481961976736784, 0.021558644250035286, 0.0275706984102726, 0.024908974766731262, -0.011322260834276676, 0.017665375024080276, 0.006303387228399515, 0.00018663522496353835, 0.0340065099298954, -0.022286977618932724, 0.0356750525534153, 0.0107925646007061, 0.036760929971933365, 0.004624912049621344, -0.0009998020250350237, -0.021611614152789116, -0.020300615578889847, -0.015520105138421059, 0.01679137721657753, 0.02710721455514431, 0.015056620351970196, -0.0034595797769725323, -0.016963528469204903, 0.002120441058650613, -0.014619621448218822, 0.007554795127362013, -0.01489771157503128, -0.0038270566146820784, 0.011309018358588219, 0.00831623375415802, 0.0006054264376871288, -0.692419171333313, -0.025610821321606636, 0.005078464280813932, -0.011759260669350624, 0.010004641488194466, 0.024882489815354347, 0.015718741342425346, 0.0005710789700970054, 0.0031417617574334145, -0.020221160724759102, -0.01184533629566431, 0.02362445928156376, 0.009779520332813263, -0.018711525946855545, -0.00751506770029664, -0.025226792320609093, 0.0036383522674441338, -0.037396568804979324, -0.01452692411839962, 0.00936900544911623, -0.0264715775847435, 0.012143290601670742, 5.669406891684048e-05, 0.007481961976736784, 0.006694038398563862, -0.019969554618000984, 0.016433831304311752, -0.016063043847680092, -0.01879098080098629, 0.013798591680824757, -0.03257633000612259, 0.017612405121326447, 0.010540958493947983, -0.01626168005168438, 0.050453584641218185, -0.004019071348011494, -0.014142894186079502, 0.03956832364201546, -0.010593928396701813, 0.022075098007917404, -0.02788851596415043, -0.005522085353732109, 0.03220554068684578, 0.0006857085390947759, -0.004783820826560259, 0.01086539775133133, 0.03517184033989906, -0.020433038473129272, -0.005455872975289822, -0.005859766621142626, 0.02362445928156376, 0.0025855805724859238, -0.005012252368032932, -0.00025946847745217383, -0.013546985574066639, -0.002310800598934293, 0.0197311919182539, -0.014924196526408195, -0.01842019334435463, 0.026604002341628075, -0.00813084002584219, 0.005495600402355194, 0.001994638005271554, -0.02188970521092415, -0.0024829518515616655, 0.0034198525827378035, -0.026868849992752075, 0.010726352222263813, -0.006147788837552071, -0.007356158923357725, 0.007918961346149445, -0.00719725014641881, -0.013772106729447842, -0.010216519236564636, 0.021863220259547234, 0.021121645346283913, 0.009322657249867916, -0.005469115450978279, 0.008826066739857197, -0.0076342495158314705, 0.024432247504591942, 0.0007386782090179622, -0.01452692411839962, 0.0034264735877513885, 0.053552307188510895, -0.02084355428814888, -0.04295837879180908, -0.009885459206998348, 0.015202287584543228, 0.007177386432886124, 0.008786339312791824, 0.016884073615074158, 0.007971931248903275, -0.004545457195490599, 0.001356519409455359, 0.00013201027468312532, -0.027756093069911003, 0.003956170286983252, 0.011150109581649303, -0.03374166041612625, -0.021717553958296776, 0.027120456099510193, 0.014738802798092365, 0.009024702943861485, 0.016778133809566498, 0.024723580107092857, -0.02569027617573738, 0.03903862461447716, 0.03464214503765106, -0.036496084183454514, 0.007018477655947208, -0.006425879430025816, 0.003883336903527379, -6.352218770189211e-05, 0.015440650284290314, -0.03469511494040489, 0.0033188790548592806, -0.009885459206998348, 0.012282335199415684, -0.017387283965945244, 0.002456467133015394, -0.011904926970601082, 0.004072041250765324, 0.011904926970601082, 0.0002853325568139553, 0.006101440638303757, -0.002770974300801754, -0.030828330665826797, -0.0275706984102726, -0.0011098794639110565, 0.0070582046173512936, 0.02852415107190609, 0.0024647435639053583, -0.005995501298457384, 0.010838912799954414, 0.004565320909023285, 0.0024647435639053583, -0.013335106894373894, 0.0017430322477594018, -0.005677683278918266, -0.011785745620727539, -0.0012075422564521432, -0.004383238032460213, 0.017148921266198158, 0.015970347449183464, -0.025504881516098976, -0.01868504099547863, -0.009223339147865772, -0.019188253208994865, 0.029980817809700966, 0.015414165332913399, -0.007885855622589588, -0.01969146355986595, 0.00403893506154418, 0.007720325142145157, -0.014646105468273163, -0.018671799451112747, 0.0023852891754359007, -0.0017264792695641518, 0.010832292027771473, 0.0005731480778194964, 0.020194675773382187, -0.031146150082349777, -0.002021122956648469, 0.011064033955335617, -0.02406146004796028, -0.00714428024366498, 0.020433038473129272, -0.015758467838168144, -0.030431058257818222, -0.02505464106798172, -0.021651340648531914, -0.013401319272816181, 0.009911944158375263, 0.005316827911883593, 0.002396876225247979, -0.04343510791659355, -0.010613791644573212, -0.023465551435947418, -0.008058006875216961, 0.0060319178737699986, 0.006899295840412378, -0.02188970521092415, -0.0037045644130557775, 0.02873603068292141, 0.007051583379507065, 0.020274130627512932, 0.020883280783891678, -0.0313580259680748, 0.015374438837170601, 0.016129255294799805, -0.0014252144610509276, 0.0013076880713924766, 0.004763957113027573, 0.020393311977386475, -0.018605586141347885, 0.0023819785565137863, 0.00396279152482748, 0.008210294879972935, 0.023571491241455078, 0.02804742567241192, 0.0047242296859622, 0.016539771109819412, -0.011944654397666454, 0.011613594368100166, -0.0643051415681839, 0.0037343597505241632, -0.025518124923110008, 0.022710733115673065, 0.013705894351005554, 0.004677881486713886, -0.0356750525534153, -0.028073910623788834, -0.0028620159719139338, 0.01758592016994953, 0.017665375024080276, 0.0028024250641465187, 0.02363770268857479, -0.00981262605637312, -0.01957228220999241, 0.0055816760286688805, -0.01339469850063324, 0.0156790129840374, -0.027703123167157173, -0.004240882117301226, -0.008455279283225536, -0.0014210761291906238, 0.020764099434018135, 0.00099069788120687, 0.0011587109183892608, 0.007773295044898987, 0.020618433132767677, -0.007349537685513496, 0.012090320698916912, -0.015440650284290314, -0.026339154690504074, -0.011838714592158794, -0.023121248930692673, 0.04319674149155617, 0.0036847006995230913, -0.012315441854298115, 0.031040210276842117, 0.032337967306375504, 0.0009824213339015841, 0.012010865844786167, -0.00021456842659972608, 0.006813220214098692, -0.004187912214547396, 0.013196062296628952, 0.0004032727738376707, -0.018499648198485374, 0.006495402194559574, -0.013189440593123436, 0.006991992704570293, 0.025398943573236465, -0.02257831022143364, 0.033609237521886826, 0.02342582307755947, 0.012302199378609657, 0.03159639239311218, -0.0019300812855362892, 0.0025822699535638094, 0.003171557327732444, -0.013381456024944782, -0.0003885819751303643, -0.0076607344672083855, 0.005469115450978279, 0.003315568435937166, -0.008620808832347393, -0.011931411921977997, 0.011342124082148075, 0.014420985244214535, -0.023505277931690216, 0.002924917498603463, -0.0015419131377711892, -0.0045918058604002, 0.012262471951544285, 0.008104355074465275, 0.024127671495079994, -0.0060848877765238285, -0.013772106729447842, -0.0261670034378767, 0.012745819985866547, -0.008455279283225536, 0.0048401011154055595, -0.005485668312758207, -0.013745621778070927, -0.019453100860118866, -0.019439859315752983, -0.0034860644955188036, 0.002461432944983244, 0.009931807406246662, -0.004763957113027573, -0.02241940051317215, -0.026802638545632362, -0.0019400131423026323, -0.008859172463417053, -0.009580884128808975, 0.005604850128293037, 0.007905718870460987, 0.000473830004921183, 0.001794346608221531, -0.008150703273713589, -0.010580685921013355, 0.012613396160304546, -0.0038105035200715065, -0.004164738114923239, -0.012633259408175945, -0.006667553447186947, -0.005843213759362698, -0.008693641982972622, 0.0005019701202400029, 0.0060848877765238285, -0.013957500457763672, -0.006554993335157633, 0.014420985244214535, 0.005310206674039364, -0.029239242896437645, 0.02974245324730873, 0.011885063722729683, 0.004750714637339115, -0.02388930879533291, -0.018870435655117035, -0.010574065148830414, 0.03646959736943245, 0.04327619820833206, 0.0072767045348882675, 0.01585116609930992, 0.009931807406246662, 0.005128123331815004, -0.023571491241455078, -0.0036515947431325912, 0.02531948871910572, 0.0003563036152627319, -0.006624515634030104, 0.00756803760305047, 0.0023621148429811, -0.00521088857203722, 0.027703123167157173, -0.012719335034489632, 0.002285971073433757, 0.005191024858504534, 0.021439462900161743, -0.007025098893791437, 0.001560949138365686, -0.018287768587470055, 0.004969214554876089, -0.015904134139418602, 0.01260677445679903, 0.007713703904300928, 0.017612405121326447, 0.02841821312904358, -0.0007684736046940088, -0.02831227332353592, 0.014725560322403908, -0.004866585601121187, 0.011209700256586075, -0.0070582046173512936, 0.002136993920430541, 0.01774482987821102, 0.009302793070673943, 0.012381653301417828, 0.0028487734962254763, 0.007879233919084072, 0.00016604740812908858, -0.0041978443041443825, -0.015122832730412483, 0.0035622084978967905, 0.018393708392977715, -0.016089528799057007, -0.012547183781862259, 0.032073117792606354, -0.0005036254297010601, -0.004393169656395912, 0.03421838954091072, 0.010547580197453499, -0.022975582629442215, -0.014566651545464993, 0.0008748267428018153, 0.02710721455514431, -0.018618829548358917, 0.018499648198485374, -0.013043774291872978, -0.004356753081083298, -0.04121037945151329, -0.02137324959039688, -0.009713307954370975, -0.008673778735101223, 0.0004907968104816973, -0.021121645346283913, -0.006680795922875404, -0.012785547412931919, -0.02547839842736721, 0.005651198793202639, -0.020658159628510475, -0.0007047445396892726, -0.007879233919084072, -0.014924196526408195, 0.022988824173808098, 0.03556911274790764, 0.003299015574157238, -0.017440253868699074, 0.027650153264403343, 0.026272941380739212, 0.001185195753350854, 0.004449449945241213, -0.014315045438706875, -0.016778133809566498, -0.011163352057337761, 0.004542146809399128, 0.0056975469924509525, -0.012600153684616089, -0.018910162150859833, 0.011719533242285252, 0.00633980380371213, 0.0028024250641465187, 0.0021071985829621553, -0.02000928297638893, -0.015268499031662941, -0.005184403620660305, 0.02537245862185955, 0.01234192680567503, -0.02374364249408245, -0.012441244907677174, 0.02263128012418747, -0.003274186048656702, -0.009839111007750034, 0.0002838841755874455, 0.00279580382630229, -0.007587901316583157, -0.0006190827116370201, 0.006879432126879692, -0.03488050773739815, -0.0027676636818796396, 0.026696698740124702, -0.018115617334842682, 0.020287372171878815, -0.0016428865492343903, 0.003883336903527379, 0.013017289340496063, -0.016407346352934837, 0.015599559061229229, -0.01615574024617672, -0.0021800317335873842, 0.020565463230013847, -0.031967177987098694, 0.02700127474963665, 0.02310800552368164, 0.008786339312791824, -0.004065420012921095, 0.008243400603532791, -0.006174273788928986, 0.016500042751431465, -0.004396480042487383, 0.005333380773663521, 0.020817069336771965, -0.023650944232940674, -0.033079542219638824, -0.04234922677278519, -0.030563483014702797, -0.001979740336537361, 0.014685832895338535, -0.007289947010576725, -0.004022382199764252, -0.014778530225157738, 0.01879098080098629, 0.0046745711006224155, -0.01783752627670765, 0.008309612981975079, -0.027438273653388023, -0.002756076632067561, -0.0019664978608489037, -0.014699075371026993, 0.026656972244381905, -0.016248436644673347, 0.03978019952774048, -0.012997426092624664, 0.015506862662732601, -0.004588495008647442, -0.03268226981163025, -0.040283411741256714, -0.017387283965945244, 0.0245779138058424, 0.029186272993683815, 0.017400527372956276, 0.005287032574415207, 0.02015494927763939, -0.006233864463865757, -4.8133057134691626e-05, 0.0005181093001738191, -0.008746611885726452, 0.006157720927149057, -0.025081126019358635, 0.027385305613279343, 0.034085962921381, 0.018764495849609375, 0.004518972709774971, -0.0008206156198866665, -0.007422370836138725, 0.021280553191900253, -0.025134094059467316, 0.002782561583444476, -0.013825076632201672, -0.012752440758049488, 0.0027527660131454468, 0.008230158127844334, -0.012116805650293827, 0.0012100252788513899, 0.021081916987895966, -0.01165994256734848, 0.032496873289346695, 0.010276110842823982, 0.012209502048790455, 0.013149713166058064, 0.029504090547561646, 0.0014127996983006597, 0.00446269242092967, 0.00019698085088748485, -0.018181828781962395, 0.0037873294204473495, -0.03183475509285927, 0.012070457451045513, 0.019916584715247154, -0.00015694324974901974, 0.004399790894240141, 0.018248042091727257, 0.029504090547561646, -0.008024901151657104, -0.005108259618282318, 0.016486801207065582, 0.012110183946788311, 0.007369401399046183, 0.015175802633166313, -0.026458336040377617, -0.02900087833404541, -0.03501293435692787, -0.01742701232433319, -0.03273523971438408, 0.012037350796163082, 0.011275912635028362, -0.027173426002264023, 0.01705622486770153, -0.007766673807054758, 0.007117795757949352, 0.003499306971207261, 0.0030275459866970778, 0.03583396226167679, -0.010613791644573212, 0.016976770013570786, 0.001391280791722238, 0.00106932467315346, 0.004230950027704239, 0.010885260999202728, 0.006482159718871117, 0.015215529128909111, 0.016195468604564667, 0.03575450927019119, 0.01668543741106987, 0.0011587109183892608, 0.006786735262721777, 0.0055287061259150505, -0.008567839860916138, -0.019413374364376068, 0.009825868532061577, 0.013957500457763672, 0.002837186446413398, -0.026458336040377617, -0.006131235975772142, -0.015281741507351398, 0.005575054790824652, -0.013182819820940495, 0.018539374694228172, -0.012739199213683605, -0.019453100860118866, -0.012149911373853683, 0.023558247834444046, -0.0156790129840374, -0.0004659673140849918, 0.015599559061229229, -0.02015494927763939, 0.0008533078362233937, 0.008773096837103367, -0.007978552021086216, 0.010031125508248806, 0.003740980988368392, 0.016592741012573242, -0.0004667949688155204, -0.0011388473212718964, -0.004237571265548468, 0.029186272993683815, -0.008673778735101223, 0.002588891191408038, 0.0007113657193258405, 0.026564275845885277, -0.001627161167562008, 0.00019925688684452325, -0.018618829548358917, -0.00887241493910551, 0.0199563130736351, -0.00811097677797079, -0.008826066739857197, -0.02010197937488556, -0.004899691790342331, 0.007289947010576725, 0.002648482099175453, -0.001018010312691331, -0.018751252442598343, 0.006538440007716417, -0.000576044840272516, -0.003199697472155094, -0.018883677199482918, -0.0014194208197295666, -0.00213864934630692, 0.0032692200038582087, -0.0275706984102726, -0.0215851292014122, -0.006687417160719633, 0.0181023757904768, 0.0006877777050249279, -0.00147404579911381, -0.007475340738892555, 0.02390255033969879, -0.02084355428814888, 0.02953057549893856, -0.031040210276842117, -0.021518917754292488, -0.009527914226055145, 0.019294191151857376, -0.010726352222263813, -0.016619225963950157, 0.015917377546429634, -0.013096744194626808, -0.026921819895505905, -0.010958094149827957, -0.006680795922875404, 0.0022760392166674137, 0.016407346352934837, -0.01310336496680975, 0.016619225963950157, 0.01815534383058548, 0.009832489304244518, -0.02057870663702488, 0.006952265277504921, 0.010507852770388126, -0.02778257615864277, -0.0016081251669675112, 0.018340738490223885, -0.013182819820940495, -0.012408138252794743, 0.0035555872600525618, -0.005598228890448809, 9.083465556614101e-05, -0.02963651530444622, -0.00844865757972002, -0.002845462877303362, 0.03858838230371475, -0.005621402990072966, -0.005303585436195135, -0.006998613942414522, 0.00020008454157505184, -0.006601341534405947, 0.00664437934756279, -0.022829916328191757, -0.016778133809566498, -0.002698141150176525, 0.027491243556141853, -0.02268424816429615, 0.014871226623654366, -0.018406949937343597, -0.02020791918039322, -0.010673382319509983, -0.03464214503765106, -0.012461108155548573, -0.021187856793403625, -0.03874729201197624, 0.015202287584543228, 0.014672590419650078, -0.02153215929865837, -0.025240033864974976, 0.013487394899129868, -0.03604584187269211, -0.017334315925836563, -0.022962339222431183, -0.009680202230811119, 0.009706687182188034, -0.021545400843024254, -0.0010271144565194845, 0.01620871014893055, -0.004134942777454853, 0.0021552022080868483, -0.016063043847680092, -0.002529300283640623, 0.013546985574066639, -0.0351453572511673, 0.0025177132338285446, -0.007707082666456699, -0.026617245748639107, -0.016036558896303177, 0.034085962921381, 0.022181037813425064, 0.010766079649329185, 0.013096744194626808, -0.0109249884262681, -0.006336493417620659, -0.00875985436141491, -0.0009484876645728946, 0.0010684969602152705, -0.02406146004796028, 0.02825930342078209, -0.014076681807637215, -0.026087548583745956, -0.002088990295305848, 0.011361988261342049, -0.0073031894862651825, -0.013282137922942638, 0.0012257506605237722, -0.0029431257862597704, 0.01481825765222311, -0.012507456354796886, 0.011249427683651447, -0.008627430535852909, -0.006372909992933273, 0.007826264947652817, -0.0039032003842294216, -0.0009112433763220906, 0.012626638635993004, -0.010468125343322754, -0.003280807286500931, 0.0014368015108630061, 0.006521887145936489, -0.02130703814327717, -0.02204861305654049, 0.018751252442598343, -0.005071843042969704, -0.003588693216443062, -0.016500042751431465, 0.019347161054611206, -0.006806598976254463, 0.0036880113184452057, -0.0029845081735402346, -0.01303053181618452, 0.008640673011541367, 0.013487394899129868, 0.027305850759148598, -0.005674372892826796, 0.013335106894373894, -0.0072502195835113525, 0.002645171480253339, -0.0046712602488696575, -0.0016321270959451795, -0.002070782007649541, -0.0197311919182539, -0.007025098893791437, 0.004793752450495958, -0.015453892759978771, -0.014910954050719738, 6.119441968621686e-05, -0.009428596124053001, 0.005323449149727821, 0.008024901151657104, 0.18666501343250275, 0.014910954050719738, -0.01742701232433319, 0.06345763057470322, -0.004333578981459141, 0.018340738490223885, 0.019439859315752983, 0.004207775928080082, 0.014182621613144875, 0.030881300568580627, 0.005618092603981495, 0.01203073002398014, -0.014500439167022705, 0.006624515634030104, 0.0007573003531433642, -0.003936306573450565, -0.01785076968371868, -0.028497667983174324, -0.015599559061229229, -0.03554262965917587, -0.0031914208084344864, -0.006793356500566006, -0.014407742768526077, -0.012586911208927631, 0.002797459252178669, 0.01397074293345213, 0.015665771439671516, -0.0017811042489483953, 0.015242014080286026, -0.000935245247092098, -0.008329476229846478, 0.007150901481509209, -0.002504470758140087, -0.0021502363961189985, -0.017612405121326447, 0.00478713121265173, -0.011534139513969421, -0.009018081240355968, 0.03262929990887642, 0.01967822201550007, -0.023862823843955994, 0.012209502048790455, 0.018115617334842682, 0.002820633351802826, -0.015453892759978771, 0.002628618385642767, -0.008144082501530647, -0.0005276273004710674, -0.0010974648175761104, 0.005263858009129763, -0.012295577675104141, 0.01631464995443821, 0.04200492426753044, 0.018923403695225716, -0.0026617245748639107, -0.008428794331848621, -0.01087201852351427, 0.009660338051617146, -0.012401517480611801, -0.007528310175985098, -0.03437729552388191, 0.0199563130736351, -0.004270677454769611, 0.037449534982442856, -0.02041979692876339, -0.01679137721657753, -0.015202287584543228, -0.024829519912600517, -0.027544213458895683, -0.01508310530334711, -0.008547975681722164, -0.018486404791474342, 0.01574522629380226, 0.0021005773451179266, 0.010746216401457787, -0.03509238734841347, 0.011494412086904049, 0.027544213458895683, -0.014050197787582874, 0.030431058257818222, 0.002011191099882126, -0.011798988096415997, 0.003287428291514516, 0.010176792740821838, -0.016937043517827988, -0.03257633000612259, 0.015930619090795517, 0.007005235180258751, 0.0034827538765966892, -0.007621007040143013, -0.011328882537782192, -0.021518917754292488, -0.0018257973715662956, 0.0002565717149991542, -0.006127925589680672, 0.023982005193829536, -0.00855459738522768, 0.03342384472489357, -0.0054161460138857365, 0.010547580197453499, -0.040124502032995224, -0.017175406217575073, 0.012931213714182377, 0.01820831373333931, 0.004800373688340187, -0.009918564930558205, -0.005200956482440233, -0.006879432126879692, 0.015824681147933006, -0.01732107251882553, -0.017307830974459648, -0.02390255033969879, -0.00596239510923624, -0.010395292192697525, -0.003499306971207261, 0.005121502093970776, -0.020538978278636932, -0.02167782559990883, -0.00514467665925622, 0.010514473542571068, 0.024233611300587654, -0.029557060450315475, -0.0093160355463624, 0.011163352057337761, -0.016036558896303177, -0.020989220589399338, 0.007342916447669268, 0.006786735262721777, 0.008137460798025131, -0.03967425972223282, 0.015242014080286026, -0.012136668898165226, 0.033079542219638824, 0.00032588743488304317, -0.007428992073982954, 0.003558897878974676, 0.012302199378609657, -0.0016337824054062366, 0.0029927848372608423, -0.0050321160815656185, -0.014977166429162025, -0.006266970653086901, 0.008514869958162308, -0.00025181271485053003, -0.008435415104031563, -0.02478979155421257, -0.016486801207065582, 0.017652133479714394, -0.026988033205270767, -0.016672194004058838, -0.010593928396701813, -0.031066695228219032, 0.004085283726453781, -0.02331988513469696, 0.03525129705667496, -0.01569225639104843, -0.004869896452873945, -0.026988033205270767, -0.002044297056272626, -0.007210492622107267, -0.025200307369232178, -0.004499108996242285, 0.008481764234602451, -0.016764892265200615, -0.030457543209195137, 0.015546590089797974, -0.17183351516723633, 0.002034365199506283, 0.014010470360517502, -0.024193882942199707, -0.008177188225090504, -0.008799581788480282, 0.027252880856394768, 0.00012207847612444311, -0.012858380563557148, -0.008600945584475994, 0.0021849977783858776, 0.0038469203282147646, -0.01289810799062252, 0.006743697449564934, 0.013328486122190952, 0.02199564315378666, -0.0027891825884580612, -0.010176792740821838, 0.006313319317996502, 0.009455081075429916, 0.03935644403100014, -0.02199564315378666, -0.004105147439986467, -0.011600351892411709, 0.012944456189870834, 0.009455081075429916, -0.011275912635028362, 0.019135283306241035, -0.011587109416723251, -0.007124416995793581, -0.03604584187269211, 0.002770974300801754, 0.018870435655117035, 0.024087944999337196, 0.017718344926834106, 0.009508050978183746, -0.0015054965624585748, 0.005058600567281246, 0.00110243062954396, 0.0091836117208004, -0.0032841176725924015, 0.011951275169849396, 0.016870830208063126, 0.0029414703603833914, 0.0012911349767819047, 0.012202881276607513, 0.025677034631371498, 0.007733567617833614, 0.014142894186079502, 0.0032030080910772085, 0.02611403353512287, -0.041660621762275696, 0.004790442064404488, 0.007356158923357725, 0.009541156701743603, 0.024392519146203995, 0.0030589967500418425, 0.013546985574066639, -0.00521088857203722, -0.01622195355594158, -0.00602529663592577, -0.03821759670972824, -0.0009733171900734305, -0.0076872194185853004, -0.018022920936346054, -0.033450327813625336, -0.012752440758049488, 0.011117003858089447, -0.009719929657876492, -0.00471098767593503, -0.02126731164753437, 0.004217707552015781, 0.010441640391945839, -0.009428596124053001, 0.0199960395693779, 0.026935063302516937, 0.0035291023086756468, 0.016010073944926262, 0.016923800110816956, -0.005306895822286606, -0.030457543209195137, 0.01967822201550007, -0.010117201134562492, 0.018075890839099884, 0.008336097002029419, 0.010487988591194153, 0.0008317889296449721, -0.009104156866669655, 0.0008202018216252327, -0.021333523094654083, 0.01073959469795227, -0.026709942147135735, 0.030536998063325882, -0.011964517645537853, 0.004512351471930742, 0.00022284493024926633, -0.005267168860882521, 0.013494016602635384, 9.098984446609393e-05, -0.01569225639104843, 0.006703970488160849, -0.0027891825884580612, -0.016354376450181007, 0.022657765075564384, 0.011143488809466362, 0.02878900058567524, 0.01783752627670765, 0.023505277931690216, 0.025597579777240753, -0.0020972667261958122, -0.028020940721035004, 0.01831425353884697, 0.02604782208800316, 0.018963132053613663, -0.009004838764667511, 0.020115220919251442, 0.01652652770280838, -0.011044170707464218, 0.015308226458728313, 0.0035456554032862186, 0.015957104042172432, -0.017453497275710106, -0.006925780791789293, 0.001928425976075232, -0.004138253163546324, -0.011077276431024075, -0.08888305723667145, -0.036390144377946854, -0.0010933264857158065, -0.006753629073500633, -0.019929828122258186, 0.004300472792237997, 0.007554795127362013, 0.03572802245616913, -0.020075494423508644, 0.03493347764015198, -0.012070457451045513, -0.011984381824731827, 0.012533941306173801, 0.017969951033592224, 0.03525129705667496, -0.013904530555009842, 0.006905917078256607, 0.015559832565486431, -0.022141309455037117, 0.0021684446837753057, -0.023650944232940674, -0.009733171202242374, -0.017148921266198158, 0.0006948127411305904, -0.009170369245111942, 0.01894988864660263, -0.013864804059267044, 0.015983588993549347, 0.02668345719575882, 0.0248427614569664, 0.0043104044161736965, 0.004624912049621344, 0.022922612726688385, -0.02116137184202671, -0.017771314829587936, 0.012778925709426403, 0.005128123331815004, -0.012428002431988716, 0.028921423479914665, -0.010560822673141956, -0.010938230901956558, 0.014116409234702587, -0.0072502195835113525, -0.017122436314821243, -0.012110183946788311, 0.0017248239601030946, -0.006627826485782862, 0.015268499031662941, 0.00053466233657673, -0.03477456793189049, 0.016433831304311752, 0.017969951033592224, -0.0018241420621052384, -0.023756884038448334, 0.026855608448386192, -0.020724372938275337, 0.003366882912814617, 0.006485470570623875, -0.005303585436195135, 0.00043079216266050935, 0.0016362653113901615, 0.0015187389217317104, -0.00632987217977643, 0.01746673882007599, 0.011309018358588219, -0.008024901151657104, -0.011752638965845108, -0.012997426092624664, 0.01562604494392872, -0.0007440579356625676, 0.010560822673141956, 0.01785076968371868, -0.022988824173808098, 0.01513607520610094, -0.0384029895067215, -0.004267366603016853, -0.02416739985346794, -0.00632987217977643, -0.0022495544981211424, -0.027491243556141853, -0.02257831022143364, -0.013494016602635384, 0.012454487383365631, -0.013626440428197384, 0.016990013420581818, 0.02541218511760235, 0.004439517855644226, 0.003780708182603121, -0.009402111172676086, -0.020512493327260017, -0.0072502195835113525, 0.005753827281296253, 0.01339469850063324, -0.04184601828455925, -0.004909623879939318, 0.010699867270886898, 0.006452364381402731, -0.005035426467657089, 0.018751252442598343, -0.004876517690718174, 0.00020205021428409964, -0.018605586141347885, -0.04857316240668297, 0.018512889742851257, 0.008455279283225536, -0.013573470525443554, 0.011851957067847252, -0.004790442064404488, -0.0008607566705904901, -0.010454882867634296, 0.006793356500566006, 0.005498910788446665, -0.026087548583745956, -0.008190430700778961, -0.008038142696022987, -0.018393708392977715, -0.007647491991519928, 0.0061080618761479855, 0.016831103712320328, 0.004568631760776043, 0.016394104808568954, 0.02374364249408245, 0.004187912214547396, 0.02169106900691986, 0.007534931413829327, 0.02420712634921074, -0.008779718540608883, 0.013169577345252037, -0.020591948181390762, 0.020380070433020592, -0.015453892759978771, 0.011269290931522846, 0.012586911208927631, -0.015016892924904823, 0.01173939649015665, 0.03384760022163391, -0.022763703018426895, -0.016380861401557922, -0.011567245237529278, 0.021081916987895966, -0.001193472184240818, 0.016116013750433922, -0.021068675443530083, -0.016301406547427177, 0.014182621613144875, -0.021134886890649796, -0.019069071859121323, -0.008481764234602451, -0.027623668313026428, 0.013043774291872978, 0.020936250686645508, -0.01579819619655609, 0.014036955311894417, 0.024710338562726974, -0.0017579300329089165, -0.02236643061041832, -0.01562604494392872, -0.03925050422549248, 0.014778530225157738, 0.01963849551975727, -0.0011760916095227003, -0.03858838230371475, 0.030298635363578796, 0.004876517690718174, 0.003150038421154022, 0.004115079063922167, -0.0012596843298524618, -0.004773888736963272, -0.016235195100307465, 0.011434821411967278, 0.03556911274790764, -0.03172881528735161, -0.01994306966662407, -0.01323578879237175, 0.010613791644573212, 0.024140914902091026, 0.014871226623654366, -0.01762564852833748, 0.006932402029633522, -0.000902139232493937, -0.00913064181804657, 0.02326691523194313, 0.018009677529335022, 0.0003523722698446363, -0.011693048290908337, 0.032179057598114014, 0.02494870126247406, 0.009243202395737171, -0.003784018801525235, -0.015652529895305634, 0.023915793746709824, 0.01203073002398014, -0.008693641982972622, 0.00147404579911381, 0.009375626221299171, -0.0019002859480679035, -0.005508842878043652, 0.01684434525668621, 0.011342124082148075, -0.03403299301862717, 0.012335305102169514, 0.027729608118534088, -0.013811834156513214, -0.0008057178929448128, -0.0025326109025627375, -0.016645709052681923, -0.007541552651673555, -0.004621601197868586, -0.02268424816429615, -0.013275516219437122, 0.0036847006995230913, -0.0003941686300095171, 0.024922216311097145, -0.006376220379024744, -0.00582997128367424, 0.02241940051317215, -0.013639682903885841, 0.008826066739857197, -0.022459128871560097, -0.02252534031867981, -0.0156392864882946, 0.018181828781962395, 0.015864407643675804, 0.00968682300299406, 0.027809061110019684, -0.013878046534955502, -0.00013573470641858876, 0.01842019334435463, 0.019307434558868408, -0.045924678444862366, 0.006336493417620659, 0.0060550919733941555, 0.013136470690369606, -0.003913132473826408, -0.004509040620177984, -0.01969146355986595, -0.027332335710525513, 0.006660932209342718, 0.002580614760518074, 0.026762912049889565, -0.007336295209825039, 0.061762601137161255, 0.010858776979148388, 0.0062239328399300575, -0.0015965381171554327, 0.008203673176467419, 0.03980668634176254, 0.015268499031662941, 0.008362581953406334, -0.013692652806639671, -0.0005524568259716034, 0.008965112268924713, 0.019400130957365036, 0.005253926385194063, -0.01574522629380226, -0.019506070762872696, 0.002393565606325865, -0.0215851292014122, 0.005320138297975063, 0.0029067089781165123, -0.022022128105163574, 0.02979542315006256, 0.013652925379574299, 0.015149317681789398, 0.002395221032202244, 0.013586713001132011, 0.003222871571779251, 0.018380464985966682, -0.00353903416544199, -0.013162955641746521, -0.02010197937488556, 0.016725163906812668, -0.009441838599741459, -0.0367344468832016, -0.015387681312859058, 0.01910879835486412, -0.020287372171878815, 0.0009989743120968342, 0.00750182569026947, 0.0074687195010483265, 0.020724372938275337, -0.02300206758081913, 0.004790442064404488, -0.010680004023015499, -0.03032512031495571, 0.03421838954091072, -0.018340738490223885, -0.009534535929560661, 0.0002960920101031661, -0.011891684494912624]" +23,fizzy,"[-0.013046763837337494, -0.010264534503221512, -0.018732775002717972, -0.027768267318606377, -0.01599106378853321, 0.0119392741471529, -0.03697933629155159, 0.0009420411661267281, -0.008988220244646072, -0.036195989698171616, 0.02325727418065071, -0.0007039984920993447, -0.005399010144174099, -0.0015911716036498547, -0.01171642541885376, -0.014275806024670601, 0.03146890178322792, -0.0003830207569990307, 0.01187849696725607, -0.0119392741471529, -0.013951662927865982, 0.003438956569880247, -0.002880147425457835, -0.019002893939614296, -0.015234730206429958, -0.01557237934321165, 0.012965727597475052, -0.013303376734256744, 0.013641025871038437, -0.012837421149015427, 0.02551276981830597, -0.0005579652497544885, -0.009359634481370449, 0.0012493018293753266, -0.01018349826335907, -0.0342511311173439, 0.001610586536116898, -0.00859654787927866, 0.004183473065495491, -0.020961260423064232, -0.0017177901463583112, 0.0027754760812968016, 0.006236379966139793, 0.001251834211871028, -0.006567276082932949, 0.012587560340762138, -0.009366387501358986, 0.002328090835362673, -0.0015675362665206194, 0.010413100011646748, 0.03978857770562172, 0.004180096555501223, -0.015032140538096428, 0.0014029322192072868, -0.006415334064513445, -0.029145875945687294, -0.006381568964570761, 0.006472734268754721, -0.019029906019568443, -0.007158162072300911, 0.005135643761605024, 0.01642325520515442, -0.026849860325455666, 0.008407464250922203, -0.008751866407692432, -0.011979792267084122, -0.018449150025844574, 7.006219675531611e-05, -0.012688855640590191, -0.009021985344588757, 0.01536978967487812, 0.012580807320773602, -0.0033579207956790924, 0.010399593971669674, 0.023162731900811195, 0.025013050064444542, -0.010791267268359661, 0.006877913139760494, -0.008785631507635117, 0.004467098508030176, 0.0262150801718235, -0.024540340527892113, -0.03727646544575691, 0.008886925876140594, 0.002962871454656124, 0.01321558840572834, 0.0042307437397539616, 0.01639624312520027, -0.004723711870610714, -0.008366946130990982, -0.009447423741221428, 0.020961260423064232, 0.024081137031316757, 0.03541264310479164, 0.00784696638584137, 0.006114826072007418, 0.00642546359449625, 0.010629195719957352, 0.012168875895440578, -0.027687231078743935, 0.0038829653058201075, 0.017314648255705833, -0.023811018094420433, -0.005915613379329443, -0.0103860879316926, -0.006604417692869902, 0.005132267251610756, 0.004051790107041597, 0.028335517272353172, 0.009001726284623146, 0.00663480581715703, 0.02204173617064953, 0.023162731900811195, -0.02587743103504181, -0.0021812135819345713, -0.008090074174106121, 0.02525615692138672, -0.021596040576696396, -0.013418177142739296, -0.017017517238855362, -0.016585325822234154, 0.0035216808319091797, 0.03281949833035469, -0.0005799124483019114, 0.016585325822234154, -0.007651129737496376, -0.028281493112444878, -0.012925209477543831, -0.005746788810938597, -0.008738360367715359, 0.05434800684452057, -0.00658753514289856, 0.036871287971735, -0.019137954339385033, -0.02208225429058075, 0.018624726682901382, -0.020056359469890594, -0.008177862502634525, -0.017463214695453644, -0.03314363956451416, 0.006948819849640131, 0.03706037253141403, -0.009406905621290207, 0.006658441387116909, 0.007164915092289448, 0.0032549379393458366, 0.021163849160075188, 0.015059152618050575, -0.00732023362070322, -0.01620716042816639, 0.028902767226099968, -0.023486874997615814, 0.006168850231915712, 0.003324155928567052, 0.0032515614293515682, -0.00028193704201839864, -0.006047296337783337, 0.017179589718580246, -0.027241533622145653, -0.003136760788038373, 0.0012467695632949471, -0.012378218583762646, 0.04095008969306946, -0.011243716813623905, 0.016288194805383682, 0.036195989698171616, 0.018043970689177513, -0.0014079969841986895, 0.004257755819708109, -0.011621884070336819, 0.01942157931625843, 0.02701193280518055, -0.028956791386008263, 0.024135161191225052, 0.000524200324434787, 0.015869511291384697, 0.01361401379108429, 0.00786722544580698, -0.011979792267084122, -0.022798070684075356, -0.010048438794910908, 0.03938339650630951, 0.018422137945890427, 0.026849860325455666, -0.010419853031635284, -0.0021525134798139334, 0.015059152618050575, -0.009872861206531525, 0.0057130237109959126, -0.030388424172997475, 0.003879588795825839, 0.017098553478717804, 0.0011944338912144303, -0.007259456906467676, -0.6949629783630371, -0.03314363956451416, -0.0063444278202950954, -0.022946637123823166, -0.005689388141036034, 0.03003726899623871, 0.002576263155788183, -0.0006639026687480509, 0.01635572500526905, 0.0034744099248200655, -0.02255496382713318, 0.015869511291384697, 0.021960701793432236, 0.0006364686414599419, -0.046055346727371216, -0.00859654787927866, 0.02814643457531929, -0.005392257124185562, 0.0038221883587539196, 0.019151460379362106, 0.004497486632317305, 0.024513328447937965, -0.016477279365062714, 0.0035588222090154886, 0.026741813868284225, 0.008691089227795601, 0.020785681903362274, -0.007448540534824133, -0.019543133676052094, -0.002034336095675826, -0.02591794915497303, 0.015315765514969826, -0.0001267239567823708, -0.007144656032323837, 0.0571572482585907, 0.0019786241464316845, -0.004635923076421022, 0.021163849160075188, 0.0004592028562910855, 0.026728307828307152, -0.02117735520005226, -0.024850977584719658, 0.016180148348212242, 0.0006356245139613748, -0.004716958850622177, 0.019327037036418915, 0.02540472336113453, 0.00748230516910553, 0.009758060798048973, 0.0019279767293483019, 0.020339984446763992, -0.03187407925724983, 0.011628637090325356, -0.0011961221462115645, 0.010305052623152733, -0.005885224789381027, 0.002422632649540901, -0.009974156506359577, -0.016234170645475388, 0.025134602561593056, -0.0019246002193540335, 0.0031266312580555677, -0.01646377332508564, -0.024040620774030685, -0.003997765947133303, 0.012675349600613117, -0.029118863865733147, 0.0020545951556414366, 0.010007920674979687, -0.004055166617035866, -0.004328662063926458, 0.0035959635861217976, -0.012175628915429115, -0.007185174152255058, 0.005959507543593645, 0.024283727630972862, 0.02021843194961548, -0.002292637713253498, 0.0020832952577620745, -0.0010813213884830475, 0.022095760330557823, 0.011810967698693275, -0.02019141986966133, -0.0030320894438773394, 0.02460787072777748, -0.019110942259430885, -0.02128540351986885, -0.005615105386823416, -0.0018081112066283822, -0.011439553461968899, 0.013992181047797203, 0.012540290132164955, 0.010757502168416977, -0.031955115497112274, -0.008826148696243763, 0.005267326720058918, -0.011365270242094994, 0.014424372464418411, 0.001481435727328062, -0.004460345488041639, 0.003805306041613221, 0.0007234133081510663, -0.005382127594202757, 0.005841330625116825, -0.022284844890236855, 0.0218256413936615, -0.026633765548467636, 0.01595054566860199, 0.016949987038969994, -0.03290053457021713, 0.0027214521542191505, -0.022798070684075356, 0.005186290945857763, -0.021690580993890762, 0.00018823939899448305, -0.0342511311173439, 0.023932572454214096, -0.0008635377162136137, 0.012128357775509357, 0.0010830096434801817, 0.020394008606672287, -0.01184473279863596, -0.0006432216614484787, -0.010939832776784897, 0.0002566133625805378, 0.012661843560636044, 0.014924093149602413, 0.003379868110641837, -0.02576938457787037, -0.016153136268258095, -0.003043907228857279, 0.015072658658027649, 0.0025526275858283043, 0.0013041698839515448, -0.014518913812935352, -0.019246002659201622, 0.017139071598649025, -0.0018874588422477245, 0.0059628840535879135, -0.03165798634290695, -0.027660218998789787, 0.0005647182115353644, -0.007880731485784054, -0.012601066380739212, -0.0004524498654063791, -0.029118863865733147, -0.02011038362979889, 0.008508758619427681, -0.0017203224124386907, 0.008353440091013908, -0.003906600642949343, 0.0036567403003573418, -0.01708504743874073, 0.030469460412859917, 0.012837421149015427, -0.012520031072199345, 0.001997194718569517, 0.000827240408398211, 0.002225107979029417, 0.013708556070923805, 0.010811526328325272, 0.009629754349589348, -0.007468799594789743, -0.00019488687394186854, 0.002162642776966095, -0.024905001744627953, 0.013262858614325523, -0.0008306169183924794, 0.0032313023693859577, -0.0321982242166996, -0.0007331207161769271, -0.004899289458990097, -0.001526174135506153, 0.04030180349946022, -0.009413658641278744, 0.014248794876039028, -0.01152058970183134, 0.010325311683118343, 0.006057425867766142, -0.0006166317616589367, 0.004500863142311573, 0.005041101947426796, -0.011810967698693275, -0.006577405612915754, 0.031306829303503036, 0.009474435821175575, 0.00601353170350194, 0.007799695711582899, -0.018097994849085808, 0.002429385669529438, 0.014032699167728424, 0.01850317418575287, 0.007590353023260832, 0.008272404782474041, -0.024135161191225052, -0.010696724988520145, -0.0012771579204127192, -0.01982675865292549, 0.011196445673704147, 0.019218990579247475, 0.03822188451886177, -0.020231937989592552, 0.02928093448281288, 0.0009074321133084595, 0.021163849160075188, -0.048648491501808167, -0.0012585872318595648, -0.008772125467658043, 0.023297792300581932, 0.028092410415410995, -0.0018959000008180737, -0.015126681886613369, -0.023189743980765343, 0.00507486704736948, 0.00768489483743906, 0.020677633583545685, 0.011851485818624496, 0.011230210773646832, -0.015828993171453476, 3.788660933423671e-06, -0.005057984497398138, -0.03460228443145752, 0.009555471129715443, 0.03127981722354889, -0.011952780187129974, -0.017800863832235336, 0.002846382325515151, 0.025931455194950104, 0.0017405813559889793, -0.015180706046521664, 0.0006027037743479013, 0.00940015260130167, 0.019178472459316254, 0.015342777594923973, 0.01000116765499115, 0.0028227469883859158, 0.029064839705824852, -0.01890835352241993, 0.017908912152051926, 0.005594846326857805, -0.006682076957076788, 0.01770632155239582, 0.031090734526515007, 0.015194212086498737, 0.027282051742076874, 0.01963767409324646, 0.018611222505569458, -0.005385504104197025, -0.0014544237637892365, 0.01657181978225708, -0.008542523719370365, -0.003697258187457919, -0.03384594991803169, 0.014410866424441338, 0.01923249661922455, -0.016072100028395653, 0.0160991121083498, -0.012736125849187374, 0.0006571496487595141, 0.05340259149670601, 0.00031190342269837856, 0.01613963022828102, 0.016963493078947067, 0.003102995688095689, -0.001032362342812121, -0.0008622715249657631, -0.011020868085324764, -0.005527316592633724, -0.0018182407366111875, -0.0005427710129879415, 0.005095125641673803, 0.002893653232604265, -0.011507083661854267, -0.004244249779731035, 0.021731099113821983, -0.005652246996760368, -0.00905575044453144, 0.024580858647823334, 0.01422178279608488, 0.008724854327738285, 0.0033190911635756493, -0.009305611252784729, 0.012891445308923721, 0.015099670737981796, -0.0010838537709787488, -0.014694491401314735, -0.01781436987221241, 0.00877887848764658, -0.0028126174584031105, -0.0010011297417804599, 0.010102462954819202, 0.0028024879284203053, 0.019218990579247475, 0.011088398285210133, -0.009636507369577885, -0.03657415509223938, 0.015153693966567516, -0.016072100028395653, 0.02201472595334053, 0.005112008191645145, -0.003369738580659032, 0.020434526726603508, -0.027133487164974213, 0.00306585431098938, 0.03708738461136818, -0.0036331049632281065, 0.009393399581313133, 0.006168850231915712, 0.0069285607896745205, 0.011783955618739128, -0.009021985344588757, -0.000808247656095773, -0.021744605153799057, -0.00259652198292315, -0.00594937801361084, -0.0013733879895880818, 0.0014451383613049984, -0.01573445089161396, 0.03843798115849495, -0.01186499185860157, -0.010372581891715527, -0.009048997424542904, -0.00022791318770032376, -0.013870627619326115, 0.05099852755665779, -0.0015633156290277839, -0.002177837071940303, 0.020907236263155937, 0.009427164681255817, -0.0105279004201293, -0.011101904325187206, -0.008846407756209373, 0.003297144081443548, -0.02478344738483429, 0.0025104214437305927, -0.009366387501358986, 0.023486874997615814, -0.0030236481688916683, -0.017827875912189484, 0.0017946052830666304, -0.016585325822234154, -0.01347220130264759, -0.004538004752248526, -0.038492005318403244, -0.016072100028395653, 0.009130033664405346, 0.009636507369577885, 0.006574029102921486, 0.004190226085484028, 0.01034556981176138, 0.005155902821570635, 0.022176796570420265, -0.024040620774030685, -0.01527524832636118, -0.020718151703476906, -0.0010695037199184299, 0.012979233637452126, 0.0051795379258692265, -0.0067293476313352585, -0.013728815130889416, 0.018152019008994102, -0.021258391439914703, 0.02992922067642212, -0.018935365602374077, 0.01152058970183134, -0.005915613379329443, 0.010791267268359661, -0.008204874582588673, 0.011230210773646832, -0.019327037036418915, -0.004531251732259989, 0.017692815512418747, 0.006563899572938681, -0.001320208190008998, 0.04270586371421814, 0.003619598923251033, 0.015477837063372135, -0.01798994652926922, -0.012607819400727749, 0.017031023278832436, -0.01880030520260334, -0.019759228453040123, -0.004727088380604982, -0.010852043516933918, -0.015504849143326283, -0.00863031204789877, -0.006962325423955917, 0.0010635948274284601, 0.008535770699381828, -0.019354049116373062, -0.01000116765499115, -0.01591002754867077, -0.007705153897404671, 0.0009074321133084595, -0.0088329017162323, -0.006317415740340948, -0.027038944885134697, 0.005652246996760368, 0.024540340527892113, 0.004132825881242752, -0.004494110122323036, -0.012060827575623989, 0.010602183640003204, 0.0001539469085400924, 0.0046528056263923645, -0.010169992223381996, -0.017071541398763657, -0.02847057767212391, -0.022771058604121208, 0.007326986640691757, 0.0030185834039002657, -0.0015118240844458342, 0.007948260754346848, 0.006550393532961607, 0.012682102620601654, 0.008954456076025963, 0.015639908611774445, -0.011493577621877193, -0.006097943987697363, 0.0034744099248200655, 0.02865966036915779, -0.016990505158901215, 0.007218938786536455, 0.011230210773646832, -0.0006444878526963294, -0.01865173876285553, 0.0072459508664906025, -0.008967961184680462, 0.008913937956094742, -0.0192054845392704, 0.009737801738083363, 0.023662453517317772, -0.024040620774030685, 0.00032962998375296593, 0.023716477677226067, -0.0018317466601729393, 0.02525615692138672, 0.005631987936794758, 0.02102878876030445, 0.008556029759347439, -0.030415436252951622, 0.037438537925481796, -0.01605859398841858, -0.02156902849674225, 0.022608987987041473, -0.019137954339385033, 0.01909743621945381, 0.025499263778328896, -0.006263392046093941, 0.017287636175751686, 0.010615689679980278, -0.0389782190322876, -0.022392891347408295, 0.011804214678704739, 0.0023044554982334375, 0.032873522490262985, -0.0026843107771128416, -0.0032279258593916893, -0.031955115497112274, -0.005814318545162678, -0.002984818536788225, -0.00124592543579638, -0.014032699167728424, -0.022838588804006577, -0.03595288097858429, 0.002594833727926016, 0.005132267251610756, -0.0027079463470727205, -0.010534653440117836, -0.027795279398560524, -0.012688855640590191, 0.013546484522521496, -0.012195887975394726, 0.00035221027792431414, -0.04613637924194336, 0.005280832760035992, -0.02321675606071949, -0.011858238838613033, 0.007570093963295221, -0.020434526726603508, -0.0007715283427387476, -0.011797461658716202, 0.02175811119377613, 0.026674283668398857, 0.02774125523865223, 0.021163849160075188, -0.003013518638908863, 0.03055049665272236, -0.009758060798048973, -0.011155928485095501, -0.022284844890236855, 0.01365453191101551, -0.03895120695233345, 0.028416553512215614, 0.023338310420513153, -0.002557692350819707, 0.00848849955946207, -0.008299415931105614, 0.0025002919137477875, 0.00994714442640543, -0.01153409481048584, -0.01301299873739481, -0.0014831239823251963, -0.010176745243370533, -0.009886367246508598, -0.002991571556776762, -0.00022390359663404524, -0.008042803034186363, -0.0007014661096036434, -0.017719827592372894, 0.016301700845360756, 0.02868667244911194, 0.00981883704662323, 0.009231328032910824, 0.018813811242580414, -0.00711089139804244, 0.01186499185860157, -0.00245977402664721, 0.013688297010958195, 0.0020765422377735376, -0.00487227737903595, 0.012891445308923721, 0.011196445673704147, 0.00828590989112854, 0.010190251283347607, 0.004554887302219868, 0.0018384996801614761, 0.022771058604121208, -0.0038019295316189528, 0.02128540351986885, 0.0011032685870304704, -0.0145459258928895, 0.02497253194451332, -0.018206043168902397, -0.01697699911892414, -0.008373699150979519, -0.019840264692902565, -0.039437420666217804, -0.011149175465106964, 0.0024631505366414785, -0.002716387389227748, 0.027295557782053947, -0.011723178438842297, -0.023527393117547035, 0.002621845807880163, -0.009616248309612274, 0.015288753435015678, -0.010764255188405514, 0.011439553461968899, -0.006989337503910065, -0.020961260423064232, -0.034116070717573166, -0.010919573716819286, 0.0005634520202875137, -0.008805889636278152, 0.01153409481048584, -0.0002910113544203341, 0.001556562609039247, -0.0034288272727280855, 0.031117746606469154, 0.021015282720327377, 0.0067057120613753796, -0.025215638801455498, 0.003592587076127529, 0.005412516184151173, 0.003930236212909222, -0.029443006962537766, -0.01095333881676197, -0.019246002659201622, 0.01171642541885376, -0.013445189222693443, 0.0030017010867595673, -0.0047034528106451035, 0.015747956931591034, -0.02219030261039734, 0.03957248106598854, -0.01438385434448719, 0.030469460412859917, 0.0119392741471529, -0.010446865111589432, -0.005392257124185562, -0.007752424571663141, -0.03357583284378052, 0.006617923267185688, 0.001678116270340979, 0.009852602146565914, -0.004183473065495491, -0.0025323687586933374, 0.0012915079714730382, -0.0058447071351110935, -0.004075425211340189, 0.016949987038969994, 0.011892003007233143, 0.023635441437363625, -0.02274404652416706, 0.0028024879284203053, 0.009130033664405346, 0.02029946818947792, -0.004922924563288689, -0.0006039699073880911, -0.015720944851636887, -0.011473318561911583, -0.013141305185854435, 0.008481746539473534, 0.012540290132164955, 0.006688829977065325, -0.006601041182875633, -0.014194770716130733, -0.02066412754356861, 0.0033528560306876898, 0.0013767643831670284, 0.0063444278202950954, -0.013857121579349041, -0.0037310232874006033, -0.025364205241203308, -0.00709063233807683, 0.01854369230568409, -0.01073049008846283, -0.004369180183857679, -0.012655090540647507, 0.010973597876727581, 0.016841940581798553, -0.011601625010371208, 0.007212186232209206, -0.01605859398841858, -0.015113175846636295, -0.0176658034324646, 0.014262299984693527, 0.014775526709854603, -0.017071541398763657, 0.021960701793432236, -0.021163849160075188, -0.01355999056249857, -0.008974714204668999, 0.01018349826335907, 0.0032313023693859577, 0.022906119003891945, -0.030712567269802094, 0.031955115497112274, 0.016558315604925156, -0.00039399435627274215, -0.03773567080497742, -0.025647830218076706, 0.00459878146648407, -0.007117644418030977, 0.01627468876540661, 0.02193368971347809, -0.012229652144014835, 0.009130033664405346, 0.0026910637971013784, -0.002780540846288204, 0.009319116361439228, 0.0003235100884921849, -0.019867276772856712, -0.011905509047210217, 0.016018075868487358, -0.013897639699280262, -0.013924650847911835, -0.0016418190207332373, 0.0058447071351110935, 0.002361855935305357, 0.03398101031780243, -0.0056961411610245705, -0.0018925234908238053, 0.0017861640080809593, 0.016652856022119522, 0.0068610310554504395, -0.013235846534371376, 0.012506525032222271, -0.01813851296901703, -0.033926986157894135, -0.004602157976478338, -0.016234170645475388, -0.0008078255923464894, -0.008515511639416218, 0.024621376767754555, 0.0026471694000065327, -0.02898380346596241, 0.005841330625116825, 0.008245392702519894, -0.0430840328335762, 0.014059711247682571, -0.04340817406773567, 0.01562640257179737, 0.025931455194950104, -0.011061386205255985, -0.005652246996760368, 0.008718101307749748, 0.002753528766334057, 0.03055049665272236, -0.017166083678603172, -0.02562081813812256, 0.03449423611164093, 0.011047880165278912, 0.003909977152943611, -0.02321675606071949, -0.036304038017988205, -0.008245392702519894, -0.003334285458549857, -0.00025028243544511497, 0.03052348457276821, 0.0049026659689843655, -2.790881262626499e-05, 0.013587001711130142, -0.005709647201001644, -0.012493018992245197, 0.004956689663231373, 0.004011271987110376, 0.014680985361337662, -0.023122213780879974, 0.01527524832636118, -0.0063444278202950954, 0.00043767772149294615, 0.005611728876829147, -0.0008837966597639024, -0.02004285342991352, -0.009487940929830074, 0.018152019008994102, 0.005064737517386675, -0.01464046724140644, 0.002005635993555188, -0.00905575044453144, 0.0032667554914951324, -0.024729425087571144, -0.011182940565049648, 0.0033967504277825356, -0.006695582997053862, -0.013627519831061363, 0.02066412754356861, 0.010298299603164196, -0.037222445011138916, 0.001002817996777594, 0.021920183673501015, -0.004450215958058834, -0.014140746556222439, -0.015558873303234577, 0.018732775002717972, -0.01212160475552082, 0.008299415931105614, -0.018678750842809677, -0.008569535799324512, -0.017895406112074852, 0.019772734493017197, 0.009568977169692516, -0.005807565525174141, -0.010615689679980278, 0.007853719405829906, 0.0017279195599257946, -0.007333739660680294, 0.0070366086438298225, 0.009116527624428272, -0.00867083016782999, 0.003386621130630374, 0.03154993802309036, -0.003059101291000843, -0.020907236263155937, -0.00899497326463461, 0.020312974229454994, 0.00766463577747345, 0.030172329396009445, 0.20291364192962646, 0.005392257124185562, -0.001206251559779048, 0.044623713940382004, 0.0001799036981537938, -0.0047203353606164455, -0.0013328701024875045, -0.00507486704736948, 0.00420710863545537, 0.011993298307061195, 0.009211068972945213, 0.009393399581313133, -0.021920183673501015, -0.0008753554429858923, 0.004112566821277142, -0.011047880165278912, -0.03171201050281525, -0.015207718126475811, -0.0042307437397539616, -0.03778969496488571, -0.005723153240978718, -0.04076100513339043, -0.018125006929039955, 0.00249185087159276, 0.017058035358786583, -0.006158720701932907, -0.03127981722354889, 0.003832317888736725, 0.03435917943716049, 0.01700401119887829, 0.002880147425457835, -0.007826707325875759, 0.013627519831061363, 0.03417009487748146, -0.019610663875937462, -0.012337700463831425, 0.004365803673863411, -0.007576846983283758, 0.04132825508713722, 0.014262299984693527, -0.01653130352497101, 0.018057476729154587, 0.009650012478232384, -0.01785488799214363, -0.004534628242254257, 0.019597157835960388, -0.013505966402590275, -0.0017372049624100327, -0.014235288836061954, 0.006043919827789068, -0.043786343187093735, -0.02847057767212391, -0.0009293793118558824, 0.008204874582588673, 0.0006221185903996229, 0.012817162089049816, 0.013870627619326115, 0.007786189671605825, -0.012297182343900204, 0.006020284257829189, -0.0036027166061103344, 0.045758213847875595, -0.004355674143880606, 0.0013868939131498337, -0.0225954819470644, 0.007732165511697531, -0.032063163816928864, -0.025215638801455498, 0.011689414270222187, -0.006624676287174225, -0.011993298307061195, -0.020434526726603508, -0.003460903884842992, 0.005240315105766058, -0.01374232117086649, -0.024000102654099464, 0.011473318561911583, 0.012094592675566673, 0.02697141468524933, 0.02379751205444336, -0.004159837495535612, -0.01264833752065897, -0.00528420927003026, -0.006901548709720373, -0.023635441437363625, -0.015504849143326283, -0.003552069189026952, 0.008238639682531357, -0.012709114700555801, 0.0070366086438298225, 0.0064794872887432575, -0.005057984497398138, 0.008002284914255142, -0.006523381918668747, 0.0035183043219149113, 0.012587560340762138, -0.01553186122328043, 0.016949987038969994, 0.01248626597225666, -0.0005794903845526278, -0.03176603093743324, -0.03182005509734154, 0.007948260754346848, -0.02098827250301838, -0.01343168318271637, -0.006884666159749031, 0.014505407772958279, 0.037438537925481796, -0.015491343103349209, -0.016922974959015846, -0.023527393117547035, -0.03749256208539009, 0.0210558008402586, -0.004105813801288605, 0.026012491434812546, 0.01049413625150919, -0.021704087033867836, -0.025647830218076706, 0.0035858340561389923, -0.015869511291384697, 0.014086723327636719, -0.021217873319983482, 0.010251028463244438, 0.008751866407692432, -0.006209367886185646, -0.007104138378053904, -0.024648388847708702, 0.019664686173200607, -0.017584769055247307, -0.02497253194451332, 0.01931353099644184, -0.010284793563187122, 0.0105279004201293, -0.03160396218299866, -0.026917390525341034, 3.3791293390095234e-05, -0.012560548260807991, -0.00073227658867836, 0.011385529302060604, -0.0014451383613049984, -0.0007622429984621704, -0.024621376767754555, -0.003258314449340105, 0.030280375853180885, -0.005213303025811911, -0.008967961184680462, 0.02898380346596241, 0.006189109291881323, -0.014356842264533043, -0.039734553545713425, -0.022257832810282707, -0.0002815149782691151, 0.005307844839990139, -0.02325727418065071, 0.0316849984228611, -0.030766591429710388, -0.029767150059342384, -0.025890937075018883, -0.005186290945857763, 0.012756384909152985, -0.03273846209049225, 0.014316324144601822, 0.020083371549844742, -0.030901651829481125, 0.003189096227288246, 0.006158720701932907, -0.17644193768501282, 0.03592586889863014, 0.009514953009784222, -0.007468799594789743, 0.0168689526617527, -0.014356842264533043, 0.024324245750904083, 0.002631975105032325, -0.015113175846636295, 0.0018283701501786709, 0.01010921597480774, -0.011446306481957436, -0.01584249921143055, -0.009920132346451283, 0.016085606068372726, -0.0028666413854807615, -0.010007920674979687, -0.00729997456073761, 0.013519472442567348, 0.02011038362979889, 0.014653973281383514, -0.006942066829651594, 0.013114293105900288, -0.014248794876039028, 0.03576380014419556, -0.0016916223103180528, -0.01726062409579754, 0.014613455161452293, -0.013357400894165039, 0.02219030261039734, -0.008562782779335976, -0.029686113819479942, 0.027255039662122726, -0.007475552149116993, 0.02289261296391487, 0.006854278035461903, -0.026309622451663017, -0.0023567911703139544, -0.004301650449633598, 0.027295557782053947, 0.007725412957370281, 0.018678750842809677, 0.017787357792258263, 0.0022419902961701155, -0.021812135353684425, 0.012405229732394218, 0.027390100061893463, -0.003097930923104286, 0.008886925876140594, 0.005125514231622219, 0.023635441437363625, -0.023054683580994606, -0.005864965729415417, 0.001882394077256322, 0.024324245750904083, 0.014518913812935352, -0.0011252157855778933, 0.007691647857427597, 0.007853719405829906, -0.015045646578073502, -0.01173668447881937, -0.008846407756209373, 0.015437319874763489, -0.017436202615499496, -0.004683193750679493, -0.008238639682531357, -0.010825032368302345, 0.0020394008606672287, -0.02489149570465088, 0.010500889271497726, -0.012547043152153492, -0.005159279331564903, 0.012256664223968983, 0.002245366806164384, -0.002375361742451787, 1.861027158156503e-05, -0.028065398335456848, -0.0006297156796790659, 0.015315765514969826, -0.000463001400930807, -0.012547043152153492, 0.034548260271549225, -0.021677076816558838, -0.013897639699280262, 0.0008998350240290165, 0.015585885383188725, -0.0068205129355192184, 0.007698400877416134, -0.004649429116398096, -0.010649454779922962, 0.021109825000166893, -0.02660675346851349, 0.003977506887167692, 0.007002843543887138, -0.005756918340921402, 0.029470019042491913, -0.025647830218076706, 0.016733892261981964, -0.00942041166126728, 0.0024563975166529417, -0.0017557756509631872, -0.0071784211322665215, -0.034845393151044846, 0.009190809912979603, 0.020245444029569626, 0.0017152577638626099, 0.02756567671895027, 0.0001847574021667242, 0.025026556104421616, 0.0023702969774603844, -0.008684336207807064, -0.010872302576899529, 0.014491901732981205, 0.03427814319729805, -0.003599340096116066, 0.024905001744627953, 0.006533510982990265, -0.010305052623152733, 0.022325363010168076, 0.0020748539827764034, 0.04265184327960014, -0.022433409467339516, 0.005422645248472691, 0.024580858647823334, -0.02639065869152546, 0.0043860627338290215, -0.09535212069749832, -0.011027621105313301, 0.007462046574801207, 0.019880782812833786, 0.0008787319529801607, 0.015315765514969826, 7.761973392916843e-06, 0.002150825224816799, -0.022352375090122223, 0.03365686908364296, -0.005996649153530598, -0.015356283634901047, -0.005270703230053186, -0.019921300932765007, 0.02409464307129383, 0.014194770716130733, 0.0015388360479846597, 0.013668037950992584, -0.0241621732711792, 0.004946560133248568, -0.015153693966567516, 0.017841381952166557, -0.0031840314622968435, 0.0003832317888736725, -0.011432800441980362, 0.009076009504497051, -0.033710893243551254, 0.018043970689177513, 0.013728815130889416, 0.0009850914357230067, 0.016625843942165375, -0.018746281042695045, 0.021082812920212746, -0.032684437930583954, -0.005432774778455496, 0.004153084475547075, 0.003158707870170474, -0.015545367263257504, 0.0032768850214779377, -0.04402945190668106, 0.003369738580659032, 0.0038525769487023354, -0.01751723885536194, -0.01667986810207367, -0.014046205207705498, -0.01562640257179737, -0.006276897620409727, 0.018962375819683075, 0.004990454763174057, -0.015896521508693695, -0.03541264310479164, -0.002361855935305357, -0.009683777578175068, 0.004183473065495491, 0.023095201700925827, -0.001162357279099524, 0.022825082764029503, 0.03595288097858429, -0.0039876364171504974, 0.0020461538806557655, -0.006628052797168493, -0.010325311683118343, -0.009042244404554367, 0.016585325822234154, 0.01580198109149933, 0.01796293444931507, -0.0011345011880621314, -0.021947195753455162, -0.0013345582410693169, -0.01755775697529316, -0.00843447633087635, 0.027606194838881493, -0.02343285083770752, 0.022149784490466118, -0.024999544024467468, -0.006557146552950144, -0.00153292715549469, -0.014680985361337662, 0.025998985394835472, -0.01152058970183134, -0.009920132346451283, -0.014978116378188133, 0.007779436651617289, -0.009008479304611683, 0.040355827659368515, 0.01131800003349781, 0.002284196438267827, -0.006469357758760452, 0.023527393117547035, -0.021069306880235672, -0.011696167290210724, 0.03727646544575691, 0.00046173520968295634, -0.027241533622145653, -0.005064737517386675, 0.011263975873589516, 0.004797994624823332, -0.002034336095675826, 0.002620157552883029, 0.013256105594336987, -0.01301299873739481, -0.027079463005065918, -0.041598375886678696, 0.032360296696424484, 0.017584769055247307, -0.01401919312775135, 0.0008846407872624695, -0.01734166033565998, 0.0025391217786818743, -0.0027433994691818953, 0.0011783955851569772, 0.011507083661854267, -0.021339427679777145, 0.01365453191101551, -0.0029341711197048426, -0.02244691550731659, -0.019070424139499664, -0.04640650004148483, 0.03862706199288368, -0.004774359054863453, -0.0034744099248200655, -0.0013193640625104308, -0.000660104095004499, 0.011952780187129974, 0.012209393084049225, 0.0034271390177309513, -0.015450825914740562, 0.015018634498119354, -0.00923808105289936, 0.03414308279752731, -0.00287001789547503, -0.015018634498119354, 0.012547043152153492, -0.023054683580994606, -0.0071379030123353004, 0.0004469630657695234, 0.00027898262487724423, -0.026998426765203476, -0.02015090174973011, 0.02825448103249073, -0.00583120109513402, 0.006469357758760452, -0.010852043516933918, -0.010703478008508682, 0.01712556555867195, -0.0061857327818870544, 0.0005706271040253341, -0.003683752380311489, -0.0022301727440208197, 0.005186290945857763, 0.024661894887685776, -0.004402944818139076, 0.0075363293290138245, 0.022298350930213928, -0.0238785482943058, -0.020529069006443024, -0.024148667231202126, -0.006624676287174225, 0.022622494027018547, -0.0006432216614484787, -0.007934755645692348, -0.030901651829481125, 0.017530744895339012, 0.006199238356202841, 0.00654364051297307, 0.016963493078947067, 0.022257832810282707, 0.0001080477304640226, -0.012641584500670433, 0.009845849126577377, 0.02270353026688099, -0.04581223800778389, -0.006384945474565029, 0.001875641057267785, 0.022622494027018547, -0.005003960337489843, 0.031414877623319626, -0.0027011933270841837, -0.01418126467615366, 0.004460345488041639, -0.008474993519484997, 0.04583925008773804, 0.013701803050935268, -0.00919756293296814, -0.03535861894488335, 0.009487940929830074, 0.007367504760622978, 0.006901548709720373, -0.015099670737981796, -0.01310754008591175, -0.015032140538096428, 0.007968519814312458, -0.02240639738738537, -0.006617923267185688, -0.008731607347726822, -0.0030928663909435272, 0.02160954661667347, 0.00885316077619791, -0.0005233561969362199, -0.003552069189026952, 0.017314648255705833, 0.02102878876030445, -0.009460929781198502, 0.009001726284623146, 0.007367504760622978, -0.01036582887172699, 0.012898197397589684, -0.003704011207446456, -0.023243768140673637, -0.022109266370534897, -0.016801422461867332, -0.0080495560541749, 0.024405281990766525, -0.01613963022828102, -0.00976481381803751, 0.011959533207118511, -0.008387205190956593, 0.017368672415614128, -0.010554912500083447, -0.016018075868487358, -0.0046629346907138824, 0.02795735001564026, 0.018678750842809677, -0.009623001329600811, 0.020650623366236687, -0.0071784211322665215, 0.01173668447881937, 0.0018334349151700735, 0.02248743362724781, -0.02204173617064953, -0.00709063233807683, 0.0034406448248773813, 0.00012165921361884102, 0.020285962149500847, -0.012344453483819962, -0.017058035358786583, 0.004976948723196983, -0.013566743582487106, 0.003984259907156229, 0.026053009554743767, -0.01347220130264759, 0.02782229147851467, -0.0014924092683941126, -0.019948313012719154, 0.010048438794910908, 0.007921249605715275, 0.021987713873386383, -0.019907794892787933, 0.0062296269461512566, -0.03230627253651619, 0.0027670348063111305, 0.03522355854511261, -0.011128916405141354, 0.018125006929039955, -0.00574003579095006, -0.018462656065821648, -0.003477786434814334, -0.006027037277817726, -0.015720944851636887, -0.0019803124014288187, -0.02971312589943409, 0.025647830218076706, 0.012580807320773602, 0.0032667554914951324, 0.010169992223381996, 0.005280832760035992, -0.017382178455591202, 0.027241533622145653, 0.0016502602957189083, -0.008967961184680462, -0.012317441403865814, -0.005152526311576366, -0.0021288779098540545, -0.035142526030540466, -0.019110942259430885, 0.01002142671495676, -0.012141863815486431, -0.012844174169003963, -0.01569393277168274, -0.01308728102594614, 0.007928002625703812, -0.013391165994107723, 0.03597989305853844, -0.025836912915110588, -0.009001726284623146, 0.009541965089738369, -0.00887341983616352, 0.0051964204758405685, 0.0026910637971013784, -0.022365881130099297]" +24,carbon,"[0.004404176026582718, -0.025098854675889015, -0.02728939615190029, -0.044602591544389725, -0.006522139068692923, -0.003553031710907817, -0.021060869097709656, -0.04528878256678581, -0.0033501428551971912, -0.022565215826034546, -0.006842142902314663, 0.03283172845840454, -0.01256922073662281, 0.008188138715922832, -0.016521433368325233, 0.0037146832328289747, 0.04608054459095001, -0.003307255683466792, 0.011572920717298985, -0.019160639494657516, -0.017656290903687477, 0.023884819820523262, -0.0027827133890241385, -0.017933407798409462, -0.008669793605804443, 0.00019824977789539844, 0.031353775411844254, -0.03718642145395279, 0.012239320203661919, -0.024795345962047577, 0.01356552168726921, -0.029374368488788605, -0.029849426820874214, -0.022552020847797394, -0.0126879857853055, 0.003882932709529996, -0.02626010589301586, -0.0069147213362157345, 0.0032709666993469, -0.021786650642752647, 0.01293211244046688, 0.02212974615395069, 0.0011389825958758593, 0.007825247012078762, -0.014621204696595669, -0.005578622687608004, -0.013895422220230103, 0.0009921767050400376, -0.012523035518825054, -0.029163232073187828, -0.003754271427169442, 0.03557650372385979, -0.01268138736486435, -0.010259915143251419, 0.008715979754924774, -0.00911845825612545, 0.015597710385918617, 0.040960486978292465, 0.000565779919270426, -0.007706482894718647, -0.006848740857094526, 0.006749770604074001, 0.004783561918884516, 0.0070334854535758495, 0.003991799894720316, -0.0064066736958920956, -0.001860640593804419, 0.048244696110486984, -0.01989961788058281, 0.001877135713584721, 0.0029806538950651884, 0.014132951386272907, 0.020282302051782608, 0.004651601426303387, 0.006311002653092146, -0.0241883285343647, -0.01728680357336998, -0.007878031581640244, -0.014489243738353252, -0.0009657846530899405, 0.02639206498861313, -0.020810144022107124, -0.012595613487064838, 0.012503241188824177, 0.00237033748999238, 0.008590617217123508, 0.013948206789791584, 0.009798054583370686, 0.008056177757680416, -0.008306902833282948, 0.016455452889204025, 0.02007116563618183, 0.010814148932695389, 0.01336758118122816, -0.02670877054333687, -0.003754271427169442, -0.0006565026124008, 0.033887412399053574, 0.0018870326457545161, -0.026840731501579285, 0.008372882381081581, 0.02926880121231079, -0.01130240224301815, -0.010187337175011635, 0.006795956753194332, 0.002797558903694153, 0.012113957665860653, 0.012628603726625443, 0.01681174524128437, -0.016231119632720947, -0.004720880649983883, 0.04462898150086403, 0.015215025283396244, -0.03681693226099014, 0.013136650435626507, -0.006482550874352455, 0.013869030401110649, -0.016600608825683594, -0.0025715769734233618, -0.022024178877472878, 0.003962108865380287, 0.018764758482575417, 0.02235407941043377, -0.01534698624163866, 0.005522539839148521, -0.0004317576822359115, -0.010715178214013577, -0.014964301139116287, -0.007218230050057173, -0.023977192118763924, 0.030957892537117004, 0.0020156940445303917, 0.031221812590956688, 0.02117963321506977, 0.0013319745194166899, 0.020110754296183586, -0.019253011792898178, 0.024623796343803406, -0.032303888350725174, -0.03866437450051308, -0.004331597592681646, 0.03945613652467728, -0.021232416853308678, 0.020031576976180077, -0.0010490845888853073, 0.012146947905421257, 0.018289702013134956, 0.009501143358647823, -0.00321983196772635, -0.015478946268558502, 0.0332803949713707, -0.0038301486056298018, 0.0174451544880867, 0.005667696241289377, -0.014700380153954029, 0.006357188802212477, -0.0024478640407323837, 0.0051431539468467236, -0.0037080852780491114, -0.0012346537550911307, 0.011381578631699085, 0.003010344924405217, 0.020282302051782608, -0.011282607913017273, 0.0136710898950696, 0.004374484997242689, 0.004915522411465645, 0.0026111649349331856, 0.008188138715922832, -0.00014721823390573263, 0.004374484997242689, 0.03045644424855709, -0.023053469136357307, 0.009613309986889362, -0.009158046916127205, 0.022881921380758286, 0.0027695174794644117, 0.005205834750086069, -0.01792021282017231, -0.02007116563618183, 0.01356552168726921, 0.014739968813955784, 0.0034804537426680326, 0.017788251861929893, 0.0072512198239564896, 0.007152249570935965, 0.025732263922691345, -0.0026458045467734337, 0.021113652735948563, -0.045077648013830185, 0.0060899690724909306, 0.020110754296183586, 0.0071126618422567844, -0.02133798412978649, -0.6718364357948303, -0.009850838221609592, 0.0017138347029685974, -0.010405072011053562, 0.01681174524128437, 0.03299008309841156, 0.016429061070084572, 0.005588519852608442, -0.02315903827548027, -0.010517237707972527, -0.0012998091988265514, -0.00010366101923864335, 0.0007220703992061317, -0.00705327931791544, -0.00030948821222409606, -0.03259420022368431, 0.014146147295832634, 0.011361784301698208, -0.017788251861929893, -0.008075972087681293, 0.0019018781604245305, -0.007706482894718647, -0.023581311106681824, -0.004328298848122358, 0.006673893425613642, 0.009540732018649578, 0.017141645774245262, -0.02950632944703102, -0.01134198997169733, 0.012127154506742954, -0.02355491928756237, 0.01974126510322094, -0.0023967295419424772, -0.013935010880231857, 0.04106605425477028, -0.0009245470282621682, -0.011183638125658035, 0.026378870010375977, 0.017234018072485924, 0.03299008309841156, -0.010134553536772728, -0.02133798412978649, 0.03555011376738548, -0.03259420022368431, -0.029479937627911568, 0.016046375036239624, 0.021469945088028908, 0.0013674389338120818, 0.01871197484433651, -0.008320098742842674, 0.0034771545324474573, -0.006749770604074001, -0.0037971583660691977, -0.01094610895961523, 0.002759620314463973, -0.028767351061105728, 0.021931806579232216, -0.029928602278232574, 0.010629404336214066, 0.02331738919019699, 0.0015447605401277542, 0.010589816607534885, -0.010827344842255116, -0.03293729946017265, -0.022420059889554977, 0.019015483558177948, -0.028107549995183945, 0.010438062250614166, 0.01752433180809021, -0.007271014153957367, 0.011566322296857834, 0.027711668983101845, -0.0012255815090611577, -0.007587718777358532, 0.004908923991024494, 0.02132478915154934, 0.04101327061653137, -0.02513844147324562, -0.014911516569554806, 0.010451258160173893, 0.0007224828004837036, 0.0013855834258720279, -0.03259420022368431, -0.00186888815369457, 0.029453545808792114, -0.022723568603396416, -0.017405567690730095, -0.006574923172593117, 0.014515635557472706, 0.004922120366245508, 0.01879115030169487, 0.03760869428515434, -0.014700380153954029, 0.010253317654132843, -0.005393878556787968, 0.011718076653778553, 0.0050276885740458965, -0.007752669043838978, -0.008452058769762516, -0.015241418033838272, 0.007752669043838978, -0.017194431275129318, 0.015465750358998775, 0.00804958026856184, 0.020044773817062378, -0.0003540248144418001, -0.028028372675180435, 0.000682894722558558, 0.03378184512257576, -0.04568466544151306, -0.011731273494660854, -0.010167542845010757, -0.003147253766655922, 0.007435964420437813, -0.006746471859514713, -0.024676581844687462, 0.02030869387090206, 0.021681081503629684, 0.014660792425274849, -0.03895469009876251, 0.004156750161200762, 0.026378870010375977, 0.009138252586126328, -0.029559113085269928, 0.004008295014500618, 0.0130838667973876, -0.003856540657579899, -0.019714873284101486, -0.0182369165122509, -0.01720762625336647, 0.01840846613049507, 0.009257016703486443, 0.0007220703992061317, -0.006413272116333246, 0.023356977850198746, 0.038743551820516586, 0.0108999228104949, -0.008155148476362228, 0.007257817778736353, -0.007957207970321178, -0.023422958329319954, -0.009138252586126328, -0.01728680357336998, 0.002345594810321927, -0.0014350685523822904, 0.0036058160476386547, -0.022657588124275208, -0.009600114077329636, -0.022736763581633568, 0.0008503193384967744, -0.004193039610981941, 0.010035582818090916, 0.002551782876253128, 0.014924713410437107, -0.0022301294375211, -0.02632608450949192, -0.013829442672431469, -0.022578412666916847, 0.013618305325508118, -0.00839927513152361, -0.007086269557476044, 0.01430449914187193, -0.013803049921989441, -0.004367887042462826, 0.002490751212462783, -0.016627000644803047, 0.004107265267521143, 0.01774866320192814, -0.00663760444149375, -0.04338855668902397, -0.008148550055921078, -0.023686878383159637, -0.012338290922343731, 0.01801258511841297, 0.0004035099409520626, 0.013842638581991196, -0.01926620863378048, 0.015096261166036129, 0.00828051008284092, 0.0037344773299992085, 0.014832341112196445, 0.006139454431831837, -0.023053469136357307, 0.013222425244748592, 0.012311898171901703, 0.0017253812402486801, 0.01600678823888302, 0.030430050566792488, -0.03304286673665047, 0.015439358539879322, 0.0025055967271327972, 0.011414567939937115, -0.005199236795306206, 0.008273912593722343, 0.01576926000416279, -0.005146452691406012, -0.002533638384193182, 0.007468954659998417, -0.0032594201620668173, 0.003310554660856724, 0.0198336374014616, 0.0005418621003627777, 0.02702547423541546, -0.016917314380407333, 0.0069015249609947205, -0.03264698386192322, 0.0009963004849851131, -0.00995640642940998, 0.03892829641699791, 0.018025780096650124, 0.006327497772872448, -0.01600678823888302, -0.005400476511567831, 0.0025930204428732395, -0.0012791904155164957, 0.013031082227826118, -0.016943706199526787, -0.008465254679322243, 0.015056673437356949, -0.027632491663098335, 0.015412965789437294, -0.01909465901553631, 0.011440960690379143, -0.0034573606681078672, -0.010444659739732742, 0.01815774105489254, -0.003414473496377468, 0.02560030296444893, -0.000355055759428069, -0.006367085967212915, 0.010972500778734684, -0.00543016754090786, -0.010081768967211246, 0.0017913614865392447, 0.005852440372109413, 0.01272757351398468, 0.0452096089720726, -0.010682188905775547, 0.02125880867242813, 0.0012231073342263699, -0.013222425244748592, 0.03536536917090416, 0.049511514604091644, -0.008372882381081581, 0.01006857305765152, -0.015162241645157337, 0.01840846613049507, 0.004357989877462387, 0.008603813126683235, 0.017880624160170555, -0.017299998551607132, 0.01051064021885395, -0.027078259736299515, 0.00804298184812069, 0.015201829373836517, 0.007106063421815634, 0.04378443583846092, 0.029717465862631798, 0.01711525395512581, 0.018975894898176193, 0.02449183724820614, -0.0038235504180192947, 0.0053278980776667595, -0.0009781558765098453, 0.003513443749397993, -0.010833943262696266, -0.00828710850328207, -0.015808846801519394, 8.345460082637146e-05, 0.018764758482575417, -0.006532036233693361, -0.0002412399771856144, 3.2371517590945587e-05, -0.020427457988262177, 0.00501449266448617, -0.007732875179499388, -0.013242218643426895, -0.010880129411816597, 0.00923062488436699, -0.018685583025217056, -0.02070457488298416, -0.011487146839499474, 0.020414263010025024, 0.008577421307563782, -0.011718076653778553, -0.017814643681049347, -0.01331479661166668, -0.0014053775230422616, 0.000521655660122633, 0.021443553268909454, -0.0067167808301746845, 0.02736857160925865, 0.0015117705333977938, -0.00215920084156096, 0.02449183724820614, -0.003125810297206044, 0.014726772904396057, -0.03523340821266174, 0.002474256092682481, -0.0002833023318089545, -0.016943706199526787, -0.010840540751814842, 0.011711479164659977, -0.021918609738349915, 0.04486650973558426, 0.00971887819468975, 0.01538657397031784, -0.013057474046945572, -0.007152249570935965, -0.005598417017608881, 0.008432265371084213, -0.007825247012078762, -0.005248722154647112, -0.012859533540904522, 0.009362584911286831, -0.01736597903072834, -0.0007744421600364149, -0.01296510174870491, 0.025903811678290367, -0.0006890803342685103, -0.00045691264676861465, -0.009494545869529247, -0.024069564417004585, -0.00928340945392847, 0.028371470049023628, 0.03940335288643837, -0.007435964420437813, -0.0017996089300140738, 0.01950373686850071, -0.013182836584746838, -0.025719067081809044, -0.013182836584746838, 0.009732074104249477, -0.02212974615395069, 0.015980396419763565, -0.01594080775976181, 0.0008610411314293742, 0.010675590485334396, 0.023739662021398544, -0.007600914686918259, 0.006677192635834217, -0.011460754089057446, 0.0034507624804973602, 0.0014177487464621663, -0.009784858673810959, -0.04082852602005005, 0.022261707112193108, 0.019714873284101486, 0.0036157129798084497, 0.016270708292722702, 0.007924217730760574, 0.034943096339702606, -0.007977001368999481, -0.020810144022107124, 0.009738672524690628, -0.013248817063868046, 0.007515140809118748, 0.006842142902314663, -0.006004194729030132, 0.0029361173510551453, 0.011117657646536827, 0.005463157780468464, 0.026985887438058853, -0.0073303962126374245, 0.001959610963240266, 0.005733676254749298, -0.014977497048676014, 0.0019728068727999926, 0.014911516569554806, -0.01681174524128437, -0.002068478148430586, 0.02742135524749756, -0.004493249114602804, -0.0014581616269424558, 0.029796641319990158, 0.026774751022458076, -0.030799539759755135, -0.004357989877462387, -0.0019530128920450807, -0.0031868419609963894, -0.0007958857459016144, -0.022301295772194862, -0.006327497772872448, -0.009903622791171074, -0.005829347297549248, -0.02623371221125126, 0.015294201672077179, -0.005654499866068363, -0.003198388498276472, -0.04098687693476677, 0.003440865548327565, -0.014053774997591972, -0.015056673437356949, -0.01268138736486435, -0.007238023914396763, -0.02371327020227909, -0.0022482741624116898, 0.017959801480174065, 0.01601998321712017, 0.0038730355445295572, 0.016125552356243134, -0.021905414760112762, 0.00907227210700512, 0.006175743415951729, -0.008095766417682171, -0.025494735687971115, -0.014344087801873684, -0.04069656506180763, -0.017260409891605377, 0.00037320030969567597, 0.021430356428027153, -0.006848740857094526, -0.005321300122886896, 0.01002898532897234, 0.0003532000700943172, -0.0035167427267879248, 0.01671937294304371, -0.0026260104496032, -0.012635201215744019, -0.0043843816965818405, 0.03161769360303879, 0.01249004527926445, -0.008386079221963882, -0.020110754296183586, 0.0011604261817410588, -0.0012989845126867294, 0.0230006854981184, -0.012252516113221645, -0.0006882555899210274, -0.005370785482227802, 0.02322501689195633, 0.028688175603747368, -0.005674294196069241, 0.00864340178668499, 0.019477345049381256, -0.03280533850193024, -0.0006082546315155923, -0.0014944507274776697, 0.00019979618082288653, 0.00011278484453214332, -0.018091760575771332, 0.005529137793928385, -0.015439358539879322, -0.02808115817606449, 0.016917314380407333, -0.02871456742286682, 0.023726467043161392, 0.0324886329472065, 0.010589816607534885, -0.009355987422168255, -0.018764758482575417, -0.00424252450466156, -0.003173645818606019, 0.012905719690024853, -0.015228222124278545, 0.015294201672077179, -0.009415369480848312, -0.015096261166036129, -0.0037179822102189064, -0.006393477786332369, -0.013552325777709484, 0.013202630914747715, -0.003323750803247094, -0.002329099690541625, -0.020902516320347786, 0.009850838221609592, 0.016455452889204025, -0.03576124832034111, -0.024953698739409447, -0.05323279649019241, -0.015888024121522903, 0.019886421039700508, 0.005944812670350075, 0.013657893985509872, -0.034362468868494034, 0.007600914686918259, -0.021681081503629684, 0.0033781842794269323, -0.024069564417004585, -0.028688175603747368, -0.01640266925096512, -0.0015711525920778513, 0.025653088465332985, 0.005192638840526342, 0.021311592310667038, -0.0051431539468467236, 0.02757970802485943, 0.0017022881656885147, 0.0005402126116678119, -0.005258618853986263, 0.00030082830926403403, 0.014542028307914734, -0.021047672256827354, -0.010913118720054626, 0.03713363781571388, -0.00246600853279233, -0.0022350780200213194, -0.01518863346427679, -0.007066475693136454, 0.00789122749119997, 0.010985697619616985, -0.02757970802485943, -0.029136840254068375, -0.01173787098377943, -0.02094210311770439, 0.01313005294650793, -0.01751113496720791, 0.00943516381084919, -0.008577421307563782, -0.013803049921989441, 0.01856681890785694, 0.0071324557065963745, 0.01356552168726921, -0.016692981123924255, 0.02903127111494541, 0.007864835672080517, 0.02173386514186859, -0.011130853556096554, 0.013631502166390419, -0.011401372030377388, -0.012054575607180595, 0.017893821001052856, 0.0166533924639225, 0.008432265371084213, -0.006611212622374296, 0.01698329485952854, -0.0012189835542812943, 0.005677592940628529, -0.016151944175362587, 0.00505408039316535, 1.523213904874865e-05, -0.025587107986211777, 0.03560289740562439, -0.018632797524333, -0.010220327414572239, -0.009995995089411736, -0.02863539196550846, -0.04568466544151306, -0.014489243738353252, 0.022657588124275208, -0.007488748524338007, 0.027315787971019745, 0.005601715762168169, -0.016904117539525032, 0.03161769360303879, -0.0008445460698567331, 0.03470556437969208, -0.00149197643622756, 0.02942715212702751, 0.007983599789440632, 0.009395575150847435, -0.01687772572040558, -0.014937909319996834, -1.4342953363666311e-05, -0.016455452889204025, 0.023832034319639206, 0.015478946268558502, -0.009989396668970585, -0.0009864034363999963, -0.007501944433897734, -0.00983104482293129, -0.011724675074219704, -0.009771661832928658, 0.008188138715922832, -0.00037526217056438327, 0.03130098804831505, -0.0067002857103943825, 0.0036981881130486727, -0.04605415463447571, 0.03235667198896408, 0.012806749902665615, -0.01499069295823574, -0.03423050791025162, -0.04391639679670334, -0.021192828193306923, 0.019939204677939415, -0.018368877470493317, 0.027870021760463715, 0.014924713410437107, -0.016706177964806557, -0.010259915143251419, -0.012265712022781372, -0.0218130424618721, 0.0190286785364151, -0.01169828325510025, 0.025032874196767807, -0.01356552168726921, -0.005192638840526342, 0.0003515505522955209, -0.01204797811806202, -0.02077055536210537, -0.013156444765627384, -0.0024594105780124664, 0.03140655905008316, -0.01814454421401024, -0.00927681103348732, -0.004965007305145264, 0.004179843235760927, 0.045631881803274155, 0.0069015249609947205, -0.01695690117776394, -0.01616514101624489, -0.028450647369027138, -0.01372387446463108, 0.0014697081642225385, 0.03932417929172516, -0.007218230050057173, -0.017880624160170555, -0.009362584911286831, -0.01518863346427679, -0.03272616118192673, 0.0008494945941492915, 0.03145934268832207, 0.005116761662065983, -0.0038433445151895285, 0.00012144474021624774, 0.0008709381800144911, 0.02425430901348591, -0.0085246367380023, -0.016059571877121925, -0.011269412003457546, 0.03958809748291969, -0.012549427337944508, 0.0253627747297287, 0.009184438735246658, 0.009257016703486443, -0.024597404524683952, -0.00015690908185206354, 0.003424370428547263, 0.00085444311844185, 0.007944012060761452, 0.0009360935655422509, -0.0357084646821022, -0.012397672981023788, 0.017181234434247017, 0.026418456807732582, 0.012674789875745773, -0.0019035277655348182, 0.016297100111842155, -0.015412965789437294, 0.005812852643430233, -0.02610175311565399, -0.014581616036593914, 0.023832034319639206, -0.02513844147324562, 0.0070136915892362595, 0.019253011792898178, -0.021351180970668793, -0.013895422220230103, -0.01703607849776745, 0.0001877341856015846, 0.0053542903624475, 0.0010927964467555285, -0.03686971589922905, 0.004456960130482912, 0.023832034319639206, -0.006000895984470844, -0.02465019002556801, -0.006294507533311844, -0.011704880744218826, -0.006706883665174246, 0.02409595623612404, 0.001446615089662373, -0.01193581148982048, 0.014278107322752476, -0.001681669382378459, 0.004720880649983883, -0.0034375665709376335, -0.00872257724404335, -0.014805948361754417, 0.009243820793926716, 0.004216132685542107, -0.028186725452542305, 0.002685392741113901, -0.0065419333986938, 0.016283905133605003, 0.03256781026721001, -0.03280533850193024, -0.025375971570611, -0.00037711785989813507, -0.022486040368676186, -0.009461555629968643, -0.02441265992820263, 0.011803851462900639, -0.004915522411465645, -0.013644698075950146, 0.005021090619266033, 0.019015483558177948, 0.0004466032260097563, 0.03153852000832558, -0.019055070355534554, -0.016270708292722702, -0.0006915545673109591, 0.0022499235346913338, 0.026431653648614883, -0.005868935491889715, -0.020915711298584938, 0.0006045432528480887, 0.02330419421195984, 0.01594080775976181, 0.00908546894788742, 0.008656597696244717, 0.009540732018649578, -0.011335392482578754, -0.00032247803756035864, 0.012899122200906277, 0.01233169250190258, 0.018289702013134956, 0.008630204945802689, -0.008260716684162617, 0.016283905133605003, -0.004235926549881697, -0.00820133462548256, -0.019055070355534554, 0.00476046884432435, -0.021126847714185715, -0.01256922073662281, 0.016508236527442932, -0.01776186004281044, -0.01935858093202114, -0.011031883768737316, -0.040564604103565216, -0.032699767500162125, -0.011216627433896065, -0.012602210976183414, 0.016706177964806557, 0.015083065256476402, -0.003820251440629363, -0.0128793278709054, 0.0027546717319637537, -0.031142637133598328, -0.004021490924060345, -0.01070198230445385, 0.003856540657579899, -0.004169946536421776, 0.005037585273385048, 0.018184132874011993, -0.030905108898878098, -0.003820251440629363, -0.023053469136357307, -0.012008389458060265, 0.005235525779426098, 0.030403658747673035, 0.009144851006567478, -0.022076962515711784, -0.0077790613286197186, -0.005548931658267975, -0.03433607891201973, 0.0018952802056446671, -0.005308104213327169, -0.009349389001727104, -0.017722271382808685, -0.00705327931791544, 0.010193935595452785, -0.027658885344862938, -0.018025780096650124, -0.007831845432519913, 0.01109786331653595, -0.014805948361754417, 0.003139006206765771, 0.1982571929693222, -0.0072314259596168995, -0.009105262346565723, 0.03710724413394928, -0.0010474351001903415, -0.017590312287211418, 0.015175437554717064, -0.02307986095547676, -0.016943706199526787, -0.005436765495687723, -0.006294507533311844, 0.00501449266448617, -0.018104957416653633, 0.008755567483603954, 0.004602116532623768, 0.020110754296183586, -0.02402997575700283, -0.00031608622521162033, -0.0226048044860363, -0.011361784301698208, 0.009646300226449966, -0.00047588194138370454, -0.013229022733867168, -0.02030869387090206, 0.017814643681049347, 0.002474256092682481, -0.0178542323410511, -0.013816245831549168, 0.018527230247855186, 0.016521433368325233, -0.02322501689195633, 0.03797818347811699, -0.011190235614776611, -0.004278813488781452, -0.0028206519782543182, -0.003612414002418518, -0.00364870298653841, 0.004041285254061222, 0.0017864129040390253, 0.026418456807732582, -0.004357989877462387, 0.024597404524683952, 0.006789358798414469, -0.009824446402490139, 0.007402974180877209, 0.025653088465332985, 0.004915522411465645, -0.006393477786332369, -0.00523222703486681, 0.010642600245773792, -0.023343781009316444, 0.02855621464550495, 0.03552372008562088, 0.04061738774180412, -0.008108962327241898, -0.00036722084041684866, 0.020968496799468994, 0.006525438278913498, -0.019371775910258293, 0.005096967797726393, -0.011916017159819603, 0.015874827280640602, 0.003747673239558935, 0.030086955055594444, -0.019767656922340393, -0.01656102016568184, -0.031037069857120514, 0.008273912593722343, -0.0038961286190897226, -0.005113462917506695, -0.016310296952724457, -0.001842496101744473, -0.003280863631516695, 0.0016066170064732432, -0.022881921380758286, -0.018580013886094093, 0.013789854012429714, 0.0166533924639225, 0.027474140748381615, 0.013486345298588276, -0.00784504134207964, -0.01801258511841297, -0.01538657397031784, -0.0030614796560257673, -0.021918609738349915, -0.007119259797036648, -0.00021154890418983996, 0.012542828917503357, -0.005512642674148083, 0.016442256048321724, -0.008181540295481682, -0.00729740597307682, -0.000835886225104332, -0.011111059226095676, 0.019371775910258293, 0.005898626521229744, -0.0064033749513328075, 0.007455758284777403, -0.0015480596339330077, 0.00543016754090786, -0.03602517023682594, 0.01966208964586258, 0.016191532835364342, 0.016429061070084572, 0.004245823714882135, -0.0023769354447722435, -0.016297100111842155, -0.01390861812978983, 0.01303768064826727, 0.003942315001040697, -0.007633904926478863, -0.013855834491550922, 0.004453660920262337, -0.013644698075950146, 0.008333294652402401, 0.018857130780816078, -0.01554492674767971, -0.02744774892926216, 0.024716168642044067, -0.017418762668967247, 0.010134553536772728, -0.02077055536210537, 0.01495110522955656, 0.004833046812564135, 0.0006556778680533171, -0.009850838221609592, -0.0221957266330719, 0.00074598821811378, 0.0015752763720229268, -0.037793438881635666, 0.0030977686401456594, -0.006693687755614519, -0.0017088862368837, -0.011836841702461243, -0.022947901859879494, 0.020269107073545456, 0.015439358539879322, -0.013987794518470764, -0.007508542854338884, 0.013987794518470764, -0.0023258007131516933, -0.01011475920677185, 0.00843886286020279, 0.01145415659993887, 0.0004647477762773633, -0.01880434714257717, 0.023488938808441162, -0.004390980117022991, -0.009976200759410858, -0.014673988334834576, -0.02434668131172657, 0.0019035277655348182, -0.007818649522960186, -0.004074275027960539, 0.00808916799724102, -0.0036289088893681765, -0.020889319479465485, -0.03235667198896408, -0.01888352259993553, 0.007244621869176626, -0.03161769360303879, -0.021126847714185715, 0.020480243489146233, -0.011170441284775734, 0.00343096861615777, -0.014871928840875626, -0.16996489465236664, 0.011480548419058323, 0.006776162888854742, -0.023277802392840385, 0.005040884483605623, 0.014502439647912979, 0.014212126843631268, -0.010081768967211246, 0.0031934399157762527, -0.00848504900932312, 0.00729740597307682, -0.021113652735948563, -0.038347672671079636, 0.002094870200380683, 0.016785353422164917, -0.024069564417004585, -0.011322195641696453, 0.03145934268832207, 0.017827840521931648, 0.008188138715922832, 0.014924713410437107, -0.03818931803107262, 0.006660697516053915, -0.00868298951536417, 0.0017286803340539336, 0.016758961603045464, 0.0036058160476386547, 0.005040884483605623, -0.0013031081762164831, -0.020717771723866463, -0.02450503222644329, -0.02078375220298767, 0.04431227967143059, 0.022182531654834747, 0.007587718777358532, -0.0059745036996901035, -0.009817847982048988, -0.01991281285881996, -0.0006255744374357164, 0.004509744234383106, 0.011876429431140423, 0.03948253020644188, 0.006324198562651873, -0.00967269204556942, -0.012311898171901703, 0.021232416853308678, -0.007805453147739172, 0.011883027851581573, 0.014819145202636719, -0.012806749902665615, 0.013697481714189053, 0.0036651981063187122, 0.02402997575700283, 0.024953698739409447, 0.01293211244046688, 0.0006923793698661029, -0.00353983580134809, 0.01840846613049507, -0.005288310348987579, -0.0053443931974470615, -0.012635201215744019, -0.025006482377648354, -0.014845537021756172, -0.011150647886097431, 0.012278908863663673, -0.009553927928209305, -0.01030610129237175, -0.015558122657239437, -0.021232416853308678, -0.003470556577667594, 0.014185735024511814, -0.018434857949614525, -0.01331479661166668, -0.028740959241986275, 0.00688173109665513, -0.0015769258607178926, -0.0007575347553938627, 0.015478946268558502, -0.016679786145687103, -0.019239814952015877, -0.01149374432861805, 0.04425949230790138, 0.0015497091226279736, -0.015663690865039825, -0.003208285430446267, 0.022090159356594086, -0.00727761210873723, 0.0130838667973876, -0.01499069295823574, -0.0077592674642801285, -0.006159248296171427, -0.018989091739058495, -0.017154842615127563, -0.021430356428027153, 0.015360182151198387, 0.010193935595452785, -0.004592219367623329, 0.01090652123093605, 0.018857130780816078, 0.004806654993444681, 0.006409972906112671, -0.023040272295475006, -0.022499235346913338, -0.00784504134207964, 0.02702547423541546, -0.015888024121522903, 0.003932417836040258, 0.0009426915785297751, 0.033570706844329834, 0.0008511440828442574, -0.01799938827753067, 0.020163537934422493, 0.03396658971905708, 0.03275255486369133, -0.0029641587752848864, 0.01584843546152115, -0.02784362994134426, 0.003655301174148917, 0.004288710653781891, -0.015492142178118229, 0.02585102804005146, 0.007271014153957367, -0.027104651555418968, -0.010002592578530312, -0.002400028519332409, -0.010048778727650642, -0.0967533141374588, -0.029559113085269928, -0.009290006943047047, 0.035972386598587036, 0.004341494757682085, 0.011183638125658035, -0.00808916799724102, 0.010893325321376324, -0.007501944433897734, 0.03386101871728897, 0.00663760444149375, -0.01790701597929001, -0.012674789875745773, 0.026919906958937645, -0.006004194729030132, 0.00025381744490005076, -0.003612414002418518, -0.021060869097709656, -0.02593020349740982, 0.009501143358647823, 0.013842638581991196, -0.004255720414221287, 0.0040478832088410854, 0.0030449845362454653, 0.019477345049381256, 0.015003888867795467, -0.016785353422164917, 0.021298397332429886, 0.02702547423541546, 0.00844546128064394, 0.00025113701121881604, -0.015676887705922127, 0.021628297865390778, -0.04193699359893799, -0.023647291585803032, 0.017933407798409462, -0.014172539114952087, -0.013288404792547226, 0.043414946645498276, -0.0054433634504675865, 0.033808235079050064, 0.011137451976537704, 0.02665598690509796, -0.0089205177500844, 0.024848129600286484, 0.005601715762168169, -0.011163843795657158, 0.017471548169851303, -0.013050876557826996, -0.019701676443219185, -0.03816292807459831, 0.00221033557318151, 0.007732875179499388, -0.002705186605453491, 0.013895422220230103, -0.028503431007266045, -0.009349389001727104, 0.03705446049571037, -0.0016684733564034104, 0.02757970802485943, -0.011744469404220581, -0.0021542522590607405, -0.0003195914323441684, 0.06312981992959976, -0.0021806443110108376, -0.02472936548292637, -0.02680114284157753, -0.015624103136360645, 0.030984284356236458, -0.020559418946504593, -0.005997596774250269, 0.012549427337944508, -0.03069397248327732, 0.015307397581636906, -0.012146947905421257, 0.0132752088829875, -0.029374368488788605, -0.023963995277881622, 0.006875133141875267, -0.03737116605043411, 0.0074491603299975395, -0.015808846801519394, 0.02211655117571354, -0.03639465942978859, -0.0024396164808422327, 0.022420059889554977, -0.0005583571619354188, -0.004143554251641035, 0.01617833599448204, -0.041831422597169876, 0.01086033508181572, 0.014515635557472706, 0.03760869428515434, -0.016138747334480286, 0.004661498591303825, -0.0005200061714276671, -0.01347314938902855, 0.0013187784934416413, -0.009415369480848312, -0.0008053703932091594, -0.03314843401312828, -0.011592715047299862, -0.06207413971424103, 0.012232722714543343, 0.016692981123924255, -0.010147749446332455, -0.0019761058501899242, -0.0035167427267879248, 0.021773453801870346, -0.007871433161199093, -0.010537032037973404, 0.014462851919233799, -0.012575819157063961, 0.01697009801864624, -0.01237128023058176, 0.0037080852780491114, -0.008946910500526428, -0.034045763313770294, 0.0178542323410511, 0.014528832398355007, 0.011315598152577877, 0.013017886318266392, 0.01312345452606678, 0.008313500322401524, 0.006776162888854742, 0.011718076653778553, -0.014185735024511814, 0.0030862221028655767, -0.008696185424923897, 0.021905414760112762, -0.010405072011053562, -0.017827840521931648, 0.0388491190969944, -0.028133941814303398, 0.006687089800834656, 0.0034573606681078672, 0.01840846613049507, -0.03217192739248276, -0.02387162297964096, 0.014053774997591972, -0.01459481194615364, 0.024280700832605362, 0.002797558903694153, -0.019714873284101486, -0.01134198997169733, 0.018276505172252655, 0.004730777814984322, -0.0003360864648129791, 1.911105209728703e-05, 0.012450456619262695, 0.015993591398000717, 0.019530128687620163, 0.008603813126683235, 0.01887032762169838, 0.02354172244668007, -0.029849426820874214, -0.012463652528822422, -0.020440654829144478, 0.005515941884368658, 0.0014177487464621663, -0.012496642768383026, -0.02567948028445244, 0.027236610651016235, 0.0217998456209898, 0.007336994167417288, -0.016125552356243134, 0.002607865957543254, -0.007614111062139273, -0.010134553536772728, -0.00749534647911787, 0.010642600245773792, -0.04552631452679634, -0.02205057069659233, 0.006030587013810873, 0.01817093789577484, 0.016534628346562386, -0.006139454431831837, 0.015967199578881264, -0.017735468223690987, 0.0039687068201601505, -0.005331197287887335, -0.0011307350359857082, 0.020678183063864708, 0.0011035181814804673, -0.017590312287211418, 0.01950373686850071, 0.02958550490438938, 0.006776162888854742, -0.004123760387301445, 0.008979900740087032, -0.00923062488436699, 0.007244621869176626, -0.011315598152577877, 0.03549732640385628, -0.0026705472264438868, -0.02488771826028824, 0.012701181694865227, 0.00868958793580532, -0.00923722330480814, -0.0058557395823299885, 0.007581120822578669, 0.02480854094028473, 0.014726772904396057, -0.0007068124832585454, 0.0038169524632394314, 0.0069015249609947205, -0.0005340269417501986, 0.026748359203338623, -0.005360888317227364, -0.022802744060754776, -0.0198336374014616, 0.001204962725751102, 0.027606099843978882, -0.0035893209278583527, 0.0038004573434591293, 0.004443764220923185, -0.007706482894718647, 0.00903928279876709, -0.025164835155010223, -4.824799543712288e-05, -0.013433561660349369, 0.029163232073187828, 0.026471242308616638, 0.004691189620643854, 0.022499235346913338, 0.00727761210873723, 0.018764758482575417, -0.0038532414473593235, 0.0057732644490897655, -0.020097557455301285, 0.0198204405605793, -0.002335697878152132, -0.0017204327741637826, -0.0037905604112893343, -0.014937909319996834, 0.0024495136458426714, -0.010873530991375446, 0.012740769423544407, 0.001967858290299773, 0.035655681043863297, -0.002678794553503394, 0.04275514557957649, 0.024320287629961967, -0.013499541208148003, 0.008564225398004055, 0.010385277681052685, 0.012397672981023788, 0.01792021282017231, 0.017260409891605377, -0.02355491928756237, 0.0007971228333190084, 0.026207320392131805, -0.01951693184673786, 0.010279709473252296, -0.021456750109791756, -0.007937413640320301, 0.0029691073577851057, -0.01689092256128788, 0.031749654561281204, -0.003424370428547263, -0.0030334379989653826, 0.03053561970591545, 0.017022881656885147, 0.024557817727327347, 0.023027077317237854, -0.01035228744149208, -0.005268516018986702, 0.03272616118192673, 0.005100266542285681, 0.003638806054368615, -0.0018325990531593561, 0.010292905382812023, 0.00240827607922256, -0.0253627747297287, -0.01657421700656414, 0.00928340945392847, 0.011401372030377388, -0.0002876322832889855, -0.0233833696693182, 0.003995099104940891, 0.027210218831896782, -0.0005806254339404404, 0.038585200905799866, -0.014739968813955784, -0.03372906148433685, 0.0022895117290318012, -4.394381903694011e-06, 0.007911021821200848, -0.025244010612368584, -0.021667886525392532]" +25,banana,"[-0.013975119218230247, -0.03290277719497681, 0.007606626953929663, -0.01658310554921627, -0.005163286346942186, 0.004501410759985447, -0.01978381536900997, -0.01201254315674305, -0.01467321626842022, -0.0250919908285141, 0.007534183096140623, 0.018967173993587494, -0.008844762109220028, -0.0005235730204731226, -0.007027074694633484, -0.00238736136816442, 0.04847166687250137, -0.005344396457076073, 0.011406647972762585, -0.008443026803433895, -0.003915272653102875, -0.0063619064167141914, -0.0009253083262592554, -0.017162658274173737, 0.0013986644335091114, 0.0014093663776293397, 0.01854568161070347, -0.007494668010622263, 0.024841729551553726, -0.0062861694023013115, 0.02768680453300476, -0.00908843707293272, -0.02327430248260498, -0.013777544721961021, -0.020587285980582237, -0.01236159261316061, -0.002968560205772519, 0.004814237356185913, 0.003381820861250162, 0.0004416618321556598, 0.011215658858418465, 0.014357096515595913, -0.0006141281337477267, -0.008844762109220028, -0.01612209714949131, 0.010590005666017532, -0.01847982220351696, -0.01672799326479435, -0.038066063076257706, -0.0022144834510982037, 0.017821241170167923, 0.012578924186527729, -0.008983064442873001, 0.014396611601114273, -0.005173164885491133, 0.016991427168250084, -0.005976635497063398, 0.01209815964102745, -0.019889188930392265, -0.00739588076248765, 0.001723839552141726, 0.026593558490276337, -0.003806606400758028, 0.011709596030414104, -0.00494266115128994, 0.0012858822010457516, 0.006447521969676018, -0.008489127270877361, 0.0033027909230440855, 0.006174210458993912, 0.006207139231264591, 0.008772318251430988, 0.0031266200821846724, -0.0317700169980526, 0.011498848907649517, -0.010346329770982265, -0.029530836269259453, -0.012526237405836582, -0.030610911548137665, 0.01033974438905716, 0.016029896214604378, -0.016635792329907417, -0.008502298966050148, 0.01704411394894123, 0.017004597932100296, 0.0250919908285141, -0.016490904614329338, 0.0094309002161026, -0.00743539584800601, -0.020099936053156853, -0.005617707967758179, 0.02274743653833866, 0.012005957774817944, 0.017544636502861977, -0.022549862042069435, 0.023182101547718048, -0.0141463503241539, 0.019335979595780373, 0.0011615747353062034, -0.026646245270967484, -0.012183775193989277, 0.00939138513058424, -0.03018941916525364, -0.024762699380517006, -0.009720676578581333, 0.0048274090513587, 0.014818104915320873, -0.0016629205783829093, 0.02282646670937538, -0.032744716852903366, -0.0031990641728043556, 0.0364854671061039, -0.008772318251430988, -0.042623456567525864, -0.008357411250472069, -0.008620844222605228, -0.009450658224523067, -0.0045508043840527534, -0.00961530301719904, -0.014844448305666447, 0.033508673310279846, -0.0028648334555327892, 0.028951283544301987, -0.012539409101009369, 0.013118961825966835, -0.003381820861250162, -0.002812146907672286, -0.009417728520929813, -0.016411874443292618, -0.010438531637191772, 0.03956763073801994, 0.02219422720372677, 0.007652727887034416, 0.005383911542594433, -0.016372358426451683, 0.02593497559428215, -0.018822286278009415, -0.004389451816678047, -0.0051073068752884865, -0.027581432834267616, 0.005400375928729773, 0.01003679633140564, -0.015713777393102646, -0.013790716417133808, -0.0031414381228387356, 0.011841312050819397, 0.013191405683755875, 0.03277106210589409, -0.0031546098180115223, -0.010991740971803665, 0.00767907127737999, -0.01878277026116848, 0.012789670377969742, -0.008601086214184761, 0.004540925845503807, -0.005762596148997545, -0.010497803799808025, 0.01460735872387886, -0.013896089047193527, 0.012289147824048996, -0.0004151127359364182, 0.0024367549922317266, 0.006332269869744778, -0.008871105499565601, 0.0096548181027174, 0.031085090711712837, 0.018427137285470963, -0.0014134825905784965, -0.0006614637095481157, -0.021996652707457542, 0.004237977787852287, 0.03219150751829147, -0.004172119777649641, 0.023287475109100342, 0.018677398562431335, 0.012308905832469463, -0.008034705184400082, -0.013461424969136715, -0.006431057583540678, 0.0016061179339885712, -0.029030313715338707, 0.0009714090847410262, 0.004725329112261534, 0.02219422720372677, -0.015476686879992485, 0.000979641336016357, 0.010682206600904465, -0.022852810099720955, 0.011498848907649517, -0.013007002882659435, 0.025763744488358498, 0.01703094132244587, 0.02251034788787365, -0.010649277828633785, -0.6811323165893555, -0.003503658575937152, 0.013481182046234608, 0.010662449523806572, 0.021048294380307198, 0.03192807734012604, 0.0030903981532901525, -0.005271952133625746, -0.02258937805891037, -0.02212836965918541, 0.004557390231639147, 0.002519077854231, 0.013817059807479382, -0.0046462989412248135, 0.002239180263131857, -0.01954672671854496, 0.014620529487729073, -0.011242002248764038, 0.005420133471488953, 0.0037802632432430983, -0.01682019606232643, 0.013230920769274235, -0.017294375225901604, -0.0033077301923185587, 0.008969892747700214, 0.007494668010622263, 0.018598368391394615, -0.005815282929688692, 0.0011706302175298333, 0.010892953723669052, -0.013118961825966835, 0.0011969736078754067, 0.03026844933629036, 0.0037111120764166117, 0.039277855306863785, 0.0032797404564917088, -0.0199287049472332, 0.022549862042069435, -0.003067347686737776, 0.03148024156689644, -0.008522056974470615, -0.024749528616666794, 0.022470831871032715, -0.005716495681554079, -0.01923060603439808, 0.005910777486860752, 0.030084045603871346, -0.00233796751126647, -0.008614257909357548, -0.026027178391814232, 0.027238968759775162, 0.01440978329628706, 0.0031364988535642624, 0.0034312144853174686, -0.006954630371183157, 0.013540455140173435, 0.02654087170958519, -0.005008519161492586, -0.022167883813381195, -0.001959282672032714, -0.030373821035027504, -0.0032303468324244022, -0.034035541117191315, -0.020942920818924904, -0.0033291340805590153, 0.009042336605489254, -0.026145722717046738, 0.014172693714499474, 0.030821656808257103, -0.018888143822550774, 0.025052474811673164, 0.0016629205783829093, -0.0246441550552845, -0.014278067275881767, 0.023998742923140526, 0.015344970859587193, 0.0156610906124115, -0.016701649874448776, -0.013514111749827862, 0.001789697795175016, 0.006720833480358124, 0.015107881277799606, 0.005423426162451506, -0.02274743653833866, 0.031058747321367264, -0.012901630252599716, -0.03208613768219948, 0.0049261967651546, 0.012776498682796955, -0.021864935755729675, 0.023182101547718048, 0.01589817926287651, -0.006243361625820398, 0.0009681161609478295, -0.020244823768734932, -0.018466651439666748, -0.031085090711712837, -0.012144260108470917, -0.011242002248764038, -0.022325944155454636, 0.009272840805351734, -0.0034312144853174686, 0.012440621852874756, 0.003493779804557562, 0.022549862042069435, 0.007764686830341816, -0.010820508934557438, 0.02090340666472912, 0.03930420055985451, -0.03993643820285797, -0.01126175932586193, 0.003852707101032138, 0.006075422745198011, -0.009029164910316467, 0.02617206610739231, -0.028424417600035667, 0.002239180263131857, -0.0026392689906060696, 0.020442398265004158, -0.022102026268839836, 0.012723812833428383, 0.0015805978327989578, 0.003911979496479034, 0.0029290453530848026, -0.010333158075809479, 0.02502613142132759, -0.012216703966259956, -0.028002925217151642, -0.021785907447338104, -0.014857620000839233, -0.005805403925478458, 0.004363108426332474, -0.000700567034073174, -0.011314446106553078, 0.04122725874185562, 0.007455152925103903, 0.0003031537344213575, -0.006240068469196558, 0.019586240872740746, -0.014040977694094181, -0.025197364389896393, -0.007837130688130856, 0.013171648606657982, 0.015200082212686539, 0.00030665245139971375, -0.009911665692925453, -0.01803198643028736, -0.018769599497318268, -0.012664539739489555, 0.00450799660757184, 0.0034443861804902554, 0.00018831341003533453, -0.0010232724016532302, 0.013593140989542007, 0.03332427144050598, -0.011933513917028904, 0.0035530522000044584, -0.03340329974889755, -0.005683566443622112, 0.014422954991459846, 0.01811101660132408, 0.0316646434366703, -0.01589817926287651, 0.006816328037530184, -0.00497888308018446, -0.02926740236580372, 0.0004577147774398327, 0.005719788372516632, -0.020942920818924904, -0.050157636404037476, 0.010701964609324932, -0.046495918184518814, -0.01186106912791729, 0.00499864062294364, -0.017544636502861977, 0.012967487797141075, -0.002749581588432193, -0.0032303468324244022, 0.00908843707293272, 0.008653772994875908, -0.003067347686737776, 0.0002160973526770249, -0.013645827770233154, -0.00724440673366189, 0.03493121266365051, 0.019191091880202293, 0.0016275218222290277, 0.04143800586462021, -0.0278448648750782, 0.013817059807479382, -0.005667101591825485, -0.002945509972050786, -0.0017617079429328442, -0.0038592929486185312, -0.0063651991076767445, 0.015292284078896046, 0.006108351983129978, 0.01801881566643715, -0.002258937805891037, 0.015279112383723259, 0.02197030931711197, 0.004534339997917414, 0.013309950940310955, 0.0004420734476298094, 0.012499894946813583, -0.03287643566727638, 0.017202172428369522, -0.018967173993587494, 0.017004597932100296, 0.03793434798717499, 0.0039514945819973946, -0.027476059272885323, -0.014475641772150993, -0.001244720770046115, 0.0011023023398593068, 0.020666316151618958, -0.008061048574745655, 0.010728307999670506, 0.0005202800966799259, -0.019981391727924347, -0.0002978027332574129, 0.008166422136127949, 0.0028088539838790894, 0.006170917302370071, -0.015200082212686539, 0.008772318251430988, 0.01000386755913496, 0.04099017009139061, 0.0019280000124126673, -0.02510516159236431, 0.01221011858433485, 0.005897605791687965, -0.005176458042114973, 0.011406647972762585, 0.0006235952605493367, -0.005071084480732679, 0.013079446740448475, 0.0009162527858279645, 0.028108298778533936, 0.007672485429793596, -0.0048702172935009, 0.017623666673898697, 0.012460379861295223, 0.0035431734286248684, 0.017465606331825256, -0.010155340656638145, 0.028240013867616653, 0.017294375225901604, 0.010978569276630878, 0.013790716417133808, -0.0021321605890989304, -0.0002823672257363796, -0.02359042316675186, -0.004000888206064701, 0.006009564734995365, -0.02128538489341736, 0.013975119218230247, 0.04349278286099434, 0.032217852771282196, 0.025895461440086365, 0.03606397286057472, 0.014883962459862232, -0.020416054874658585, 0.0024120581801980734, -0.0009434193489141762, -0.00019561956287361681, 0.008278381079435349, -0.01254599541425705, 0.008436440490186214, 0.00505791325122118, -0.00065817084396258, -0.003064054762944579, 0.007909574545919895, -0.021245868876576424, -0.00010187446605414152, -0.005621001124382019, -0.014660044573247433, 0.01780806854367256, -0.009213568642735481, -0.01849299483001232, -0.029003970324993134, -0.03369307890534401, 0.007455152925103903, -0.0038757575675845146, -0.008561571128666401, -0.012960902415215969, -0.012717226520180702, -0.004353229887783527, -0.01650407537817955, 0.017768554389476776, -0.0018967173527926207, 0.020126279443502426, -0.003750626929104328, 0.0043729874305427074, 0.020244823768734932, -0.0037111120764166117, 0.005136942956596613, -0.0061873821541666985, 0.004817530512809753, -0.009523102082312107, 0.00017668532382231206, -0.010695378296077251, -0.014923477545380592, -0.013909260742366314, 0.016490904614329338, -0.011288102716207504, -0.00973384827375412, -0.02539493888616562, -0.0050151050090789795, 0.010939054191112518, -0.002107463777065277, -0.0005931357736699283, -0.011136628687381744, -0.005202800966799259, -0.0072905076667666435, -0.0020514843054115772, 0.0027825108263641596, -0.015792807564139366, 0.036933302879333496, 0.012065229937434196, -0.01613526977598667, -0.006954630371183157, -0.017900271341204643, -0.00532134622335434, 0.06327659636735916, 0.030689941719174385, -0.006519965827465057, 0.020363368093967438, 0.010655864141881466, 0.0032649224158376455, -0.011386889964342117, 0.009536273777484894, 0.015331799164414406, -0.00016042657080106437, -0.003362063318490982, -0.0011854483745992184, 0.017241688445210457, -0.005331224761903286, 0.010708549991250038, -0.003958080429583788, -0.019638927653431892, -0.01755780726671219, 0.021851764991879463, 0.00028668917366303504, -0.01212450210005045, 0.005436597857624292, 0.007725171744823456, 0.03203345090150833, 0.006233482621610165, 0.0022836346179246902, 0.012526237405836582, 0.032981809228658676, 0.020047249272465706, -0.008528642356395721, 0.008884277194738388, 0.004415795207023621, 0.006256532855331898, -0.009911665692925453, 0.0030245399102568626, 0.004985468927770853, 0.005617707967758179, 0.013461424969136715, 0.0018473237287253141, -0.009299184195697308, 0.01026730053126812, 0.007250992581248283, -0.00787006039172411, -0.020890234038233757, 0.010958811268210411, -0.014660044573247433, -0.017966128885746002, 0.021035123616456985, 0.003483901033177972, 0.0023297353181988, 0.029399119317531586, -0.0023692504037171602, -0.012881872244179249, -0.00041737660649232566, 0.0008261093171313405, 0.002092645736411214, -0.005308174528181553, 0.014515156857669353, -0.00226387707516551, -0.010181684046983719, -0.01205864455550909, -0.016227470710873604, 0.008739388547837734, 0.010069725103676319, 0.005061205942183733, -0.020152622833848, -0.023867027834057808, -0.015647917985916138, -0.008963306434452534, -0.010813923552632332, -0.011340789496898651, -0.00735636567696929, -0.0043005431070923805, 0.019810158759355545, 0.015634747222065926, 0.02061362937092781, 0.02206251211464405, -0.01849299483001232, -0.0018127481453120708, 0.023458706215023994, -6.222446245374158e-06, -0.03672255575656891, -0.003334073582664132, -0.010537318885326385, -0.02744971588253975, 0.003324194811284542, 0.019955048337578773, -0.020152622833848, -0.011149800382554531, 0.00939138513058424, 0.02395922876894474, -0.014212208800017834, 0.01487079169601202, -0.005239023361355066, 0.0029241060838103294, -0.02054777182638645, 0.0197047870606184, -0.0022424731869250536, -0.00467593502253294, -0.017768554389476776, 0.016793852671980858, -0.012855528853833675, -0.006707662250846624, 0.00715220533311367, 0.011577879078686237, 0.016016725450754166, 0.016543591395020485, 0.016240643337368965, -0.010240957140922546, -0.013645827770233154, 0.024222662672400475, -0.0061116451397538185, 0.005835040472447872, -0.006967802066355944, 0.01160422246903181, 0.014778589829802513, 0.0034871939569711685, -0.009108195081353188, -0.0058218687772750854, -0.027238968759775162, -0.011847898364067078, -0.044757261872291565, 0.027634119614958763, 0.015292284078896046, -0.0031842461321502924, 0.011913755908608437, 0.003294558497145772, -0.015542545355856419, -0.01757097989320755, 0.009556030854582787, 0.011037841439247131, 0.00698097376152873, 0.006737298332154751, -0.016925567761063576, -0.0407530814409256, -0.025513483211398125, -0.014291238971054554, 0.02249717526137829, 0.007593455258756876, -0.01779489777982235, -0.028240013867616653, 0.027634119614958763, 0.014330754056572914, -0.027818521484732628, -0.03635374829173088, -0.05073719099164009, 0.006954630371183157, 0.01509470958262682, 0.017742210999131203, 0.0278448648750782, -0.013645827770233154, 0.0045475116930902, -0.006414592731744051, 0.00443225959315896, -0.011492263525724411, -0.030400164425373077, -0.029794268310070038, 0.00458373362198472, 0.029030313715338707, 0.011577879078686237, 0.02532907947897911, 0.004784601274877787, 0.021641017869114876, 0.018216390162706375, 0.002193079562857747, 0.002257291227579117, -0.009786535054445267, 0.002769339131191373, -0.021548816934227943, 0.024657325819134712, 0.018848629668354988, 0.03453606367111206, 0.009305769577622414, 0.008120321668684483, -0.002718298928812146, 0.02136441320180893, -0.0002844252740032971, -0.024301690980792046, -0.010254128836095333, -0.00752759724855423, 0.0032501043751835823, -0.012855528853833675, -0.01688605360686779, 0.015305455774068832, 0.017847584560513496, 0.0024318157229572535, 0.027397029101848602, 0.0049163177609443665, 0.0015731888124719262, -0.015911351889371872, 0.012302319519221783, -0.006503501441329718, 0.011847898364067078, 0.00481094466522336, 0.014686387963593006, -0.015252768993377686, -0.0092069823294878, 0.023682624101638794, -0.009490172378718853, 0.02168053388595581, 0.002963620936498046, 0.005759303458034992, -0.006536430679261684, -0.025434453040361404, -0.0048274090513587, 0.031085090711712837, -0.014067321084439754, -0.022102026268839836, 0.018967173993587494, -0.018203217536211014, -0.006338855717331171, -0.012519652023911476, -0.035036586225032806, -0.026290610432624817, 0.008666944690048695, -0.0024202903732657433, -0.008403511717915535, 0.005805403925478458, -0.011801796965301037, -0.011189315468072891, -0.00490314606577158, 0.00886451918631792, 0.04091114178299904, 0.009496758691966534, 0.028766879811882973, 0.019112061709165573, -0.005676980596035719, -0.027054566890001297, -0.0063816639594733715, -0.006052372511476278, -0.006954630371183157, 0.020495085045695305, 0.011762281879782677, 0.006562774069607258, -0.03495755419135094, 0.01620112732052803, 0.01909889094531536, -0.006822913885116577, -0.031243151053786278, 0.020877063274383545, 0.02685699239373207, 0.018664225935935974, -0.00713244779035449, -0.019573070108890533, -0.02349822036921978, 0.02099560759961605, -0.014120006933808327, -0.018348107114434242, -0.03408822789788246, -0.025342252105474472, -0.01771586760878563, 0.023853855207562447, -0.02236546017229557, 0.024051429703831673, 0.005782353691756725, -0.023827511817216873, -0.0010068078991025686, 0.02493393048644066, -0.034483376890420914, -0.0038889292627573013, -0.011419819667935371, 0.02607986330986023, 0.0032451648730784655, 0.016754336655139923, -0.006424471735954285, 6.82764730299823e-05, -0.01840079389512539, -0.0022622307296842337, 0.013395566493272781, 0.035800542682409286, -0.006592410150915384, -0.004428966902196407, -0.00226387707516551, 0.01862471178174019, 0.007310264743864536, 0.008469370193779469, -0.010873195715248585, -0.02077168971300125, -0.006147867068648338, -0.015042022801935673, 0.018756426870822906, 0.028924940153956413, -0.054477937519550323, -0.0062894620932638645, 0.0037769703194499016, -0.01742609031498432, -0.03482583910226822, -0.0012899982975795865, 0.0014653458492830396, 0.00038609394687227905, -0.00748808216303587, 0.014844448305666447, 0.0010372672695666552, 0.01396194752305746, 0.02228643000125885, -0.0055551426485180855, -0.005851504858583212, 0.01418586540967226, -0.01642504520714283, 0.01741291955113411, -0.009872150607407093, 0.0021338071674108505, -0.017781725153326988, -0.003225407563149929, -0.001671152887865901, -0.003121680812910199, 0.01757097989320755, -0.023366505280137062, -0.012295734137296677, 0.007995191030204296, -0.006901944056153297, 0.02183859422802925, 0.006338855717331171, -0.015344970859587193, 0.03701233118772507, -0.021180011332035065, -0.004616662859916687, -0.03508927300572395, -0.031901732087135315, 0.02137758582830429, -0.027739491313695908, 0.010853438638150692, 0.0063651991076767445, -0.007402466610074043, -0.014093663543462753, -0.008554985746741295, 0.02252351865172386, 0.005439891014248133, -0.03408822789788246, -0.03437800332903862, -0.012921387329697609, 0.0398574098944664, -0.008910620585083961, -0.008219108916819096, -0.01695191115140915, -0.018361277878284454, -0.016411874443292618, 0.012638197280466557, -0.019744301214814186, -0.014686387963593006, 0.007771272677928209, 0.026277439668774605, 0.013606312684714794, 0.018466651439666748, -0.012710641138255596, -0.011880827136337757, -0.009951180778443813, -0.001245544059202075, -0.013619484379887581, 0.0018967173527926207, -0.015595232136547565, 0.026659416034817696, 0.0006721657118760049, -0.01410683523863554, -0.012137673795223236, -0.01190058421343565, -0.026264267042279243, -0.015081537887454033, 0.0059173633344471455, 0.013290193863213062, -0.007896403782069683, -0.00735636567696929, 0.010517561808228493, 0.011953270994126797, 0.00500193377956748, 0.008205937221646309, -0.04264979809522629, 0.005472819786518812, 0.017913442105054855, 0.007079761009663343, 0.018348107114434242, -0.01772903837263584, -0.025355422869324684, -0.016899224370718002, 0.013178233988583088, 0.007665899582207203, -0.0025865824427455664, 0.0061116451397538185, 0.0035728097427636385, -0.00235937163233757, -0.022865982726216316, 0.017544636502861977, 0.006717540789395571, -0.00017596498946659267, 0.016991427168250084, -0.0035728097427636385, -0.017781725153326988, -0.014554671943187714, 0.013632656075060368, -0.026804305613040924, -0.007705414202064276, 0.0006717540672980249, 0.00445201713591814, 0.014027805998921394, -0.02144344337284565, -0.008383754640817642, -0.0036386679857969284, -0.039593975991010666, -0.007573697715997696, -0.0039284443482756615, 0.008456198498606682, 0.02381434105336666, -0.003994302358478308, -0.014857620000839233, -0.005910777486860752, 0.015805978327989578, -0.010122411884367466, -0.0094309002161026, 0.023221615701913834, -0.005946999415755272, -0.0023659574799239635, -0.012216703966259956, 0.021035123616456985, -0.03364039212465286, 0.011301274411380291, -0.0002656968426890671, -0.033350612968206406, -0.02615889348089695, 0.04631151631474495, 0.01178862527012825, -0.016556762158870697, -0.014133178628981113, 0.015950866043567657, 0.0027808642480522394, 0.014962992630898952, -0.01666213572025299, 0.006200553383678198, -0.01642504520714283, -0.00522585166618228, 0.007323436439037323, -0.026409154757857323, -0.02609303593635559, -0.0029290453530848026, 0.008574742823839188, -0.01231549121439457, -0.017241688445210457, 0.20495085418224335, -0.013145305216312408, 0.004804358817636967, 0.036248378455638885, 0.00243346206843853, 0.0067340051755309105, 0.03095337375998497, 0.01635918766260147, -0.004313714802265167, 0.00266067311167717, -0.007060003466904163, 0.015239597298204899, 0.002675491152331233, 0.0036485467571765184, 0.010326572693884373, 0.008936963975429535, -0.037302110344171524, -0.019375495612621307, -0.01664896309375763, -0.021575160324573517, 0.00263268337585032, -0.013349466025829315, -0.02077168971300125, -0.007428810000419617, 0.03329792618751526, 0.0061149378307163715, -0.025368595495820045, -0.0037703844718635082, 0.02287915349006653, -0.004781308583915234, 0.003697940381243825, -0.014172693714499474, -0.009233325719833374, 0.009858978912234306, -0.012763327918946743, -0.0018901316216215491, -0.004685814026743174, 0.004531047306954861, 0.021996652707457542, 0.02881956659257412, -0.01962575688958168, 0.003576102666556835, -0.009990695863962173, 0.005255487747490406, -0.02190445177257061, 0.026883333921432495, -0.0016349308425560594, -0.02472318522632122, 0.020402884110808372, 0.01779489777982235, -0.03203345090150833, 0.010576833970844746, 0.030900686979293823, 0.0360376313328743, -0.01209157332777977, 0.009483586996793747, 0.0181900467723608, 0.013165063224732876, -0.004214927554130554, 0.012262804433703423, -0.015042022801935673, 0.02061362937092781, -0.014027805998921394, 0.029530836269259453, -0.005143528804183006, -0.008126907050609589, -0.013118961825966835, 0.012539409101009369, 0.012796256691217422, -0.01825590431690216, -0.002822025679051876, -0.028924940153956413, 0.0043729874305427074, 0.0017995764501392841, -0.029846955090761185, -0.03630106523633003, 0.016319673508405685, 0.02220739983022213, 0.018427137285470963, -0.002296806313097477, 0.009312355890870094, 0.006299341097474098, -0.021351242437958717, -0.0025124920066446066, -0.024578295648097992, -0.0368279293179512, 0.029846955090761185, -0.009516515769064426, 0.010800751857459545, -0.013033346273005009, -0.0010520854266360402, -0.030294790863990784, 0.008100563660264015, -0.02381434105336666, -0.006585824303328991, 0.02715993858873844, -0.00991825107485056, 0.036011286079883575, -0.014739074744284153, -0.0071785482577979565, -0.0046034911647439, -0.0410955436527729, 0.03095337375998497, -0.009931422770023346, -0.014014634303748608, 0.003101923270151019, -0.002703480888158083, 0.017505120486021042, 0.00767907127737999, -0.0028648334555327892, -0.008370582945644855, -0.012677711434662342, 0.002249059034511447, -0.001467815600335598, 0.04549487307667732, 0.000828990654554218, -0.004409209359437227, -0.015805978327989578, 0.0053015886805951595, -0.0048372880555689335, 0.01825590431690216, -0.027107253670692444, 0.0037111120764166117, 0.014080492779612541, -0.026791132986545563, -0.010023624636232853, -0.00707317516207695, 0.01014875527471304, 0.014291238971054554, -0.023867027834057808, 0.006082008592784405, -0.023695796728134155, 0.004382865969091654, 0.0055551426485180855, 0.01014875527471304, 0.0070204888470470905, 0.00707317516207695, -0.022339116781949997, 0.010234370827674866, 0.0028088539838790894, 0.0001507536362623796, -0.005318053066730499, 0.010952225886285305, -0.007843717001378536, 0.0003498719015624374, -0.01710997149348259, 0.02273426577448845, 0.011591050773859024, -0.013323122635483742, -0.021206354722380638, -0.010175098665058613, -0.0008298138855025172, -0.018651055172085762, 0.0017962835263460875, 0.028029268607497215, -0.004728621803224087, -0.017689524218440056, -0.028556134551763535, 0.002249059034511447, 0.02204933948814869, -0.036933302879333496, -0.009832635521888733, 0.008936963975429535, -0.006543016526848078, -0.02615889348089695, -0.019283292815089226, -0.17028307914733887, 0.01243403647094965, 0.01418586540967226, -0.022378630936145782, 0.01695191115140915, 0.006233482621610165, 0.015252768993377686, -0.010662449523806572, -0.0010990094160661101, 0.005976635497063398, 0.025144677609205246, 0.0041029686108231544, -0.03511561453342438, -0.028951283544301987, 0.006510087288916111, -0.001870374078862369, -0.009404556825757027, 0.01221011858433485, 0.024920759722590446, 0.0018621417693793774, 0.020363368093967438, -0.024354377761483192, 0.01878277026116848, -0.024169975891709328, 0.010122411884367466, 0.020574115216732025, -0.008173007518053055, -0.010721721686422825, -0.010708549991250038, -0.005159993190318346, -0.008311309851706028, -0.024051429703831673, 0.021087808534502983, -0.008245452307164669, 0.019968219101428986, 0.010879782028496265, -0.010293642990291119, -0.009779948741197586, 0.0013739676214754581, 0.0063651991076767445, 0.021706877276301384, 0.03285009041428566, 0.005318053066730499, 0.0027709854766726494, 0.001041383482515812, 0.03983106464147568, 0.01833493448793888, -0.006335563026368618, 0.006816328037530184, -0.03155926987528801, 0.012947730720043182, -0.0023890077136456966, 0.017926612868905067, 0.023761654272675514, 0.019586240872740746, 0.008752560243010521, -0.008047876879572868, 0.02219422720372677, -0.020152622833848, -0.003806606400758028, -0.00499864062294364, -0.021324899047613144, 0.008877690881490707, -0.003796727629378438, -0.012480136938393116, -0.0156610906124115, -0.013112376444041729, -0.00242522987537086, -0.039725691080093384, 0.016912396997213364, -0.01656993478536606, 0.008627429604530334, 0.028766879811882973, -0.028108298778533936, 0.01513422466814518, 0.012196946889162064, -0.0188618004322052, 0.007619798649102449, 0.005374032538384199, 0.000520691741257906, -0.02351139299571514, 0.03269203007221222, -0.02372213825583458, -0.009009407833218575, -0.009068679995834827, 0.014844448305666447, -0.005584779195487499, 0.008726216852664948, 0.005196215584874153, -0.032586660236120224, 0.014962992630898952, -0.022852810099720955, 0.0013723211595788598, -0.030373821035027504, 0.008344239555299282, 0.024999789893627167, 0.015489858575165272, 0.0005667924997396767, 0.005295002833008766, -0.005509042181074619, 0.009141123853623867, 0.0031233271583914757, -0.028398074209690094, 0.018427137285470963, 0.060958389192819595, 0.000771776307374239, 0.016003552824258804, 0.021509302780032158, 0.027818521484732628, 0.0013048164546489716, 0.00463971309363842, 0.011176143772900105, 0.014278067275881767, 0.033798448741436005, -0.0007178548257797956, -0.010886367410421371, -0.002680430421605706, -0.0034443861804902554, 0.019217435270547867, -0.023564079776406288, 0.03801337629556656, -0.0008372229058295488, -0.01583232171833515, 0.004333472345024347, 0.005953585263341665, 0.005268659442663193, -0.1080075204372406, -0.04549487307667732, 0.010774408467113972, 0.03627471998333931, -0.003319255542010069, 0.005298295523971319, -0.0067504700273275375, 0.02821367047727108, 0.0018341520335525274, 0.02448609471321106, -0.01923060603439808, -0.0386192724108696, 0.014212208800017834, -0.0013360991142690182, 0.025263221934437752, 0.007791030220687389, -0.011538363993167877, -0.0047154501080513, 0.0008047054288908839, 0.017847584560513496, 0.01483127661049366, -0.007277335971593857, -0.0036156175192445517, -0.007013902999460697, -0.004748379345983267, 0.00454421853646636, -0.015858665108680725, 0.03561613708734512, 0.019454525783658028, 0.0014085432048887014, 0.009938009083271027, -0.025065647438168526, 0.02168053388595581, -0.023445533588528633, -0.00248120934702456, 0.020495085045695305, -0.019283292815089226, 0.006816328037530184, 0.010089483112096786, -0.027133595198392868, 0.013527283445000648, -0.0006466456106863916, 0.015147395431995392, -0.033719420433044434, 0.01574012078344822, -0.026040349155664444, -0.003569516818970442, -0.007323436439037323, 0.004455310292541981, -0.03018941916525364, -0.018453478813171387, 0.00939138513058424, -0.011149800382554531, -0.0022984526585787535, 0.015344970859587193, -0.02625109627842903, 0.007856888696551323, 0.014027805998921394, -0.010352916084229946, 0.0043005431070923805, 0.0006803979631513357, -0.01718900166451931, 0.005864676553755999, 0.022457661107182503, 0.01932280883193016, 0.011591050773859024, -0.0240250863134861, -0.016464561223983765, 0.007889817468822002, -0.019072547554969788, -0.00970091950148344, -0.00012399871775414795, 0.004293957259505987, 0.02038971148431301, -0.023485049605369568, -0.0075407689437270164, -0.021917622536420822, -0.0139224324375391, 0.011531778611242771, -0.014949820935726166, -0.008265209384262562, -0.016082582995295525, 0.0030805193819105625, -0.00707317516207695, 0.014422954991459846, 0.0011385243851691484, 0.01687288098037243, 0.003984423819929361, 0.014462470076978207, -0.02934643253684044, 0.029846955090761185, 0.015911351889371872, 0.0073695373721420765, -0.017926612868905067, -0.0231294147670269, 0.004162240773439407, 0.003556345123797655, -0.00456397607922554, 0.025368595495820045, -0.02395922876894474, -0.012453793548047543, -0.010807337239384651, -0.06554212421178818, 0.026725275442004204, 0.006882186513394117, -0.005239023361355066, 0.032981809228658676, 0.002581643173471093, 0.025039304047822952, -0.01575329154729843, -0.017992472276091576, 0.010774408467113972, -0.013408738188445568, 0.006325684022158384, -0.018466651439666748, -0.016161613166332245, -0.011051013134419918, -0.030558224767446518, 0.01596403867006302, -0.005914070177823305, 0.024525608867406845, 0.014212208800017834, 0.023946058005094528, 0.022549862042069435, 0.026830649003386497, 0.003162842011079192, -0.027107253670692444, -0.015213253907859325, -0.01221011858433485, 0.011011498048901558, -0.01239452138543129, -0.026896506547927856, 0.011887412518262863, -0.027423372492194176, 0.008080806583166122, 0.027502402663230896, -0.002049837727099657, -0.006404714193195105, 0.017742210999131203, -0.009022579528391361, 0.006974387913942337, 0.013039931654930115, -0.0099643524736166, -0.02365628071129322, 0.007165377028286457, -0.016398701816797256, -0.001041383482515812, 0.0014752246206626296, -0.0186378825455904, 0.010576833970844746, 0.017307545989751816, -0.015410828404128551, 0.003460850566625595, 0.01825590431690216, 0.01247355155646801, -0.026791132986545563, -0.013487768359482288, -0.028556134551763535, 0.028240013867616653, 0.0043762801215052605, -0.015634747222065926, -0.02091657742857933, 0.014646872878074646, 0.010372673161327839, 0.0186378825455904, 0.00923991110175848, -0.005828454624861479, -0.020863890647888184, -0.0075605264864861965, -0.019256949424743652, 0.01254599541425705, -0.036459121853113174, 0.004254442639648914, -0.014594187028706074, 0.028081955388188362, -0.008693288080394268, 0.017623666673898697, 0.0016020017210394144, -0.012954316101968288, 0.00023729547683615237, -0.01763683743774891, 0.019507210701704025, 0.021930795162916183, 0.0023511392064392567, -0.017768554389476776, 0.007909574545919895, 0.009951180778443813, 0.008607672527432442, -0.016161613166332245, 0.0029586816672235727, 0.013724857941269875, -0.0029389241244643927, -0.016754336655139923, 0.023919714614748955, -0.002945509972050786, -0.003944908734411001, -0.001746889902278781, 0.030084045603871346, -0.009832635521888733, -0.01475224643945694, 0.021272212266921997, 0.013408738188445568, 0.010886367410421371, -0.010958811268210411, -0.01037925947457552, -0.012769913300871849, -0.0012677711201831698, 0.006908529903739691, -0.014001462608575821, -0.02737068571150303, 0.004764843732118607, 0.01787392795085907, 0.005795525386929512, -0.000624830077867955, 0.004511289764195681, 0.03213882073760033, -0.021733220666646957, 0.030163075774908066, -0.013362637721002102, -0.007237820886075497, -0.01924377866089344, 0.027344342321157455, 0.0334559865295887, -0.006322391331195831, 0.023458706215023994, -0.01687288098037243, -0.0037473340053111315, 0.00916746724396944, -0.0027248847763985395, -0.025671543553471565, 0.002543774666264653, -0.023234788328409195, -0.0022786951158195734, -0.026277439668774605, -0.018519338220357895, -0.025144677609205246, -0.018005643039941788, -0.007705414202064276, 0.02274743653833866, 0.03385113552212715, -0.02219422720372677, 0.057691819965839386, -0.0025750573258847, -0.0060194432735443115, -0.0007240290869958699, 0.004145776387304068, 0.003911979496479034, 0.014159522019326687, -8.499829709762707e-05, -0.023853855207562447, -0.0007425516960211098, 0.00970091950148344, 0.009332112967967987, 0.008798661641776562, -0.0061149378307163715, -0.020429227501153946, 0.011426405049860477, -0.002137100091204047, 0.004945953842252493, -0.012684297747910023, 0.002878005150705576, 0.020745346322655678, 0.005439891014248133, 0.025342252105474472, 0.000468828366138041, -0.014120006933808327, -0.0024466337636113167, -0.006309219636023045, -0.0036090316716581583, -0.013237507082521915, -0.04180681332945824, 0.015805978327989578, 0.009200396947562695, -0.04180681332945824, -0.006315805483609438, 0.008838175795972347, -0.015213253907859325, -0.0019955048337578773, 0.007843717001378536, 0.008495713584125042, -0.005104013718664646, -0.012157431803643703, 0.018888143822550774, -0.023234788328409195, -0.0195335540920496, 0.02517102099955082, -0.017742210999131203, -0.006618753541260958, -0.017215345054864883, 0.0018967173527926207]" diff --git a/words.csv b/words.csv new file mode 100644 index 0000000..26830cf --- /dev/null +++ b/words.csv @@ -0,0 +1,27 @@ +text +"red" +"potatoes" +"soda" +"cheese" +"water" +"blue" +"crispy" +"hamburger" +"coffee" +"green" +"milk" +"la croix" +"yellow" +"chocolate" +"french fries" +"latte" +"cake" +"brown" +"cheeseburger" +"espresso" +"cheesecake" +"black" +"mocha" +"fizzy" +"carbon" +"banana" \ No newline at end of file