Skip to content

Instantly share code, notes, and snippets.

@breadchris
Last active December 13, 2019 02:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save breadchris/44a134811712bbf979897f9bca23cd69 to your computer and use it in GitHub Desktop.
Save breadchris/44a134811712bbf979897f9bca23cd69 to your computer and use it in GitHub Desktop.
Display the source blob
Display the rendered blob
Raw
{
"cells": [
{
"cell_type": "code",
"execution_count": 1,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"['rec.autos' 'comp.sys.mac.hardware' 'comp.graphics' 'sci.space'\n",
" 'talk.politics.guns' 'sci.med' 'comp.sys.ibm.pc.hardware'\n",
" 'comp.os.ms-windows.misc' 'rec.motorcycles' 'talk.religion.misc'\n",
" 'misc.forsale' 'alt.atheism' 'sci.electronics' 'comp.windows.x'\n",
" 'rec.sport.hockey' 'rec.sport.baseball' 'soc.religion.christian'\n",
" 'talk.politics.mideast' 'talk.politics.misc' 'sci.crypt']\n"
]
},
{
"data": {
"text/html": [
"<div>\n",
"<style scoped>\n",
" .dataframe tbody tr th:only-of-type {\n",
" vertical-align: middle;\n",
" }\n",
"\n",
" .dataframe tbody tr th {\n",
" vertical-align: top;\n",
" }\n",
"\n",
" .dataframe thead th {\n",
" text-align: right;\n",
" }\n",
"</style>\n",
"<table border=\"1\" class=\"dataframe\">\n",
" <thead>\n",
" <tr style=\"text-align: right;\">\n",
" <th></th>\n",
" <th>content</th>\n",
" <th>target</th>\n",
" <th>target_names</th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <th>0</th>\n",
" <td>From: lerxst@wam.umd.edu (where's my thing)\\nS...</td>\n",
" <td>7</td>\n",
" <td>rec.autos</td>\n",
" </tr>\n",
" <tr>\n",
" <th>1</th>\n",
" <td>From: guykuo@carson.u.washington.edu (Guy Kuo)...</td>\n",
" <td>4</td>\n",
" <td>comp.sys.mac.hardware</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2</th>\n",
" <td>From: twillis@ec.ecn.purdue.edu (Thomas E Will...</td>\n",
" <td>4</td>\n",
" <td>comp.sys.mac.hardware</td>\n",
" </tr>\n",
" <tr>\n",
" <th>3</th>\n",
" <td>From: jgreen@amber (Joe Green)\\nSubject: Re: W...</td>\n",
" <td>1</td>\n",
" <td>comp.graphics</td>\n",
" </tr>\n",
" <tr>\n",
" <th>4</th>\n",
" <td>From: jcm@head-cfa.harvard.edu (Jonathan McDow...</td>\n",
" <td>14</td>\n",
" <td>sci.space</td>\n",
" </tr>\n",
" </tbody>\n",
"</table>\n",
"</div>"
],
"text/plain": [
" content target \\\n",
"0 From: lerxst@wam.umd.edu (where's my thing)\\nS... 7 \n",
"1 From: guykuo@carson.u.washington.edu (Guy Kuo)... 4 \n",
"2 From: twillis@ec.ecn.purdue.edu (Thomas E Will... 4 \n",
"3 From: jgreen@amber (Joe Green)\\nSubject: Re: W... 1 \n",
"4 From: jcm@head-cfa.harvard.edu (Jonathan McDow... 14 \n",
"\n",
" target_names \n",
"0 rec.autos \n",
"1 comp.sys.mac.hardware \n",
"2 comp.sys.mac.hardware \n",
"3 comp.graphics \n",
"4 sci.space "
]
},
"execution_count": 1,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"import pandas as pd\n",
"df = pd.read_json('https://raw.githubusercontent.com/selva86/datasets/master/newsgroups.json')\n",
"print(df.target_names.unique())\n",
"df.head()"
]
},
{
"cell_type": "code",
"execution_count": 2,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"From: (Guy Kuo) Subject: SI Clock Poll - Final Call Summary: Final call for SI clock reports Keywords: SI,acceleration,clock,upgrade Article-I.D.: shelley.1qvfo9INNc3s Organization: University of Washington Lines: 11 NNTP-Posting-Host: carson.u.washington.edu A fair number of brave souls who upgraded their SI clock oscillator have shared their experiences for this poll. Please send a brief message detailing your experiences with the procedure. Top speed attained, CPU rated speed, add on cards and adapters, heat sinks, hour of usage per day, floppy disk functionality with 800 and 1.4 m floppies are especially requested. I will be summarizing in the next two days, so please add to the network knowledge base if you have done the clock upgrade and havent answered this poll. Thanks. Guy Kuo \n"
]
}
],
"source": [
"import re\n",
" \n",
"text_corpus = df.content.values.tolist()\n",
"text_corpus = [re.sub('\\S*@\\S*\\s?', '', doc) for doc in text_corpus] #removing email addresses\n",
"text_corpus = [re.sub('\\s+', ' ', doc) for doc in text_corpus] #removing newline characters\n",
"text_corpus = [re.sub(\"\\'\", \"\", doc) for doc in text_corpus] #removing single quote characters\n",
" \n",
"print(text_corpus[1])"
]
},
{
"cell_type": "code",
"execution_count": 4,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"['from', 'guy', 'kuo', 'subject', 'si', 'clock', 'poll', 'final', 'call', 'summary', 'final', 'call', 'for', 'si', 'clock', 'reports', 'keywords', 'si', 'acceleration', 'clock', 'upgrade', 'article', 'shelley', 'qvfo', 'innc', 'organization', 'university', 'of', 'washington', 'lines', 'nntp', 'posting', 'host', 'carson', 'washington', 'edu', 'fair', 'number', 'of', 'brave', 'souls', 'who', 'upgraded', 'their', 'si', 'clock', 'oscillator', 'have', 'shared', 'their', 'experiences', 'for', 'this', 'poll', 'please', 'send', 'brief', 'message', 'detailing', 'your', 'experiences', 'with', 'the', 'procedure', 'top', 'speed', 'attained', 'cpu', 'rated', 'speed', 'add', 'on', 'cards', 'and', 'adapters', 'heat', 'sinks', 'hour', 'of', 'usage', 'per', 'day', 'floppy', 'disk', 'functionality', 'with', 'and', 'floppies', 'are', 'especially', 'requested', 'will', 'be', 'summarizing', 'in', 'the', 'next', 'two', 'days', 'so', 'please', 'add', 'to', 'the', 'network', 'knowledge', 'base', 'if', 'you', 'have', 'done', 'the', 'clock', 'upgrade', 'and', 'havent', 'answered', 'this', 'poll', 'thanks', 'guy', 'kuo']\n"
]
}
],
"source": [
"import gensim\n",
"import warnings\n",
"warnings.simplefilter(\"ignore\", DeprecationWarning)\n",
" \n",
"def doc_to_words(sentences):\n",
" for sentence in sentences:\n",
" yield(gensim.utils.simple_preprocess(str(sentence), deacc=True))\n",
" \n",
"words = list(doc_to_words(text_corpus))\n",
" \n",
"print(words[1])"
]
},
{
"cell_type": "code",
"execution_count": 6,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"['guy', 'kuo', 'si', 'clock', 'poll', 'final', 'call', 'summary', 'final', 'call', 'si', 'clock', 'reports', 'keywords', 'si', 'acceleration', 'clock', 'upgrade', 'article', 'shelley', 'qvfo', 'innc', 'organization', 'university', 'washington', 'lines', 'nntp', 'posting', 'host', 'carson', 'washington', 'fair', 'number', 'brave', 'souls', 'upgraded', 'si', 'clock', 'oscillator', 'shared', 'experiences', 'poll', 'please', 'send', 'brief', 'message', 'detailing', 'experiences', 'procedure', 'top', 'speed', 'attained', 'cpu', 'rated', 'speed', 'add', 'cards', 'adapters', 'heat', 'sinks', 'hour', 'usage', 'per', 'day', 'floppy', 'disk', 'functionality', 'floppies', 'especially', 'requested', 'summarizing', 'next', 'two', 'days', 'please', 'add', 'network', 'knowledge', 'base', 'done', 'clock', 'upgrade', 'havent', 'answered', 'poll', 'thanks', 'guy', 'kuo']\n"
]
}
],
"source": [
"from nltk.corpus import stopwords\n",
"stop_words = stopwords.words('english')\n",
"stop_words.extend(['from', 'subject', 're', 'edu', 'use'])\n",
" \n",
"def remove_stopwords(text):\n",
" return [[word for word in gensim.utils.simple_preprocess(str(doc)) if word not in stop_words] for doc in text_corpus]\n",
" \n",
"words = remove_stopwords(words)\n",
" \n",
"print(words[1])"
]
},
{
"cell_type": "code",
"execution_count": 17,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"0 documents lemmatised\n",
"500 documents lemmatised\n",
"1000 documents lemmatised\n",
"1500 documents lemmatised\n",
"2000 documents lemmatised\n",
"2500 documents lemmatised\n",
"3000 documents lemmatised\n",
"3500 documents lemmatised\n",
"4000 documents lemmatised\n",
"4500 documents lemmatised\n",
"5000 documents lemmatised\n",
"5500 documents lemmatised\n",
"6000 documents lemmatised\n",
"6500 documents lemmatised\n",
"7000 documents lemmatised\n",
"7500 documents lemmatised\n",
"8000 documents lemmatised\n",
"8500 documents lemmatised\n",
"9000 documents lemmatised\n",
"9500 documents lemmatised\n",
"10000 documents lemmatised\n",
"10500 documents lemmatised\n",
"11000 documents lemmatised\n"
]
}
],
"source": [
"import spacy\n",
"nlp = spacy.load('en', disable=['parser', 'ner'])\n",
"\n",
"def lemmatization(texts, allowed_postags=['NOUN', 'ADJ', 'VERB', 'ADV']):\n",
" texts_out = []\n",
" for idx, sent in enumerate(texts):\n",
" if (idx) % 500 == 0:\n",
" print(str(idx) + ' documents lemmatised')\n",
" doc = nlp(\" \".join(sent)) \n",
" texts_out.append([token.lemma_ for token in doc if token.pos_ in allowed_postags])\n",
" return texts_out\n",
"\n",
"data_lemmatized = lemmatization(words, allowed_postags=['NOUN', 'ADJ', 'VERB', 'ADV'])"
]
},
{
"cell_type": "code",
"execution_count": 19,
"metadata": {},
"outputs": [],
"source": [
"# Create Dictionary\n",
"import gensim.corpora as corpora\n",
"id2word = corpora.Dictionary(data_lemmatized)\n",
"\n",
"# Create Corpus\n",
"corpus = [id2word.doc2bow(text) for text in data_lemmatized]\n",
"\n",
"# Build LDA model\n",
"lda_model = gensim.models.ldamodel.LdaModel(corpus=corpus,\n",
" id2word=id2word,\n",
" num_topics=20, \n",
" per_word_topics=True)"
]
},
{
"cell_type": "code",
"execution_count": 20,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"[(0,\n",
" '0.021*\"line\" + 0.015*\"car\" + 0.015*\"post\" + 0.013*\"nntp\" + 0.011*\"host\" + '\n",
" '0.010*\"get\" + 0.010*\"price\" + 0.009*\"be\" + 0.009*\"power\" + 0.008*\"new\"'),\n",
" (1,\n",
" '0.008*\"write\" + 0.007*\"post\" + 0.007*\"line\" + 0.007*\"good\" + 0.006*\"be\" + '\n",
" '0.006*\"make\" + 0.006*\"article\" + 0.006*\"question\" + 0.006*\"also\" + '\n",
" '0.005*\"problem\"'),\n",
" (2,\n",
" '0.016*\"write\" + 0.010*\"go\" + 0.010*\"line\" + 0.009*\"article\" + 0.009*\"be\" + '\n",
" '0.008*\"post\" + 0.008*\"think\" + 0.006*\"people\" + 0.006*\"make\" + 0.006*\"say\"'),\n",
" (3,\n",
" '0.023*\"gun\" + 0.013*\"people\" + 0.009*\"man\" + 0.008*\"write\" + '\n",
" '0.006*\"firearm\" + 0.006*\"make\" + 0.005*\"crime\" + 0.005*\"study\" + '\n",
" '0.005*\"homosexual\" + 0.005*\"number\"'),\n",
" (4,\n",
" '0.402*\"ax\" + 0.008*\"militia\" + 0.005*\"tm\" + 0.004*\"write\" + 0.004*\"beep\" + '\n",
" '0.003*\"know\" + 0.003*\"right\" + 0.003*\"tq\" + 0.003*\"say\" + 0.003*\"people\"'),\n",
" (5,\n",
" '0.017*\"people\" + 0.016*\"say\" + 0.011*\"believe\" + 0.008*\"know\" + '\n",
" '0.008*\"write\" + 0.008*\"come\" + 0.007*\"think\" + 0.007*\"go\" + 0.007*\"see\" + '\n",
" '0.006*\"right\"'),\n",
" (6,\n",
" '0.019*\"write\" + 0.013*\"article\" + 0.012*\"line\" + 0.009*\"post\" + '\n",
" '0.008*\"year\" + 0.008*\"think\" + 0.007*\"know\" + 0.007*\"nntp\" + 0.007*\"say\" + '\n",
" '0.006*\"make\"'),\n",
" (7,\n",
" '0.017*\"file\" + 0.012*\"drive\" + 0.012*\"use\" + 0.011*\"system\" + '\n",
" '0.011*\"window\" + 0.008*\"line\" + 0.008*\"program\" + 0.008*\"disk\" + '\n",
" '0.007*\"work\" + 0.007*\"run\"'),\n",
" (8,\n",
" '0.011*\"get\" + 0.011*\"go\" + 0.011*\"write\" + 0.009*\"be\" + 0.009*\"line\" + '\n",
" '0.009*\"see\" + 0.008*\"year\" + 0.007*\"say\" + 0.007*\"take\" + 0.006*\"time\"'),\n",
" (9,\n",
" '0.015*\"list\" + 0.014*\"book\" + 0.013*\"send\" + 0.012*\"include\" + 0.012*\"mail\" '\n",
" '+ 0.008*\"address\" + 0.008*\"post\" + 0.008*\"available\" + 0.007*\"copy\" + '\n",
" '0.007*\"information\"'),\n",
" (10,\n",
" '0.018*\"key\" + 0.012*\"government\" + 0.009*\"law\" + 0.008*\"public\" + '\n",
" '0.006*\"right\" + 0.006*\"encryption\" + 0.006*\"state\" + 0.006*\"people\" + '\n",
" '0.005*\"chip\" + 0.005*\"make\"'),\n",
" (11,\n",
" '0.041*\"armenian\" + 0.035*\"turkish\" + 0.020*\"turk\" + 0.012*\"event\" + '\n",
" '0.011*\"greek\" + 0.010*\"genocide\" + 0.010*\"people\" + 0.008*\"muslim\" + '\n",
" '0.007*\"mountain\" + 0.006*\"population\"'),\n",
" (12,\n",
" '0.023*\"team\" + 0.012*\"game\" + 0.012*\"write\" + 0.011*\"year\" + 0.011*\"player\" '\n",
" '+ 0.011*\"think\" + 0.010*\"say\" + 0.010*\"play\" + 0.008*\"good\" + '\n",
" '0.008*\"season\"'),\n",
" (13,\n",
" '0.009*\"space\" + 0.008*\"write\" + 0.008*\"launch\" + 0.007*\"orbit\" + '\n",
" '0.007*\"use\" + 0.007*\"line\" + 0.007*\"system\" + 0.006*\"time\" + 0.006*\"speed\" '\n",
" '+ 0.005*\"program\"'),\n",
" (14,\n",
" '0.017*\"rate\" + 0.010*\"problem\" + 0.008*\"insurance\" + 0.007*\"bike\" + '\n",
" '0.007*\"write\" + 0.007*\"homicide\" + 0.006*\"purchase\" + 0.006*\"gun\" + '\n",
" '0.006*\"get\" + 0.005*\"know\"'),\n",
" (15,\n",
" '0.022*\"church\" + 0.008*\"worship\" + 0.008*\"appear\" + 0.007*\"sin\" + '\n",
" '0.007*\"know\" + 0.007*\"say\" + 0.007*\"marriage\" + 0.007*\"scripture\" + '\n",
" '0.007*\"law\" + 0.006*\"also\"'),\n",
" (16,\n",
" '0.010*\"slave\" + 0.008*\"cool\" + 0.007*\"word\" + 0.007*\"say\" + 0.007*\"nuclear\" '\n",
" '+ 0.006*\"water\" + 0.006*\"law\" + 0.006*\"know\" + 0.006*\"write\" + '\n",
" '0.005*\"make\"'),\n",
" (17,\n",
" '0.013*\"say\" + 0.008*\"make\" + 0.008*\"know\" + 0.008*\"think\" + 0.008*\"people\" '\n",
" '+ 0.007*\"write\" + 0.006*\"go\" + 0.005*\"kill\" + 0.005*\"time\" + 0.005*\"thing\"'),\n",
" (18,\n",
" '0.027*\"line\" + 0.020*\"post\" + 0.014*\"nntp\" + 0.012*\"host\" + 0.012*\"thank\" + '\n",
" '0.010*\"know\" + 0.010*\"write\" + 0.009*\"need\" + 0.009*\"use\" + 0.009*\"card\"'),\n",
" (19,\n",
" '0.016*\"motif\" + 0.011*\"line\" + 0.011*\"amp\" + 0.011*\"application\" + '\n",
" '0.009*\"cell\" + 0.009*\"picture\" + 0.008*\"sleeve\" + 0.008*\"adcom\" + '\n",
" '0.006*\"write\" + 0.006*\"disc\"')]\n"
]
}
],
"source": [
"from pprint import pprint\n",
"pprint(lda_model.print_topics())\n",
"doc_lda = lda_model[corpus]"
]
},
{
"cell_type": "code",
"execution_count": 21,
"metadata": {},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"/home/breadchris/projects/pocket_clone/pocket_data/env/lib/python3.8/site-packages/pyLDAvis/_prepare.py:257: FutureWarning: Sorting because non-concatenation axis is not aligned. A future version\n",
"of pandas will change to not sort by default.\n",
"\n",
"To accept the future behavior, pass 'sort=False'.\n",
"\n",
"To retain the current behavior and silence the warning, pass 'sort=True'.\n",
"\n",
" return pd.concat([default_term_info] + list(topic_dfs))\n"
]
},
{
"data": {
"text/html": [
"\n",
"<link rel=\"stylesheet\" type=\"text/css\" href=\"https://cdn.rawgit.com/bmabey/pyLDAvis/files/ldavis.v1.0.0.css\">\n",
"\n",
"\n",
"<div id=\"ldavis_el2994861398254952430083053112277\"></div>\n",
"<script type=\"text/javascript\">\n",
"\n",
"var ldavis_el2994861398254952430083053112277_data = {\"mdsDat\": {\"x\": [0.10581359491665082, -0.1770047593282785, -0.001833282271534274, 0.012807978699133252, 0.08166580636828075, -0.01308287121786891, -0.159917003732246, 0.05812774719535468, -0.12288306203188938, 0.07398924130593333, -0.08305675187641343, -0.031479932310264865, 0.03519350684063547, -0.0960635903876282, 0.07125985960252873, 0.042388167531187335, 0.14941249891992123, 0.13872566535133263, -0.020194718832795062, -0.06386809474204012], \"y\": [-0.08661201848043364, 0.01312283729854125, -0.06441164194303868, -0.04966568737602264, -0.05737600775617184, -0.07272256346514083, -0.004623983153403142, -0.10835296428110298, -0.041612496284403305, -0.05150613059586243, -0.006825495812602893, -0.0352912945604909, -0.06895476686836345, 0.07456689313304457, 0.028174518960468315, 0.0016170270491429899, 0.14921744376199397, 0.12258470384896218, 0.06988601880761378, 0.1887856077172698], \"topics\": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20], \"cluster\": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], \"Freq\": [10.300811767578125, 10.06515884399414, 9.71107006072998, 9.352972030639648, 9.044584274291992, 7.797872066497803, 7.484724521636963, 5.097229957580566, 4.6858978271484375, 4.408182144165039, 4.363588809967041, 4.147014617919922, 4.0915303230285645, 2.6594607830047607, 1.745190143585205, 1.5440832376480103, 1.2655584812164307, 1.0845165252685547, 0.8335022330284119, 0.31704673171043396]}, \"tinfo\": {\"Category\": [\"Default\", \"Default\", \"Default\", \"Default\", \"Default\", \"Default\", \"Default\", \"Default\", \"Default\", \"Default\", \"Default\", \"Default\", \"Default\", \"Default\", \"Default\", \"Default\", \"Default\", \"Default\", \"Default\", \"Default\", \"Default\", \"Default\", \"Default\", \"Default\", \"Default\", \"Default\", \"Default\", \"Default\", \"Default\", \"Default\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic1\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic2\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic3\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic4\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic5\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic6\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic7\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic8\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic9\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic10\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic11\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic12\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic13\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic14\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic15\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic16\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic17\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic18\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic19\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\"], \"Freq\": [5082.0, 10082.0, 1726.0, 1578.0, 842.0, 2440.0, 2723.0, 6288.0, 6955.0, 735.0, 1966.0, 10328.0, 4400.0, 2306.0, 1686.0, 2253.0, 7324.0, 892.0, 870.0, 2129.0, 1950.0, 3195.0, 1840.0, 593.0, 1468.0, 3803.0, 1437.0, 1332.0, 6473.0, 1968.0, 39.325748443603516, 59.7387809753418, 36.46708297729492, 32.085113525390625, 33.788856506347656, 21.31005096435547, 20.83837127685547, 18.407663345336914, 23.023197174072266, 34.87016677856445, 54.81852722167969, 18.9517822265625, 36.5783805847168, 17.19167137145996, 16.69978904724121, 22.542739868164062, 27.214202880859375, 26.69554328918457, 14.029608726501465, 29.112497329711914, 17.917543411254883, 16.7047176361084, 51.873435974121094, 20.271026611328125, 12.631773948669434, 51.342350006103516, 20.24904441833496, 22.674455642700195, 13.902873039245605, 27.6280517578125, 139.73338317871094, 41.85859680175781, 635.6685180664062, 332.94891357421875, 220.36740112304688, 42.642669677734375, 188.1219482421875, 689.9661865234375, 196.59251403808594, 508.1046447753906, 497.5956726074219, 43.429378509521484, 453.765380859375, 361.3023376464844, 41.84980773925781, 103.18087768554688, 1281.9869384765625, 378.7708435058594, 115.7059326171875, 77.98973083496094, 47.54467010498047, 315.7835998535156, 437.2474060058594, 1985.3338623046875, 78.03076171875, 266.0930480957031, 76.62498474121094, 1950.8740234375, 164.23297119140625, 542.3634643554688, 401.3480529785156, 481.5567626953125, 514.1874389648438, 900.4468383789062, 381.7537841796875, 429.7262268066406, 284.601318359375, 724.0214233398438, 589.9349975585938, 619.0252075195312, 410.1664123535156, 970.4210205078125, 801.2432861328125, 854.4342041015625, 836.4607543945312, 629.4845581054688, 615.7739868164062, 922.6500244140625, 703.7299194335938, 674.548583984375, 625.7112426757812, 567.0464477539062, 510.84381103515625, 514.8718872070312, 519.2947387695312, 480.03533935546875, 473.6775817871094, 473.8719787597656, 61.387908935546875, 78.9091567993164, 62.64793395996094, 43.04389190673828, 34.169193267822266, 43.06599807739258, 62.827911376953125, 43.229034423828125, 20.479352951049805, 56.10079574584961, 23.944440841674805, 19.870553970336914, 16.175020217895508, 16.213911056518555, 18.44847869873047, 13.474532127380371, 13.23625659942627, 24.509572982788086, 22.40566635131836, 17.996000289916992, 11.714780807495117, 175.03114318847656, 352.5350646972656, 310.8258972167969, 11.479610443115234, 13.056788444519043, 14.052277565002441, 12.113468170166016, 11.043354988098145, 10.635307312011719, 109.23515319824219, 45.464073181152344, 920.488037109375, 188.79293823242188, 55.040122985839844, 144.57069396972656, 223.27359008789062, 190.34092712402344, 81.187255859375, 63.45750045776367, 277.5454406738281, 365.7694091796875, 116.77229309082031, 1985.5267333984375, 209.6465301513672, 67.95621490478516, 175.49098205566406, 199.33978271484375, 480.6094055175781, 122.8921890258789, 1222.32861328125, 1400.676025390625, 475.6786193847656, 499.9182434082031, 162.56495666503906, 253.42837524414062, 157.7755889892578, 508.1343994140625, 656.9913330078125, 287.7002868652344, 466.52020263671875, 444.51348876953125, 933.9635009765625, 1323.510498046875, 314.12506103515625, 454.67437744140625, 339.2406311035156, 673.5345458984375, 1338.5718994140625, 850.7034912109375, 606.3710327148438, 571.0, 467.27734375, 402.8404846191406, 854.9235229492188, 511.125732421875, 600.3206787109375, 720.2628173828125, 468.7403564453125, 980.84912109375, 665.2062377929688, 477.6355895996094, 750.6912231445312, 604.8197631835938, 520.6212768554688, 548.826416015625, 493.9367370605469, 53.162601470947266, 37.39269256591797, 33.239139556884766, 31.10367774963379, 40.64603805541992, 25.075759887695312, 28.733854293823242, 42.139686584472656, 57.085975646972656, 33.3320426940918, 23.21202850341797, 24.5870304107666, 22.796743392944336, 26.91162872314453, 23.357759475708008, 19.32839012145996, 20.58993148803711, 19.496606826782227, 20.82520866394043, 27.534170150756836, 20.2264347076416, 26.784481048583984, 16.548093795776367, 17.615633010864258, 18.651784896850586, 23.336824417114258, 67.63245391845703, 16.30650520324707, 16.98676872253418, 18.207387924194336, 19.02890396118164, 45.41915512084961, 66.65641784667969, 43.734806060791016, 78.36376953125, 41.987518310546875, 33.85549545288086, 155.3102569580078, 103.98126220703125, 40.429290771484375, 42.89878463745117, 42.98039627075195, 40.1530647277832, 382.7404479980469, 100.87150573730469, 78.61699676513672, 66.9171142578125, 89.1841049194336, 171.3411865234375, 38.00868225097656, 42.347816467285156, 229.1995849609375, 99.28498077392578, 128.14541625976562, 71.92391967773438, 67.67543029785156, 50.55589294433594, 1840.20556640625, 58.96985626220703, 1136.575927734375, 1023.7805786132812, 971.0969848632812, 94.98479461669922, 907.0047607421875, 920.1752319335938, 532.8047485351562, 1090.257568359375, 495.2394714355469, 454.26751708984375, 618.0372314453125, 539.78173828125, 629.1683959960938, 314.6647644042969, 524.5758056640625, 603.7967529296875, 436.2224426269531, 485.8084411621094, 621.8687744140625, 651.7381591796875, 636.4971313476562, 474.88104248046875, 501.0438537597656, 452.66253662109375, 629.998046875, 500.8299255371094, 516.6630859375, 381.35699462890625, 407.5472412109375, 394.45648193359375, 386.5068664550781, 275.981689453125, 58.79994201660156, 80.37403869628906, 23.83237075805664, 21.012331008911133, 26.856752395629883, 34.566776275634766, 17.446840286254883, 17.943334579467773, 15.556909561157227, 337.87982177734375, 16.163393020629883, 17.287893295288086, 38.61255645751953, 14.421985626220703, 131.6805877685547, 15.323653221130371, 22.930355072021484, 161.2854461669922, 18.022201538085938, 12.474955558776855, 39.125492095947266, 47.26006317138672, 11.953983306884766, 30.242231369018555, 11.428622245788574, 25.147037506103516, 13.381795883178711, 39.2657356262207, 29.45829200744629, 288.06005859375, 59.460391998291016, 307.0353698730469, 149.58172607421875, 334.17120361328125, 1955.7713623046875, 678.5994262695312, 53.924720764160156, 202.57366943359375, 100.03489685058594, 307.63494873046875, 63.857784271240234, 74.0055923461914, 422.4996643066406, 298.49005126953125, 285.8420715332031, 103.33995056152344, 1246.84033203125, 303.95263671875, 84.68205261230469, 196.84678649902344, 138.51197814941406, 266.777587890625, 156.2025909423828, 170.52333068847656, 374.1765441894531, 826.443359375, 253.6671600341797, 210.86204528808594, 927.0083618164062, 584.1802978515625, 292.5975646972656, 650.8179321289062, 346.428466796875, 679.5543212890625, 232.7361297607422, 321.3896179199219, 628.4533081054688, 493.7455139160156, 372.3579406738281, 563.6041259765625, 510.8751220703125, 538.775390625, 436.24725341796875, 439.4940490722656, 455.470458984375, 392.67523193359375, 340.7925109863281, 358.0618896484375, 349.1393737792969, 337.0727844238281, 329.4796142578125, 328.3310241699219, 48.39753723144531, 45.58784866333008, 39.71419143676758, 34.708797454833984, 37.437923431396484, 33.1785888671875, 31.52583122253418, 34.198768615722656, 27.856517791748047, 28.297605514526367, 26.198673248291016, 25.473173141479492, 40.73120880126953, 32.80607986450195, 32.41413116455078, 23.164735794067383, 21.42034912109375, 23.41420555114746, 19.016374588012695, 17.69961166381836, 16.642742156982422, 22.98275375366211, 32.75517272949219, 22.385417938232422, 21.859893798828125, 18.772602081298828, 19.838228225708008, 14.922075271606445, 15.34253978729248, 21.711591720581055, 40.35658645629883, 32.835670471191406, 70.11348724365234, 48.740535736083984, 30.684499740600586, 27.26494598388672, 136.70059204101562, 99.19200134277344, 45.44508361816406, 35.054420471191406, 138.87423706054688, 47.92811584472656, 129.00311279296875, 81.1178207397461, 41.958343505859375, 467.3667297363281, 201.10263061523438, 185.47891235351562, 152.21234130859375, 138.4808349609375, 532.2612915039062, 113.42068481445312, 68.44021606445312, 218.9283447265625, 60.65739059448242, 186.36465454101562, 81.25341033935547, 199.10372924804688, 280.2456970214844, 219.78736877441406, 1356.9124755859375, 133.69638061523438, 151.6573486328125, 144.04112243652344, 120.91267395019531, 267.8889465332031, 199.73312377929688, 186.14910888671875, 279.4003601074219, 227.87216186523438, 235.27761840820312, 851.6290283203125, 803.4049682617188, 820.0949096679688, 797.6072998046875, 497.59283447265625, 498.9668273925781, 653.3302001953125, 320.57952880859375, 531.3478393554688, 431.7984924316406, 450.2984313964844, 718.873046875, 427.0564270019531, 319.0465087890625, 403.49774169921875, 346.0523986816406, 346.1643371582031, 308.50286865234375, 393.1344909667969, 482.5990295410156, 390.487548828125, 400.7182312011719, 380.6164855957031, 384.9442138671875, 312.044677734375, 317.843505859375, 315.2598571777344, 48.75902557373047, 43.19371032714844, 159.4274139404297, 40.93617630004883, 28.16533660888672, 31.12321662902832, 28.744659423828125, 22.76512336730957, 26.222728729248047, 49.90658187866211, 22.970386505126953, 20.236217498779297, 20.94017219543457, 34.64154052734375, 19.669950485229492, 18.97976303100586, 21.229230880737305, 17.314294815063477, 18.975727081298828, 33.9598503112793, 27.931123733520508, 29.6181640625, 20.337482452392578, 19.489721298217773, 16.00629234313965, 18.473974227905273, 15.422740936279297, 13.455710411071777, 14.068367004394531, 13.128357887268066, 77.70624542236328, 29.989349365234375, 47.496150970458984, 58.743709564208984, 34.30241394042969, 110.79615783691406, 73.604248046875, 30.566970825195312, 120.42534637451172, 139.0548858642578, 186.37158203125, 29.001676559448242, 32.190895080566406, 32.74881362915039, 66.71012878417969, 319.309814453125, 119.78929901123047, 134.20896911621094, 339.4527587890625, 158.3874969482422, 45.856449127197266, 374.3885192871094, 90.25407409667969, 421.4617614746094, 272.3900451660156, 49.228912353515625, 1006.539794921875, 120.14981842041016, 994.4974365234375, 547.5050659179688, 166.21365356445312, 692.6421508789062, 774.1505126953125, 853.3924560546875, 416.08056640625, 400.4966735839844, 559.81201171875, 587.8998413085938, 352.674072265625, 535.6368408203125, 349.5316467285156, 945.2969360351562, 440.8836364746094, 452.58837890625, 814.50634765625, 568.3438720703125, 413.6568298339844, 447.00018310546875, 595.293701171875, 495.73736572265625, 319.0166931152344, 443.68621826171875, 466.0263366699219, 431.3934326171875, 397.17559814453125, 363.78729248046875, 28.069562911987305, 24.463937759399414, 54.01209259033203, 23.24500274658203, 18.666343688964844, 19.11440658569336, 15.904521942138672, 16.959550857543945, 25.70468521118164, 17.975122451782227, 62.239479064941406, 14.353294372558594, 14.738855361938477, 19.49859046936035, 14.399984359741211, 14.643919944763184, 16.47859764099121, 14.76735782623291, 21.57265853881836, 27.081335067749023, 13.275980949401855, 17.289539337158203, 18.333621978759766, 13.558917999267578, 11.838705062866211, 75.46029663085938, 34.21516418457031, 40.51327896118164, 9.85777473449707, 9.392462730407715, 33.44150161743164, 103.67420196533203, 44.5608024597168, 61.52728271484375, 102.29246520996094, 134.92135620117188, 559.7294921875, 403.50518798828125, 84.47454833984375, 139.9734344482422, 148.52395629882812, 183.3704376220703, 59.31892395019531, 33.6822395324707, 61.2411994934082, 561.2145385742188, 710.0017700195312, 77.74929809570312, 409.3323059082031, 59.26100540161133, 255.47547912597656, 998.9500732421875, 739.700927734375, 167.09715270996094, 325.3288269042969, 169.9866485595703, 2353.107177734375, 1231.2327880859375, 1720.2752685546875, 617.7477416992188, 1047.1656494140625, 502.28985595703125, 640.8733520507812, 439.3214111328125, 809.0429077148438, 279.35589599609375, 473.7047119140625, 272.2557067871094, 210.06015014648438, 784.0031127929688, 898.9891357421875, 511.21875, 891.7122192382812, 334.7701110839844, 648.5623779296875, 509.4223327636719, 518.229736328125, 438.86846923828125, 477.4400634765625, 466.23779296875, 376.6404724121094, 382.0852966308594, 396.76324462890625, 451.1944885253906, 424.92138671875, 438.2342224121094, 451.0887756347656, 36.60304641723633, 59.1276969909668, 36.19414138793945, 28.493778228759766, 63.662330627441406, 29.787521362304688, 34.81151580810547, 34.75044250488281, 19.796724319458008, 41.48598861694336, 27.75547218322754, 33.836517333984375, 16.968795776367188, 60.94460678100586, 16.920551300048828, 15.036550521850586, 14.19507122039795, 15.050714492797852, 30.73468017578125, 15.711735725402832, 13.779279708862305, 19.90599822998047, 16.736230850219727, 11.954093933105469, 12.555560111999512, 33.225799560546875, 11.34354019165039, 12.783611297607422, 19.050844192504883, 11.211666107177734, 50.656219482421875, 29.44426155090332, 1349.11083984375, 185.47982788085938, 71.4052734375, 65.28337097167969, 38.92163848876953, 472.49053955078125, 646.7089233398438, 246.3043212890625, 37.139976501464844, 179.75674438476562, 241.6222381591797, 337.6090087890625, 308.76983642578125, 725.1309204101562, 109.62723541259766, 141.55230712890625, 583.6463623046875, 70.78682708740234, 162.19497680664062, 110.79997253417969, 74.80516815185547, 86.28425598144531, 194.79571533203125, 90.4812240600586, 60.59235763549805, 125.41256713867188, 328.9935607910156, 103.290771484375, 648.5604248046875, 99.39386749267578, 640.70458984375, 228.7701873779297, 221.0748748779297, 597.9166259765625, 701.0800170898438, 478.00335693359375, 302.6161804199219, 335.37310791015625, 459.8299560546875, 351.40692138671875, 226.0633544921875, 321.36676025390625, 405.907470703125, 312.7361145019531, 357.1694030761719, 375.8130798339844, 316.15863037109375, 259.3849792480469, 270.01885986328125, 261.5926208496094, 260.0870666503906, 246.730224609375, 247.34100341796875, 41.319217681884766, 49.26163864135742, 40.19535446166992, 66.47068786621094, 26.775569915771484, 30.51165008544922, 48.078495025634766, 36.942012786865234, 32.678855895996094, 18.071056365966797, 35.441776275634766, 17.568782806396484, 174.744384765625, 20.333784103393555, 31.952634811401367, 14.530484199523926, 16.67441749572754, 151.87942504882812, 41.020591735839844, 113.10773468017578, 13.623052597045898, 45.201927185058594, 11.169602394104004, 15.266528129577637, 10.511322021484375, 17.607032775878906, 10.19269847869873, 9.400651931762695, 9.642224311828613, 16.4302978515625, 449.4725646972656, 15.938117980957031, 19.712181091308594, 29.711143493652344, 79.8408203125, 64.5054702758789, 139.46571350097656, 131.9261474609375, 75.78604125976562, 186.063720703125, 86.1142349243164, 364.20989990234375, 104.56102752685547, 836.7046508789062, 526.3451538085938, 161.27145385742188, 307.9510803222656, 401.48419189453125, 189.64956665039062, 490.3577575683594, 182.01068115234375, 120.17457580566406, 210.66749572753906, 337.5791320800781, 700.7953491210938, 1110.2020263671875, 130.14634704589844, 592.8508911132812, 791.422607421875, 451.1346130371094, 216.94937133789062, 367.5483703613281, 377.7109375, 557.255126953125, 288.8595886230469, 201.49000549316406, 498.72265625, 444.40228271484375, 411.71466064453125, 299.1839904785156, 267.22076416015625, 299.669189453125, 289.0386047363281, 302.15887451171875, 267.5953369140625, 240.611083984375, 245.1106414794922, 234.41676330566406, 232.3031768798828, 44.008079528808594, 28.851606369018555, 47.2419548034668, 228.9298553466797, 21.707239151000977, 17.938135147094727, 21.10816192626953, 263.18096923828125, 16.107067108154297, 37.24901580810547, 32.63355255126953, 29.5731258392334, 11.829150199890137, 11.458919525146484, 11.340593338012695, 30.35899543762207, 13.04919719696045, 21.978656768798828, 13.626688003540039, 9.976348876953125, 14.985759735107422, 9.564421653747559, 10.481536865234375, 11.219865798950195, 9.171401023864746, 33.51478576660156, 9.452049255371094, 9.42862319946289, 13.795305252075195, 9.093716621398926, 13.273996353149414, 54.059879302978516, 205.2687225341797, 97.39897155761719, 1147.9915771484375, 42.15143585205078, 43.73025131225586, 34.145713806152344, 28.638288497924805, 180.17169189453125, 79.14202117919922, 22.109155654907227, 32.589874267578125, 30.405921936035156, 303.51171875, 27.7829532623291, 143.8645782470703, 86.0129165649414, 150.92063903808594, 272.1021728515625, 93.57440948486328, 474.3905029296875, 186.06129455566406, 264.69854736328125, 139.88656616210938, 64.50849914550781, 152.9435577392578, 127.44158935546875, 80.82313537597656, 245.47958374023438, 636.6572265625, 174.71353149414062, 180.13876342773438, 149.68336486816406, 65.93756103515625, 189.87924194335938, 252.0430145263672, 422.6351318359375, 109.44107055664062, 174.8946075439453, 165.75411987304688, 285.52423095703125, 249.3336181640625, 218.035400390625, 242.90196228027344, 250.71267700195312, 231.2568359375, 223.74240112304688, 241.039794921875, 194.74290466308594, 204.53753662109375, 193.15748596191406, 181.58360290527344, 196.86282348632812, 196.78697204589844, 184.35130310058594, 184.04696655273438, 184.27723693847656, 51.16971206665039, 248.9225311279297, 35.242401123046875, 166.13462829589844, 27.159866333007812, 26.572528839111328, 30.975521087646484, 24.475095748901367, 28.60123062133789, 24.413841247558594, 19.12372398376465, 18.838680267333984, 194.68516540527344, 21.8148136138916, 40.28904724121094, 31.197786331176758, 39.147178649902344, 15.071148872375488, 18.803316116333008, 29.509918212890625, 67.5407943725586, 13.005560874938965, 12.174908638000488, 14.614611625671387, 14.00861644744873, 31.967317581176758, 19.31882667541504, 12.189654350280762, 11.88133430480957, 11.135760307312012, 244.62960815429688, 77.13019561767578, 78.942626953125, 69.16600799560547, 60.158851623535156, 385.4810791015625, 38.607948303222656, 359.1167907714844, 240.86399841308594, 221.05517578125, 41.223907470703125, 104.33576202392578, 46.944679260253906, 170.08030700683594, 84.04397583007812, 132.45660400390625, 80.46722412109375, 103.35588073730469, 51.29159164428711, 465.0627746582031, 152.15785217285156, 135.1982879638672, 240.8971710205078, 130.74185180664062, 129.8675079345703, 151.70327758789062, 279.7353820800781, 107.03963470458984, 117.91032409667969, 181.37606811523438, 105.40554809570312, 195.91119384765625, 222.94610595703125, 276.7575378417969, 328.9536437988281, 146.522216796875, 337.21038818359375, 175.38357543945312, 423.0133972167969, 262.2558898925781, 292.7659606933594, 178.34983825683594, 333.07525634765625, 198.33070373535156, 234.0207977294922, 220.8694610595703, 215.34512329101562, 205.54730224609375, 179.69769287109375, 180.31983947753906, 32.72233963012695, 29.372480392456055, 26.175657272338867, 28.879289627075195, 20.192832946777344, 19.469463348388672, 18.536348342895508, 16.254911422729492, 15.6812744140625, 17.29062843322754, 13.249688148498535, 14.732023239135742, 16.157493591308594, 12.610465049743652, 20.545305252075195, 17.33193588256836, 13.631131172180176, 12.022281646728516, 31.928434371948242, 36.1890754699707, 12.647616386413574, 14.89675235748291, 13.138715744018555, 12.852119445800781, 17.83718490600586, 12.034854888916016, 10.826074600219727, 11.923194885253906, 10.987690925598145, 10.968457221984863, 21.085453033447266, 13.17854118347168, 26.78777313232422, 17.751724243164062, 17.2636775970459, 137.15037536621094, 20.89044952392578, 26.4399471282959, 66.37796783447266, 46.09465789794922, 25.052467346191406, 104.69456481933594, 90.01944732666016, 58.915382385253906, 28.20208168029785, 25.212562561035156, 99.7779312133789, 60.45622253417969, 25.93517303466797, 237.24452209472656, 43.52461242675781, 99.99340057373047, 41.63015365600586, 80.48846435546875, 31.455095291137695, 152.04705810546875, 46.34665298461914, 49.005393981933594, 67.47101593017578, 46.070213317871094, 48.54901885986328, 66.4644546508789, 66.70508575439453, 96.21648406982422, 280.2123107910156, 93.2284164428711, 260.7593688964844, 311.8485412597656, 185.26893615722656, 118.7511978149414, 400.4579162597656, 271.5768127441406, 308.74395751953125, 328.86187744140625, 290.5517883300781, 290.8326416015625, 229.84136962890625, 220.32675170898438, 313.8747863769531, 196.2730255126953, 124.45099639892578, 208.77293395996094, 168.26254272460938, 198.570556640625, 171.9379425048828, 154.11419677734375, 183.10556030273438, 148.4381103515625, 155.84527587890625, 155.8957061767578, 148.28314208984375, 151.7378692626953, 157.42037963867188, 140.1000518798828, 149.44895935058594, 151.26626586914062, 48.8693733215332, 29.206552505493164, 22.40199851989746, 39.21612548828125, 26.010269165039062, 22.116792678833008, 42.79735565185547, 19.238073348999023, 76.64502716064453, 19.154409408569336, 16.71152687072754, 19.128620147705078, 81.76646423339844, 84.69664001464844, 77.28500366210938, 32.4315299987793, 47.573089599609375, 16.065166473388672, 13.066951751708984, 21.20995330810547, 34.58706283569336, 11.203282356262207, 14.625184059143066, 14.85081672668457, 11.122820854187012, 10.374053955078125, 37.76001739501953, 10.355354309082031, 14.7025146484375, 11.153292655944824, 23.013439178466797, 30.66384506225586, 22.482803344726562, 77.48908233642578, 100.02259826660156, 21.189294815063477, 62.68627166748047, 89.67843627929688, 20.25086784362793, 34.985843658447266, 274.9815979003906, 145.02847290039062, 164.4212646484375, 54.75775909423828, 102.32113647460938, 83.82340240478516, 114.27301025390625, 84.84904479980469, 128.91098022460938, 104.60425567626953, 116.83292388916016, 224.4528350830078, 141.1339874267578, 130.4940185546875, 612.9920654296875, 883.2741088867188, 94.40496826171875, 146.18252563476562, 395.1518859863281, 553.9785766601562, 445.5542297363281, 365.8460388183594, 319.25738525390625, 335.66650390625, 250.49978637695312, 261.291259765625, 300.36383056640625, 310.79364013671875, 290.2392883300781, 244.90066528320312, 263.6898193359375, 250.2509307861328, 195.66470336914062, 225.52333068847656, 207.28843688964844, 199.26690673828125, 159.5991973876953, 167.54237365722656, 166.9068603515625, 160.88453674316406, 155.53001403808594, 148.3223419189453, 59.12775802612305, 36.00217819213867, 40.16331481933594, 25.800804138183594, 20.42917251586914, 19.30228042602539, 18.97040367126465, 17.601491928100586, 28.66653823852539, 15.848023414611816, 19.60727882385254, 26.496232986450195, 19.475889205932617, 22.86954689025879, 16.622146606445312, 13.265698432922363, 23.591638565063477, 15.393152236938477, 12.331904411315918, 10.953843116760254, 12.799890518188477, 15.33264446258545, 10.602540016174316, 10.84858512878418, 24.2530460357666, 11.943894386291504, 11.824283599853516, 10.976953506469727, 29.88985824584961, 9.700589179992676, 18.854909896850586, 27.657638549804688, 49.01243209838867, 25.287189483642578, 17.666610717773438, 22.119625091552734, 38.10098648071289, 127.8643798828125, 45.143768310546875, 38.26467514038086, 22.896034240722656, 75.29888916015625, 134.63255310058594, 36.20746612548828, 457.6495056152344, 425.7588806152344, 133.9264373779297, 398.8309326171875, 30.762697219848633, 167.3146514892578, 118.09481811523438, 260.1878356933594, 371.67529296875, 66.78814697265625, 217.0659942626953, 382.66094970703125, 185.68533325195312, 207.15086364746094, 121.16920471191406, 257.59844970703125, 50.1364860534668, 41.670475006103516, 207.55654907226562, 124.02486419677734, 88.79206848144531, 125.23052215576172, 103.05789947509766, 83.18557739257812, 161.93092346191406, 258.3775939941406, 135.8197021484375, 151.5000762939453, 201.55714416503906, 139.552978515625, 98.61846923828125, 189.09571838378906, 122.03236389160156, 109.3881607055664, 131.2204132080078, 129.7130126953125, 44.88981628417969, 31.38654327392578, 19.8247127532959, 19.681102752685547, 33.36897277832031, 17.215600967407227, 20.38606834411621, 15.10655689239502, 18.518878936767578, 12.06253433227539, 35.18163299560547, 36.79019546508789, 14.288243293762207, 39.40614318847656, 22.27798843383789, 9.822919845581055, 9.426703453063965, 8.484403610229492, 14.376229286193848, 8.201566696166992, 9.180493354797363, 6.947526454925537, 8.72997760772705, 6.844437599182129, 168.70053100585938, 6.693509101867676, 42.30649185180664, 6.8923444747924805, 27.05592155456543, 6.225825786590576, 44.12245178222656, 12.115615844726562, 438.2150573730469, 44.55765914916992, 52.849449157714844, 70.55530548095703, 135.73707580566406, 24.23075294494629, 33.6392822265625, 110.6143798828125, 51.546138763427734, 52.347774505615234, 31.96904945373535, 24.226808547973633, 94.5196304321289, 134.83628845214844, 49.86429977416992, 150.8368682861328, 38.37215042114258, 73.42817687988281, 103.43579864501953, 161.1525421142578, 28.980192184448242, 61.99391555786133, 39.29665756225586, 64.77713012695312, 93.4485855102539, 132.04559326171875, 97.76378631591797, 97.93206787109375, 75.49383544921875, 136.2288818359375, 121.52924346923828, 136.18138122558594, 120.50531768798828, 121.44580841064453, 86.61714935302734, 81.04127502441406, 97.64988708496094, 87.53179168701172, 79.87179565429688, 70.6748275756836, 73.33619689941406, 71.61557006835938, 69.29158020019531, 69.34038543701172, 34.802001953125, 30.522573471069336, 13.908780097961426, 13.756217956542969, 16.801963806152344, 28.022430419921875, 15.890865325927734, 12.730849266052246, 17.47789192199707, 17.551780700683594, 10.895610809326172, 17.212533950805664, 15.094462394714355, 12.041481018066406, 9.892531394958496, 16.297304153442383, 11.005051612854004, 9.209856033325195, 28.237110137939453, 19.193378448486328, 8.550741195678711, 7.318894863128662, 6.981091022491455, 14.349812507629395, 8.380853652954102, 70.94730377197266, 7.906139373779297, 5.624985694885254, 18.904821395874023, 5.427705764770508, 49.37256622314453, 27.3753604888916, 31.604293823242188, 13.226618766784668, 42.72511291503906, 17.528488159179688, 56.21989822387695, 180.4754180908203, 136.00193786621094, 58.60549545288086, 117.03602600097656, 59.76176834106445, 45.713661193847656, 103.10950469970703, 23.33892822265625, 41.4298210144043, 54.92551040649414, 59.1268310546875, 87.26067352294922, 61.19791793823242, 36.35743713378906, 122.80342864990234, 23.309123992919922, 55.70211410522461, 56.42211151123047, 55.96323013305664, 100.66910552978516, 29.456892013549805, 55.50221252441406, 120.91658782958984, 100.52613067626953, 81.7522201538086, 85.33445739746094, 98.92793273925781, 87.73362731933594, 86.24134826660156, 82.40943908691406, 68.02863311767578, 64.93873596191406, 65.59394073486328, 58.25819778442383, 60.616539001464844, 59.63814163208008, 58.37062072753906, 57.912906646728516, 57.17161560058594, 56.928890228271484, 15.184041023254395, 11.022017478942871, 9.88575553894043, 9.131196975708008, 11.140003204345703, 12.410639762878418, 12.88669204711914, 73.20146179199219, 66.80359649658203, 18.611295700073242, 9.26359748840332, 18.820663452148438, 5.27500581741333, 64.69380187988281, 11.916523933410645, 295.55804443359375, 6.210579872131348, 4.636160373687744, 64.77940368652344, 28.527494430541992, 88.0869369506836, 5.3315229415893555, 4.887016773223877, 10.173257827758789, 5.108496189117432, 19.033605575561523, 8.451985359191895, 15.823144912719727, 3.538806438446045, 3.816683769226074, 86.00502014160156, 15.70557689666748, 599.136962890625, 516.2484130859375, 152.31402587890625, 85.89511108398438, 98.20822143554688, 155.130126953125, 32.85250473022461, 87.2444076538086, 110.48529815673828, 69.53611755371094, 90.28515625, 176.78704833984375, 57.65102767944336, 18.122379302978516, 77.51564025878906, 93.02094268798828, 68.27409362792969, 35.84207534790039, 82.04717254638672, 76.22076416015625, 60.11232376098633, 74.51482391357422, 81.17961883544922, 54.76443099975586, 143.59983825683594, 66.56246948242188, 73.06232452392578, 69.35335540771484, 78.41899108886719, 71.25785064697266, 67.16087341308594, 66.77408599853516, 5031.97021484375, 37.764442443847656, 17.670087814331055, 17.53172492980957, 19.435401916503906, 20.3957462310791, 17.30666160583496, 27.287748336791992, 14.106696128845215, 14.10529899597168, 45.239959716796875, 12.907808303833008, 11.389328002929688, 64.28519439697266, 10.605947494506836, 11.304011344909668, 9.892139434814453, 9.335972785949707, 8.85910415649414, 10.38426399230957, 10.63620662689209, 17.956689834594727, 8.11817741394043, 7.2722554206848145, 9.112576484680176, 9.379437446594238, 6.434691429138184, 5.9941606521606445, 7.581859111785889, 5.85089635848999, 13.951497077941895, 15.455695152282715, 98.5414810180664, 20.77996826171875, 14.581266403198242, 22.933147430419922, 18.60377311706543, 14.984382629394531, 18.735355377197266, 32.20158004760742, 12.884366989135742, 38.26691436767578, 42.791378021240234, 45.902069091796875, 37.25621032714844, 37.3918342590332, 34.974853515625, 32.6991081237793, 22.72818946838379, 29.983455657958984, 20.50556182861328, 25.889188766479492, 25.920167922973633, 25.39496612548828, 24.212923049926758, 23.256732940673828, 24.697824478149414, 22.647146224975586, 21.93486976623535, 21.28244972229004, 21.419273376464844, 21.057937622070312, 20.740459442138672, 33.687374114990234, 26.058107376098633, 27.253509521484375, 22.021926879882812, 13.170973777770996, 10.29953670501709, 10.967109680175781, 11.367069244384766, 9.784427642822266, 14.065614700317383, 8.523743629455566, 12.02315616607666, 20.47537612915039, 7.572539806365967, 7.129729747772217, 16.74349594116211, 19.919034957885742, 8.354676246643066, 10.092510223388672, 6.991901397705078, 5.248805046081543, 7.381773471832275, 4.937107086181641, 9.929582595825195, 4.77168083190918, 4.488831043243408, 4.636881351470947, 6.201542377471924, 4.628783702850342, 4.643423557281494, 66.19883728027344, 29.64665985107422, 21.614126205444336, 8.699045181274414, 34.134517669677734, 13.599346160888672, 40.64340591430664, 16.448177337646484, 167.02581787109375, 21.765729904174805, 17.914337158203125, 72.80538177490234, 38.856136322021484, 33.30039596557617, 19.8179931640625, 59.42320251464844, 68.96713256835938, 17.494670867919922, 50.40449142456055, 32.93793487548828, 96.1880874633789, 28.786489486694336, 56.83260726928711, 26.53140640258789, 47.5777473449707, 67.84230041503906, 39.303436279296875, 54.040794372558594, 44.14875030517578, 51.628761291503906, 45.76850509643555, 39.805946350097656, 33.56319046020508, 38.040748596191406, 37.320159912109375, 41.3271484375, 38.74406814575195, 34.284297943115234, 32.17417526245117, 31.539920806884766, 27.898099899291992, 11.26402759552002, 13.114476203918457, 9.153695106506348, 14.645644187927246, 7.52068567276001, 7.278915882110596, 16.176734924316406, 6.328592777252197, 6.995148658752441, 6.489102840423584, 4.601953506469727, 5.662405967712402, 4.580672740936279, 5.625324726104736, 4.219538688659668, 7.1316351890563965, 28.556209564208984, 4.833522796630859, 3.1904385089874268, 3.4581215381622314, 3.961484432220459, 2.9359073638916016, 4.1857218742370605, 2.741403579711914, 2.688128709793091, 2.459383964538574, 2.502268075942993, 2.984743595123291, 2.9004650115966797, 11.994135856628418, 40.9632682800293, 8.593835830688477, 14.086311340332031, 20.703514099121094, 8.961695671081543, 56.98368835449219, 33.037506103515625, 7.319919109344482, 9.05916690826416, 31.128814697265625, 38.818172454833984, 16.12099266052246, 20.693363189697266, 11.278850555419922, 41.574100494384766, 18.434486389160156, 18.789806365966797, 17.27326202392578, 21.570945739746094, 15.704585075378418, 14.079586029052734, 15.52709674835205, 13.978102684020996, 14.5897855758667, 14.127933502197266, 13.384160041809082, 12.157938957214355, 11.768328666687012, 11.401780128479004], \"Term\": [\"ax\", \"line\", \"team\", \"gun\", \"armenian\", \"key\", \"file\", \"people\", \"post\", \"turkish\", \"window\", \"write\", \"nntp\", \"drive\", \"car\", \"thank\", \"say\", \"application\", \"rate\", \"include\", \"law\", \"problem\", \"mail\", \"church\", \"game\", \"host\", \"software\", \"list\", \"know\", \"government\", \"intercon\", \"persian\", \"agnostic\", \"theism\", \"compliance\", \"savard\", \"caste\", \"tighten\", \"ramble\", \"detention\", \"obedience\", \"uphold\", \"unorganized\", \"tightly\", \"amd\", \"stud\", \"plutonium\", \"satisfaction\", \"menace\", \"imprison\", \"greed\", \"pardon\", \"imprisonment\", \"rationale\", \"crown\", \"limbaugh\", \"provocative\", \"imaginary\", \"inaccuracy\", \"dorin\", \"believer\", \"blindly\", \"atheist\", \"atheism\", \"christianity\", \"cruel\", \"eternal\", \"religion\", \"absolute\", \"truth\", \"belief\", \"reconcile\", \"faith\", \"religious\", \"chaos\", \"salvation\", \"believe\", \"god\", \"gift\", \"grace\", \"arrogance\", \"christian\", \"die\", \"people\", \"husband\", \"bear\", \"mormon\", \"say\", \"interpretation\", \"true\", \"human\", \"life\", \"live\", \"come\", \"evidence\", \"child\", \"fire\", \"right\", \"tell\", \"question\", \"claim\", \"know\", \"see\", \"think\", \"go\", \"even\", \"thing\", \"write\", \"make\", \"be\", \"time\", \"s\", \"mean\", \"can\", \"take\", \"many\", \"way\", \"line\", \"jpeg\", \"latch\", \"workspace\", \"pinout\", \"decimal\", \"sunview\", \"quicktime\", \"meg\", \"sgi\", \"motherboard\", \"toner\", \"canvas\", \"irq\", \"compliant\", \"capslock\", \"redemption\", \"runtime\", \"emulator\", \"util\", \"modifier\", \"patrick\", \"bio\", \"printer\", \"font\", \"kbyte\", \"salesperson\", \"interlaced\", \"numlock\", \"floppie\", \"ntsc\", \"jumper\", \"ascii\", \"disk\", \"byte\", \"cursor\", \"setting\", \"ram\", \"floppy\", \"postscript\", \"ansi\", \"controller\", \"mouse\", \"menu\", \"file\", \"rom\", \"maxtor\", \"directory\", \"default\", \"format\", \"virtual\", \"window\", \"drive\", \"server\", \"memory\", \"install\", \"pin\", \"compatible\", \"machine\", \"driver\", \"print\", \"entry\", \"display\", \"program\", \"system\", \"manager\", \"user\", \"screen\", \"set\", \"use\", \"run\", \"card\", \"available\", \"version\", \"application\", \"work\", \"software\", \"include\", \"problem\", \"hard\", \"line\", \"also\", \"support\", \"write\", \"make\", \"need\", \"get\", \"know\", \"copper\", \"hispanic\", \"tumor\", \"ra\", \"dealership\", \"ceiling\", \"glutamate\", \"sedan\", \"ceremonial\", \"zionism\", \"skndiv\", \"dseg\", \"mot\", \"gasoline\", \"hypocritical\", \"gently\", \"pyron\", \"buggy\", \"gesture\", \"palestinean\", \"drum\", \"frank\", \"belive\", \"squid\", \"heating\", \"jam\", \"tongue\", \"monkey\", \"junction\", \"lense\", \"projector\", \"cruiser\", \"biker\", \"suspension\", \"women\", \"ignition\", \"slick\", \"rider\", \"marry\", \"neck\", \"stove\", \"luxury\", \"countersteere\", \"bike\", \"wheel\", \"cage\", \"steer\", \"gear\", \"motorcycle\", \"desert\", \"quotation\", \"ride\", \"brake\", \"wave\", \"rear\", \"advertising\", \"selfish\", \"write\", \"react\", \"go\", \"article\", \"be\", \"dod\", \"think\", \"post\", \"would\", \"line\", \"much\", \"have\", \"nntp\", \"s\", \"see\", \"opinion\", \"want\", \"time\", \"can\", \"thing\", \"get\", \"people\", \"make\", \"way\", \"host\", \"right\", \"say\", \"good\", \"know\", \"try\", \"take\", \"look\", \"well\", \"ripem\", \"escrowe\", \"plaintext\", \"licensed\", \"bb\", \"incriminate\", \"decryption\", \"assembler\", \"applied\", \"k_p\", \"enforcement\", \"banner\", \"reassure\", \"inspector\", \"dorothy\", \"cipher\", \"czar\", \"monopoly\", \"rsa\", \"canada\", \"swerve\", \"enact\", \"secrecy\", \"alice\", \"omission\", \"peel\", \"fortune\", \"intensify\", \"ciphertext\", \"lawsuit\", \"encrypt\", \"initiative\", \"escrow\", \"patent\", \"federal\", \"key\", \"encryption\", \"den\", \"administration\", \"wiretap\", \"agency\", \"executive\", \"cryptographic\", \"security\", \"tax\", \"secure\", \"cryptography\", \"government\", \"court\", \"surveillance\", \"clipper\", \"crypto\", \"secret\", \"tap\", \"agent\", \"private\", \"public\", \"legal\", \"amendment\", \"law\", \"chip\", \"protect\", \"state\", \"technology\", \"right\", \"citizen\", \"pay\", \"people\", \"system\", \"information\", \"make\", \"use\", \"write\", \"know\", \"say\", \"line\", \"go\", \"case\", \"also\", \"think\", \"even\", \"give\", \"get\", \"omniscient\", \"iranian\", \"attendance\", \"manually\", \"rebel\", \"fixture\", \"imake\", \"grasp\", \"flower\", \"rig\", \"cyl\", \"simulate\", \"bosnian\", \"minister\", \"accusation\", \"aaa\", \"competence\", \"summit\", \"residual\", \"elephant\", \"frightening\", \"bookstore\", \"shelter\", \"hunter\", \"lucifer\", \"cargo\", \"azeri\", \"discern\", \"azerbadjan\", \"occupier\", \"guerilla\", \"rub\", \"contradictory\", \"embargo\", \"thrace\", \"gilmour\", \"lebanese\", \"deficit\", \"moslem\", \"patrol\", \"ethnic\", \"jurisdiction\", \"palestinian\", \"bullet\", \"renewal\", \"israeli\", \"village\", \"arab\", \"civilian\", \"occupy\", \"kill\", \"territory\", \"occupation\", \"peace\", \"reporter\", \"soldier\", \"being\", \"murder\", \"attack\", \"military\", \"say\", \"border\", \"plane\", \"minority\", \"troop\", \"force\", \"shoot\", \"moral\", \"country\", \"job\", \"war\", \"make\", \"think\", \"know\", \"people\", \"give\", \"thing\", \"go\", \"talk\", \"time\", \"many\", \"well\", \"write\", \"take\", \"state\", \"year\", \"tell\", \"mean\", \"world\", \"also\", \"line\", \"good\", \"article\", \"see\", \"be\", \"point\", \"right\", \"even\", \"occupant\", \"loser\", \"cub\", \"pregnancy\", \"fraering\", \"marker\", \"prescribe\", \"fraere\", \"uart\", \"convertible\", \"counselor\", \"truecolor\", \"satanic\", \"studio\", \"inne\", \"musical\", \"pitched\", \"undeniable\", \"rayssd\", \"bleed\", \"oriole\", \"od\", \"yearly\", \"mrmc\", \"mercede\", \"speedometer\", \"outfield\", \"transparent\", \"euros\", \"rotor\", \"canuck\", \"clockwise\", \"gehrel\", \"met\", \"se\", \"pit\", \"inning\", \"lineup\", \"contest\", \"winner\", \"dog\", \"powerplay\", \"att\", \"cherry\", \"flash\", \"hit\", \"pitch\", \"remark\", \"entry\", \"round\", \"bure\", \"win\", \"prediction\", \"game\", \"lose\", \"dodger\", \"get\", \"red\", \"go\", \"run\", \"fan\", \"year\", \"see\", \"be\", \"last\", \"start\", \"look\", \"take\", \"back\", \"come\", \"car\", \"write\", \"first\", \"would\", \"line\", \"time\", \"have\", \"s\", \"say\", \"article\", \"let\", \"good\", \"make\", \"post\", \"think\", \"know\", \"parade\", \"rust\", \"xputimage\", \"trident\", \"iff\", \"gig\", \"palette\", \"vcc\", \"xor\", \"adc\", \"greeting\", \"wireframe\", \"cirrus\", \"numerical\", \"buttonpressmask\", \"spice\", \"nth\", \"dialup\", \"popup\", \"cview\", \"comedy\", \"dsp\", \"gifs\", \"laserwriter\", \"dbase\", \"temp\", \"linear\", \"ics\", \"multiply\", \"heartily\", \"cod\", \"pixmap\", \"balloon\", \"undefined\", \"converter\", \"compression\", \"graphic\", \"monitor\", \"fpu\", \"pointer\", \"vga\", \"gif\", \"viewer\", \"mac\", \"ethernet\", \"color\", \"image\", \"symbol\", \"appreciate\", \"distortion\", \"serial\", \"thank\", \"card\", \"greatly\", \"advance\", \"sample\", \"line\", \"nntp\", \"post\", \"bit\", \"host\", \"software\", \"help\", \"computer\", \"need\", \"video\", \"mail\", \"code\", \"port\", \"use\", \"know\", \"number\", \"write\", \"chip\", \"be\", \"look\", \"want\", \"distribution\", \"find\", \"problem\", \"window\", \"program\", \"call\", \"time\", \"work\", \"good\", \"get\", \"scam\", \"whaler\", \"rsaref\", \"taoism\", \"baptism\", \"jagr\", \"bowl\", \"finnish\", \"prey\", \"standpoint\", \"shortstop\", \"legalization\", \"circumcision\", \"oiler\", \"tao\", \"potassium\", \"platoon\", \"hinduism\", \"championship\", \"horizon\", \"ninjaite\", \"mediocre\", \"lemieux\", \"doom\", \"roland\", \"defenseman\", \"daddy\", \"striped\", \"montreal\", \"acker\", \"rookie\", \"harassment\", \"team\", \"playoff\", \"catcher\", \"captain\", \"shark\", \"season\", \"player\", \"objective\", \"sabre\", \"penalty\", \"hockey\", \"goal\", \"score\", \"game\", \"coach\", \"pen\", \"play\", \"methodology\", \"morality\", \"ranger\", \"pitcher\", \"penguin\", \"trade\", \"talent\", \"subjective\", \"draft\", \"win\", \"king\", \"year\", \"devil\", \"think\", \"science\", \"value\", \"say\", \"write\", \"good\", \"last\", \"point\", \"make\", \"well\", \"exist\", \"even\", \"post\", \"take\", \"go\", \"line\", \"article\", \"mean\", \"time\", \"get\", \"people\", \"s\", \"see\", \"injector\", \"projection\", \"darren\", \"conductor\", \"endometriosis\", \"winbench\", \"prong\", \"phil\", \"ham\", \"brass\", \"forsale\", \"speedstar\", \"outlet\", \"sporty\", \"winmark\", \"netland\", \"ipx\", \"wiring\", \"odometer\", \"breaker\", \"gibbon\", \"rfc\", \"mint\", \"nanosecond\", \"husak\", \"buick\", \"solo\", \"shawn\", \"typo\", \"enlightenment\", \"wire\", \"unwanted\", \"cleaner\", \"gauge\", \"sensor\", \"drain\", \"neutral\", \"electrical\", \"bag\", \"circuit\", \"plastic\", \"ground\", \"voltage\", \"car\", \"price\", \"oil\", \"sale\", \"sell\", \"dealer\", \"power\", \"engine\", \"panel\", \"condition\", \"buy\", \"nntp\", \"line\", \"mile\", \"host\", \"post\", \"new\", \"offer\", \"thank\", \"distribution\", \"get\", \"old\", \"light\", \"be\", \"good\", \"write\", \"look\", \"run\", \"article\", \"use\", \"know\", \"work\", \"need\", \"make\", \"year\", \"want\", \"heterosexual\", \"baseman\", \"promiscuous\", \"gay\", \"heretic\", \"buster\", \"tyranny\", \"homosexual\", \"excommunicate\", \"philosophical\", \"cramer\", \"oral\", \"crusade\", \"piston\", \"mixer\", \"optilink\", \"throne\", \"righteousness\", \"concur\", \"infoworld\", \"strider\", \"compilation\", \"pretense\", \"queer\", \"subjectively\", \"saw\", \"purposefully\", \"natonal\", \"gentle\", \"compund\", \"rigth\", \"exclusively\", \"sexual\", \"homosexuality\", \"gun\", \"dramatically\", \"conception\", \"outbreak\", \"tissue\", \"male\", \"explosive\", \"paul\", \"pistol\", \"bean\", \"firearm\", \"functional\", \"sex\", \"adult\", \"patient\", \"crime\", \"violent\", \"man\", \"criminal\", \"study\", \"evil\", \"physician\", \"white\", \"pain\", \"percent\", \"control\", \"people\", \"effect\", \"weapon\", \"black\", \"partner\", \"child\", \"number\", \"write\", \"sin\", \"show\", \"person\", \"make\", \"article\", \"way\", \"know\", \"say\", \"get\", \"use\", \"line\", \"many\", \"good\", \"find\", \"case\", \"time\", \"be\", \"even\", \"see\", \"think\", \"vegetable\", \"detector\", \"harddisk\", \"spacecraft\", \"rf\", \"fragment\", \"repentance\", \"caterpillar\", \"kernel\", \"venus\", \"supercede\", \"nist\", \"radar\", \"regression\", \"trajectory\", \"intersect\", \"organisation\", \"surplus\", \"atmospheric\", \"oscillator\", \"payload\", \"distraction\", \"remus\", \"interplanetary\", \"apparatus\", \"briefly\", \"flex\", \"downshift\", \"grapple\", \"coplanar\", \"satellite\", \"orbital\", \"funding\", \"landing\", \"scroll\", \"launch\", \"asteroid\", \"orbit\", \"mission\", \"scsi\", \"comet\", \"propulsion\", \"vlb\", \"lunar\", \"polygon\", \"shuttle\", \"receiver\", \"planetary\", \"atmosphere\", \"space\", \"surface\", \"ide\", \"bus\", \"mhz\", \"flight\", \"vehicle\", \"speed\", \"probe\", \"rocket\", \"earth\", \"planet\", \"design\", \"datum\", \"program\", \"system\", \"project\", \"use\", \"test\", \"write\", \"point\", \"time\", \"cost\", \"line\", \"high\", \"get\", \"also\", \"know\", \"article\", \"year\", \"post\", \"swiss\", \"shoei\", \"workaround\", \"std\", \"perturbation\", \"gfcis\", \"soak\", \"resemblance\", \"plier\", \"instrumentation\", \"utopian\", \"switchover\", \"inverter\", \"frustrated\", \"trader\", \"accomodate\", \"observable\", \"facade\", \"aerospace\", \"submarine\", \"indirectly\", \"cosmetic\", \"deaf\", \"shovel\", \"srb\", \"enrich\", \"inductance\", \"domino\", \"sensation\", \"preamp\", \"hull\", \"abnormal\", \"censorship\", \"dizziness\", \"chemist\", \"helmet\", \"nanao\", \"ingredient\", \"pem\", \"wagon\", \"mobile\", \"taste\", \"prize\", \"fold\", \"seller\", \"opt\", \"msg\", \"stable\", \"additive\", \"food\", \"vcr\", \"battery\", \"headache\", \"metal\", \"discovery\", \"theory\", \"inexpensive\", \"chemical\", \"belt\", \"restaurant\", \"gene\", \"moon\", \"ring\", \"water\", \"question\", \"eat\", \"problem\", \"good\", \"group\", \"research\", \"write\", \"also\", \"be\", \"post\", \"article\", \"make\", \"system\", \"work\", \"line\", \"see\", \"answer\", \"know\", \"find\", \"people\", \"want\", \"have\", \"think\", \"distribution\", \"s\", \"take\", \"try\", \"year\", \"get\", \"seem\", \"use\", \"say\", \"canadien\", \"rosicrucian\", \"furnish\", \"humor\", \"espn\", \"judaism\", \"viral\", \"analgesic\", \"chastity\", \"fabricate\", \"scanning\", \"lens\", \"intellect\", \"skepticism\", \"shameful\", \"blackhawk\", \"lyme\", \"expedition\", \"wager\", \"practitioner\", \"polish\", \"domi\", \"hander\", \"mating\", \"backpack\", \"uploaded\", \"queen\", \"superb\", \"goaltende\", \"pizza\", \"filing\", \"arabic\", \"lame\", \"seizure\", \"hawk\", \"fever\", \"bruin\", \"ancient\", \"isreal\", \"milk\", \"jewish\", \"bank\", \"disease\", \"specie\", \"drink\", \"surrender\", \"animal\", \"coverage\", \"baseball\", \"medical\", \"blood\", \"science\", \"fan\", \"wing\", \"article\", \"write\", \"blue\", \"division\", \"year\", \"line\", \"post\", \"think\", \"nntp\", \"know\", \"many\", \"host\", \"make\", \"say\", \"go\", \"s\", \"good\", \"see\", \"seem\", \"be\", \"time\", \"get\", \"last\", \"come\", \"work\", \"even\", \"also\", \"give\", \"handbook\", \"vram\", \"barbecue\", \"template\", \"shrink\", \"gregory\", \"ucsc\", \"compass\", \"readable\", \"dissolve\", \"decwindow\", \"mailbox\", \"charcoal\", \"diagram\", \"beacon\", \"phakt\", \"mutant\", \"speedup\", \"mackie\", \"bernoulli\", \"spaceflight\", \"bracket\", \"raider\", \"mould\", \"dist\", \"anesthesiology\", \"durham\", \"bungee\", \"colony\", \"discusse\", \"hunting\", \"svr\", \"telnet\", \"fractal\", \"certificate\", \"eclipse\", \"checker\", \"mailing\", \"sail\", \"subscription\", \"printing\", \"presentation\", \"conference\", \"rkba\", \"list\", \"book\", \"archive\", \"send\", \"tutorial\", \"request\", \"cd\", \"address\", \"mail\", \"accelerator\", \"copy\", \"include\", \"package\", \"email\", \"publish\", \"available\", \"monthly\", \"sunos\", \"information\", \"site\", \"title\", \"receive\", \"author\", \"ship\", \"ask\", \"post\", \"issue\", \"follow\", \"also\", \"name\", \"date\", \"line\", \"new\", \"source\", \"get\", \"write\", \"teenager\", \"patently\", \"temporal\", \"rite\", \"drv\", \"radial\", \"projectile\", \"latin\", \"jointly\", \"ahve\", \"emm\", \"absurdity\", \"le\", \"trinity\", \"promiscuity\", \"sinless\", \"uninstall\", \"notepad\", \"profound\", \"synthesize\", \"expound\", \"blaise\", \"slowdown\", \"claus\", \"worship\", \"bulldozer\", \"protestant\", \"fallen\", \"occurrence\", \"skew\", \"hulk\", \"imam\", \"church\", \"ini\", \"ceremony\", \"clh\", \"marriage\", \"creed\", \"applicant\", \"catholic\", \"abolish\", \"selective\", \"uranium\", \"theologian\", \"doctrine\", \"scripture\", \"bless\", \"sin\", \"pascal\", \"holy\", \"son\", \"appear\", \"francis\", \"revelation\", \"disciple\", \"tradition\", \"christian\", \"law\", \"view\", \"book\", \"god\", \"know\", \"also\", \"say\", \"think\", \"people\", \"read\", \"day\", \"line\", \"write\", \"be\", \"group\", \"come\", \"work\", \"believe\", \"time\", \"stimulus\", \"pellet\", \"sticky\", \"derek\", \"fz\", \"vc\", \"seeing\", \"consulting\", \"rot\", \"ot\", \"ridicule\", \"fossil\", \"radiologist\", \"boiling\", \"doorstep\", \"sunset\", \"boiler\", \"strand\", \"p\", \"benedikt\", \"swinge\", \"railway\", \"cavalier\", \"attest\", \"fission\", \"tower\", \"feast\", \"splicing\", \"relativity\", \"clintonite\", \"glock\", \"reactor\", \"aftermarket\", \"illustration\", \"deletion\", \"recycle\", \"revolver\", \"slave\", \"cool\", \"plant\", \"nuclear\", \"cylinder\", \"trigger\", \"water\", \"easter\", \"temperature\", \"semi\", \"cop\", \"safety\", \"air\", \"prophecy\", \"word\", \"steam\", \"hot\", \"dangerous\", \"_\", \"law\", \"thermal\", \"unit\", \"say\", \"know\", \"thing\", \"use\", \"write\", \"make\", \"go\", \"be\", \"also\", \"time\", \"get\", \"mean\", \"line\", \"think\", \"many\", \"s\", \"see\", \"take\", \"espns\", \"trouser\", \"suitably\", \"pittsburgher\", \"pittsburg\", \"miner\", \"aspiration\", \"argic\", \"sahak\", \"kurd\", \"washing\", \"asala\", \"commentate\", \"melkonian\", \"arromdian\", \"turk\", \"savagely\", \"hilarious\", \"appressian\", \"kurdish\", \"extermination\", \"whoop\", \"colonel\", \"pillage\", \"peopel\", \"sdpa\", \"culminate\", \"grad\", \"abdomen\", \"caravan\", \"slaughter\", \"cruelty\", \"armenian\", \"turkish\", \"genocide\", \"massacre\", \"mountain\", \"greek\", \"sexually\", \"expose\", \"muslim\", \"proceed\", \"escape\", \"event\", \"daughter\", \"freak\", \"soul\", \"population\", \"russian\", \"flee\", \"serve\", \"longer\", \"town\", \"road\", \"single\", \"destroy\", \"people\", \"page\", \"today\", \"close\", \"way\", \"exist\", \"first\", \"work\", \"ax\", \"tq\", \"administrative\", \"rethought\", \"rethink\", \"delegate\", \"nrhj\", \"ei\", \"infamous\", \"huey\", \"beep\", \"omnipotent\", \"mist\", \"tm\", \"paperback\", \"tammy\", \"mcrae\", \"pne\", \"bow\", \"observed\", \"marble\", \"wicke\", \"evangelism\", \"elide\", \"fij\", \"miata\", \"albion\", \"tg\", \"unregistered\", \"hh\", \"baptize\", \"panther\", \"militia\", \"interleave\", \"prophesy\", \"infringe\", \"spike\", \"cpsr\", \"regulate\", \"arm\", \"regulated\", \"right\", \"know\", \"write\", \"people\", \"say\", \"think\", \"be\", \"text\", \"make\", \"_\", \"see\", \"article\", \"go\", \"well\", \"believe\", \"line\", \"never\", \"time\", \"part\", \"find\", \"seem\", \"would\", \"needle\", \"godhead\", \"clinic\", \"seattle\", \"centaur\", \"distributable\", \"panasonic\", \"winjet\", \"weld\", \"mini\", \"eject\", \"assailant\", \"candy\", \"someplace\", \"diabetes\", \"atleast\", \"sperm\", \"residential\", \"led\", \"pcl\", \"hopeful\", \"fluctuation\", \"soar\", \"symposium\", \"stitch\", \"bmug\", \"repeater\", \"extoll\", \"usefull\", \"morphing\", \"homicide\", \"dock\", \"partition\", \"marvel\", \"margin\", \"vancouver\", \"knife\", \"rash\", \"rate\", \"duo\", \"nowadays\", \"insurance\", \"annual\", \"cartridge\", \"inject\", \"purchase\", \"bike\", \"retail\", \"dealer\", \"cycle\", \"problem\", \"handgun\", \"gun\", \"accident\", \"drive\", \"write\", \"buy\", \"get\", \"number\", \"know\", \"good\", \"use\", \"driver\", \"take\", \"year\", \"line\", \"article\", \"even\", \"work\", \"make\", \"adcom\", \"deterrent\", \"rl\", \"preset\", \"floptical\", \"rejoice\", \"sps\", \"cluster\", \"iii\", \"chimp\", \"enclosure\", \"expulsion\", \"inclined\", \"openlook\", \"dw\", \"concurrently\", \"timmon\", \"sleeve\", \"capsule\", \"skinny\", \"undesired\", \"stanford\", \"wholesome\", \"resonance\", \"webber\", \"transputer\", \"removed\", \"weasel\", \"digitally\", \"dortmund\", \"sparcstation\", \"amp\", \"sceptical\", \"spline\", \"disc\", \"ghost\", \"motif\", \"cell\", \"athena\", \"amplifier\", \"picture\", \"application\", \"component\", \"widget\", \"audio\", \"line\", \"software\", \"window\", \"run\", \"write\", \"thank\", \"include\", \"post\", \"look\", \"know\", \"get\", \"nntp\", \"system\", \"distribution\", \"source\"], \"Total\": [5082.0, 10082.0, 1726.0, 1578.0, 842.0, 2440.0, 2723.0, 6288.0, 6955.0, 735.0, 1966.0, 10328.0, 4400.0, 2306.0, 1686.0, 2253.0, 7324.0, 892.0, 870.0, 2129.0, 1950.0, 3195.0, 1840.0, 593.0, 1468.0, 3803.0, 1437.0, 1332.0, 6473.0, 1968.0, 40.75934982299805, 62.076934814453125, 37.929508209228516, 33.37982177734375, 35.19868469238281, 22.288227081298828, 21.936588287353516, 19.390409469604492, 24.262908935546875, 36.761993408203125, 57.85169219970703, 20.02546501159668, 38.65755081176758, 18.174179077148438, 17.73758316040039, 24.079957962036133, 29.126741409301758, 28.67658805847168, 15.081267356872559, 31.298255920410156, 19.271944046020508, 17.975976943969727, 55.89791488647461, 21.857418060302734, 13.622897148132324, 55.38571548461914, 22.039159774780273, 24.693805694580078, 15.185307502746582, 30.21105194091797, 153.5157928466797, 45.81132507324219, 722.8472900390625, 386.79071044921875, 261.14080810546875, 47.438507080078125, 223.75439453125, 901.9400634765625, 242.20986938476562, 680.7667236328125, 670.3125, 49.65439987182617, 657.0897216796875, 516.1151733398438, 48.01679229736328, 133.01577758789062, 2450.19287109375, 616.0441284179688, 158.8467559814453, 100.00873565673828, 55.81879425048828, 557.3609619140625, 848.684326171875, 6288.3251953125, 103.63439178466797, 524.8643188476562, 102.09721374511719, 7324.3046875, 281.6618347167969, 1409.69921875, 983.3975219726562, 1309.548828125, 1538.4417724609375, 3484.712158203125, 1012.8347778320312, 1257.6517333984375, 708.3479614257812, 3236.592041015625, 2488.4384765625, 2785.78955078125, 1385.9547119140625, 6473.4814453125, 4741.23193359375, 5658.95361328125, 5982.4609375, 3307.740478515625, 3420.42919921875, 10328.5009765625, 6127.97998046875, 5921.61767578125, 4874.6640625, 3590.82177734375, 2508.340087890625, 2702.465576171875, 3810.04833984375, 3058.233154296875, 3400.80712890625, 10082.8212890625, 62.59016036987305, 80.45854187011719, 64.04296875, 44.0428352355957, 35.25177001953125, 44.51984405517578, 65.16514587402344, 45.305397033691406, 21.497467041015625, 59.382423400878906, 25.358224868774414, 21.099241256713867, 17.244924545288086, 17.30299949645996, 19.705507278442383, 14.442626953125, 14.225902557373047, 26.381397247314453, 24.13217544555664, 19.443822860717773, 12.688970565795898, 189.89479064941406, 382.69610595703125, 338.1839294433594, 12.5113525390625, 14.241422653198242, 15.364773750305176, 13.279407501220703, 12.137457847595215, 11.690732955932617, 120.64144134521484, 50.0, 1051.2103271484375, 217.2263946533203, 61.76341247558594, 165.65493774414062, 261.23870849609375, 224.50958251953125, 92.5602035522461, 72.09762573242188, 340.4786682128906, 455.982177734375, 137.2014923095703, 2723.47021484375, 255.79583740234375, 78.0223617553711, 215.14398193359375, 250.45361328125, 662.3294067382812, 149.16822814941406, 1966.6378173828125, 2306.24169921875, 695.1522827148438, 739.8046264648438, 206.3309326171875, 346.7659606933594, 200.6763458251953, 898.5869750976562, 1252.86669921875, 446.2331237792969, 835.7166748046875, 802.838134765625, 2206.1435546875, 3539.6689453125, 535.3162231445312, 938.6945190429688, 617.91162109375, 1746.266357421875, 5053.76611328125, 2550.564697265625, 1615.8426513671875, 1516.9920654296875, 1070.6302490234375, 892.749267578125, 3814.38818359375, 1437.0618896484375, 2129.089111328125, 3195.171630859375, 1349.7669677734375, 10082.8212890625, 4421.2900390625, 1576.0660400390625, 10328.5009765625, 6127.97998046875, 3321.415771484375, 5660.9453125, 6473.4814453125, 54.13795852661133, 38.36804962158203, 34.21449661254883, 32.082950592041016, 42.25607681274414, 26.08708381652832, 29.897016525268555, 43.952415466308594, 59.54905700683594, 34.788639068603516, 24.28260612487793, 25.724258422851562, 23.86906623840332, 28.186317443847656, 24.498756408691406, 20.311168670654297, 21.65958595275879, 20.52923011779785, 21.96031951904297, 29.12856674194336, 21.399641036987305, 28.366743087768555, 17.539247512817383, 18.68372344970703, 19.799251556396484, 24.77685546875, 71.83203125, 17.336132049560547, 18.05996322631836, 19.366487503051758, 20.24444007873535, 49.282230377197266, 73.63590240478516, 47.991878509521484, 88.76118469238281, 46.33378219604492, 36.94565963745117, 188.71450805664062, 122.86957550048828, 44.93971252441406, 48.31698226928711, 48.81462860107422, 45.38446807861328, 581.9964599609375, 128.11978149414062, 97.99832153320312, 84.36064147949219, 119.74907684326172, 269.7733459472656, 43.09720230102539, 49.49588394165039, 425.9941711425781, 147.87176513671875, 206.0806121826172, 98.75907897949219, 93.7066421508789, 62.57097625732422, 10328.5009765625, 77.86357116699219, 5982.4609375, 5397.32470703125, 5921.61767578125, 165.9688262939453, 5658.95361328125, 6955.33984375, 3055.76025390625, 10082.8212890625, 2892.69482421875, 2582.7421875, 4400.58642578125, 3590.82177734375, 4741.23193359375, 1392.0230712890625, 3689.34326171875, 4874.6640625, 2702.465576171875, 3420.42919921875, 5660.9453125, 6288.3251953125, 6127.97998046875, 3400.80712890625, 3803.629150390625, 3236.592041015625, 7324.3046875, 4666.77880859375, 6473.4814453125, 3020.15673828125, 3810.04833984375, 3431.64111328125, 3388.900390625, 277.71820068359375, 60.7940788269043, 83.8768081665039, 24.927600860595703, 21.984027862548828, 28.321426391601562, 36.46086120605469, 18.418537139892578, 18.977540969848633, 16.531160354614258, 359.0895080566406, 17.190338134765625, 18.400161743164062, 41.18977355957031, 15.39745044708252, 140.7063751220703, 16.445877075195312, 24.625377655029297, 173.6768035888672, 19.433204650878906, 13.479446411132812, 42.29630661010742, 51.098480224609375, 12.943320274353027, 32.7987060546875, 12.431453704833984, 27.36356544494629, 14.57828140258789, 42.77732467651367, 32.13065719604492, 314.99273681640625, 65.1949691772461, 347.066162109375, 170.59347534179688, 392.3316955566406, 2440.167724609375, 822.6912841796875, 60.38737487792969, 246.0668487548828, 117.39567565917969, 388.3837890625, 73.9392318725586, 86.71009063720703, 571.7192993164062, 392.81719970703125, 380.64739990234375, 125.01905059814453, 1968.955810546875, 422.0788879394531, 101.70501708984375, 265.75372314453125, 179.4956817626953, 382.3499450683594, 209.5944061279297, 232.87359619140625, 593.6343994140625, 1541.787353515625, 387.5616455078125, 311.1066589355469, 1950.322998046875, 1298.760009765625, 566.586669921875, 1899.174072265625, 757.0352172851562, 3236.592041015625, 476.6077575683594, 978.1466064453125, 6288.3251953125, 3539.6689453125, 1753.0982666015625, 6127.97998046875, 5053.76611328125, 10328.5009765625, 6473.4814453125, 7324.3046875, 10082.8212890625, 5982.4609375, 2147.3955078125, 4421.2900390625, 5658.95361328125, 3307.740478515625, 3296.39013671875, 5660.9453125, 49.48272705078125, 46.62169647216797, 40.6837272644043, 35.70376205444336, 38.53866958618164, 34.18647766113281, 32.495365142822266, 35.33027648925781, 28.826051712036133, 29.283742904663086, 27.1682071685791, 26.442707061767578, 42.37413024902344, 34.33216094970703, 33.95635223388672, 24.306270599365234, 22.5262451171875, 24.628944396972656, 20.09733009338379, 18.738622665405273, 17.71847152709961, 24.487552642822266, 34.90642166137695, 23.88172149658203, 23.339365005493164, 20.045820236206055, 21.189781188964844, 15.946337699890137, 16.397499084472656, 23.21015167236328, 43.39817428588867, 35.24038314819336, 76.24144744873047, 52.801658630371094, 32.95405578613281, 29.245569229125977, 155.0755615234375, 111.11418914794922, 50.07711410522461, 38.226417541503906, 164.5687255859375, 53.29721450805664, 153.46539306640625, 96.9605941772461, 47.33897399902344, 736.4017944335938, 281.650390625, 266.5986328125, 212.44061279296875, 204.59678649902344, 1125.1923828125, 163.10800170898438, 87.2955093383789, 381.0802001953125, 75.38680267333984, 318.6578063964844, 110.39461517333984, 400.0644836425781, 669.7683715820312, 507.0298156738281, 7324.3046875, 255.7699737548828, 309.0371398925781, 288.9570617675781, 226.6240997314453, 793.1483764648438, 504.6063537597656, 453.2585754394531, 875.0520629882812, 632.5008544921875, 678.4708251953125, 6127.97998046875, 5658.95361328125, 6473.4814453125, 6288.3251953125, 3296.39013671875, 3420.42919921875, 5982.4609375, 1446.159912109375, 4874.6640625, 3058.233154296875, 3388.900390625, 10328.5009765625, 3810.04833984375, 1899.174072265625, 3831.648193359375, 2488.4384765625, 2508.340087890625, 1783.4449462890625, 4421.2900390625, 10082.8212890625, 4666.77880859375, 5397.32470703125, 4741.23193359375, 5921.61767578125, 2632.64111328125, 3236.592041015625, 3307.740478515625, 49.80861282348633, 44.33109664916992, 164.307861328125, 42.38773727416992, 29.17119598388672, 32.27613830566406, 29.855451583862305, 23.768146514892578, 27.384048461914062, 52.16000747680664, 24.013153076171875, 21.209571838378906, 21.963581085205078, 36.340457916259766, 20.668560028076172, 19.975326538085938, 22.35444450378418, 18.287649154663086, 20.06416893005371, 35.91563415527344, 29.59739875793457, 31.385595321655273, 21.663490295410156, 20.787147521972656, 17.110002517700195, 19.761960983276367, 16.527374267578125, 14.429065704345703, 15.104933738708496, 14.108996391296387, 84.06562805175781, 32.30900573730469, 51.464210510253906, 64.61309051513672, 37.320579528808594, 129.17190551757812, 85.71283721923828, 33.58394241333008, 146.9266357421875, 175.017822265625, 248.07412719726562, 31.991336822509766, 36.54038619995117, 37.297603607177734, 88.8087387084961, 607.8972778320312, 188.04696655273438, 235.0408172607422, 835.7166748046875, 321.756591796875, 59.18928146362305, 1099.103271484375, 153.08375549316406, 1468.2684326171875, 802.4872436523438, 66.22142791748047, 5660.9453125, 247.2129669189453, 5982.4609375, 2550.564697265625, 420.2981262207031, 3831.648193359375, 4741.23193359375, 5921.61767578125, 1983.0313720703125, 1882.801025390625, 3431.64111328125, 3810.04833984375, 1604.7181396484375, 3484.712158203125, 1686.39990234375, 10328.5009765625, 2682.722900390625, 3055.76025390625, 10082.8212890625, 4874.6640625, 2582.7421875, 3590.82177734375, 7324.3046875, 5397.32470703125, 1761.6431884765625, 4666.77880859375, 6127.97998046875, 6955.33984375, 5658.95361328125, 6473.4814453125, 29.038890838623047, 25.433265686035156, 56.62327575683594, 24.471176147460938, 19.71574592590332, 20.273191452026367, 16.873849868774414, 18.015867233276367, 27.410125732421875, 19.172218322753906, 66.42658996582031, 15.322622299194336, 15.755182266235352, 20.912071228027344, 15.452005386352539, 15.71947956085205, 17.694717407226562, 15.87736988067627, 23.223163604736328, 29.177566528320312, 14.31718635559082, 18.649686813354492, 19.805145263671875, 14.67596435546875, 12.941461563110352, 82.49707794189453, 37.48382568359375, 44.46773147583008, 10.827103614807129, 10.374969482421875, 36.96406555175781, 116.02191925048828, 49.6329345703125, 69.92729949951172, 123.1914291381836, 165.698486328125, 780.0831298828125, 568.0964965820312, 104.44009399414062, 182.87411499023438, 196.44781494140625, 248.70069885253906, 72.21532440185547, 39.00566101074219, 77.14642333984375, 973.953857421875, 1282.9456787109375, 101.48479461669922, 698.6767578125, 75.16989135742188, 423.92462158203125, 2253.00146484375, 1615.8426513671875, 265.57305908203125, 641.1980590820312, 291.2945861816406, 10082.8212890625, 4400.58642578125, 6955.33984375, 1761.884521484375, 3803.629150390625, 1437.0618896484375, 2119.25390625, 1332.568115234375, 3321.415771484375, 733.867431640625, 1840.0682373046875, 759.9010620117188, 489.5150451660156, 5053.76611328125, 6473.4814453125, 2447.144775390625, 10328.5009765625, 1298.760009765625, 5921.61767578125, 3431.64111328125, 3689.34326171875, 2509.49072265625, 3168.271728515625, 3195.171630859375, 1966.6378173828125, 2206.1435546875, 2632.359619140625, 4874.6640625, 3814.38818359375, 4666.77880859375, 5660.9453125, 37.616844177246094, 60.84718704223633, 37.30972671508789, 29.493967056274414, 65.9761734008789, 30.900005340576172, 36.32498550415039, 36.2855224609375, 20.76983642578125, 43.54216003417969, 29.181560516357422, 35.6774787902832, 17.94190788269043, 64.5890884399414, 18.00830078125, 16.038349151611328, 15.168184280395508, 16.159515380859375, 33.040164947509766, 16.90499496459961, 14.834756851196289, 21.437400817871094, 18.09377098083496, 12.927345275878906, 13.587821960449219, 35.99403381347656, 12.329133033752441, 13.928823471069336, 20.826570510864258, 12.265438079833984, 56.13479995727539, 32.90599822998047, 1726.97021484375, 223.15524291992188, 82.66405487060547, 75.62439727783203, 44.068485260009766, 637.678955078125, 947.0285034179688, 340.31890869140625, 43.21049499511719, 250.3905487060547, 348.39886474609375, 520.2843017578125, 493.90594482421875, 1468.2684326171875, 157.69784545898438, 215.86427307128906, 1331.8756103515625, 94.17279052734375, 270.1617736816406, 168.1267547607422, 103.83242797851562, 125.39087677001953, 381.0400085449219, 135.88662719726562, 79.1265869140625, 234.52940368652344, 1099.103271484375, 185.09884643554688, 3831.648193359375, 182.7545928955078, 5658.95361328125, 855.6672973632812, 831.2819213867188, 7324.3046875, 10328.5009765625, 4666.77880859375, 1983.0313720703125, 2632.64111328125, 6127.97998046875, 3388.900390625, 1306.683837890625, 3307.740478515625, 6955.33984375, 3810.04833984375, 5982.4609375, 10082.8212890625, 5397.32470703125, 2508.340087890625, 4874.6640625, 5660.9453125, 6288.3251953125, 3590.82177734375, 4741.23193359375, 42.3408088684082, 50.58045196533203, 41.382747650146484, 68.83679962158203, 27.748722076416016, 31.67508888244629, 50.12696075439453, 38.64349365234375, 34.196041107177734, 19.10055160522461, 37.48460388183594, 18.669288635253906, 186.41485595703125, 21.692703247070312, 34.1085205078125, 15.5259370803833, 17.850753784179688, 163.1490020751953, 44.162235260009766, 122.15946960449219, 14.774733543395996, 49.22465896606445, 12.18100357055664, 16.68779182434082, 11.528823852539062, 19.33205223083496, 11.23022174835205, 10.37380599975586, 10.642029762268066, 18.139171600341797, 504.4061584472656, 17.61589813232422, 21.94097328186035, 33.842132568359375, 98.42102813720703, 78.8526382446289, 186.8391571044922, 182.01263427734375, 98.80322265625, 272.05987548828125, 117.65807342529297, 623.3815307617188, 149.47474670410156, 1686.39990234375, 1036.35400390625, 256.72967529296875, 654.743896484375, 945.8683471679688, 365.55645751953125, 1481.8758544921875, 376.02203369140625, 218.28782653808594, 524.0092163085938, 1277.4510498046875, 4400.58642578125, 10082.8212890625, 287.4832763671875, 3803.629150390625, 6955.33984375, 2692.234375, 759.0767211914062, 2253.00146484375, 2509.49072265625, 5660.9453125, 1493.8604736328125, 703.6499633789062, 5921.61767578125, 4666.77880859375, 10328.5009765625, 3431.64111328125, 2550.564697265625, 5397.32470703125, 5053.76611328125, 6473.4814453125, 3814.38818359375, 3321.415771484375, 6127.97998046875, 3831.648193359375, 3689.34326171875, 45.51934814453125, 29.948427200317383, 49.51251220703125, 240.3378143310547, 22.800676345825195, 18.909833908081055, 22.292421340942383, 278.78887939453125, 17.078771591186523, 39.60297775268555, 34.91263198852539, 31.72324562072754, 12.800860404968262, 12.430620193481445, 12.312294006347656, 33.011634826660156, 14.217601776123047, 24.04851722717285, 14.94409465789795, 10.948049545288086, 16.505516052246094, 10.536123275756836, 11.555391311645508, 12.400603294372559, 10.143101692199707, 37.08513641357422, 10.47506332397461, 10.493921279907227, 15.371599197387695, 10.13382339477539, 14.835076332092285, 62.40387725830078, 249.22007751464844, 117.0325927734375, 1578.597900390625, 49.761314392089844, 52.14403533935547, 40.3023567199707, 33.49406814575195, 237.80052185058594, 99.5019760131836, 25.487773895263672, 39.31275177001953, 36.677955627441406, 500.343017578125, 33.91831970214844, 273.0455627441406, 144.96963500976562, 302.6446533203125, 664.3577270507812, 165.26321411132812, 1573.4791259765625, 443.88885498046875, 735.2329711914062, 339.10369873046875, 111.73341369628906, 458.6714172363281, 347.0903625488281, 166.64576721191406, 1084.5015869140625, 6288.3251953125, 662.9358520507812, 708.4783325195312, 629.9483032226562, 124.00433349609375, 1257.6517333984375, 2447.144775390625, 10328.5009765625, 431.9870910644531, 1504.0860595703125, 1344.5184326171875, 6127.97998046875, 5397.32470703125, 3400.80712890625, 6473.4814453125, 7324.3046875, 5660.9453125, 5053.76611328125, 10082.8212890625, 3058.233154296875, 4666.77880859375, 3168.271728515625, 2147.3955078125, 4874.6640625, 5921.61767578125, 3307.740478515625, 4741.23193359375, 5658.95361328125, 52.20467758178711, 255.76980590820312, 36.292213439941406, 171.16683959960938, 28.18316650390625, 27.589744567871094, 32.25529479980469, 25.5084228515625, 29.988283157348633, 25.598909378051758, 20.113462448120117, 19.820465087890625, 204.89761352539062, 23.08836555480957, 42.71262741088867, 33.17877197265625, 41.67396926879883, 16.05215072631836, 20.031465530395508, 31.49776840209961, 72.68457794189453, 14.038436889648438, 13.146367073059082, 15.820854187011719, 15.18416690826416, 34.6636962890625, 20.981290817260742, 13.281977653503418, 12.957980155944824, 12.183207511901855, 269.0730285644531, 85.07469940185547, 87.51917266845703, 77.10220336914062, 66.87316131591797, 446.52972412109375, 42.77626419067383, 427.29345703125, 285.89111328125, 274.3391418457031, 46.2662353515625, 128.08090209960938, 54.0349006652832, 236.92062377929688, 106.90933227539062, 184.05770874023438, 102.73429107666016, 145.49310302734375, 61.720611572265625, 979.5888671875, 268.86016845703125, 232.23277282714844, 550.7070922851562, 244.29327392578125, 249.82557678222656, 322.9400939941406, 874.7418212890625, 198.4401092529297, 241.88478088378906, 512.04931640625, 211.59500122070312, 836.7354125976562, 1239.9853515625, 2206.1435546875, 3539.6689453125, 497.9068603515625, 5053.76611328125, 825.5906982421875, 10328.5009765625, 2632.64111328125, 4874.6640625, 966.9494018554688, 10082.8212890625, 1776.5987548828125, 5660.9453125, 4421.2900390625, 6473.4814453125, 5397.32470703125, 3831.648193359375, 6955.33984375, 33.73267364501953, 30.355621337890625, 27.154863357543945, 29.994705200195312, 21.168678283691406, 20.508026123046875, 19.643373489379883, 17.230756759643555, 16.661712646484375, 18.39463233947754, 14.225845336914062, 15.847145080566406, 17.388078689575195, 13.586312294006348, 22.13871192932129, 18.677946090698242, 14.708633422851562, 12.998128890991211, 34.53273010253906, 39.215206146240234, 13.719701766967773, 16.164506912231445, 14.268207550048828, 13.985506057739258, 19.44061851501465, 13.13796615600586, 11.83190631866455, 13.036805152893066, 12.029537200927734, 12.012029647827148, 23.168033599853516, 14.454381942749023, 29.69388198852539, 19.535478591918945, 18.98981475830078, 167.06459045410156, 23.356399536132812, 30.014169692993164, 83.17060089111328, 56.29914855957031, 28.879350662231445, 139.28050231933594, 121.13396453857422, 75.85105895996094, 33.48929214477539, 29.62071418762207, 151.1845245361328, 85.12010955810547, 30.858848571777344, 475.42510986328125, 61.03825378417969, 182.393798828125, 58.80577087402344, 142.32679748535156, 42.13123321533203, 419.9171447753906, 75.1036148071289, 85.26600646972656, 144.6091766357422, 80.51445770263672, 90.13865661621094, 156.91720581054688, 158.26397705078125, 312.6507873535156, 2785.78955078125, 368.7091064453125, 3195.171630859375, 4666.77880859375, 1690.8780517578125, 651.0303955078125, 10328.5009765625, 4421.2900390625, 5921.61767578125, 6955.33984375, 5397.32470703125, 6127.97998046875, 3539.6689453125, 3814.38818359375, 10082.8212890625, 4741.23193359375, 1165.8802490234375, 6473.4814453125, 3168.271728515625, 6288.3251953125, 3689.34326171875, 2582.7421875, 5658.95361328125, 2509.49072265625, 3590.82177734375, 3810.04833984375, 3020.15673828125, 3831.648193359375, 5660.9453125, 2389.509033203125, 5053.76611328125, 7324.3046875, 49.9067268371582, 30.201570510864258, 23.37858009338379, 40.964725494384766, 27.178232192993164, 23.11887550354004, 44.942054748535156, 20.21465492248535, 80.63079833984375, 20.192596435546875, 17.688108444213867, 20.270158767700195, 86.67720794677734, 90.16736602783203, 82.49246978759766, 34.63838577270508, 50.825931549072266, 17.209461212158203, 14.072583198547363, 22.90708351135254, 37.390106201171875, 12.231322288513184, 16.017168045043945, 16.269441604614258, 12.18797492980957, 11.372476577758789, 41.42491149902344, 11.405584335327148, 16.21041488647461, 12.307882308959961, 25.470746994018555, 34.36024475097656, 25.336339950561523, 92.14981842041016, 120.82341766357422, 24.031774520874023, 79.35601806640625, 119.79756927490234, 22.978599548339844, 44.053260803222656, 515.503662109375, 249.97662353515625, 292.4485778808594, 77.08553314208984, 170.89422607421875, 136.8898468017578, 260.33721923828125, 169.6590118408203, 323.0209045410156, 253.825927734375, 307.17633056640625, 855.6672973632812, 420.2981262207031, 381.97625732421875, 5397.32470703125, 10328.5009765625, 227.9310760498047, 547.63525390625, 3831.648193359375, 10082.8212890625, 6955.33984375, 5658.95361328125, 4400.58642578125, 6473.4814453125, 3058.233154296875, 3803.629150390625, 6127.97998046875, 7324.3046875, 5982.4609375, 3590.82177734375, 4666.77880859375, 4741.23193359375, 2389.509033203125, 5921.61767578125, 4874.6640625, 5660.9453125, 1983.0313720703125, 3484.712158203125, 3814.38818359375, 3307.740478515625, 4421.2900390625, 3296.39013671875, 60.44805908203125, 37.33384323120117, 41.68894577026367, 26.804224014282227, 21.393348693847656, 20.308629989624023, 19.982872009277344, 18.639005661010742, 30.377527236938477, 16.812198638916016, 20.824785232543945, 28.31494140625, 20.87204360961914, 24.525753021240234, 17.93023109436035, 14.320206642150879, 25.476781845092773, 16.663888931274414, 13.401232719421387, 11.919300079345703, 13.92829418182373, 16.724580764770508, 11.570634841918945, 11.841115951538086, 26.492225646972656, 13.081513404846191, 12.958053588867188, 12.04660415649414, 33.140506744384766, 10.792684555053711, 21.01810646057129, 31.127573013305664, 59.52133560180664, 29.255102157592773, 19.977462768554688, 25.514789581298828, 46.55723190307617, 176.5475616455078, 57.243770599365234, 47.74468231201172, 26.833038330078125, 109.30713653564453, 231.0952606201172, 48.59109878540039, 1332.7135009765625, 1232.8643798828125, 326.27996826171875, 1612.1373291015625, 40.96356964111328, 484.5401306152344, 307.984619140625, 1027.921630859375, 1840.0682373046875, 133.9907989501953, 854.3745727539062, 2129.089111328125, 752.0765380859375, 928.3275756835938, 412.36376953125, 1516.9920654296875, 90.71955108642578, 68.20462036132812, 1753.0982666015625, 641.50341796875, 347.00274658203125, 755.4581909179688, 536.2131958007812, 325.1781921386719, 1855.83984375, 6955.33984375, 1333.5361328125, 1875.4326171875, 4421.2900390625, 1617.0198974609375, 590.724365234375, 10082.8212890625, 2692.234375, 1367.543701171875, 5660.9453125, 10328.5009765625, 46.343448638916016, 32.53929138183594, 20.793874740600586, 20.77630615234375, 35.35108947753906, 18.363859176635742, 21.84505271911621, 16.216163635253906, 19.976518630981445, 13.039276123046875, 38.17436218261719, 39.95939254760742, 15.524737358093262, 43.11689376831055, 24.66351890563965, 10.993879318237305, 10.556563377380371, 9.511716842651367, 16.132946014404297, 9.256174087524414, 10.370516777038574, 7.916689395904541, 9.973426818847656, 7.833949565887451, 194.70533752441406, 7.773138523101807, 49.290828704833984, 8.114890098571777, 31.98497772216797, 7.38034725189209, 53.03063201904297, 14.411786079406738, 593.33837890625, 56.54369354248047, 67.88642120361328, 94.02212524414062, 195.762939453125, 30.175474166870117, 43.587677001953125, 163.99517822265625, 70.31620025634766, 72.38019561767578, 41.65855026245117, 31.84356689453125, 191.53053283691406, 313.9787292480469, 84.99571228027344, 431.9870910644531, 59.20778274536133, 154.92770385742188, 298.01409912109375, 777.4385986328125, 40.82213592529297, 182.97470092773438, 74.89439392089844, 203.76177978515625, 557.3609619140625, 1950.322998046875, 944.615478515625, 1232.8643798828125, 616.0441284179688, 6473.4814453125, 4421.2900390625, 7324.3046875, 5658.95361328125, 6288.3251953125, 2178.09228515625, 1943.658203125, 10082.8212890625, 10328.5009765625, 5921.61767578125, 1690.8780517578125, 3484.712158203125, 3814.38818359375, 2450.19287109375, 4874.6640625, 36.1036376953125, 31.71977424621582, 14.944141387939453, 14.809359550476074, 18.112058639526367, 30.268905639648438, 17.258703231811523, 13.841736793518066, 19.03158950805664, 19.122377395629883, 11.942176818847656, 18.907575607299805, 16.589658737182617, 13.248979568481445, 10.944571495056152, 18.163196563720703, 12.318790435791016, 10.372066497802734, 31.973377227783203, 21.88004493713379, 9.767837524414062, 8.39545726776123, 8.050361633300781, 16.576528549194336, 9.694075584411621, 82.0746841430664, 9.17508602142334, 6.60455322265625, 22.284208297729492, 6.422987461090088, 59.2861328125, 32.751949310302734, 38.47405242919922, 15.835306167602539, 55.69236373901367, 21.567602157592773, 77.84093475341797, 287.07086181640625, 225.47225952148438, 92.02664947509766, 228.49806213378906, 120.552734375, 85.12670135498047, 312.6507873535156, 34.33888244628906, 85.64967346191406, 135.0019989013672, 184.7068634033203, 421.98846435546875, 271.47344970703125, 94.02066040039062, 1324.178466796875, 38.15338897705078, 294.9505920410156, 326.7817077636719, 322.918701171875, 1950.322998046875, 72.11656188964844, 451.9571838378906, 7324.3046875, 6473.4814453125, 3420.42919921875, 5053.76611328125, 10328.5009765625, 6127.97998046875, 5982.4609375, 5921.61767578125, 4421.2900390625, 4874.6640625, 5660.9453125, 2508.340087890625, 10082.8212890625, 5658.95361328125, 3058.233154296875, 3590.82177734375, 4741.23193359375, 3810.04833984375, 16.51172637939453, 12.049455642700195, 10.89730453491211, 10.129868507385254, 12.564247131347656, 14.093478202819824, 14.668905258178711, 84.2232437133789, 78.2880630493164, 21.810909271240234, 10.859610557556152, 22.22334861755371, 6.27369499206543, 77.76190185546875, 14.33837890625, 360.040283203125, 7.572268009185791, 5.673523902893066, 79.38456726074219, 36.54720687866211, 113.173828125, 6.856674671173096, 6.296067237854004, 13.121612548828125, 6.594442844390869, 24.762977600097656, 11.065929412841797, 20.75511932373047, 4.719527721405029, 5.143096923828125, 117.8077163696289, 21.210243225097656, 842.5382080078125, 735.2005615234375, 221.39862060546875, 125.35205841064453, 168.13108825683594, 297.4313049316406, 52.25871276855469, 174.61375427246094, 241.92825317382812, 156.4132080078125, 244.63470458984375, 697.7818603515625, 146.37611389160156, 26.53097915649414, 277.78912353515625, 412.45635986328125, 249.45516967773438, 85.55421447753906, 420.03594970703125, 368.9322204589844, 268.4851989746094, 423.2529296875, 719.18798828125, 304.17730712890625, 6288.3251953125, 596.60302734375, 906.8178100585938, 837.9945678710938, 3400.80712890625, 1306.683837890625, 2682.722900390625, 3814.38818359375, 5082.12255859375, 39.79048156738281, 18.65481185913086, 18.544475555419922, 20.611295700073242, 21.652099609375, 18.412073135375977, 29.111719131469727, 15.091419219970703, 15.090112686157227, 48.604190826416016, 13.904574394226074, 12.374051094055176, 70.11675262451172, 11.60847282409668, 12.41915512084961, 10.946486473083496, 10.370939254760742, 9.85702133178711, 11.595670700073242, 11.905610084533691, 20.11810302734375, 9.102900505065918, 8.256978988647461, 10.447811126708984, 10.775405883789062, 7.43742561340332, 7.066903114318848, 8.975354194641113, 6.939610481262207, 18.387086868286133, 20.679445266723633, 194.67649841308594, 34.5446891784668, 22.003591537475586, 46.22108459472656, 37.76127243041992, 28.0180721282959, 83.87686157226562, 547.7188720703125, 28.530845642089844, 3236.592041015625, 6473.4814453125, 10328.5009765625, 6288.3251953125, 7324.3046875, 5658.95361328125, 5921.61767578125, 566.1472778320312, 6127.97998046875, 322.918701171875, 4741.23193359375, 5397.32470703125, 5982.4609375, 3388.900390625, 2450.19287109375, 10082.8212890625, 1924.791015625, 4874.6640625, 1851.0587158203125, 3168.271728515625, 2389.509033203125, 3055.76025390625, 35.58656311035156, 27.56637191772461, 28.85213279724121, 23.525806427001953, 14.365981101989746, 11.282264709472656, 12.021138191223145, 12.507286071777344, 10.80523681640625, 15.539090156555176, 9.555675506591797, 13.560358047485352, 23.177366256713867, 8.575935363769531, 8.19890308380127, 19.26791000366211, 23.042522430419922, 9.675256729125977, 11.977094650268555, 8.298054695129395, 6.26433801651001, 8.815720558166504, 5.951236248016357, 12.031488418579102, 5.788529872894287, 5.471559047698975, 5.661313056945801, 7.582152366638184, 5.743832111358643, 5.784966945648193, 88.67559051513672, 38.76889419555664, 30.994338989257812, 11.446216583251953, 54.17622375488281, 20.042171478271484, 79.13996124267578, 27.26954460144043, 870.882568359375, 43.836299896240234, 33.12815475463867, 317.65606689453125, 124.07156372070312, 97.25382995605469, 44.86897659301758, 376.9488525390625, 581.9964599609375, 37.066001892089844, 365.55645751953125, 197.61026000976562, 3195.171630859375, 178.22532653808594, 1578.597900390625, 190.21961975097656, 2306.24169921875, 10328.5009765625, 1277.4510498046875, 5660.9453125, 2447.144775390625, 6473.4814453125, 4666.77880859375, 5053.76611328125, 1252.86669921875, 3810.04833984375, 3831.648193359375, 10082.8212890625, 5397.32470703125, 3307.740478515625, 3814.38818359375, 6127.97998046875, 29.068763732910156, 12.291826248168945, 14.50600528717041, 10.146790504455566, 16.728992462158203, 8.629217147827148, 8.540549278259277, 18.99209976196289, 7.451007843017578, 8.363636016845703, 7.8441057205200195, 5.5950493812561035, 6.925054550170898, 5.627686500549316, 6.916576862335205, 5.281425476074219, 8.979336738586426, 36.177146911621094, 6.157930850982666, 4.186497688293457, 4.5687737464904785, 5.389817714691162, 4.003824234008789, 5.724315643310547, 3.802969217300415, 3.786952495574951, 3.504833698272705, 3.6284406185150146, 4.360716819763184, 4.339515686035156, 18.10007095336914, 76.60385131835938, 14.77077865600586, 27.434946060180664, 49.901615142822266, 18.05990982055664, 226.5072784423828, 117.12623596191406, 16.491451263427734, 28.262187957763672, 446.2032775878906, 892.749267578125, 146.96951293945312, 321.1981506347656, 95.30451965332031, 10082.8212890625, 1437.0618896484375, 1966.6378173828125, 2550.564697265625, 10328.5009765625, 2253.00146484375, 2129.089111328125, 6955.33984375, 3431.64111328125, 6473.4814453125, 5660.9453125, 4400.58642578125, 3539.6689453125, 2509.49072265625, 1367.543701171875], \"loglift\": [30.0, 29.0, 28.0, 27.0, 26.0, 25.0, 24.0, 23.0, 22.0, 21.0, 20.0, 19.0, 18.0, 17.0, 16.0, 15.0, 14.0, 13.0, 12.0, 11.0, 10.0, 9.0, 8.0, 7.0, 6.0, 5.0, 4.0, 3.0, 2.0, 1.0, 2.2370998859405518, 2.234600067138672, 2.233599901199341, 2.2334001064300537, 2.232100009918213, 2.228100061416626, 2.22160005569458, 2.220900058746338, 2.2204999923706055, 2.220099925994873, 2.219099998474121, 2.2177999019622803, 2.2177000045776367, 2.217400074005127, 2.2126998901367188, 2.2070000171661377, 2.2049999237060547, 2.2014000415802, 2.200700044631958, 2.2005999088287354, 2.2000999450683594, 2.1995999813079834, 2.198199987411499, 2.1975998878479004, 2.1974000930786133, 2.1970999240875244, 2.188199996948242, 2.1875998973846436, 2.1847000122070312, 2.1835999488830566, 2.1789000034332275, 2.1826999187469482, 2.144399881362915, 2.1231000423431396, 2.1031999588012695, 2.1663999557495117, 2.0994999408721924, 2.005000114440918, 2.064300060272217, 1.9803999662399292, 1.975000023841858, 2.1389999389648438, 1.9026999473571777, 1.9163000583648682, 2.135499954223633, 2.0190000534057617, 1.6252000331878662, 1.7865999937057495, 1.9560999870300293, 2.0243000984191895, 2.112499952316284, 1.704800009727478, 1.6097999811172485, 1.1200000047683716, 1.9891999959945679, 1.5937000513076782, 1.9859000444412231, 0.949999988079071, 1.7335000038146973, 1.3178000450134277, 1.3767999410629272, 1.2725000381469727, 1.1770000457763672, 0.919700026512146, 1.2971999645233154, 1.1991000175476074, 1.3610999584197998, 0.7754999995231628, 0.8335000276565552, 0.7688000202178955, 1.055400013923645, 0.3752000033855438, 0.4950999915599823, 0.3824000060558319, 0.30550000071525574, 0.6137999892234802, 0.5583000183105469, -0.14249999821186066, 0.10869999974966049, 0.1005999967455864, 0.2199999988079071, 0.42730000615119934, 0.6815999746322632, 0.6148999929428101, 0.2800000011920929, 0.4212000072002411, 0.30169999599456787, -0.7846999764442444, 2.276700019836426, 2.276599884033203, 2.2741000652313232, 2.273099899291992, 2.264899969100952, 2.2629001140594482, 2.2595999240875244, 2.2492001056671143, 2.2476000785827637, 2.2392001152038574, 2.2386999130249023, 2.2360999584198, 2.2320001125335693, 2.231100082397461, 2.2302000522613525, 2.2267000675201416, 2.2239999771118164, 2.2225000858306885, 2.22189998626709, 2.2186999320983887, 2.216200113296509, 2.214600086212158, 2.2139999866485596, 2.211699962615967, 2.2100000381469727, 2.209199905395508, 2.2067999839782715, 2.204200029373169, 2.2016000747680664, 2.2014999389648438, 2.1967999935150146, 2.2009999752044678, 2.163300037384033, 2.1558001041412354, 2.180799961090088, 2.1600000858306885, 2.1391000747680664, 2.13100004196167, 2.1649999618530273, 2.1684000492095947, 2.0917000770568848, 2.0755999088287354, 2.1349000930786133, 1.9801000356674194, 2.097100019454956, 2.1579999923706055, 2.092400074005127, 2.0678000450134277, 1.9753999710083008, 2.102299928665161, 1.8205000162124634, 1.7973999977111816, 1.916700005531311, 1.904099941253662, 2.0576999187469482, 1.9824999570846558, 2.0555999279022217, 1.7259999513626099, 1.6505999565124512, 1.857200026512146, 1.7130999565124512, 1.7049000263214111, 1.4364999532699585, 1.3122999668121338, 1.7630000114440918, 1.5712000131607056, 1.6964999437332153, 1.343400001525879, 0.9675999879837036, 1.198099970817566, 1.315999984741211, 1.319000005722046, 1.4670000076293945, 1.5003000497817993, 0.800599992275238, 1.2623000144958496, 1.0300999879837036, 0.8062999844551086, 1.2384999990463257, -0.0340999998152256, 0.4020000100135803, 1.1023000478744507, -0.3255999982357025, -0.019600000232458115, 0.4429999887943268, -0.03750000149011612, -0.2770000100135803, 2.313699960708618, 2.3062000274658203, 2.302999973297119, 2.3008999824523926, 2.293100118637085, 2.2923998832702637, 2.2922000885009766, 2.289799928665161, 2.2897000312805176, 2.289099931716919, 2.286799907684326, 2.2867000102996826, 2.285900115966797, 2.285599946975708, 2.2841999530792236, 2.2822999954223633, 2.2813000679016113, 2.2802999019622803, 2.2788000106811523, 2.275599956512451, 2.2755000591278076, 2.2744998931884766, 2.273699998855591, 2.2730000019073486, 2.272200107574463, 2.2720000743865967, 2.271699905395508, 2.270699977874756, 2.2706000804901123, 2.27020001411438, 2.2699999809265137, 2.2502999305725098, 2.232300043106079, 2.239000082015991, 2.2072999477386475, 2.2334001064300537, 2.2446000576019287, 2.1370999813079834, 2.1649999618530273, 2.226099967956543, 2.2130000591278076, 2.2046000957489014, 2.209399938583374, 1.9127999544143677, 2.0927999019622803, 2.1115000247955322, 2.1003000736236572, 2.0371999740600586, 1.878000020980835, 2.2063000202178955, 2.1758999824523926, 1.7121000289916992, 1.9335999488830566, 1.8567999601364136, 2.0148000717163086, 2.006500005722046, 2.1187000274658203, 0.6068999767303467, 2.053999900817871, 0.6711000204086304, 0.6694999933242798, 0.5239999890327454, 1.773800015449524, 0.5011000037193298, 0.3091999888420105, 0.5853000283241272, 0.10750000178813934, 0.5669999718666077, 0.593999981880188, 0.36899998784065247, 0.43689998984336853, 0.3122999966144562, 0.8449000120162964, 0.3813000023365021, 0.24330000579357147, 0.5080999732017517, 0.38019999861717224, 0.12330000102519989, 0.06509999930858612, 0.06729999929666519, 0.36320000886917114, 0.30489999055862427, 0.36480000615119934, -0.12129999697208405, 0.09989999979734421, -0.19619999825954437, 0.26260000467300415, 0.09669999778270721, 0.16859999299049377, 0.1607999950647354, 2.3631999492645264, 2.3361001014709473, 2.3268001079559326, 2.32450008392334, 2.3243000507354736, 2.3164000511169434, 2.3160998821258545, 2.3152999877929688, 2.3134000301361084, 2.3087000846862793, 2.3085999488830566, 2.3078999519348145, 2.3071000576019287, 2.3048999309539795, 2.303999900817871, 2.3032000064849854, 2.298799991607666, 2.2981998920440674, 2.2955000400543213, 2.294100046157837, 2.2920000553131104, 2.291599988937378, 2.2913999557495117, 2.2899999618530273, 2.288300037384033, 2.285399913787842, 2.2850000858306885, 2.283799886703491, 2.283799886703491, 2.282599925994873, 2.280100107192993, 2.277400016784668, 2.2469000816345215, 2.23799991607666, 2.2090001106262207, 2.148200035095215, 2.1768999099731445, 2.2562999725341797, 2.174999952316284, 2.209399938583374, 2.136399984359741, 2.222899913787842, 2.2109999656677246, 2.066999912261963, 2.094899892807007, 2.0829999446868896, 2.178999900817871, 1.912600040435791, 2.0411999225616455, 2.186300039291382, 2.0692999362945557, 2.110300064086914, 2.0095999240875244, 2.075500011444092, 2.0578999519348145, 1.9078999757766724, 1.74590003490448, 1.9456000328063965, 1.9804999828338623, 1.6256999969482422, 1.5705000162124634, 1.7086000442504883, 1.2984999418258667, 1.5877000093460083, 0.8086000084877014, 1.6526999473571777, 1.256500005722046, 0.06629999727010727, 0.39969998598098755, 0.8202000260353088, -0.01679999940097332, 0.07769999653100967, -0.583899974822998, -0.3278000056743622, -0.4438999891281128, -0.7278000116348267, -0.35409998893737793, 0.5286999940872192, -0.14399999380111694, -0.41600000858306885, 0.08579999953508377, 0.06639999896287918, -0.47780001163482666, 2.3808000087738037, 2.3805999755859375, 2.3789000511169434, 2.3747000694274902, 2.374000072479248, 2.3731000423431396, 2.3726999759674072, 2.370500087738037, 2.368799924850464, 2.3687000274658203, 2.3666999340057373, 2.365600109100342, 2.3635001182556152, 2.3575000762939453, 2.3564999103546143, 2.3548998832702637, 2.3526999950408936, 2.352400064468384, 2.3477001190185547, 2.3459999561309814, 2.340399980545044, 2.339600086212158, 2.339400053024292, 2.3382999897003174, 2.3375000953674316, 2.337399959564209, 2.337100028991699, 2.3366000652313232, 2.3364999294281006, 2.3362998962402344, 2.3303000926971436, 2.3322999477386475, 2.319200038909912, 2.322999954223633, 2.3315999507904053, 2.332900047302246, 2.276900053024292, 2.2894999980926514, 2.3059000968933105, 2.3164000511169434, 2.2332000732421875, 2.296799898147583, 2.2293999195098877, 2.224600076675415, 2.2822999954223633, 1.9483000040054321, 2.066200017929077, 2.0401999950408936, 2.0696001052856445, 2.012700080871582, 1.6543999910354614, 2.0397000312805176, 2.1596999168395996, 1.8487000465393066, 2.1856000423431396, 1.8666000366210938, 2.0964999198913574, 1.705199956893921, 1.5317000150680542, 1.5671000480651855, 0.7170000076293945, 1.7542999982833862, 1.6912000179290771, 1.7067999839782715, 1.7747999429702759, 1.3176000118255615, 1.476199984550476, 1.513100028038025, 1.2613999843597412, 1.382099986076355, 1.3438999652862549, 0.429500013589859, 0.45089998841285706, 0.3370000123977661, 0.33820000290870667, 0.5121999979019165, 0.4779999852180481, 0.18850000202655792, 0.8964999914169312, 0.186599999666214, 0.4453999996185303, 0.3847000002861023, -0.2619999945163727, 0.21449999511241913, 0.6191999912261963, 0.15209999680519104, 0.4302000105381012, 0.42250001430511475, 0.6484000086784363, -0.017000000923871994, -0.6363999843597412, -0.07779999822378159, -0.19740000367164612, -0.1193000003695488, -0.3303000032901764, 0.2703999876976013, 0.08229999989271164, 0.052400000393390656, 2.5299999713897705, 2.5253000259399414, 2.521199941635132, 2.5164999961853027, 2.516200065612793, 2.514899969100952, 2.513400077819824, 2.50819993019104, 2.507999897003174, 2.507200002670288, 2.5069000720977783, 2.504300117492676, 2.5035998821258545, 2.5034000873565674, 2.501800060272217, 2.500200033187866, 2.4997000694274902, 2.4965999126434326, 2.495500087738037, 2.495300054550171, 2.4934000968933105, 2.4934000968933105, 2.4881999492645264, 2.4869000911712646, 2.484600067138672, 2.4839000701904297, 2.482100009918213, 2.4814999103546143, 2.4802000522613525, 2.479300022125244, 2.4727001190185547, 2.476799964904785, 2.471100091934204, 2.4560999870300293, 2.4670000076293945, 2.397900104522705, 2.3989999294281006, 2.457200050354004, 2.352400064468384, 2.3213000297546387, 2.2653000354766846, 2.453200101852417, 2.4245998859405518, 2.421299934387207, 2.265199899673462, 1.9075000286102295, 2.100399971008301, 1.9910000562667847, 1.6504000425338745, 1.8425999879837036, 2.296099901199341, 1.4744000434875488, 2.0230000019073486, 1.3032000064849854, 1.4708000421524048, 2.2548000812530518, 0.8241999745368958, 1.829800009727478, 0.7570000290870667, 1.0125999450683594, 1.6236000061035156, 0.8407999873161316, 0.7390000224113464, 0.6141999959945679, 0.989799976348877, 1.003499984741211, 0.738099992275238, 0.6825000047683716, 1.0362000465393066, 0.678600013256073, 0.9775999784469604, 0.16019999980926514, 0.7455000281333923, 0.6414999961853027, 0.03530000150203705, 0.40220001339912415, 0.7196999788284302, 0.4677000045776367, 0.0414000004529953, 0.16369999945163727, 0.8425999879837036, 0.19820000231266022, -0.025100000202655792, -0.2289000004529953, -0.10530000180006027, -0.32760000228881836, 2.5583999156951904, 2.5534000396728516, 2.545099973678589, 2.5408999919891357, 2.537600040435791, 2.533400058746338, 2.533099889755249, 2.531899929046631, 2.52810001373291, 2.5278000831604004, 2.5271999835968018, 2.5269999504089355, 2.525599956512451, 2.5223000049591064, 2.5218000411987305, 2.521399974822998, 2.5211000442504883, 2.5197999477386475, 2.5185999870300293, 2.5178000926971436, 2.5167999267578125, 2.5165998935699463, 2.5151000022888184, 2.5130999088287354, 2.503200054168701, 2.5030999183654785, 2.5011000633239746, 2.4992001056671143, 2.498500108718872, 2.492799997329712, 2.4921998977661133, 2.47979998588562, 2.484499931335449, 2.4642999172210693, 2.406399965286255, 2.3868000507354736, 2.2604000568389893, 2.250200033187866, 2.3801000118255615, 2.325000047683716, 2.312700033187866, 2.287600040435791, 2.3956000804901123, 2.4456000328063965, 2.3613998889923096, 2.0409998893737793, 2.000699996948242, 2.325900077819824, 2.0576000213623047, 2.3545000553131104, 2.085900068283081, 1.7790000438690186, 1.8108999729156494, 2.128999948501587, 1.9138000011444092, 2.0536999702453613, 1.1371999979019165, 1.318600058555603, 1.1952999830245972, 1.5441999435424805, 1.30239999294281, 1.541100025177002, 1.396299958229065, 1.482699990272522, 1.1799999475479126, 1.6265000104904175, 1.2352999448776245, 1.5658999681472778, 1.7462999820709229, 0.7287999987602234, 0.6180999875068665, 1.0263999700546265, 0.1428000032901764, 1.2366000413894653, 0.3806999921798706, 0.6848000288009644, 0.6294999718666077, 0.8486999869346619, 0.6998000144958496, 0.6675999760627747, 0.9394999742507935, 0.8389000296592712, 0.699999988079071, 0.21240000426769257, 0.3977000117301941, 0.22679999470710754, 0.06260000169277191, 2.949199914932251, 2.9477999210357666, 2.9460999965667725, 2.941999912261963, 2.9407999515533447, 2.9398000240325928, 2.9339001178741455, 2.933199882507324, 2.928499937057495, 2.928100109100342, 2.9263999462127686, 2.9235000610351562, 2.9207000732421875, 2.9184000492095947, 2.9142000675201416, 2.9119999408721924, 2.9102001190185547, 2.905400037765503, 2.904099941253662, 2.9033000469207764, 2.9026999473571777, 2.902400016784668, 2.8984999656677246, 2.898200035095215, 2.8975000381469727, 2.896399974822998, 2.893199920654297, 2.890700101852417, 2.887399911880493, 2.8866000175476074, 2.873800039291382, 2.865299940109253, 2.7295000553131104, 2.791599988937378, 2.8301000595092773, 2.829400062561035, 2.852299928665161, 2.6767001152038574, 2.5950000286102295, 2.6531999111175537, 2.8250999450683594, 2.6451001167297363, 2.6105000972747803, 2.5439999103546143, 2.506700038909912, 2.2709999084472656, 2.6129000186920166, 2.554500102996826, 2.151400089263916, 2.690999984741211, 2.4663000106811523, 2.559499979019165, 2.6486001014709473, 2.6026999950408936, 2.305500030517578, 2.5697999000549316, 2.7095999717712402, 2.3505001068115234, 1.770300030708313, 2.3931000232696533, 1.2001999616622925, 2.3673999309539795, 0.7979999780654907, 1.6572999954223633, 1.6519999504089355, 0.47099998593330383, 0.2863999903202057, 0.6978999972343445, 1.09660005569458, 0.9160000085830688, 0.38670000433921814, 0.7102000117301941, 1.222000002861023, 0.6449999809265137, 0.13529999554157257, 0.4763999879360199, 0.15809999406337738, -0.31299999356269836, 0.13910000026226044, 0.7074000239372253, 0.08320000022649765, -0.09809999912977219, -0.20900000631809235, 0.2985999882221222, 0.02319999970495701, 3.0362000465393066, 3.0341999530792236, 3.0315001010894775, 3.025599956512451, 3.024899959564209, 3.023200035095215, 3.018899917602539, 3.0155999660491943, 3.015199899673462, 3.005199909210205, 3.0046000480651855, 2.9999001026153564, 2.996000051498413, 2.9958999156951904, 2.995300054550171, 2.99429988861084, 2.9923999309539795, 2.989000082015991, 2.986799955368042, 2.983599901199341, 2.9795000553131104, 2.975399971008301, 2.973900079727173, 2.97160005569458, 2.9681999683380127, 2.967099905014038, 2.96370005607605, 2.962100028991699, 2.9619998931884766, 2.961699962615967, 2.9453001022338867, 2.9605000019073486, 2.9535000324249268, 2.9303998947143555, 2.8513998985290527, 2.859800100326538, 2.768199920654297, 2.738800048828125, 2.7953999042510986, 2.6807000637054443, 2.748500108718872, 2.523200035095215, 2.7032999992370605, 2.3596999645233154, 2.3831000328063965, 2.5957000255584717, 2.306299924850464, 2.203700065612793, 2.404400110244751, 1.954699993133545, 2.3350000381469727, 2.46370005607605, 2.149399995803833, 1.7297999858856201, 1.2232999801635742, 0.8543000221252441, 2.2681000232696533, 1.201799988746643, 0.8871999979019165, 1.2742999792099, 1.8082000017166138, 1.2474000453948975, 1.1669000387191772, 0.7422999739646912, 1.4174000024795532, 1.8100999593734741, 0.5863000154495239, 0.7091000080108643, -0.16169999539852142, 0.6208999752998352, 0.8046000003814697, 0.1695999950170517, 0.19930000603199005, -0.0038999998942017555, 0.4036000072956085, 0.43560001254081726, -0.1582999974489212, 0.26669999957084656, 0.2955000102519989, 3.087899923324585, 3.084399938583374, 3.0748000144958496, 3.0731000900268555, 3.0725998878479004, 3.069000005722046, 3.0671000480651855, 3.0641000270843506, 3.0631000995635986, 3.0604000091552734, 3.0541999340057373, 3.051500082015991, 3.042799949645996, 3.040299892425537, 3.0394999980926514, 3.037899971008301, 3.0360000133514404, 3.0316998958587646, 3.029400110244751, 3.0288000106811523, 3.025099992752075, 3.024899959564209, 3.024199962615967, 3.0216000080108643, 3.0209999084472656, 3.0204999446868896, 3.018899917602539, 3.014699935913086, 3.0134999752044678, 3.013400077819824, 3.010499954223633, 2.9781999588012695, 2.9277000427246094, 2.9381000995635986, 2.8032000064849854, 2.955699920654297, 2.94569993019104, 2.955899953842163, 2.965100049972534, 2.8441998958587646, 2.8928000926971436, 2.9795000553131104, 2.9342000484466553, 2.9342000484466553, 2.621799945831299, 2.9221999645233154, 2.4809000492095947, 2.5996999740600586, 2.4258999824523926, 2.229099988937378, 2.5529000759124756, 1.922700047492981, 2.25219988822937, 2.100100040435791, 2.2362000942230225, 2.5724000930786133, 2.023400068283081, 2.119800090789795, 2.398099899291992, 1.6360000371932983, 0.8314999938011169, 1.7882000207901, 1.7523000240325928, 1.6845999956130981, 2.4900999069213867, 1.2310999631881714, 0.8485999703407288, -0.07440000027418137, 1.7487000226974487, 0.9700000286102295, 1.02839994430542, 0.055399999022483826, 0.046799998730421066, 0.37459999322891235, -0.16110000014305115, -0.25290000438690186, -0.07609999924898148, 0.00430000014603138, -0.6118999719619751, 0.3677999973297119, -0.005799999926239252, 0.32429999113082886, 0.6514000296592712, -0.08760000020265579, -0.2824999988079071, 0.2345000058412552, -0.12720000743865967, -0.3027999997138977, 3.1119000911712646, 3.1047000885009766, 3.1024999618530273, 3.1019999980926514, 3.094899892807007, 3.0943000316619873, 3.091399908065796, 3.0905001163482666, 3.0845000743865967, 3.0845000743865967, 3.081399917602539, 3.0810999870300293, 3.080699920654297, 3.0750999450683594, 3.073499917984009, 3.0703001022338867, 3.0692999362945557, 3.0687999725341797, 3.0685999393463135, 3.066699981689453, 3.058500051498413, 3.055500030517578, 3.0550999641418457, 3.0525999069213867, 3.051300048828125, 3.0508999824523926, 3.049299955368042, 3.046099901199341, 3.045099973678589, 3.0420000553131104, 3.036600112915039, 3.033799886703491, 3.028700113296509, 3.0232999324798584, 3.026099920272827, 2.9848999977111816, 3.0292999744415283, 2.9581000804901123, 2.9605000019073486, 2.9158999919891357, 3.0164999961853027, 2.926800012588501, 2.9911999702453613, 2.8004000186920166, 2.891200065612793, 2.8029000759124756, 2.8875999450683594, 2.789900064468384, 2.9467999935150146, 2.386899948120117, 2.5625998973846436, 2.59089994430542, 2.305000066757202, 2.506700038909912, 2.47760009765625, 2.376300096511841, 1.9917999505996704, 2.5146000385284424, 2.413300037384033, 2.0940001010894775, 2.434999942779541, 1.6799999475479126, 1.4160000085830688, 1.055999994277954, 0.7559999823570251, 1.9085999727249146, 0.424699991941452, 1.582800030708313, -0.06340000033378601, 0.8255000114440918, 0.31940001249313354, 1.441499948501587, -0.2782999873161316, 0.9394000172615051, -0.054099999368190765, 0.13529999554157257, -0.27140000462532043, -0.13609999418258667, 0.07209999859333038, -0.5206999778747559, 3.152400016784668, 3.149899959564209, 3.1461000442504883, 3.14490008354187, 3.1356000900268555, 3.1308000087738037, 3.124799966812134, 3.124500036239624, 3.1221001148223877, 3.1208999156951904, 3.1117000579833984, 3.109800100326538, 3.1094000339508057, 3.1082000732421875, 3.108099937438965, 3.1080000400543213, 3.1066999435424805, 3.1047000885009766, 3.1043999195098877, 3.1024999618530273, 3.1013998985290527, 3.101099967956543, 3.1003000736236572, 3.098299980163574, 3.0966999530792236, 3.095099925994873, 3.093899965286255, 3.0934998989105225, 3.0922000408172607, 3.091900110244751, 3.088599920272827, 3.090399980545044, 3.0797998905181885, 3.0869998931884766, 3.0875000953674316, 2.9855000972747803, 3.071199893951416, 3.055999994277954, 2.9572999477386475, 2.982800006866455, 3.040600061416626, 2.8973000049591064, 2.8859000205993652, 2.9300999641418457, 3.010999917984009, 3.0216000080108643, 2.767199993133545, 2.84060001373291, 3.009000062942505, 2.4876999855041504, 2.844599962234497, 2.581700086593628, 2.837399959564209, 2.612799882888794, 2.8905999660491943, 2.1668999195098877, 2.7000999450683594, 2.6289000511169434, 2.4203999042510986, 2.624500036239624, 2.563999891281128, 2.323699951171875, 2.3187999725341797, 2.004300117492676, 0.8859999775886536, 1.807800054550171, 0.6769999861717224, 0.4771000146865845, 0.9715999960899353, 1.4812999963760376, -0.06729999929666519, 0.3928000032901764, 0.2289000004529953, 0.13120000064373016, 0.26089999079704285, 0.13490000367164612, 0.44839999079704285, 0.3314000070095062, -0.28679999709129333, -0.0017999999690800905, 0.9455000162124634, -0.2513999938964844, 0.24740000069141388, -0.27250000834465027, 0.11670000106096268, 0.36390000581741333, -0.24819999933242798, 0.35510000586509705, 0.045499999076128006, -0.013399999588727951, 0.1687999963760376, -0.04610000178217888, -0.39959999918937683, 0.34630000591278076, -0.33820000290870667, -0.6970999836921692, 3.1751999855041504, 3.1628000736236572, 3.153599977493286, 3.152600049972534, 3.1522998809814453, 3.151900053024292, 3.14739990234375, 3.146699905395508, 3.1456000804901123, 3.1435000896453857, 3.1394999027252197, 3.1382999420166016, 3.1379001140594482, 3.133699893951416, 3.13100004196167, 3.1303999423980713, 3.1301000118255615, 3.1273999214172363, 3.1221001148223877, 3.11929988861084, 3.118299961090088, 3.1085000038146973, 3.105299949645996, 3.1050000190734863, 3.10479998588562, 3.1043999195098877, 3.103600025177002, 3.0996999740600586, 3.098599910736084, 3.0977001190185547, 3.0947999954223633, 3.08240008354187, 3.0768001079559326, 3.0230000019073486, 3.0072999000549316, 3.0703999996185303, 2.960400104522705, 2.9066998958587646, 3.0699000358581543, 2.9658000469207764, 2.5678000450134277, 2.6517999172210693, 2.6203999519348145, 2.854300022125244, 2.683300018310547, 2.7058000564575195, 2.3729000091552734, 2.5032999515533447, 2.2776999473571777, 2.309799909591675, 2.229599952697754, 1.8580000400543213, 2.1050000190734863, 2.1222000122070312, 1.020900011062622, 0.7372000217437744, 2.3148000240325928, 1.875499963760376, 0.9244999885559082, 0.2948000133037567, 0.44830000400543213, 0.45750001072883606, 0.5727999806404114, 0.23690000176429749, 0.694100022315979, 0.5181999802589417, 0.18060000240802765, 0.036400001496076584, 0.1703999936580658, 0.5109999775886536, 0.32280001044273376, 0.2547000050544739, 0.6937999725341797, -0.07169999927282333, 0.038600001484155655, -0.15049999952316284, 0.6765000224113464, 0.16130000352859497, 0.06719999760389328, 0.1729000061750412, -0.15109999477863312, 0.09510000050067902, 3.6050000190734863, 3.5906999111175537, 3.5897998809814453, 3.588900089263916, 3.580899953842163, 3.576200008392334, 3.5750999450683594, 3.5697999000549316, 3.5690999031066895, 3.568000078201294, 3.566800117492676, 3.560699939727783, 3.557800054550171, 3.5571000576019287, 3.551300048828125, 3.550600051879883, 3.5501999855041504, 3.5476999282836914, 3.5439000129699707, 3.54259991645813, 3.54259991645813, 3.5401999950408936, 3.5397000312805176, 3.5394999980926514, 3.5387001037597656, 3.536099910736084, 3.5355000495910645, 3.53410005569458, 3.5237998962402344, 3.520400047302246, 3.518399953842163, 3.5088999271392822, 3.432800054550171, 3.481300115585327, 3.5041000843048096, 3.484299898147583, 3.4265999794006348, 3.3043999671936035, 3.3896000385284424, 3.4056999683380127, 3.468400001525879, 3.2544000148773193, 3.0868000984191895, 3.332900047302246, 2.558199882507324, 2.563800096511841, 2.736599922180176, 2.230299949645996, 3.3406999111175537, 2.563699960708618, 2.6684999465942383, 2.253200054168701, 2.0274999141693115, 2.930799961090088, 2.2569000720977783, 1.9106999635696411, 2.228300094604492, 2.1270999908447266, 2.4022998809814453, 1.8539999723434448, 3.0339999198913574, 3.1342999935150146, 1.493299961090088, 1.9837000370025635, 2.2639999389648438, 1.8299000263214111, 1.9778000116348267, 2.263700008392334, 1.188099980354309, 0.334199994802475, 1.3428000211715698, 1.1109999418258667, 0.5389000177383423, 1.1771999597549438, 1.8370000123977661, -0.34929999709129333, 0.5332000255584717, 1.101199984550476, -0.13740000128746033, -0.7502999901771545, 4.01639986038208, 4.012199878692627, 4.0005998611450195, 3.9941999912261963, 3.990600109100342, 3.9837000370025635, 3.9791998863220215, 3.977400064468384, 3.9725000858306885, 3.970400094985962, 3.9667000770568848, 3.9656999111175537, 3.9653000831604004, 3.9583001136779785, 3.9465999603271484, 3.935699939727783, 3.9351000785827637, 3.934000015258789, 3.933000087738037, 3.927299976348877, 3.9263999462127686, 3.9177000522613525, 3.91510009765625, 3.913300037384033, 3.904900074005127, 3.8987998962402344, 3.8954999446868896, 3.884999990463257, 3.8808999061584473, 3.878200054168701, 3.8643999099731445, 3.874799966812134, 3.745300054550171, 3.8101000785827637, 3.7978999614715576, 3.761199951171875, 3.6821000576019287, 3.828900098800659, 3.7892000675201416, 3.6545000076293945, 3.737799882888794, 3.724299907684326, 3.783600091934204, 3.774899959564209, 3.342099905014038, 3.203000068664551, 3.515000104904175, 2.9960999488830566, 3.6145999431610107, 3.3017001152038574, 2.9900999069213867, 2.4746999740600586, 3.705699920654297, 2.9660000801086426, 3.40339994430542, 2.9022998809814453, 2.262500047683716, 1.3557000160217285, 1.7800999879837036, 1.5154999494552612, 1.9490000009536743, 0.18719999492168427, 0.4542999863624573, 0.0632999986410141, 0.19900000095367432, 0.10130000114440918, 0.8235999941825867, 0.8708999752998352, -0.5889000296592712, -0.7224000096321106, -0.25760000944137573, 0.8733999729156494, 0.18719999492168427, 0.0731000006198883, 0.482699990272522, -0.2045000046491623, 4.133999824523926, 4.132299900054932, 4.098899841308594, 4.0970001220703125, 4.095699787139893, 4.093599796295166, 4.088200092315674, 4.087100028991699, 4.085599899291992, 4.085000038146973, 4.078999996185303, 4.0767998695373535, 4.076300144195557, 4.075200080871582, 4.069699764251709, 4.062300205230713, 4.058000087738037, 4.0518999099731445, 4.046500205993652, 4.039700031280518, 4.037700176239014, 4.0335001945495605, 4.028200149536133, 4.026500225067139, 4.025199890136719, 4.025000095367432, 4.021900177001953, 4.010200023651123, 4.00629997253418, 4.002399921417236, 3.987799882888794, 3.9914000034332275, 3.9739999771118164, 3.9907000064849854, 3.9056999683380127, 3.963399887084961, 3.8452999591827393, 3.7065999507904053, 3.6651999950408936, 3.7195000648498535, 3.501699924468994, 3.4690001010894775, 3.5490000247955322, 3.0613999366760254, 3.784600019454956, 3.444499969482422, 3.271399974822998, 3.0316998958587646, 2.5947000980377197, 2.680999994277954, 3.220599889755249, 1.792799949645996, 3.677999973297119, 2.5039000511169434, 2.414299964904785, 2.4179999828338623, 1.2067999839782715, 3.275399923324585, 2.0736000537872314, 0.06689999997615814, 0.00570000009611249, 0.43689998984336853, 0.08940000087022781, -0.47749999165534973, -0.07559999823570251, -0.06870000064373016, -0.1039000004529953, -0.0035000001080334187, -0.147599995136261, -0.2870999872684479, 0.4081999957561493, -0.9433000087738037, -0.38199999928474426, 0.21199999749660492, 0.04349999874830246, -0.24729999899864197, -0.03290000185370445, 4.285799980163574, 4.2804999351501465, 4.272200107574463, 4.265900135040283, 4.249300003051758, 4.242499828338623, 4.240099906921387, 4.229400157928467, 4.210999965667725, 4.210999965667725, 4.210700035095215, 4.203499794006348, 4.196300029754639, 4.185699939727783, 4.184599876403809, 4.172299861907959, 4.17140007019043, 4.167699813842773, 4.166299819946289, 4.1219000816345215, 4.119100093841553, 4.118100166320801, 4.116300106048584, 4.115200042724609, 4.114299774169922, 4.106500148773193, 4.100200176239014, 4.098299980163574, 4.081699848175049, 4.071400165557861, 4.054999828338623, 4.069200038909912, 4.02869987487793, 4.01609992980957, 3.9955999851226807, 3.9916999340057373, 3.8320000171661377, 3.7186999320983887, 3.9054999351501465, 3.675800085067749, 3.585900068283081, 3.559000015258789, 3.3729000091552734, 2.9967000484466553, 3.4379000663757324, 3.9885001182556152, 3.0933001041412354, 2.8803999423980713, 3.073899984359741, 3.4995999336242676, 2.736599922180176, 2.7927000522613525, 2.8731000423431396, 2.632699966430664, 2.188199996948242, 2.655100107192993, 0.5902000069618225, 2.176500082015991, 1.8509999513626099, 1.8779000043869019, 0.6000000238418579, 1.4607000350952148, 0.682200014591217, 0.32440000772476196, 4.514100074768066, 4.471799850463867, 4.469799995422363, 4.467899799346924, 4.4653000831604, 4.464300155639648, 4.462100028991699, 4.4593000411987305, 4.456600189208984, 4.456500053405762, 4.452300071716309, 4.449699878692627, 4.441100120544434, 4.43720006942749, 4.433700084686279, 4.429999828338623, 4.422800064086914, 4.418900012969971, 4.417300224304199, 4.413700103759766, 4.411300182342529, 4.410399913787842, 4.4095001220703125, 4.396999835968018, 4.38730001449585, 4.385300159454346, 4.379199981689453, 4.359399795532227, 4.355299949645996, 4.353400230407715, 4.248000144958496, 4.232900142669678, 3.8431999683380127, 4.0157999992370605, 4.112599849700928, 3.823199987411499, 3.8160998821258545, 3.898200035095215, 3.025099992752075, 1.6902999877929688, 3.729099988937378, 0.08630000054836273, -0.4950999915599823, -0.8920999765396118, -0.6046000123023987, -0.7534999847412109, -0.5623000264167786, -0.675000011920929, 1.3087999820709229, -0.7958999872207642, 1.767300009727478, -0.6862000226974487, -0.8145999908447266, -0.9380000233650208, -0.4172999858856201, -0.13330000638961792, -1.4878000020980835, 0.08150000125169754, -0.8797000050544739, 0.058400001376867294, -0.4726000130176544, -0.20749999582767487, -0.46869999170303345, 4.732399940490723, 4.730999946594238, 4.730299949645996, 4.721199989318848, 4.700399875640869, 4.696199893951416, 4.695499897003174, 4.691699981689453, 4.6880998611450195, 4.687699794769287, 4.672999858856201, 4.666999816894531, 4.663300037384033, 4.662899971008301, 4.647600173950195, 4.646900177001953, 4.641600131988525, 4.640500068664551, 4.616099834442139, 4.616000175476074, 4.610400199890137, 4.609799861907959, 4.600500106811523, 4.595300197601318, 4.594099998474121, 4.589300155639648, 4.587699890136719, 4.586299896240234, 4.571499824523926, 4.567500114440918, 4.494999885559082, 4.519000053405762, 4.426799774169922, 4.512800216674805, 4.325399875640869, 4.399499893188477, 4.1209001541137695, 4.281700134277344, 3.1359000205993652, 4.087200164794922, 4.172500133514404, 3.3141000270843506, 3.626300096511841, 3.7155001163482666, 3.970099925994873, 2.9398999214172363, 2.6545000076293945, 4.036499977111816, 2.8059000968933105, 2.9955999851226807, 1.2841999530792236, 2.964099884033203, 1.4630999565124512, 2.8173999786376953, 0.9063000082969666, -0.23819999396800995, 1.305999994277954, 0.13570000231266022, 0.7721999883651733, -0.04410000145435333, 0.16269999742507935, -0.05660000070929527, 1.1675000190734863, 0.18050000071525574, 0.155799999833107, -0.7098000049591064, -0.149399995803833, 0.21799999475479126, 0.011900000274181366, -0.4821000099182129, 5.712800025939941, 5.666600227355957, 5.6529998779296875, 5.650899887084961, 5.6209001541137695, 5.616399765014648, 5.593999862670898, 5.593400001525879, 5.59060001373291, 5.575200080871582, 5.564199924468994, 5.558499813079834, 5.552599906921387, 5.547999858856201, 5.5472002029418945, 5.529399871826172, 5.523499965667725, 5.517300128936768, 5.51170015335083, 5.4822001457214355, 5.475399971008301, 5.446000099182129, 5.443600177764893, 5.440800189971924, 5.426599979400635, 5.411200046539307, 5.399600028991699, 5.382299900054932, 5.374800205230713, 5.35099983215332, 5.342400074005127, 5.127900123596191, 5.212299823760986, 5.087299823760986, 4.874100208282471, 5.053100109100342, 4.373899936676025, 4.48829984664917, 4.9415998458862305, 4.616099834442139, 3.091200113296509, 2.618499994277954, 3.543800115585327, 3.0116000175476074, 3.6196999549865723, 0.262800008058548, 1.3976999521255493, 1.1030999422073364, 0.7590000033378601, -0.4174000024795532, 0.7878000140190125, 0.7351999878883362, -0.3508000075817108, 0.25060001015663147, -0.34130001068115234, -0.23929999768733978, -0.04149999842047691, 0.08009999990463257, 0.39149999618530273, 0.9668999910354614], \"logprob\": [30.0, 29.0, 28.0, 27.0, 26.0, 25.0, 24.0, 23.0, 22.0, 21.0, 20.0, 19.0, 18.0, 17.0, 16.0, 15.0, 14.0, 13.0, 12.0, 11.0, 10.0, 9.0, 8.0, 7.0, 6.0, 5.0, 4.0, 3.0, 2.0, 1.0, -8.01360034942627, -7.5954999923706055, -8.089099884033203, -8.217100143432617, -8.165300369262695, -8.626299858093262, -8.648699760437012, -8.772700309753418, -8.548999786376953, -8.13379955291748, -7.681399822235107, -8.743599891662598, -8.086000442504883, -8.840999603271484, -8.870100021362305, -8.569999694824219, -8.381699562072754, -8.401000022888184, -9.044300079345703, -8.314299583435059, -8.799699783325195, -8.869799613952637, -7.736700057983398, -8.676300048828125, -9.149200439453125, -7.7469000816345215, -8.677399635314941, -8.564200401306152, -9.053400039672852, -8.366600036621094, -6.745699882507324, -7.951200008392334, -5.230800151824951, -5.877500057220459, -6.290200233459473, -7.932600021362305, -6.448400020599365, -5.148799896240234, -6.404300212860107, -5.454800128936768, -5.4756999015808105, -7.914299964904785, -5.56790018081665, -5.7957000732421875, -7.951399803161621, -7.048999786376953, -4.529300212860107, -5.748499870300293, -6.9344000816345215, -7.32889986038208, -7.823800086975098, -5.9303998947143555, -5.605000019073486, -4.091899871826172, -7.328400135040283, -6.101600170135498, -7.346499919891357, -4.109399795532227, -6.584199905395508, -5.389500141143799, -5.6905999183654785, -5.508399963378906, -5.44290018081665, -4.882599830627441, -5.740699768066406, -5.622300148010254, -6.03439998626709, -5.100599765777588, -5.3053998947143555, -5.257299900054932, -5.668900012969971, -4.807700157165527, -4.999300003051758, -4.934999942779541, -4.956299781799316, -5.240600109100342, -5.262599945068359, -4.8582000732421875, -5.1290998458862305, -5.17140007019043, -5.246600151062012, -5.34499979019165, -5.449399948120117, -5.441500186920166, -5.433000087738037, -5.511600017547607, -5.524899959564209, -5.524499893188477, -7.545100212097168, -7.294000148773193, -7.524799823760986, -7.900100231170654, -8.130999565124512, -7.899600028991699, -7.521900177001953, -7.8958001136779785, -8.642900466918945, -7.635200023651123, -8.486599922180176, -8.673100471496582, -8.878800392150879, -8.876399993896484, -8.747300148010254, -9.06149959564209, -9.079400062561035, -8.463299751281738, -8.553000450134277, -8.772199630737305, -9.201499938964844, -6.497399806976318, -5.7972002029418945, -5.923099994659424, -9.221699714660645, -9.093000411987305, -9.019499778747559, -9.168000221252441, -9.260499954223633, -9.298100471496582, -6.968800067901611, -7.845399856567383, -4.837399959564209, -6.4217000007629395, -7.654300212860107, -6.688499927520752, -6.253900051116943, -6.41349983215332, -7.265600204467773, -7.511899948120117, -6.036300182342529, -5.760300159454346, -6.902100086212158, -4.068699836730957, -6.31689977645874, -7.44350004196167, -6.494699954986572, -6.367300033569336, -5.487299919128418, -6.85099983215332, -4.553800106048584, -4.417600154876709, -5.497600078582764, -5.44789981842041, -6.571199893951416, -6.127200126647949, -6.601099967956543, -5.431600093841553, -5.174600124359131, -6.000400066375732, -5.517000198364258, -5.565299987792969, -4.82289981842041, -4.474299907684326, -5.912499904632568, -5.542699813842773, -5.835599899291992, -5.149799823760986, -4.4629998207092285, -4.916299819946289, -5.254799842834473, -5.314899921417236, -5.515399932861328, -5.66379976272583, -4.911300182342529, -5.4257001876831055, -5.264900207519531, -5.082699775695801, -5.51230001449585, -4.773900032043457, -5.162199974060059, -5.493500232696533, -5.041299819946289, -5.257400035858154, -5.407299995422363, -5.354499816894531, -5.45989990234375, -7.65310001373291, -8.005000114440918, -8.12279987335205, -8.189200401306152, -7.921599864959717, -8.404600143432617, -8.268400192260742, -7.885499954223633, -7.581900119781494, -8.119999885559082, -8.481800079345703, -8.424300193786621, -8.499899864196777, -8.333900451660156, -8.475600242614746, -8.664899826049805, -8.601699829101562, -8.656299591064453, -8.590299606323242, -8.311100006103516, -8.619500160217285, -8.338700294494629, -8.820199966430664, -8.757699966430664, -8.700599670410156, -8.476499557495117, -7.412399768829346, -8.83489990234375, -8.794099807739258, -8.724699974060059, -8.680500030517578, -7.8105998039245605, -7.427000045776367, -7.848400115966797, -7.265100002288818, -7.889100074768066, -8.104399681091309, -6.581099987030029, -6.9822998046875, -7.927000045776367, -7.867700099945068, -7.865799903869629, -7.933800220489502, -5.679100036621094, -7.012700080871582, -7.261899948120117, -7.422999858856201, -7.135799884796143, -6.482800006866455, -7.988699913024902, -7.8805999755859375, -6.19189977645874, -7.028500080108643, -6.7733001708984375, -7.350900173187256, -7.411799907684326, -7.703400135040283, -4.10890007019043, -7.549499988555908, -4.590700149536133, -4.695199966430664, -4.7480998039245605, -7.072800159454346, -4.816400051116943, -4.8018999099731445, -5.348299980163574, -4.632299900054932, -5.421500205993652, -5.507800102233887, -5.199999809265137, -5.335299968719482, -5.18209981918335, -5.875, -5.363900184631348, -5.223299980163574, -5.548399925231934, -5.440700054168701, -5.19379997253418, -5.146900177001953, -5.170499801635742, -5.463399887084961, -5.409800052642822, -5.51140022277832, -5.180799961090088, -5.410200119018555, -5.3790998458862305, -5.682799816131592, -5.616300106048584, -5.64900016784668, -5.669400215148926, -5.968599796295166, -7.514800071716309, -7.202199935913086, -8.417900085449219, -8.543800354003906, -8.298399925231934, -8.045999526977539, -8.7298002243042, -8.701700210571289, -8.844400405883789, -5.766200065612793, -8.80620002746582, -8.738900184631348, -7.935400009155273, -8.92020034790039, -6.708600044250488, -8.85949993133545, -8.456500053405762, -6.505799770355225, -8.69729995727539, -9.065199851989746, -7.9222002029418945, -7.73330020904541, -9.10789966583252, -8.179699897766113, -9.152799606323242, -8.3641996383667, -8.994999885559082, -7.918600082397461, -8.206000328063965, -5.92579984664917, -7.503600120544434, -5.861999988555908, -6.581099987030029, -5.777299880981445, -4.01039981842041, -5.068900108337402, -7.60129976272583, -6.2778000831604, -6.983399868011475, -5.860000133514404, -7.432300090789795, -7.284800052642822, -5.542699813842773, -5.890200138092041, -5.933499813079834, -6.950900077819824, -4.460599899291992, -5.872099876403809, -7.150000095367432, -6.30649995803833, -6.6579999923706055, -6.002500057220459, -6.537799835205078, -6.450099945068359, -5.6641998291015625, -4.871799945831299, -6.0528998374938965, -6.23769998550415, -4.756999969482422, -5.218699932098389, -5.910099983215332, -5.1107001304626465, -5.741300106048584, -5.067500114440918, -6.138999938964844, -5.816299915313721, -5.145699977874756, -5.386899948120117, -5.669099807739258, -5.2546000480651855, -5.352799892425537, -5.299600124359131, -5.510700225830078, -5.503300189971924, -5.467599868774414, -5.615900039672852, -5.757699966430664, -5.708199977874756, -5.733500003814697, -5.768599987030029, -5.791399955749512, -5.794899940490723, -7.676000118255615, -7.735799789428711, -7.873700141906738, -8.008399963378906, -7.932700157165527, -8.053500175476074, -8.104599952697754, -8.023200035095215, -8.228300094604492, -8.212599754333496, -8.28969955444336, -8.31779956817627, -7.848400115966797, -8.064800262451172, -8.076800346374512, -8.412799835205078, -8.491100311279297, -8.402099609375, -8.610099792480469, -8.681900024414062, -8.743399620056152, -8.420700073242188, -8.066300392150879, -8.446999549865723, -8.470800399780273, -8.623000144958496, -8.56779956817627, -8.85260009765625, -8.824799537658691, -8.47760009765625, -7.857600212097168, -8.063899993896484, -7.305300235748291, -7.668900012969971, -8.131600379943848, -8.249799728393555, -6.637599945068359, -6.9583001136779785, -7.738900184631348, -7.998499870300293, -6.621799945831299, -7.685699939727783, -6.6956000328063965, -7.1595001220703125, -7.818699836730957, -5.408299922943115, -6.2515997886657715, -6.332499980926514, -6.530099868774414, -6.62470006942749, -5.278299808502197, -6.8242998123168945, -7.329400062561035, -6.1666998863220215, -7.450200080871582, -6.327700138092041, -7.157800197601318, -6.261600017547607, -5.9197001457214355, -6.162700176239014, -4.342400074005127, -6.659800052642822, -6.53380012512207, -6.585299968719482, -6.760300159454346, -5.964799880981445, -6.258399963378906, -6.32889986038208, -5.922800064086914, -6.1265997886657715, -6.094600200653076, -4.808300018310547, -4.866499900817871, -4.8460001945495605, -4.873799800872803, -5.345600128173828, -5.342899799346924, -5.073299884796143, -5.785299777984619, -5.28000020980835, -5.487400054931641, -5.445499897003174, -4.977700233459473, -5.498499870300293, -5.79010009765625, -5.555200099945068, -5.708799839019775, -5.708499908447266, -5.823699951171875, -5.581299781799316, -5.376200199127197, -5.5879998207092285, -5.562099933624268, -5.61359977722168, -5.60230016708374, -5.812300205230713, -5.793799877166748, -5.802000045776367, -7.520199775695801, -7.64139986038208, -6.3354997634887695, -7.695099830627441, -8.069000244140625, -7.969099998474121, -8.048600196838379, -8.281900405883789, -8.14050006866455, -7.4969000816345215, -8.272899627685547, -8.3996000289917, -8.365400314331055, -7.861999988555908, -8.428000450134277, -8.463700294494629, -8.351699829101562, -8.5556001663208, -8.463899612426758, -7.881899833679199, -8.077300071716309, -8.018699645996094, -8.394599914550781, -8.437199592590332, -8.634099960327148, -8.490699768066406, -8.671199798583984, -8.807700157165527, -8.763199806213379, -8.832300186157227, -7.054200172424316, -8.006199836730957, -7.54640007019043, -7.333899974822998, -7.8719000816345215, -6.699399948120117, -7.108399868011475, -7.987199783325195, -6.616099834442139, -6.4721999168396, -6.179299831390381, -8.03969955444336, -7.935400009155273, -7.9182000160217285, -7.206699848175049, -5.640900135040283, -6.621399879455566, -6.507699966430664, -5.579800128936768, -6.3420000076293945, -7.581600189208984, -5.481800079345703, -6.9045000076293945, -5.363399982452393, -5.799900054931641, -7.5106000900268555, -4.492800235748291, -6.618299961090088, -4.504899978637695, -5.1016998291015625, -6.293799877166748, -4.866600036621094, -4.755300045013428, -4.657899856567383, -5.376200199127197, -5.414400100708008, -5.079500198364258, -5.0304999351501465, -5.541500091552734, -5.123600006103516, -5.55049991607666, -4.555600166320801, -5.318299770355225, -5.292099952697754, -4.704500198364258, -5.0644001960754395, -5.3821001052856445, -5.304500102996826, -5.01800012588501, -5.201000213623047, -5.6417999267578125, -5.311999797821045, -5.262800216674805, -5.340099811553955, -5.422699928283691, -5.510499954223633, -8.031399726867676, -8.168899536132812, -7.3769001960754395, -8.220000267028809, -8.439399719238281, -8.41569995880127, -8.599499702453613, -8.535300254821777, -8.119400024414062, -8.477100372314453, -7.235099792480469, -8.702099800109863, -8.675600051879883, -8.39579963684082, -8.69890022277832, -8.682100296020508, -8.564000129699707, -8.673700332641602, -8.294699668884277, -8.067299842834473, -8.780099868774414, -8.515999794006348, -8.45740032196045, -8.759099960327148, -8.894700050354004, -7.042500019073486, -7.833399772644043, -7.6645002365112305, -9.077799797058105, -9.126199722290039, -7.856299877166748, -6.724800109863281, -7.569200038909912, -7.246600151062012, -6.73829984664917, -6.461400032043457, -5.038599967956543, -5.365900039672852, -6.929699897766113, -6.424600124359131, -6.3653998374938965, -6.154600143432617, -7.283199787139893, -7.849100112915039, -7.251299858093262, -5.035999774932861, -4.80079984664917, -7.012599945068359, -5.351600170135498, -7.284200191497803, -5.822999954223633, -4.459400177001953, -4.759900093078613, -6.247499942779541, -5.581299781799316, -6.230400085449219, -3.60260009765625, -4.25029993057251, -3.9158999919891357, -4.940000057220459, -4.412300109863281, -5.146900177001953, -4.903299808502197, -5.280900001525879, -4.670300006866455, -5.73360013961792, -5.20550012588501, -5.759399890899658, -6.018700122833252, -4.701700210571289, -4.564799785614014, -5.129300117492676, -4.572999954223633, -5.552700042724609, -4.891300201416016, -5.132800102233887, -5.115699768066406, -5.281899929046631, -5.197700023651123, -5.221399784088135, -5.434800148010254, -5.420499801635742, -5.382800102233887, -5.254199981689453, -5.314199924468994, -5.283299922943115, -5.25439977645874, -7.381800174713135, -6.902200222015381, -7.39300012588501, -7.632199764251709, -6.8282999992370605, -7.587800025939941, -7.432000160217285, -7.433700084686279, -7.996399879455566, -7.2565999031066895, -7.6585001945495605, -7.460400104522705, -8.15060043334961, -6.872000217437744, -8.153400421142578, -8.271499633789062, -8.329000473022461, -8.270500183105469, -7.55649995803833, -8.227499961853027, -8.358799934387207, -7.990900039672852, -8.164400100708008, -8.500900268554688, -8.451800346374512, -7.478600025177002, -8.553299903869629, -8.433799743652344, -8.034799575805664, -8.5649995803833, -7.0569000244140625, -7.599400043487549, -3.7746999263763428, -5.758999824523926, -6.713600158691406, -6.803199768066406, -7.320400238037109, -4.82390022277832, -4.510000228881836, -5.475399971008301, -7.367199897766113, -5.790299892425537, -5.49459981918335, -5.159999847412109, -5.249300003051758, -4.395599842071533, -6.284800052642822, -6.029300212860107, -4.612599849700928, -6.722300052642822, -5.893099784851074, -6.274199962615967, -6.666999816894531, -6.5243000984191895, -5.710000038146973, -6.476799964904785, -6.877799987792969, -6.150300025939941, -5.1859002113342285, -6.344399929046631, -4.507199764251709, -6.382800102233887, -4.519400119781494, -5.549200057983398, -5.583399772644043, -4.588500022888184, -4.429299831390381, -4.812300205230713, -5.269499778747559, -5.1666998863220215, -4.851099967956543, -5.119999885559082, -5.561100006103516, -5.209400177001953, -4.975800037384033, -5.236599922180176, -5.103700160980225, -5.052800178527832, -5.2256999015808105, -5.423600196838379, -5.383399963378906, -5.41510009765625, -5.420899868011475, -5.473599910736084, -5.471199989318848, -7.176499843597412, -7.0005998611450195, -7.203999996185303, -6.701000213623047, -7.610300064086914, -7.479700088500977, -7.025000095367432, -7.288400173187256, -7.411099910736084, -8.003499984741211, -7.329899787902832, -8.031700134277344, -5.734499931335449, -7.885499954223633, -7.433499813079834, -8.221500396728516, -8.083900451660156, -5.87470006942749, -7.183700084686279, -6.16949987411499, -8.28600025177002, -7.086699962615967, -8.484600067138672, -8.172100067138672, -8.545299530029297, -8.029500007629395, -8.57610034942627, -8.656999588012695, -8.631600379943848, -8.098699569702148, -4.789700031280518, -8.12909984588623, -7.916600227355957, -7.50629997253418, -6.5177998542785645, -6.730999946594238, -5.960000038146973, -6.015600204467773, -6.569900035858154, -5.6717000007629395, -6.4421000480651855, -5.000100135803223, -6.248000144958496, -4.168300151824951, -4.631800174713135, -5.814700126647949, -5.167900085449219, -4.902599811553955, -5.652599811553955, -4.702700138092041, -5.693699836730957, -6.108799934387207, -5.547500133514404, -5.076000213623047, -4.345600128173828, -3.885499954223633, -6.029099941253662, -4.512899875640869, -4.223999977111816, -4.785999774932861, -5.518099784851074, -4.990900039672852, -4.963699817657471, -4.57480001449585, -5.231900215148926, -5.592100143432617, -4.685699939727783, -4.80109977722168, -4.877500057220459, -5.196700096130371, -5.309700012207031, -5.195099830627441, -5.231200218200684, -5.186800003051758, -5.308300018310547, -5.414599895477295, -5.396100044250488, -5.440700054168701, -5.44980001449585, -7.052299976348877, -7.4745001792907715, -6.981400012969971, -5.403299808502197, -7.759099960327148, -7.94980001449585, -7.7870001792907715, -5.263899803161621, -8.05739974975586, -7.219099998474121, -7.351399898529053, -7.44980001449585, -8.366100311279297, -8.397899627685547, -8.408300399780273, -7.423600196838379, -8.267999649047852, -7.746600151062012, -8.224699974060059, -8.536499977111816, -8.129599571228027, -8.578700065612793, -8.487099647521973, -8.418999671936035, -8.620599746704102, -7.324699878692627, -8.590499877929688, -8.593000411987305, -8.212400436401367, -8.62909984588623, -8.250900268554688, -6.84660005569458, -5.512400150299072, -6.257900238037109, -3.7908999919891357, -7.095399856567383, -7.058700084686279, -7.306099891662598, -7.48199987411499, -5.6427998542785645, -6.4654998779296875, -7.740699768066406, -7.352700233459473, -7.422100067138672, -5.121300220489502, -7.51230001449585, -5.867800235748291, -6.382199764251709, -5.819900035858154, -5.230500221252441, -6.297900199890137, -4.674699783325195, -5.610599994659424, -5.2581000328063965, -5.895899772644043, -6.669899940490723, -5.806600093841553, -5.988999843597412, -6.444399833679199, -5.333499908447266, -4.380499839782715, -5.673600196838379, -5.64300012588501, -5.828199863433838, -6.6479997634887695, -5.5903000831604, -5.30709981918335, -4.790200233459473, -6.141300201416016, -5.672500133514404, -5.726200103759766, -5.182400226593018, -5.31790018081665, -5.452000141143799, -5.343999862670898, -5.312399864196777, -5.393199920654297, -5.426199913024902, -5.3516998291015625, -5.565000057220459, -5.515900135040283, -5.573200225830078, -5.635000228881836, -5.554200172424316, -5.554599761962891, -5.619900226593018, -5.621500015258789, -5.620299816131592, -6.89139986038208, -5.3094000816345215, -7.2642998695373535, -5.713699817657471, -7.524799823760986, -7.5467000007629395, -7.3933000564575195, -7.628900051116943, -7.473100185394287, -7.631400108337402, -7.8755998611450195, -7.890600204467773, -5.555099964141846, -7.743899822235107, -7.130499839782715, -7.386199951171875, -7.159200191497803, -8.113800048828125, -7.892499923706055, -7.441800117492676, -6.613800048828125, -8.261199951171875, -8.327199935913086, -8.144499778747559, -8.18690013885498, -7.361800193786621, -7.865499973297119, -8.325900077819824, -8.35159969329834, -8.416399955749512, -5.3267998695373535, -6.480999946594238, -6.457799911499023, -6.590000152587891, -6.729499816894531, -4.872000217437744, -7.173099994659424, -4.94290018081665, -5.342299938201904, -5.428100109100342, -7.107500076293945, -6.178899765014648, -6.97760009765625, -5.690299987792969, -6.395199775695801, -5.940299987792969, -6.438700199127197, -6.188399791717529, -6.888999938964844, -4.6844000816345215, -5.801599979400635, -5.9197998046875, -5.342199802398682, -5.9532999992370605, -5.960000038146973, -5.804599761962891, -5.192699909210205, -6.153299808502197, -6.056600093841553, -5.625999927520752, -6.168700218200684, -5.548900127410889, -5.419600009918213, -5.203400135040283, -5.030600070953369, -5.839399814605713, -5.005799770355225, -5.659599781036377, -4.779099941253662, -5.257199764251709, -5.147200107574463, -5.6427998542785645, -5.018199920654297, -5.536600112915039, -5.371099948883057, -5.428999900817871, -5.4542999267578125, -5.500899791717529, -5.635300159454346, -5.631800174713135, -7.287600040435791, -7.395599842071533, -7.510799884796143, -7.412499904632568, -7.770299911499023, -7.80679988861084, -7.855899810791016, -7.987199783325195, -8.023200035095215, -7.92549991607666, -8.191699981689453, -8.085599899291992, -7.993199825286865, -8.241100311279297, -7.752999782562256, -7.923099994659424, -8.163299560546875, -8.288900375366211, -7.312099933624268, -7.1869001388549805, -8.238200187683105, -8.07450008392334, -8.20009994506836, -8.222100257873535, -7.8942999839782715, -8.287799835205078, -8.393699645996094, -8.297100067138672, -8.378899574279785, -8.380599975585938, -7.7270002365112305, -8.196999549865723, -7.48769998550415, -7.899099826812744, -7.927000045776367, -5.854499816894531, -7.736299991607666, -7.500800132751465, -6.5802998542785645, -6.944900035858154, -7.554699897766113, -6.124599933624268, -6.275599956512451, -6.69950008392334, -7.436200141906738, -7.548299789428711, -6.172699928283691, -6.673699855804443, -7.519999980926514, -5.30649995803833, -7.002299785614014, -6.170499801635742, -7.046800136566162, -6.387499809265137, -7.327099800109863, -5.751399993896484, -6.939499855041504, -6.883699893951416, -6.563899993896484, -6.945499897003174, -6.893099784851074, -6.578999996185303, -6.575300216674805, -6.209000110626221, -5.140100002288818, -6.240600109100342, -5.211999893188477, -5.033100128173828, -5.553800106048584, -5.998600006103516, -4.7829999923706055, -5.17140007019043, -5.043099880218506, -4.980000019073486, -5.103799819946289, -5.10290002822876, -5.338200092315674, -5.380499839782715, -5.026599884033203, -5.496099948883057, -5.951700210571289, -5.4344000816345215, -5.650100231170654, -5.484499931335449, -5.628499984741211, -5.7378997802734375, -5.5655999183654785, -5.7754998207092285, -5.726799964904785, -5.726399898529053, -5.776500225067139, -5.753499984741211, -5.716700077056885, -5.8333001136779785, -5.768700122833252, -5.7565999031066895, -6.873000144958496, -7.387800216674805, -7.6529998779296875, -7.093100070953369, -7.503699779510498, -7.665800094604492, -7.00570011138916, -7.805300235748291, -6.422999858856201, -7.809599876403809, -7.946100234985352, -7.810999870300293, -6.35830020904541, -6.3231000900268555, -6.414700031280518, -7.2829999923706055, -6.899899959564209, -7.985499858856201, -8.192099571228027, -7.707699775695801, -7.218699932098389, -8.345999717712402, -8.079400062561035, -8.06410026550293, -8.35319995880127, -8.422800064086914, -7.130899906158447, -8.424699783325195, -8.07409954071045, -8.3503999710083, -7.626100063323975, -7.339099884033203, -7.649400234222412, -6.4120001792907715, -6.156799793243408, -7.708700180053711, -6.624000072479248, -6.265900135040283, -7.754000186920166, -7.207200050354004, -5.145500183105469, -5.785200119018555, -5.6596999168396, -6.759200096130371, -6.133999824523926, -6.333399772644043, -6.023600101470947, -6.321300029754639, -5.9029998779296875, -6.111999988555908, -6.001399993896484, -5.348499774932861, -5.812399864196777, -5.8907999992370605, -4.343800067901611, -3.9784998893737793, -6.214600086212158, -5.777299880981445, -4.782899856567383, -4.445000171661377, -4.662799835205078, -4.859899997711182, -4.996200084686279, -4.946000099182129, -5.238699913024902, -5.196499824523926, -5.057199954986572, -5.0229997634887695, -5.0914998054504395, -5.261300086975098, -5.187399864196777, -5.239699840545654, -5.485799789428711, -5.343699932098389, -5.427999973297119, -5.46750020980835, -5.689499855041504, -5.640900135040283, -5.644700050354004, -5.68149995803833, -5.7153000831604, -5.762800216674805, -6.251699924468994, -6.747799873352051, -6.638400077819824, -7.080999851226807, -7.3144001960754395, -7.371099948883057, -7.388500213623047, -7.463399887084961, -6.975599765777588, -7.568299770355225, -7.355500221252441, -7.0543999671936035, -7.362199783325195, -7.201600074768066, -7.520599842071533, -7.746200084686279, -7.170499801635742, -7.597400188446045, -7.819200038909912, -7.937699794769287, -7.781899929046631, -7.601399898529053, -7.970300197601318, -7.947299957275391, -7.1427998542785645, -7.851099967956543, -7.861199855804443, -7.9355998039245605, -6.933800220489502, -8.059200286865234, -7.394599914550781, -7.011499881744385, -6.439300060272217, -7.101099967956543, -7.459700107574463, -7.234899997711182, -6.691100120544434, -5.480400085449219, -6.521500110626221, -6.686800003051758, -7.200399875640869, -6.009900093078613, -5.428800106048584, -6.742099761962891, -4.2052998542785645, -4.277500152587891, -5.434100151062012, -4.342800140380859, -6.905099868774414, -5.21150016784668, -5.559899806976318, -4.769999980926514, -4.413300037384033, -6.129799842834473, -4.951200008392334, -4.384200096130371, -5.1072998046875, -4.997900009155273, -5.534200191497803, -4.78000020980835, -6.416600227355957, -6.601600170135498, -4.995999813079834, -5.510900020599365, -5.845099925994873, -5.501200199127197, -5.696100234985352, -5.910299777984619, -5.244200229644775, -4.776899814605713, -5.420000076293945, -5.310800075531006, -5.025300025939941, -5.392899990081787, -5.740099906921387, -5.089099884033203, -5.527100086212158, -5.636499881744385, -5.454500198364258, -5.466000080108643, -6.105899810791016, -6.463699817657471, -6.9232001304626465, -6.9303998947143555, -6.402500152587891, -7.064300060272217, -6.895199775695801, -7.195000171661377, -6.991300106048584, -7.420000076293945, -6.349599838256836, -6.304900169372559, -7.250699996948242, -6.236199855804443, -6.80649995803833, -7.625400066375732, -7.666600227355957, -7.771900177001953, -7.244500160217285, -7.805799961090088, -7.692999839782715, -7.971700191497803, -7.743299961090088, -7.986700057983398, -4.7820000648498535, -8.008999824523926, -6.165200233459473, -7.979700088500977, -6.612199783325195, -8.081399917602539, -6.1230998039245605, -7.415599822998047, -3.827399969100952, -6.11329984664917, -5.942699909210205, -5.65369987487793, -4.9994001388549805, -6.722499847412109, -6.394400119781494, -5.204100131988525, -5.967599868774414, -5.952199935913086, -6.445300102233887, -6.722599983215332, -5.361299991607666, -5.00600004196167, -6.000800132751465, -4.893899917602539, -6.262800216674805, -5.613800048828125, -5.271200180053711, -4.8277997970581055, -6.543499946594238, -5.783100128173828, -6.238999843597412, -5.739099979400635, -5.372700214385986, -5.0269999504089355, -5.327499866485596, -5.325799942016602, -5.586100101470947, -4.995800018310547, -5.109899997711182, -4.996099948883057, -5.1184000968933105, -5.110599994659424, -5.448599815368652, -5.515100002288818, -5.328700065612793, -5.4380998611450195, -5.529699802398682, -5.6519999504089355, -5.614999771118164, -5.638800144195557, -5.671800136566162, -5.67110013961792, -6.23799991607666, -6.369200229644775, -7.155099868774414, -7.166200160980225, -6.96619987487793, -6.454699993133545, -7.021900177001953, -7.243599891662598, -6.926700115203857, -6.922500133514404, -7.3993000984191895, -6.941999912261963, -7.073299884796143, -7.299300193786621, -7.4959001541137695, -6.996699810028076, -7.3892998695373535, -7.567399978637695, -6.447000026702881, -6.833099842071533, -7.64169979095459, -7.7972002029418945, -7.8445000648498535, -7.123899936676025, -7.6616997718811035, -5.525700092315674, -7.71999979019165, -8.060400009155273, -6.848299980163574, -8.096199989318848, -5.888299942016602, -6.478000164031982, -6.334400177001953, -7.205399990081787, -6.032899856567383, -6.923799991607666, -5.758399963378906, -4.592100143432617, -4.875, -5.716800212860107, -5.025199890136719, -5.697299957275391, -5.9653000831604, -5.151899814605713, -6.637499809265137, -6.063700199127197, -5.781700134277344, -5.708000183105469, -5.31879997253418, -5.673600196838379, -6.194300174713135, -4.977099895477295, -6.638800144195557, -5.767600059509277, -5.754799842834473, -5.763000011444092, -5.17579984664917, -6.404699802398682, -5.771200180053711, -4.992599964141846, -5.177299976348877, -5.383999824523926, -5.341100215911865, -5.193299770355225, -5.313399791717529, -5.33050012588501, -5.375999927520752, -5.567699909210205, -5.614200115203857, -5.6041998863220215, -5.722799777984619, -5.68310022354126, -5.699399948120117, -5.720900058746338, -5.728700160980225, -5.741600036621094, -5.7459001541137695, -6.868500232696533, -7.188899993896484, -7.297699928283691, -7.377099990844727, -7.178199768066406, -7.070199966430664, -7.032599925994873, -5.295499801635742, -5.38700008392334, -6.664999961853027, -7.36269998550415, -6.653800010681152, -7.92579984664917, -5.419099807739258, -7.110799789428711, -3.899899959564209, -7.762499809265137, -8.054900169372559, -5.417799949645996, -6.2378997802734375, -5.110400199890137, -7.91510009765625, -8.00220012664795, -7.269000053405762, -7.957799911499023, -6.642499923706055, -7.454400062561035, -6.827300071716309, -8.324999809265137, -8.24940013885498, -5.134300231933594, -6.834700107574463, -3.1933000087738037, -3.3422000408172607, -4.56279993057251, -5.1356000900268555, -5.001699924468994, -4.54449987411499, -6.096700191497803, -5.119999885559082, -4.883900165557861, -5.34689998626709, -5.0858001708984375, -4.41379976272583, -5.534299850463867, -6.6915998458862305, -5.23829984664917, -5.0559000968933105, -5.365200042724609, -6.0096001625061035, -5.18149995803833, -5.255099773406982, -5.492499828338623, -5.2778000831604, -5.1921000480651855, -5.585700035095215, -4.621699810028076, -5.390600204467773, -5.297399997711182, -5.3495001792907715, -5.2266998291015625, -5.322400093078613, -5.381700038909912, -5.387400150299072, -0.9107999801635742, -5.802999973297119, -6.5625, -6.570400238037109, -6.467299938201904, -6.419000148773193, -6.5833001136779785, -6.127900123596191, -6.787700176239014, -6.787799835205078, -5.622399806976318, -6.876500129699707, -7.001699924468994, -5.270999908447266, -7.072999954223633, -7.009200096130371, -7.142600059509277, -7.200500011444092, -7.252900123596191, -7.094099998474121, -7.070099830627441, -6.54640007019043, -7.3403000831604, -7.450300216674805, -7.224699974060059, -7.195899963378906, -7.572700023651123, -7.643599987030029, -7.408599853515625, -7.667799949645996, -6.798799991607666, -6.696400165557861, -4.843900203704834, -6.400400161743164, -6.7546000480651855, -6.301799774169922, -6.511000156402588, -6.727399826049805, -6.504000186920166, -5.962399959564209, -6.878399848937988, -5.78980016708374, -5.677999973297119, -5.607900142669678, -5.8165998458862305, -5.812900066375732, -5.879700183868408, -5.947000026702881, -6.310800075531006, -6.033699989318848, -6.413700103759766, -6.180500030517578, -6.1793999671936035, -6.19980001449585, -6.247499942779541, -6.287799835205078, -6.227700233459473, -6.314300060272217, -6.34630012512207, -6.376500129699707, -6.370100021362305, -6.3871002197265625, -6.402299880981445, -5.6539998054504395, -5.910799980163574, -5.865900039672852, -6.079100131988525, -6.593100070953369, -6.839000225067139, -6.776199817657471, -6.7403998374938965, -6.8902997970581055, -6.527400016784668, -7.028299808502197, -6.684299945831299, -6.151899814605713, -7.146599769592285, -7.2067999839782715, -6.353099822998047, -6.1793999671936035, -7.048299789428711, -6.859300136566162, -7.226399898529053, -7.5131001472473145, -7.172100067138672, -7.5742998123168945, -6.8755998611450195, -7.608399868011475, -7.66949987411499, -7.6371002197265625, -7.34630012512207, -7.638800144195557, -7.635700225830078, -4.978499889373779, -5.781799793243408, -6.097799777984619, -7.007900238037109, -5.6407999992370605, -6.561100006103516, -5.466300010681152, -6.3709001541137695, -4.052999973297119, -6.090799808502197, -6.2855000495910645, -4.883299827575684, -5.511300086975098, -5.665599822998047, -6.184500217437744, -5.086400032043457, -4.9375, -6.309199810028076, -5.250999927520752, -5.676499843597412, -4.604800224304199, -5.811200141906738, -5.13100004196167, -5.8927998542785645, -5.308800220489502, -4.95389986038208, -5.499800205230713, -5.181399822235107, -5.383600234985352, -5.2270002365112305, -5.347499847412109, -5.487100124359131, -5.657700061798096, -5.53249979019165, -5.551599979400635, -5.4496002197265625, -5.514100074768066, -5.63640022277832, -5.699999809265137, -5.719900131225586, -4.875999927520752, -5.782899856567383, -5.630799770355225, -5.9903998374938965, -5.520400047302246, -6.1869001388549805, -6.219600200653076, -5.421000003814697, -6.359499931335449, -6.259300231933594, -6.334400177001953, -6.678100109100342, -6.470699787139893, -6.682700157165527, -6.47730016708374, -6.764800071716309, -6.239999771118164, -4.852700233459473, -6.629000186920166, -7.044400215148926, -6.963799953460693, -6.827899932861328, -7.127500057220459, -6.772900104522705, -7.196100234985352, -7.215700149536133, -7.304599761962891, -7.287300109863281, -7.111000061035156, -7.139699935913086, -5.720099925994873, -4.4918999671936035, -6.053500175476074, -5.559299945831299, -5.174200057983398, -6.011600017547607, -4.161799907684326, -4.706900119781494, -6.213900089263916, -6.000800132751465, -4.76639986038208, -4.545599937438965, -5.4243998527526855, -5.174699783325195, -5.781599998474121, -4.477099895477295, -5.290299892425537, -5.271200180053711, -5.355400085449219, -5.133200168609619, -5.4506001472473145, -5.559800148010254, -5.461900234222412, -5.566999912261963, -5.524199962615967, -5.556399822235107, -5.610499858856201, -5.706500053405762, -5.739099979400635, -5.7708001136779785]}, \"token.table\": {\"Topic\": [1, 2, 3, 4, 5, 6, 7, 11, 12, 16, 17, 18, 5, 17, 12, 1, 5, 8, 12, 15, 1, 2, 3, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16, 18, 1, 15, 2, 3, 6, 7, 8, 11, 14, 16, 1, 2, 3, 4, 5, 6, 8, 9, 10, 11, 12, 13, 15, 16, 18, 19, 12, 5, 8, 7, 20, 3, 10, 12, 13, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 2, 3, 4, 5, 6, 7, 10, 11, 12, 13, 14, 15, 16, 18, 19, 18, 1, 3, 4, 5, 6, 8, 10, 11, 12, 13, 15, 16, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 2, 3, 6, 8, 9, 5, 12, 3, 13, 16, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 1, 15, 1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 17, 18, 4, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 1, 2, 3, 4, 5, 6, 8, 9, 10, 12, 14, 16, 18, 3, 4, 7, 9, 10, 11, 20, 7, 9, 10, 12, 20, 13, 1, 2, 3, 4, 5, 6, 11, 13, 15, 16, 18, 14, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 15, 16, 18, 19, 2, 3, 4, 5, 6, 9, 10, 14, 15, 19, 2, 3, 6, 7, 14, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 11, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 5, 15, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 4, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 4, 5, 15, 17, 1, 3, 4, 5, 6, 8, 10, 11, 12, 13, 14, 17, 3, 13, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19, 20, 4, 5, 11, 17, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 3, 5, 8, 13, 18, 5, 17, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 4, 5, 17, 2, 6, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 4, 17, 19, 4, 4, 5, 11, 1, 2, 3, 5, 8, 12, 13, 14, 16, 18, 1, 2, 3, 4, 5, 6, 7, 8, 10, 12, 13, 14, 16, 18, 2, 3, 14, 20, 5, 19, 1, 3, 5, 11, 16, 11, 2, 6, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 5, 16, 19, 2, 3, 6, 7, 9, 10, 11, 12, 14, 20, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 4, 5, 6, 8, 16, 18, 5, 5, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 13, 1, 3, 4, 5, 6, 7, 9, 12, 18, 6, 7, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 18, 19, 4, 8, 18, 19, 14, 1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 16, 18, 19, 10, 1, 3, 4, 5, 6, 7, 9, 10, 11, 12, 18, 4, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 14, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 3, 18, 1, 5, 6, 8, 13, 15, 18, 1, 2, 3, 4, 5, 6, 7, 8, 10, 12, 13, 14, 15, 16, 17, 18, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1, 3, 5, 12, 13, 18, 3, 3, 4, 5, 6, 9, 10, 11, 12, 14, 19, 5, 16, 14, 1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 3, 6, 8, 18, 2, 7, 11, 15, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 13, 15, 6, 1, 3, 4, 5, 6, 10, 11, 13, 15, 1, 6, 10, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 18, 19, 20, 19, 16, 16, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 5, 1, 2, 3, 4, 5, 6, 7, 9, 10, 12, 13, 14, 17, 19, 5, 18, 8, 14, 3, 4, 5, 6, 9, 11, 12, 18, 9, 3, 4, 9, 15, 11, 18, 1, 3, 6, 9, 13, 3, 9, 15, 1, 4, 5, 6, 8, 10, 15, 17, 14, 1, 6, 9, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19, 10, 7, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 2, 3, 4, 5, 6, 7, 10, 11, 2, 3, 4, 6, 8, 9, 11, 12, 13, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 4, 13, 14, 19, 1, 3, 6, 2, 2, 20, 3, 4, 7, 8, 12, 13, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 17, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 5, 2, 5, 6, 7, 14, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 5, 6, 8, 11, 18, 11, 1, 3, 5, 6, 12, 13, 15, 18, 19, 16, 2, 3, 6, 7, 9, 11, 14, 19, 3, 1, 3, 4, 5, 6, 7, 10, 11, 12, 14, 17, 20, 8, 12, 19, 3, 6, 3, 15, 16, 5, 14, 8, 14, 1, 3, 6, 14, 6, 10, 13, 6, 14, 3, 4, 5, 6, 8, 9, 10, 11, 12, 14, 16, 18, 12, 3, 6, 12, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 1, 3, 5, 6, 8, 10, 11, 12, 13, 14, 15, 16, 18, 1, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 3, 4, 7, 13, 4, 7, 13, 2, 3, 5, 6, 7, 9, 10, 11, 12, 14, 18, 8, 7, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 1, 3, 4, 5, 6, 8, 10, 11, 12, 13, 14, 17, 18, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 15, 3, 9, 1, 3, 13, 15, 16, 18, 19, 16, 1, 2, 3, 4, 6, 7, 10, 12, 6, 11, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 20, 3, 5, 6, 8, 13, 7, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 17, 1, 8, 14, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 7, 5, 11, 12, 16, 17, 14, 1, 2, 3, 4, 5, 6, 8, 9, 11, 12, 13, 5, 10, 1, 2, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 16, 19, 20, 1, 2, 3, 4, 5, 7, 11, 12, 15, 19, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 3, 8, 10, 10, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 3, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 17, 18, 19, 16, 2, 3, 5, 6, 8, 11, 12, 3, 5, 13, 18, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 2, 3, 6, 7, 9, 11, 12, 14, 19, 2, 3, 5, 6, 7, 12, 14, 3, 5, 6, 1, 2, 3, 4, 5, 6, 8, 9, 10, 13, 14, 15, 16, 1, 3, 4, 5, 6, 9, 10, 11, 12, 13, 15, 16, 11, 3, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 12, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 6, 3, 10, 18, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 15, 16, 17, 18, 2, 3, 4, 5, 6, 8, 10, 11, 12, 13, 14, 16, 17, 19, 2, 18, 10, 12, 1, 5, 8, 10, 15, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 14, 15, 16, 17, 18, 19, 1, 1, 6, 14, 1, 4, 5, 17, 3, 9, 14, 10, 1, 2, 3, 4, 5, 7, 12, 2, 3, 4, 7, 14, 1, 2, 3, 4, 6, 7, 8, 9, 12, 13, 18, 1, 6, 9, 4, 17, 2, 14, 7, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 16, 19, 5, 2, 3, 6, 9, 11, 13, 16, 19, 4, 8, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 18, 19, 20, 1, 3, 4, 5, 6, 10, 12, 13, 15, 16, 17, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 7, 12, 1, 2, 3, 4, 5, 6, 7, 8, 9, 12, 14, 19, 3, 2, 4, 14, 1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 17, 18, 3, 8, 1, 5, 6, 13, 18, 1, 2, 3, 5, 12, 13, 16, 1, 2, 4, 7, 11, 16, 3, 4, 12, 16, 18, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 3, 6, 11, 1, 20, 1, 3, 6, 8, 9, 13, 14, 15, 19, 14, 7, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 2, 3, 4, 5, 6, 7, 11, 12, 14, 3, 14, 20, 5, 1, 5, 6, 8, 10, 11, 13, 15, 16, 18, 4, 10, 11, 12, 13, 16, 17, 14, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 15, 16, 17, 19, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 19, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 17, 18, 19, 14, 6, 14, 4, 5, 6, 7, 10, 12, 18, 11, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 12, 3, 19, 1, 3, 5, 6, 10, 12, 13, 15, 16, 18, 1, 3, 4, 5, 6, 7, 8, 9, 11, 13, 14, 18, 5, 6, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 13, 15, 16, 18, 13, 12, 8, 16, 1, 11, 4, 20, 11, 1, 3, 4, 5, 6, 7, 8, 10, 11, 13, 14, 15, 16, 18, 3, 9, 10, 11, 12, 3, 9, 10, 1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 17, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 3, 15, 19, 3, 7, 2, 3, 7, 19, 14, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 3, 5, 12, 15, 16, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 3, 6, 7, 14, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 6, 18, 19, 1, 2, 3, 4, 7, 8, 9, 10, 11, 12, 14, 5, 18, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 5, 14, 9, 15, 2, 4, 8, 18, 20, 1, 2, 3, 4, 7, 12, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 18, 9, 1, 2, 3, 4, 5, 6, 7, 10, 11, 12, 14, 15, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 15, 16, 18, 19, 6, 9, 12, 2, 3, 4, 5, 6, 7, 8, 9, 11, 13, 14, 15, 19, 1, 2, 3, 4, 5, 6, 10, 11, 12, 13, 14, 15, 17, 19, 1, 2, 3, 4, 7, 12, 4, 13, 17, 1, 2, 3, 5, 6, 8, 10, 12, 13, 15, 16, 18, 3, 7, 9, 14, 3, 4, 5, 10, 13, 17, 6, 18, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1, 3, 4, 5, 6, 7, 8, 10, 12, 13, 15, 16, 18, 4, 6, 7, 10, 10, 3, 4, 6, 7, 8, 18, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 13, 1, 4, 5, 7, 10, 11, 12, 1, 3, 4, 5, 6, 7, 10, 11, 12, 13, 14, 16, 17, 18, 15, 20, 1, 4, 5, 12, 13, 15, 17, 19, 13, 12, 1, 2, 3, 4, 5, 6, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 15, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 13, 14, 16, 18, 16, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 3, 13, 18, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 2, 13, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 8, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1, 2, 3, 4, 5, 6, 8, 10, 12, 14, 18, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 16, 5, 1, 2, 3, 6, 8, 9, 12, 13, 1, 4, 5, 10, 15, 17, 3, 11, 1, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 2, 2, 3, 4, 6, 7, 9, 11, 14, 15, 16, 17, 20, 5, 19, 3, 7, 11, 12, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 2, 3, 6, 7, 8, 9, 11, 12, 14, 15, 20, 1, 3, 4, 5, 6, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 2, 3, 4, 5, 6, 7, 8, 11, 12, 13, 14, 15, 16, 19, 20, 9, 4, 7, 16, 3, 7, 8, 5, 6, 14, 15, 6, 6, 11, 5, 15, 17, 3, 3, 7, 9, 17, 5, 12, 2, 10, 1, 6, 11, 12, 14, 13, 16, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 3, 4, 9, 12, 1, 3, 4, 6, 10, 12, 13, 3, 4, 5, 6, 7, 8, 9, 11, 12, 18, 6, 12, 1, 6, 8, 9, 10, 12, 13, 14, 1, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 10, 3, 3, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 12, 6, 9, 20, 9, 2, 3, 5, 6, 7, 9, 11, 12, 13, 14, 7, 1, 4, 5, 6, 10, 12, 16, 7, 5, 6, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 5, 16, 3, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 17, 19, 20, 6, 13, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 15, 16, 17, 18, 19, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1, 5, 6, 10, 11, 12, 13, 16, 18, 2, 17, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 14, 15, 17, 18, 19, 11, 5, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 1, 1, 3, 4, 5, 6, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 3, 7, 14, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 3, 5, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 9, 12, 14, 13, 1, 2, 3, 4, 5, 6, 10, 14, 16, 18, 19, 8, 14, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 11, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 3, 9, 13, 2, 8, 11, 12, 13, 7, 3, 3, 8, 11, 12, 14, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 10, 10, 18, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 17, 8, 3, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 17, 18, 19, 1, 3, 5, 6, 8, 9, 12, 13, 16, 17, 18, 1, 2, 3, 5, 6, 8, 10, 12, 13, 15, 16, 18, 3, 4, 5, 14, 19, 1, 3, 5, 8, 10, 12, 13, 15, 19, 1, 3, 8, 10, 13, 19, 8, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 18, 3, 5, 15, 3, 12, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 3, 13, 5, 12, 14, 9, 1, 3, 4, 5, 6, 10, 13, 15, 16, 3, 2, 7, 2, 3, 7, 9, 11, 19, 7, 1, 2, 3, 20, 4, 16, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 4, 5, 5, 15, 1, 5, 1, 8, 10, 14, 1, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 4, 12, 12, 1, 5, 6, 9, 10, 12, 18, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 10, 1, 4, 8, 18, 3, 12, 5, 6, 7, 15, 20, 1, 3, 4, 5, 12, 1, 10, 19, 9, 6, 1, 5, 6, 8, 13, 14, 4, 17, 1, 2, 3, 4, 6, 7, 9, 11, 12, 14, 15, 16, 20, 12, 1, 2, 3, 4, 5, 6, 7, 9, 10, 12, 13, 15, 16, 19, 4, 6, 10, 13, 4, 1, 2, 3, 18, 11, 1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 11, 12, 9, 5, 2, 1, 2, 3, 4, 5, 6, 8, 10, 11, 12, 13, 14, 17, 19, 3, 6, 13, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 8, 3, 1, 3, 4, 5, 6, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 15, 2, 13, 2, 6, 7, 9, 3, 3, 5, 12, 19, 4, 2, 11, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 18, 1, 3, 4, 5, 10, 14, 15, 17, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 4, 17, 4, 5, 17, 3, 13, 3, 5, 6, 11, 13, 14, 7, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 2, 15, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 4, 5, 15, 3, 5, 11, 13, 19, 14, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 8, 8, 13, 3, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 4, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1, 7, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 7, 11, 12, 5, 6, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 6, 5, 1, 3, 4, 5, 6, 11, 12, 14, 16, 3, 6, 7, 13, 3, 7, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 14, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 14, 1, 2, 3, 4, 6, 7, 8, 9, 11, 12, 13, 14, 16, 18, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 3, 4, 5, 6, 7, 8, 9, 10, 12, 13, 15, 16, 17, 18, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 19, 20, 5, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 18, 13, 14, 19, 20, 6, 1, 3, 4, 5, 10, 12, 15, 18, 19, 3, 5, 10, 13, 15, 16, 10, 12, 19, 1, 3, 4, 5, 6, 10, 12, 15, 17, 18, 13, 2, 6, 18, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 19, 8, 2, 4, 5, 15, 17, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 1, 1, 2, 3, 6, 11, 14, 6, 6, 13, 3, 5, 6, 7, 8, 11, 12, 4, 5, 8, 12, 13, 17, 18, 20, 2, 3, 5, 6, 7, 9, 11, 13, 14, 19, 20, 18, 1, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1, 3, 4, 5, 6, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 1, 4, 5, 8, 10, 18, 3, 8, 10, 13, 3, 17, 19, 5, 1, 3, 4, 5, 6, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 9, 1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 20, 18, 10, 10, 12, 2, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 18, 3, 2, 4, 2, 3, 6, 12, 13, 14, 8, 1, 3, 5, 6, 11, 12, 13, 1, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 15, 16, 18, 19, 20, 1, 3, 5, 6, 7, 8, 10, 12, 13, 16, 1, 3, 11, 16, 19, 20, 19, 5, 17, 3, 2, 11, 1, 2, 3, 6, 7, 9, 11, 12, 14, 20, 3, 4, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16, 18, 19, 14, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 1, 2, 3, 4, 6, 7, 9, 10, 11, 12, 19, 20, 6, 3, 4, 5, 8, 10, 12, 14, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 7, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 16, 17, 18, 19, 20, 6, 1, 3, 4, 5, 6, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 14, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 10, 12, 9, 10, 3, 6, 8, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 19, 9, 3, 5, 6, 9, 12, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 8, 11, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 15, 5, 9, 19, 18, 7, 2, 1, 3, 4, 5, 8, 9, 10, 11, 12, 14, 15, 16, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 7, 2, 1, 3, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 16, 12, 18, 6, 1, 3, 4, 5, 10, 12, 13, 17, 5, 1, 3, 4, 5, 7, 10, 11, 12, 13, 17, 19, 12, 15, 6, 5, 6, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 2, 3, 4, 5, 6, 9, 10, 12, 13, 14, 15, 16, 18, 3, 8, 13, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 2, 4, 18, 5, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 5, 6, 12, 10, 12, 10, 3, 5, 6, 7, 8, 9, 11, 12, 13, 14, 16, 19, 3, 5, 8, 11, 12, 14, 16, 1, 11, 6, 3, 7, 11, 16, 18, 4, 10, 13, 17, 6, 1, 3, 9, 12, 16, 4, 7, 16, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 19, 3, 7, 1, 3, 5, 7, 10, 12, 13, 19, 7, 19, 1, 2, 3, 4, 5, 6, 7, 9, 11, 12, 14, 16, 19, 9, 14, 18, 18, 7, 1, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 2, 3, 19, 2, 3, 4, 5, 6, 8, 9, 10, 11, 12, 19, 1, 3, 8, 10, 12, 13, 15, 20, 2, 3, 4, 6, 7, 8, 9, 13, 14, 15, 1, 2, 3, 4, 6, 7, 8, 10, 11, 12, 13, 15, 16, 19, 2, 4, 5, 13, 6, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 5, 9, 11, 19, 1, 3, 4, 5, 6, 7, 10, 11, 12, 13, 15, 17, 18, 19, 4, 16, 3, 6, 12, 3, 4, 6, 7, 8, 10, 13, 14, 1, 3, 4, 5, 6, 8, 10, 11, 13, 14, 16, 1, 3, 6, 8, 13, 14, 17, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 15, 16, 17, 19, 1, 18, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 12, 14, 9, 10, 1, 3, 4, 6, 7, 8, 10, 11, 13, 15, 16, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 4, 5, 17, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 19, 2, 1, 5, 6, 10, 16, 10, 1, 2, 3, 4, 6, 7, 11, 13, 1, 2, 3, 5, 6, 8, 9, 10, 11, 13, 14, 6, 3, 5, 6, 8, 13, 14, 18, 3, 17, 17, 2, 6, 7, 8, 14, 13, 3, 4, 2, 3, 4, 5, 6, 7, 10, 11, 12, 13, 16, 1, 3, 5, 7, 8, 9, 11, 12, 13, 16, 1, 3, 4, 5, 6, 9, 11, 12, 14, 16, 19, 20, 1, 2, 3, 4, 5, 6, 10, 16, 3, 4, 5, 6, 7, 9, 10, 11, 14, 15, 16, 18, 19, 8, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 18, 19, 1, 3, 5, 6, 8, 13, 14, 12, 1, 15, 18, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 2, 3, 4, 6, 7, 9, 12, 14, 15, 11, 13, 3, 6, 7, 11, 14, 1, 3, 4, 5, 6, 8, 9, 10, 12, 13, 14, 15, 16, 17, 18, 19, 7, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 14, 15, 16, 18, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 2, 3, 5, 6, 11, 14, 15, 19, 8, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 6, 13, 13, 12, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 3, 6, 6, 2, 3, 4, 5, 7, 10, 11, 14, 16, 20, 10, 8, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 2, 3, 4, 5, 6, 7, 10, 11, 12, 13, 14, 15, 16, 19, 20, 2, 3, 5, 6, 7, 9, 19, 4, 14, 15, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 1, 2, 3, 4, 5, 6, 8, 12, 2, 3, 4, 5, 6, 7, 9, 11, 12, 13, 14, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 3, 4, 5, 6, 8, 9, 10, 11, 12, 14, 15, 17, 19, 15, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 5, 15, 9, 3, 12, 15, 10, 14, 9, 12, 1, 3, 5, 6, 8, 10, 13, 15, 16, 17, 8, 18, 2, 3, 4, 5, 6, 7, 11, 12, 13, 14, 16, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 3, 15, 18, 1, 12, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 16, 18, 19, 20, 10, 3, 13, 18, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 2, 14, 3, 6, 8, 3, 3, 5, 6, 11, 12, 15, 16, 14, 16, 1, 2, 3, 6, 7, 9, 11, 14, 15, 16, 1, 3, 4, 5, 8, 9, 10, 11, 13, 1, 12, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 1, 6, 3, 4, 5, 6, 11, 12, 13, 14, 5, 15, 16, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 14, 2, 3, 4, 5, 6, 8, 9, 11, 12, 18, 19, 4, 5, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 3, 4, 7, 9, 10, 11, 14, 1, 3, 5, 12, 18, 5, 16, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 18, 2, 11, 1, 3, 4, 8, 18, 1, 4, 5, 8, 18, 20, 13, 16, 1, 2, 3, 4, 5, 6, 7, 8, 10, 12, 13, 14, 15, 16, 17, 18, 1, 3, 4, 5, 6, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 1, 2, 3, 4, 5, 6, 8, 10, 11, 13, 15, 20, 11, 5, 19, 19, 11, 3, 4, 5, 6, 10, 13, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 12, 19, 5, 20, 3, 4, 10, 12, 13, 14, 3, 4, 9, 11, 12, 19, 18, 18, 1, 3, 5, 6, 8, 10, 12, 13, 15, 16, 18, 5, 6, 10, 16, 11, 3, 8, 9, 1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 18, 19, 3, 4, 5, 6, 13, 14, 15, 18, 16, 5, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 10, 14, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 4, 15, 3, 5, 14, 18, 20, 1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 18, 19, 1, 3, 4, 5, 6, 8, 9, 10, 11, 12, 13, 14, 16, 17, 18, 19, 8, 2, 3, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 5, 6, 8, 18, 13, 7, 16, 6, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 18, 19, 3, 4, 7, 8, 9, 8, 5, 15, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 2, 1, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 7, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 8, 9, 1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 18, 20, 4, 5, 15, 17, 5, 8, 11, 14, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 18, 19, 20, 2, 1, 3, 5, 6, 10, 11, 15, 16, 18, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 16, 17, 19, 20, 6, 1, 3, 4, 5, 7, 9, 11, 12, 14, 16, 19, 1, 7, 17, 1, 1, 6, 8, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 8, 13, 3, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 3, 5, 6, 8, 9, 10, 12, 13, 14, 19, 1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 14, 17, 20, 1, 3, 5, 6, 7, 10, 12, 13, 15, 16, 18, 2, 11, 12, 2, 3, 6, 7, 9, 11, 19, 5, 17, 2, 3, 6, 1, 2, 3, 4, 5, 6, 8, 9, 10, 11, 12, 13, 14, 18, 19, 1, 2, 4, 13, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 13, 14, 16, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 3, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 16, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 2, 4, 12, 13, 1, 3, 5, 6, 7, 13, 15, 16, 1, 3, 10, 13, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 2, 6, 12, 1, 2, 3, 4, 5, 6, 7, 10, 12, 14, 16, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 12, 3, 4, 5, 6, 9, 11, 19, 1, 2, 3, 4, 5, 6, 7, 12, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 18, 19, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 2, 3, 5, 6, 7, 9, 11, 15, 1, 3, 4, 5, 6, 8, 10, 11, 12, 13, 15, 16, 19, 1, 3, 4, 5, 6, 10, 12, 13, 15, 19, 14, 17, 2, 4, 10, 13, 6, 8, 13, 9, 5, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 16, 18, 19, 12, 1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 8, 12, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 14, 2, 3, 4, 5, 7, 8, 9, 11, 12, 13, 14, 15, 16, 20, 5, 1, 2, 3, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 15, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 4, 6, 10, 13, 15, 20, 3, 1, 3, 4, 5, 6, 10, 12, 13, 15, 17, 1, 2, 3, 4, 5, 6, 8, 9, 11, 13, 15, 16, 1, 5, 20, 3, 4, 6, 15, 12, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 3, 4, 5, 6, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 9, 19, 1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 15, 16, 17, 18, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 15, 17, 18, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19, 20, 1, 3, 5, 11, 14, 14, 3, 12, 20, 5, 8, 13, 18, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 6, 9, 14, 3, 19, 7, 6, 18, 16, 6, 20, 9, 20, 3, 12, 16, 3, 5, 7, 9, 12, 14, 19, 2, 8, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 12, 1, 5, 6, 9, 16, 3, 5, 6, 8, 9, 10, 11, 16, 16, 16, 19, 3, 4, 5, 13, 20, 16, 10, 8, 1, 6, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 3, 4, 7, 8, 10, 3, 12, 7, 11, 13, 14, 19, 17, 5, 3, 7, 9, 14, 3, 16, 2, 13, 11, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 19, 20, 11, 1, 3, 4, 6, 10, 11, 13, 15, 19, 2, 4, 6, 7, 10, 11, 15, 18, 3, 4, 10, 18, 11, 14, 4, 16, 12, 12, 2, 7, 8, 19, 15, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 3, 6, 8, 12, 16, 18, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 18, 8, 8, 1, 2, 3, 4, 5, 7, 9, 12, 1, 2, 3, 4, 5, 6, 12, 1, 2, 3, 4, 5, 6, 8, 9, 10, 11, 12, 14, 16, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 15, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 3, 9, 14, 7, 11, 13, 16, 1, 2, 3, 4, 5, 6, 9, 11, 12, 13, 14, 16, 14, 15, 1, 3, 4, 5, 6, 7, 10, 11, 12, 13, 17, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 18, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 1, 5, 15, 16, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 4, 5, 11, 12, 16, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 5, 14, 10, 1, 1, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 4, 20, 3, 4, 10, 13, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 18, 19, 5, 6, 18, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 2, 3, 5, 6, 12, 2, 4, 6, 9, 11, 14, 16, 1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19, 6, 18, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 12, 13, 1, 2, 3, 4, 5, 6, 7, 8, 10, 12, 13, 15, 16, 18, 11, 6, 20, 7, 2, 3, 4, 5, 6, 10, 11, 12, 16, 17, 2, 15, 18, 1, 3, 4, 5, 6, 10, 13, 15, 16, 17, 18, 19, 17, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 6, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 3, 1, 3, 4, 5, 6, 10, 11, 12, 14, 15, 17, 18, 1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 18, 19, 2, 12, 14, 19, 9, 10, 6, 14, 7, 8, 6, 20, 15, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 20, 1, 7, 18, 9, 1, 13, 4, 8, 15, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 2, 6, 12, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 10, 19, 16, 18, 7, 3, 12, 11, 1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 11, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 2, 7, 10, 11, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 18, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 2, 3, 5, 6, 7, 1, 3, 4, 5, 6, 9, 10, 12, 13, 14, 15, 17, 19, 1, 3, 4, 5, 6, 10, 13, 14, 19, 6, 13, 2, 3, 6, 8, 9, 11, 12, 14, 3, 9, 11, 12, 3, 5, 7, 9, 12, 14, 14, 13, 6, 11, 12, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 17, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 13, 16, 17, 18, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 20, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 8, 3, 4, 5, 6, 8, 9, 11, 12, 16, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 17, 18, 2, 3, 4, 5, 6, 7, 11, 12, 13, 14, 17, 18, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 19, 9, 11, 2, 3, 4, 5, 6, 8, 9, 14, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 16, 19, 20, 7, 1, 2, 4, 5, 12, 3, 4, 9, 12, 3, 4, 5, 17, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 12, 2, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 3, 4, 5, 6, 10, 13, 14, 15, 16, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 7, 14, 7, 13, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 6, 3], \"Freq\": [0.03716105595231056, 0.003096754662692547, 0.09290263801813126, 0.021677283570170403, 0.006193509325385094, 0.198192298412323, 0.37470731139183044, 0.006193509325385094, 0.01858052797615528, 0.17341826856136322, 0.003096754662692547, 0.06503184884786606, 0.9462578892707825, 0.847542405128479, 0.8993812203407288, 0.09955031424760818, 0.056885894387960434, 0.014221473596990108, 0.07110737264156342, 0.7395166158676147, 0.8133442401885986, 0.008257301524281502, 0.03302920609712601, 0.03302920609712601, 0.02890055626630783, 0.012385953217744827, 0.016514603048563004, 0.004128650762140751, 0.008257301524281502, 0.012385953217744827, 0.004128650762140751, 0.004128650762140751, 0.004128650762140751, 0.004128650762140751, 0.008257301524281502, 0.02502540498971939, 0.9259399771690369, 0.11194798350334167, 0.14180077612400055, 0.007463199086487293, 0.2089695781469345, 0.007463199086487293, 0.007463199086487293, 0.5000343322753906, 0.007463199086487293, 0.05257081240415573, 0.005257081240415573, 0.1366841197013855, 0.042056649923324585, 0.11565578728914261, 0.22605448961257935, 0.010514162480831146, 0.06308497488498688, 0.09988454729318619, 0.005257081240415573, 0.005257081240415573, 0.06308497488498688, 0.005257081240415573, 0.021028324961662292, 0.005257081240415573, 0.14194118976593018, 0.9101642966270447, 0.942386269569397, 0.8968289494514465, 0.9388585090637207, 0.963233232498169, 0.06481122970581055, 0.03240561485290527, 0.8425460457801819, 0.03240561485290527, 0.006809857673943043, 0.24223636090755463, 0.06809857487678528, 0.024320920929312706, 0.0457233302295208, 0.042804818600416183, 0.104093536734581, 0.008755531162023544, 0.015565388835966587, 0.011674041859805584, 0.042804818600416183, 0.07782694697380066, 0.009728368371725082, 0.25293758511543274, 0.02723943069577217, 0.009728368371725082, 0.0019456736044958234, 0.002918510464951396, 0.002918510464951396, 0.0009728368022479117, 0.052831172943115234, 0.0040639364160597324, 0.02438361756503582, 0.8249790668487549, 0.01219180878251791, 0.0040639364160597324, 0.02438361756503582, 0.008127872832119465, 0.0040639364160597324, 0.0040639364160597324, 0.0040639364160597324, 0.0040639364160597324, 0.0040639364160597324, 0.008127872832119465, 0.0040639364160597324, 0.0040639364160597324, 0.9648985266685486, 0.0896739512681961, 0.041387978941202164, 0.03448998183012009, 0.02759198471903801, 0.020693989470601082, 0.07587795704603195, 0.5932276844978333, 0.05518396943807602, 0.006897996179759502, 0.020693989470601082, 0.006897996179759502, 0.006897996179759502, 0.013795992359519005, 0.02339370734989643, 0.17623259127140045, 0.029632030054926872, 0.02027454599738121, 0.015595804899930954, 0.021834127604961395, 0.5068636536598206, 0.006238322239369154, 0.05770447850227356, 0.010917063802480698, 0.04366825520992279, 0.02339370734989643, 0.02027454599738121, 0.012476644478738308, 0.012476644478738308, 0.0015595805598422885, 0.006238322239369154, 0.0015595805598422885, 0.0015595805598422885, 0.009357483126223087, 0.04268641024827957, 0.7256689667701721, 0.010671602562069893, 0.16007402539253235, 0.04268641024827957, 0.02895803563296795, 0.9266571402549744, 0.10396617650985718, 0.025991544127464294, 0.8317294120788574, 0.05664500221610069, 0.007724318187683821, 0.02059818245470524, 0.7930300235748291, 0.007724318187683821, 0.007724318187683821, 0.007724318187683821, 0.00514954561367631, 0.002574772806838155, 0.05664500221610069, 0.002574772806838155, 0.01029909122735262, 0.002574772806838155, 0.007724318187683821, 0.002574772806838155, 0.00514954561367631, 0.002574772806838155, 0.09017767757177353, 0.004294175188988447, 0.01717670075595379, 0.7343039512634277, 0.01717670075595379, 0.03435340151190758, 0.01717670075595379, 0.012882525101304054, 0.008588350377976894, 0.02576505020260811, 0.004294175188988447, 0.004294175188988447, 0.008588350377976894, 0.008588350377976894, 0.004294175188988447, 0.004294175188988447, 0.004294175188988447, 0.004294175188988447, 0.9491291046142578, 0.9202964901924133, 0.02946881204843521, 0.18786367774009705, 0.03315241262316704, 0.08103923499584198, 0.05157041922211647, 0.03315241262316704, 0.011050804518163204, 0.1952308714389801, 0.0036836015060544014, 0.06262122839689255, 0.05893762409687042, 0.007367203012108803, 0.007367203012108803, 0.2246996909379959, 0.007367203012108803, 0.8067307472229004, 0.9271191358566284, 0.07780534774065018, 0.15040859580039978, 0.07780534774065018, 0.0809718444943428, 0.08888808637857437, 0.06853203475475311, 0.08979279547929764, 0.03415292873978615, 0.047497447580099106, 0.031438786536455154, 0.04998541250824928, 0.06152050569653511, 0.03528381884098053, 0.045688021928071976, 0.02759375609457493, 0.015380126424133778, 0.006559171713888645, 0.0033926749601960182, 0.005428279750049114, 0.002487961668521166, 0.9584169387817383, 0.057857971638441086, 0.0032143318094313145, 0.02250032126903534, 0.6782239675521851, 0.016071658581495285, 0.0032143318094313145, 0.025714654475450516, 0.012857327237725258, 0.09642995148897171, 0.0032143318094313145, 0.03214331716299057, 0.0032143318094313145, 0.048214975744485855, 0.05221669748425484, 0.01305417437106371, 0.18275843560695648, 0.01305417437106371, 0.16970425844192505, 0.01305417437106371, 0.5352211594581604, 0.035382963716983795, 0.31844669580459595, 0.10614889115095139, 0.17691482603549957, 0.31844669580459595, 0.9399121403694153, 0.008347414433956146, 0.025042245164513588, 0.025042245164513588, 0.008347414433956146, 0.05843190476298332, 0.025042245164513588, 0.04173707216978073, 0.7512673139572144, 0.025042245164513588, 0.008347414433956146, 0.008347414433956146, 0.9173250794410706, 0.06529992073774338, 0.011523515917360783, 0.023047031834721565, 0.023047031834721565, 0.3149760961532593, 0.007682343944907188, 0.011523515917360783, 0.003841171972453594, 0.04609406366944313, 0.015364687889814377, 0.011523515917360783, 0.4378935992717743, 0.003841171972453594, 0.003841171972453594, 0.007682343944907188, 0.003841171972453594, 0.016119729727506638, 0.016119729727506638, 0.16925714910030365, 0.016119729727506638, 0.032239459455013275, 0.032239459455013275, 0.008059864863753319, 0.34657418727874756, 0.032239459455013275, 0.3143347203731537, 0.8738151788711548, 0.01387008186429739, 0.01387008186429739, 0.05548032745718956, 0.01387008186429739, 0.22386518120765686, 0.08577210456132889, 0.06518679857254028, 0.036882005631923676, 0.06261363625526428, 0.06089819222688675, 0.11493461579084396, 0.06861767917871475, 0.023158468306064606, 0.03002023510634899, 0.024016188457608223, 0.10635741055011749, 0.02230074629187584, 0.03516656160354614, 0.017154419794678688, 0.008577209897339344, 0.006861768197268248, 0.002573163015767932, 0.001715442049317062, 0.002573163015767932, 0.9220130443572998, 0.04501963406801224, 0.129913792014122, 0.054023560136556625, 0.05916865915060043, 0.06817258894443512, 0.06817258894443512, 0.046305906027555466, 0.05530983582139015, 0.06045493483543396, 0.04116080701351166, 0.038588255643844604, 0.027011780068278313, 0.046305906027555466, 0.021866679191589355, 0.20709030330181122, 0.007717651315033436, 0.005145100876688957, 0.010290201753377914, 0.007717651315033436, 0.0025725504383444786, 0.06882679462432861, 0.11471132189035416, 0.780036985874176, 0.004480541218072176, 0.4514145255088806, 0.03584432974457741, 0.030243653804063797, 0.010081217624247074, 0.011201353743672371, 0.23522841930389404, 0.002240270609036088, 0.03136378899216652, 0.004480541218072176, 0.04256514087319374, 0.022402707487344742, 0.001120135304518044, 0.05712690204381943, 0.002240270609036088, 0.010081217624247074, 0.001120135304518044, 0.001120135304518044, 0.001120135304518044, 0.04368527978658676, 0.9484896063804626, 0.008587662130594254, 0.072995126247406, 0.022900432348251343, 0.01431277021765709, 0.04293831065297127, 0.02719426341354847, 0.5853922963142395, 0.022900432348251343, 0.06583874672651291, 0.011450216174125671, 0.017175324261188507, 0.031488094478845596, 0.03721320256590843, 0.015744047239422798, 0.010018939152359962, 0.002862554043531418, 0.002862554043531418, 0.001431277021765709, 0.004293831065297127, 0.07558143883943558, 0.06298453360795975, 0.01259690709412098, 0.8187989592552185, 0.10127583891153336, 0.05626435577869415, 0.007501914165914059, 0.6939270496368408, 0.0037509570829570293, 0.0037509570829570293, 0.0225057415664196, 0.0037509570829570293, 0.03750956803560257, 0.05626435577869415, 0.0037509570829570293, 0.0037509570829570293, 0.05820680409669876, 0.9022054672241211, 0.34939318895339966, 0.021453967317938805, 0.10420498996973038, 0.009194557555019855, 0.012259410694241524, 0.01838911511003971, 0.003064852673560381, 0.003064852673560381, 0.003064852673560381, 0.024518821388483047, 0.015324262902140617, 0.006129705347120762, 0.4106902480125427, 0.003064852673560381, 0.003064852673560381, 0.006129705347120762, 0.006129705347120762, 0.003064852673560381, 0.05936603620648384, 0.023746414110064507, 0.011873207055032253, 0.8667441010475159, 0.18622691929340363, 0.0036515083629637957, 0.04564385488629341, 0.20813597738742828, 0.15336334705352783, 0.05659838020801544, 0.0018257541814818978, 0.020083295181393623, 0.0018257541814818978, 0.08946195244789124, 0.009128770790994167, 0.0018257541814818978, 0.01095452532172203, 0.03468932956457138, 0.005477262660861015, 0.009128770790994167, 0.10041648149490356, 0.05842413380742073, 0.0036515083629637957, 0.04984937235713005, 0.0011868898291140795, 0.005934448912739754, 0.07596094906330109, 0.12581032514572144, 0.0035606694873422384, 0.0011868898291140795, 0.0011868898291140795, 0.0011868898291140795, 0.0035606694873422384, 0.0011868898291140795, 0.004747559316456318, 0.0011868898291140795, 0.002373779658228159, 0.004747559316456318, 0.0011868898291140795, 0.7109469771385193, 0.002373779658228159, 0.0011868898291140795, 0.0011868898291140795, 0.859925389289856, 0.017915112897753716, 0.017915112897753716, 0.03583022579550743, 0.017915112897753716, 0.017915112897753716, 0.06974288821220398, 0.8369147181510925, 0.05873280018568039, 0.05132172256708145, 0.18972362577915192, 0.045578137040138245, 0.07429606467485428, 0.0918973833322525, 0.07392551004886627, 0.058547522872686386, 0.05558309331536293, 0.046133965253829956, 0.03816705569624901, 0.0539156012237072, 0.1135747879743576, 0.016304373741149902, 0.005187755450606346, 0.009263848885893822, 0.004817201290279627, 0.004817201290279627, 0.007225802168250084, 0.0012969388626515865, 0.044997718185186386, 0.044997718185186386, 0.8549566864967346, 0.8999999761581421, 0.05999999865889549, 0.24678853154182434, 0.053883958607912064, 0.06142771616578102, 0.07651522010564804, 0.07651522010564804, 0.0420294888317585, 0.06789378821849823, 0.03933529183268547, 0.09429693222045898, 0.023708943277597427, 0.013470989651978016, 0.041490647941827774, 0.029097339138388634, 0.08729201555252075, 0.014548669569194317, 0.00862143374979496, 0.010776791721582413, 0.00323303765617311, 0.00808259379118681, 0.00107767921872437, 0.0681714117527008, 0.8862283825874329, 0.8849323987960815, 0.9229831695556641, 0.023377450183033943, 0.023377450183033943, 0.9117205739021301, 0.8609306812286377, 0.0025853775441646576, 0.007756132632493973, 0.018097642809152603, 0.036195285618305206, 0.015512265264987946, 0.012926887720823288, 0.02068302035331726, 0.018097642809152603, 0.005170755088329315, 0.8798539042472839, 0.0013834181008860469, 0.012450763024389744, 0.0055336724035441875, 0.019367853179574013, 0.0013834181008860469, 0.0027668362017720938, 0.04841963201761246, 0.0027668362017720938, 0.0027668362017720938, 0.0013834181008860469, 0.0013834181008860469, 0.0027668362017720938, 0.015217598527669907, 0.24254991114139557, 0.12127495557069778, 0.06063747778534889, 0.42446234822273254, 0.05189976468682289, 0.8822960257530212, 0.032404087483882904, 0.016202043741941452, 0.032404087483882904, 0.8263041973114014, 0.06480817496776581, 0.9485077261924744, 0.08210093528032303, 0.8757433295249939, 0.038819391280412674, 0.0014930535107851028, 0.11048595607280731, 0.2403816133737564, 0.4180549681186676, 0.022395802661776543, 0.007465267553925514, 0.008958321064710617, 0.034340228885412216, 0.0044791605323553085, 0.0044791605323553085, 0.023888856172561646, 0.007465267553925514, 0.0014930535107851028, 0.011944428086280823, 0.04628465697169304, 0.0014930535107851028, 0.011944428086280823, 0.98319411277771, 0.8445676565170288, 0.060326263308525085, 0.18886826932430267, 0.08394145220518112, 0.01049268152564764, 0.16788290441036224, 0.02098536305129528, 0.2833023965358734, 0.052463408559560776, 0.04197072610259056, 0.02098536305129528, 0.11541949957609177, 0.005594789516180754, 0.33382245898246765, 0.03916352614760399, 0.018649298697710037, 0.04475831612944603, 0.07832705229520798, 0.022379158064723015, 0.013054508715867996, 0.0951114222407341, 0.026109017431735992, 0.00745971966534853, 0.024244088679552078, 0.19208776950836182, 0.05035310611128807, 0.018649298697710037, 0.003729859832674265, 0.003729859832674265, 0.0205142293125391, 0.014502382837235928, 0.37640276551246643, 0.028345566242933273, 0.10876787453889847, 0.00856958981603384, 0.0309823639690876, 0.08174070715904236, 0.005273594055324793, 0.013183984905481339, 0.005932793021202087, 0.06921591609716415, 0.046143945306539536, 0.009887988679111004, 0.17007340490818024, 0.0026367970276623964, 0.005273594055324793, 0.0013183985138311982, 0.0013183985138311982, 0.01713917963206768, 0.004614394623786211, 0.0005903045530430973, 0.004722436424344778, 0.003345058998093009, 0.0009838409023359418, 0.00019676817464642227, 0.9901374578475952, 0.9147736430168152, 0.9438511729240417, 0.07789529860019684, 0.04299820587038994, 0.12338615208864212, 0.06356256455183029, 0.08848906308412552, 0.21997632086277008, 0.031781282275915146, 0.030534956604242325, 0.08911222219467163, 0.040505554527044296, 0.01869487203657627, 0.030534956604242325, 0.0872427374124527, 0.01807170920073986, 0.008724273182451725, 0.011216922663152218, 0.005608461331576109, 0.0062316241674125195, 0.0062316241674125195, 0.0006231623701751232, 0.9025289416313171, 0.030363382771611214, 0.020242255181074142, 0.040484510362148285, 0.010121127590537071, 0.0910901427268982, 0.010121127590537071, 0.7692056894302368, 0.010121127590537071, 0.010121127590537071, 0.08059164881706238, 0.90665602684021, 0.016001496464014053, 0.04800448939204216, 0.02800261788070202, 0.14401346445083618, 0.004000374116003513, 0.016001496464014053, 0.040003739297389984, 0.004000374116003513, 0.07200673222541809, 0.008000748232007027, 0.016001496464014053, 0.5800542235374451, 0.008000748232007027, 0.008000748232007027, 0.004000374116003513, 0.008000748232007027, 0.9307553768157959, 0.9700471758842468, 0.7614039182662964, 0.16315798461437225, 0.9594869613647461, 0.006191549822688103, 0.0030957749113440514, 0.04024507477879524, 0.05262817442417145, 0.3900676369667053, 0.0030957749113440514, 0.04953239858150482, 0.02476619929075241, 0.0030957749113440514, 0.0030957749113440514, 0.0030957749113440514, 0.3993549644947052, 0.0030957749113440514, 0.006191549822688103, 0.015478874556720257, 0.9683313369750977, 0.010965284891426563, 0.0986875668168068, 0.016447927802801132, 0.021930569782853127, 0.060309067368507385, 0.05482642352581024, 0.0877222791314125, 0.060309067368507385, 0.021930569782853127, 0.5482642650604248, 0.005482642445713282, 0.955238938331604, 0.11398912221193314, 0.0621451810002327, 0.16397546231746674, 0.030228225514292717, 0.0650160163640976, 0.14404848217964172, 0.10959842801094055, 0.037320882081985474, 0.0842675119638443, 0.03326793760061264, 0.016380658373236656, 0.05218168720602989, 0.038165245205163956, 0.008950256742537022, 0.013509822078049183, 0.01384756714105606, 0.0015198549954220653, 0.00557280145585537, 0.004897310398519039, 0.0015198549954220653, 0.9481194019317627, 0.13632166385650635, 0.8179299831390381, 0.5067976713180542, 0.005715762730687857, 0.013336780481040478, 0.05715762823820114, 0.09526271373033524, 0.019052542746067047, 0.026673560962080956, 0.12003102153539658, 0.003810508642345667, 0.02476830594241619, 0.003810508642345667, 0.019052542746067047, 0.04572610184550285, 0.0019052543211728334, 0.015242034569382668, 0.011431525461375713, 0.007621017284691334, 0.017147289589047432, 0.0019052543211728334, 0.04114871472120285, 0.9258460998535156, 0.13587619364261627, 0.7337314486503601, 0.009058413095772266, 0.009058413095772266, 0.027175238355994225, 0.06340888887643814, 0.009058413095772266, 0.7429370880126953, 0.0014918415108695626, 0.05967365950345993, 0.0059673660434782505, 0.025361305102705956, 0.0059673660434782505, 0.00895104929804802, 0.05818181857466698, 0.013426573015749454, 0.0029836830217391253, 0.013426573015749454, 0.0014918415108695626, 0.038787879049777985, 0.00895104929804802, 0.00447552464902401, 0.00895104929804802, 0.5232241153717041, 0.018365900963544846, 0.05754648894071579, 0.03060983493924141, 0.0722392126917839, 0.04407816380262375, 0.019998425617814064, 0.06856603175401688, 0.005713835824280977, 0.04081311449408531, 0.012652065604925156, 0.016325244680047035, 0.03673180192708969, 0.002448786748573184, 0.028161048889160156, 0.0077544916421175, 0.0016325245378538966, 0.009387016296386719, 0.0028569179121404886, 0.9119582772254944, 0.03908392786979675, 0.019541963934898376, 0.006513987667858601, 0.013027975335717201, 0.006513987667858601, 0.9692547917366028, 0.11755824089050293, 0.020745571702718735, 0.013830380514264107, 0.062236715108156204, 0.11755824089050293, 0.013830380514264107, 0.03457595407962799, 0.46331775188446045, 0.12447343021631241, 0.020745571702718735, 0.09140749275684357, 0.8683711886405945, 0.9228729605674744, 0.0051546706818044186, 0.6580796241760254, 0.0017182235606014729, 0.0017182235606014729, 0.08934762328863144, 0.0017182235606014729, 0.015464011579751968, 0.030928023159503937, 0.0017182235606014729, 0.0034364471212029457, 0.024055128917098045, 0.01890045776963234, 0.0017182235606014729, 0.0017182235606014729, 0.006872894242405891, 0.017182234674692154, 0.11855742335319519, 0.9098822474479675, 0.027160663157701492, 0.04074099659919739, 0.013580331578850746, 0.921562910079956, 0.01053214818239212, 0.04739466682076454, 0.00526607409119606, 0.05846013128757477, 0.17935341596603394, 0.044838353991508484, 0.1589207500219345, 0.022702964022755623, 0.05959527939558029, 0.3507607877254486, 0.021000241860747337, 0.011919056065380573, 0.010216333903372288, 0.04427077993750572, 0.013054204173386097, 0.005675741005688906, 0.00794603768736124, 0.005108166951686144, 0.002270296448841691, 0.0011351482244208455, 0.002270296448841691, 0.0011351482244208455, 0.0005675741122104228, 0.0809590220451355, 0.0349235013127327, 0.16985520720481873, 0.05079782009124756, 0.047622956335544586, 0.1254071146249771, 0.03809836506843567, 0.01269945502281189, 0.08889618515968323, 0.23811477422714233, 0.009524591267108917, 0.047622956335544586, 0.023811478167772293, 0.01269945502281189, 0.0015874318778514862, 0.006349727511405945, 0.0031748637557029724, 0.0015874318778514862, 0.0031748637557029724, 0.0015874318778514862, 0.02886970527470112, 0.9238305687904358, 0.8842079639434814, 0.946662962436676, 0.03529589995741844, 0.09412239491939545, 0.01176529936492443, 0.01176529936492443, 0.04706119745969772, 0.09412239491939545, 0.03529589995741844, 0.0588264986872673, 0.5882649421691895, 0.9168038964271545, 0.02182866260409355, 0.02182866260409355, 0.12696290016174316, 0.006510918494313955, 0.10743015259504318, 0.06510918587446213, 0.07487556338310242, 0.022788213565945625, 0.00976637750864029, 0.01302183698862791, 0.058598265051841736, 0.00976637750864029, 0.01302183698862791, 0.3808887302875519, 0.0032554592471569777, 0.006510918494313955, 0.00976637750864029, 0.07487556338310242, 0.006510918494313955, 0.006510918494313955, 0.035098329186439514, 0.04826020449399948, 0.07019665837287903, 0.017549164593219757, 0.013161873444914818, 0.0394856221973896, 0.07019665837287903, 0.07458394765853882, 0.13600602746009827, 0.004387291148304939, 0.004387291148304939, 0.004387291148304939, 0.4124053716659546, 0.04387291148304939, 0.008774582296609879, 0.004387291148304939, 0.004387291148304939, 0.7310530543327332, 0.8929448127746582, 0.905730128288269, 0.036500364542007446, 0.01784462295472622, 0.06732289493083954, 0.014600145630538464, 0.06894513219594955, 0.02433357760310173, 0.09652318805456161, 0.0064889537170529366, 0.016222383826971054, 0.04623379558324814, 0.0316336490213871, 0.02514469623565674, 0.06813401728868484, 0.3455367982387543, 0.07948968559503555, 0.02514469623565674, 0.020277980715036392, 0.008111191913485527, 0.0016222384292632341, 0.0008111192146316171, 0.9392526745796204, 0.05864644795656204, 0.046917155385017395, 0.10947336256504059, 0.05864644795656204, 0.523908257484436, 0.043007392436265945, 0.00390976294875145, 0.011729288846254349, 0.050826918333768845, 0.039097629487514496, 0.00390976294875145, 0.00390976294875145, 0.0312781035900116, 0.00390976294875145, 0.967571496963501, 0.9130547642707825, 0.9635241031646729, 0.896883487701416, 0.6694989800453186, 0.006762616336345673, 0.006762616336345673, 0.2705046534538269, 0.006762616336345673, 0.013525232672691345, 0.006762616336345673, 0.006762616336345673, 0.9423811435699463, 0.008186020888388157, 0.008186020888388157, 0.9250203967094421, 0.04911612719297409, 0.9231560230255127, 0.05769725143909454, 0.012601438909769058, 0.11341294646263123, 0.05040575563907623, 0.025202877819538116, 0.793890655040741, 0.9255096316337585, 0.9310961961746216, 0.9005371332168579, 0.020626936107873917, 0.010313468053936958, 0.8353909254074097, 0.010313468053936958, 0.020626936107873917, 0.020626936107873917, 0.010313468053936958, 0.04125387221574783, 0.9131203889846802, 0.016894951462745667, 0.7771677374839783, 0.18584446609020233, 0.07263389229774475, 0.3359317481517792, 0.019974321126937866, 0.003631694708019495, 0.00726338941603899, 0.005447541829198599, 0.04539618268609047, 0.050843726843595505, 0.0018158473540097475, 0.4376192092895508, 0.003631694708019495, 0.0018158473540097475, 0.0018158473540097475, 0.0018158473540097475, 0.0018158473540097475, 0.003631694708019495, 0.0018158473540097475, 0.9518857002258301, 0.9060312509536743, 0.028963927179574966, 0.08376054465770721, 0.18082883954048157, 0.03835763409733772, 0.009393705986440182, 0.07514964789152145, 0.16282424330711365, 0.0015656177420169115, 0.26458939909935, 0.01722179539501667, 0.02348426543176174, 0.04148887097835541, 0.007828088477253914, 0.02348426543176174, 0.0015656177420169115, 0.005479662213474512, 0.0007828088710084558, 0.0015656177420169115, 0.03052954562008381, 0.0007828088710084558, 0.8700600266456604, 0.004603492096066475, 0.05984539911150932, 0.00920698419213295, 0.0184139683842659, 0.004603492096066475, 0.00920698419213295, 0.0184139683842659, 0.051021281629800797, 0.8061362504959106, 0.010204256512224674, 0.051021281629800797, 0.02040851302444935, 0.010204256512224674, 0.010204256512224674, 0.010204256512224674, 0.02040851302444935, 0.12346337735652924, 0.08623442053794861, 0.1352398842573166, 0.08167576789855957, 0.09003329277038574, 0.06686016917228699, 0.15081526339054108, 0.021273689344525337, 0.02963121049106121, 0.03532952070236206, 0.03305019438266754, 0.03532952070236206, 0.03153064474463463, 0.025452449917793274, 0.018614478409290314, 0.013296055607497692, 0.009117295034229755, 0.0018994364654645324, 0.007977633737027645, 0.003039098344743252, 0.19056671857833862, 0.1535634696483612, 0.16133415699005127, 0.062165454030036926, 0.08473743498325348, 0.05772506445646286, 0.044773928821086884, 0.06549574434757233, 0.03256285563111305, 0.02738240174949169, 0.01887165568768978, 0.02220194786787033, 0.03404298797249794, 0.006660584360361099, 0.010730941779911518, 0.012951136566698551, 0.004440389573574066, 0.006290551740676165, 0.0018501622835174203, 0.0011100973933935165, 0.9262496829032898, 0.9818315505981445, 0.08629108220338821, 0.862910807132721, 0.023790936917066574, 0.03568640351295471, 0.9278464913368225, 0.9479013681411743, 0.9134502410888672, 0.8119610548019409, 0.039669737219810486, 0.013223245739936829, 0.013223245739936829, 0.8595109581947327, 0.052892982959747314, 0.013223245739936829, 0.0029648959171026945, 0.0011859582737088203, 0.15773245692253113, 0.00889468751847744, 0.05870493873953819, 0.20754270255565643, 0.0029648959171026945, 0.0029648959171026945, 0.4963235557079315, 0.0053368122316896915, 0.01778937503695488, 0.008301707915961742, 0.0035578750539571047, 0.004743833094835281, 0.0035578750539571047, 0.0035578750539571047, 0.0011859582737088203, 0.0023719165474176407, 0.010673624463379383, 0.0005929791368544102, 0.7777414917945862, 0.0055698491632938385, 0.3750365078449249, 0.01856616511940956, 0.0037132329307496548, 0.011139698326587677, 0.00928308255970478, 0.4579653739929199, 0.0018566164653748274, 0.049509771168231964, 0.0049509769305586815, 0.023517141118645668, 0.004332105163484812, 0.0068075936287641525, 0.015471803955733776, 0.0024754884652793407, 0.0018566164653748274, 0.0006188721163198352, 0.0061887213960289955, 0.9478285312652588, 0.5963775515556335, 0.010282371193170547, 0.010282371193170547, 0.010282371193170547, 0.010282371193170547, 0.33931824564933777, 0.09918992221355438, 0.11967986077070236, 0.09080767631530762, 0.1587970107793808, 0.06845501810312271, 0.05681300908327103, 0.03678875043988228, 0.04097987338900566, 0.049827802926301956, 0.08475383371114731, 0.03306330740451813, 0.04843076318502426, 0.056347329169511795, 0.007916566915810108, 0.009313607588410378, 0.02048993669450283, 0.002794082509353757, 0.005122484173625708, 0.009313607588410378, 0.00046568040852434933, 0.9573047161102295, 0.036291468888521194, 0.036291468888521194, 0.8588981032371521, 0.01209715660661459, 0.02419431321322918, 0.940865695476532, 0.012195480056107044, 0.030488701537251472, 0.2378118634223938, 0.006097740028053522, 0.012195480056107044, 0.012195480056107044, 0.6768491864204407, 0.006097740028053522, 0.006097740028053522, 0.8695261478424072, 0.10714820772409439, 0.03896298632025719, 0.03246915340423584, 0.2565063238143921, 0.14286427199840546, 0.025975322350859642, 0.38313600420951843, 0.0032469152938574553, 0.9583286643028259, 0.017075592651963234, 0.1024535596370697, 0.05122677981853485, 0.017075592651963234, 0.017075592651963234, 0.03415118530392647, 0.2902850806713104, 0.008537796325981617, 0.11952915787696838, 0.025613389909267426, 0.008537796325981617, 0.2817472815513611, 0.03367697075009346, 0.9092782139778137, 0.9049155712127686, 0.9571939706802368, 0.01679287664592266, 0.029460972175002098, 0.7807157635688782, 0.1767658293247223, 0.05005640536546707, 0.9010153412818909, 0.9382519721984863, 0.03026619181036949, 0.8746939897537231, 0.062478143721818924, 0.041652094572782516, 0.9103085398674011, 0.012402208521962166, 0.012402208521962166, 0.9549700617790222, 0.1503525823354721, 0.8161997199058533, 0.02345600724220276, 0.0586400143802166, 0.03518401086330414, 0.01172800362110138, 0.02345600724220276, 0.01172800362110138, 0.18764805793762207, 0.01172800362110138, 0.5746721625328064, 0.03518401086330414, 0.01172800362110138, 0.01172800362110138, 0.8952167630195618, 0.05362274870276451, 0.8847753405570984, 0.026811374351382256, 0.3419070541858673, 0.005565928760915995, 0.019083185121417046, 0.0978013202548027, 0.21866148710250854, 0.01749291829764843, 0.010336725041270256, 0.005565928760915995, 0.0015902654267847538, 0.15107521414756775, 0.005565928760915995, 0.013517255894839764, 0.05247875675559044, 0.007951326668262482, 0.01113185752183199, 0.011926990002393723, 0.024649113416671753, 0.0015902654267847538, 0.0031805308535695076, 0.0007951327133923769, 0.8369565606117249, 0.043888017535209656, 0.10779512673616409, 0.00769965210929513, 0.44965967535972595, 0.00538975652307272, 0.006929686758667231, 0.25793832540512085, 0.0015399303520098329, 0.05235763266682625, 0.0030798607040196657, 0.024638885632157326, 0.03233853727579117, 0.0015399303520098329, 0.0007699651760049164, 0.0007699651760049164, 0.0007699651760049164, 0.0007699651760049164, 0.00230989558622241, 0.0015399303520098329, 0.5669575333595276, 0.0017941694241017103, 0.0556192509829998, 0.008970847353339195, 0.05203091353178024, 0.007176677696406841, 0.005382508505135775, 0.01973586343228817, 0.0017941694241017103, 0.03588338941335678, 0.0035883388482034206, 0.008970847353339195, 0.028706710785627365, 0.0017941694241017103, 0.1668577641248703, 0.023324202746152878, 0.007176677696406841, 0.007176677696406841, 0.8424573540687561, 0.022976109758019447, 0.038293518126010895, 0.0038293516263365746, 0.011488054879009724, 0.015317406505346298, 0.0038293516263365746, 0.011488054879009724, 0.022976109758019447, 0.0038293516263365746, 0.011488054879009724, 0.0038293516263365746, 0.0038293516263365746, 0.06741515547037125, 0.05730288475751877, 0.0016853789566084743, 0.0876397043466568, 0.0033707579132169485, 0.0016853789566084743, 0.006741515826433897, 0.010112273506820202, 0.0016853789566084743, 0.010112273506820202, 0.0033707579132169485, 0.0016853789566084743, 0.7381959557533264, 0.0016853789566084743, 0.0033707579132169485, 0.005056136753410101, 0.0016853789566084743, 0.007106998469680548, 0.9381238222122192, 0.035534992814064026, 0.007106998469680548, 0.9116979837417603, 0.023376870900392532, 0.023376870900392532, 0.003675661515444517, 0.022053968161344528, 0.003675661515444517, 0.003675661515444517, 0.16908042132854462, 0.6836730241775513, 0.058810584247112274, 0.018378308042883873, 0.014702646061778069, 0.014702646061778069, 0.003675661515444517, 0.9475023746490479, 0.9520676732063293, 0.20352165400981903, 0.014687130227684975, 0.012588968500494957, 0.48887160420417786, 0.11539887636899948, 0.008392645977437496, 0.002098161494359374, 0.01888345181941986, 0.002098161494359374, 0.09231910109519958, 0.004196322988718748, 0.002098161494359374, 0.012588968500494957, 0.01049080677330494, 0.002098161494359374, 0.002098161494359374, 0.004196322988718748, 0.004196322988718748, 0.01882879063487053, 0.014121593907475471, 0.08472955971956253, 0.7154940962791443, 0.004707197658717632, 0.004707197658717632, 0.08002236485481262, 0.004707197658717632, 0.004707197658717632, 0.004707197658717632, 0.009414395317435265, 0.03765758126974106, 0.004707197658717632, 0.004707197658717632, 0.29582497477531433, 0.02092420496046543, 0.051228225231170654, 0.08730444312095642, 0.20274832844734192, 0.050506699830293655, 0.02381030097603798, 0.06926633417606354, 0.010101339779794216, 0.050506699830293655, 0.007215242832899094, 0.016595058143138885, 0.050506699830293655, 0.008658291772007942, 0.026696398854255676, 0.012987437658011913, 0.007215242832899094, 0.005772194359451532, 0.002886097179725766, 0.0007215242949314415, 0.8935467004776001, 0.045576829463243484, 0.9115365743637085, 0.14890111982822418, 0.03190738335251808, 0.010635794140398502, 0.7551414370536804, 0.010635794140398502, 0.021271588280797005, 0.9358060359954834, 0.7784539461135864, 0.19566988945007324, 0.011288647539913654, 0.003762882435694337, 0.7412878274917603, 0.018814411014318466, 0.007525764871388674, 0.003762882435694337, 0.007525764871388674, 0.928533673286438, 0.03095112182199955, 0.04176637902855873, 0.08711273968219757, 0.0942726880311966, 0.03818640485405922, 0.1622922271490097, 0.1276857852935791, 0.027446478605270386, 0.06205290928483009, 0.05369963124394417, 0.027446478605270386, 0.0656328871846199, 0.026253152638673782, 0.033413104712963104, 0.016706552356481552, 0.014319902285933495, 0.031026454642415047, 0.08233943581581116, 0.0035799755714833736, 0.0035799755714833736, 0.0011933251516893506, 0.8424555659294128, 0.019023722037672997, 0.012682481668889523, 0.05707116797566414, 0.6975364685058594, 0.2092609405517578, 0.8927589654922485, 0.05410660430788994, 0.04605862870812416, 0.24608466029167175, 0.017107490450143814, 0.0973811000585556, 0.021055372431874275, 0.028951136395335197, 0.35794132947921753, 0.007895764894783497, 0.07369380444288254, 0.0026319215539842844, 0.006579803768545389, 0.04737458750605583, 0.006579803768545389, 0.017107490450143814, 0.0026319215539842844, 0.007895764894783497, 0.0013159607769921422, 0.003947882447391748, 0.007895764894783497, 0.7941465377807617, 0.030174553394317627, 0.030174553394317627, 0.9052366018295288, 0.0020534854847937822, 0.276193767786026, 0.008213941939175129, 0.0020534854847937822, 0.005133713595569134, 0.054417360574007034, 0.5760026574134827, 0.0010267427423968911, 0.008213941939175129, 0.010267427191138268, 0.01129416935145855, 0.015401139855384827, 0.0041069709695875645, 0.019508110359311104, 0.0020534854847937822, 0.0010267427423968911, 0.0010267427423968911, 0.0010267427423968911, 0.0020534854847937822, 0.2582709789276123, 0.05337600037455559, 0.07375071197748184, 0.042758192867040634, 0.07489858567714691, 0.15381471812725067, 0.041323356330394745, 0.06887225806713104, 0.04361909627914429, 0.0341491624712944, 0.02467922680079937, 0.021235613152384758, 0.04821057990193367, 0.00860903225839138, 0.02094864472746849, 0.008035097271203995, 0.01492232270538807, 0.0037305806763470173, 0.003443612949922681, 0.0017218064749613404, 0.9079996347427368, 0.043228067457675934, 0.8861753940582275, 0.021614033728837967, 0.021614033728837967, 0.7969784736633301, 0.9657167792320251, 0.04983148351311684, 0.7873374223709106, 0.019932594150304794, 0.06478092819452286, 0.004983148537576199, 0.009966297075152397, 0.009966297075152397, 0.004983148537576199, 0.019932594150304794, 0.014949444681406021, 0.004983148537576199, 0.9322459101676941, 0.9491156935691833, 0.9659451842308044, 0.9246951937675476, 0.006804132368415594, 0.15649503469467163, 0.08845371752977371, 0.14288677275180817, 0.013608264736831188, 0.013608264736831188, 0.05443305894732475, 0.2517528831958771, 0.013608264736831188, 0.061237189918756485, 0.04762892425060272, 0.013608264736831188, 0.006804132368415594, 0.006804132368415594, 0.006804132368415594, 0.1088661178946495, 0.006035058293491602, 0.018105175346136093, 0.012070116586983204, 0.024140233173966408, 0.006035058293491602, 0.8147328495979309, 0.030175291001796722, 0.012070116586983204, 0.060350582003593445, 0.006035058293491602, 0.8881149291992188, 0.008254737593233585, 0.32043391466140747, 0.07054048776626587, 0.04802756384015083, 0.02326335199177265, 0.02926679700613022, 0.32943907380104065, 0.004502584226429462, 0.04952842369675636, 0.014258182607591152, 0.0360206738114357, 0.022512920200824738, 0.009005168452858925, 0.022512920200824738, 0.0007504306850023568, 0.0015008613700047135, 0.0007504306850023568, 0.0015008613700047135, 0.006753876339644194, 0.0007504306850023568, 0.03835529834032059, 0.11506589502096176, 0.8438165783882141, 0.9368249177932739, 0.7573713064193726, 0.12595199048519135, 0.028625451028347015, 0.08969307690858841, 0.03625890240073204, 0.05152581259608269, 0.005725089926272631, 0.01908363401889801, 0.0076334537006914616, 0.4026646614074707, 0.10305162519216537, 0.0076334537006914616, 0.03816726803779602, 0.024808723479509354, 0.030533814802765846, 0.005725089926272631, 0.0038167268503457308, 0.009541817009449005, 0.005725089926272631, 0.0038167268503457308, 0.0019083634251728654, 0.014527113176882267, 0.9587894678115845, 0.004327219910919666, 0.021636098623275757, 0.004327219910919666, 0.1557799130678177, 0.021636098623275757, 0.025963319465517998, 0.004327219910919666, 0.012981659732758999, 0.004327219910919666, 0.012981659732758999, 0.021636098623275757, 0.008654439821839333, 0.0995260551571846, 0.5841746926307678, 0.004327219910919666, 0.008654439821839333, 0.004327219910919666, 0.004327219910919666, 0.9391884803771973, 0.07486729323863983, 0.027224471792578697, 0.03403059020638466, 0.8167341351509094, 0.006806117948144674, 0.020418353378772736, 0.013612235896289349, 0.039348676800727844, 0.9181357622146606, 0.013116225600242615, 0.02623245120048523, 0.03319497033953667, 0.11064990609884262, 0.08759783953428268, 0.12355906516313553, 0.13185781240463257, 0.009220825508236885, 0.0995849147439003, 0.006454578135162592, 0.043337881565093994, 0.2259102314710617, 0.03964954987168312, 0.02397414669394493, 0.011987073346972466, 0.02674039453268051, 0.0018441651482135057, 0.008298742584884167, 0.0018441651482135057, 0.0036883302964270115, 0.007376660592854023, 0.0036883302964270115, 0.8164975643157959, 0.0029370414558798075, 0.0029370414558798075, 0.01174816582351923, 0.044055622071027756, 0.11160758137702942, 0.0029370414558798075, 0.0029370414558798075, 0.0029370414558798075, 0.048704687505960464, 0.04058723896741867, 0.04058723896741867, 0.01623489521443844, 0.8279796838760376, 0.00811744760721922, 0.00811744760721922, 0.01917177625000477, 0.01917177625000477, 0.9585888385772705, 0.008870271034538746, 0.013305406086146832, 0.05765676125884056, 0.008870271034538746, 0.07096216827630997, 0.124183788895607, 0.004435135517269373, 0.04878649115562439, 0.013305406086146832, 0.004435135517269373, 0.03104594722390175, 0.008870271034538746, 0.6031784415245056, 0.016241952776908875, 0.09203772991895676, 0.23821529746055603, 0.05955382436513901, 0.12452162802219391, 0.005413983948528767, 0.10827968269586563, 0.010827967897057533, 0.010827967897057533, 0.005413983948528767, 0.005413983948528767, 0.3194250464439392, 0.9028820991516113, 0.9789804220199585, 0.011704468168318272, 0.3722020983695984, 0.024579383432865143, 0.03160206228494644, 0.022238489240407944, 0.03043161705136299, 0.06203368306159973, 0.002340893726795912, 0.03628385066986084, 0.010534021072089672, 0.021068042144179344, 0.03979519009590149, 0.018727149814367294, 0.2539869546890259, 0.03745429962873459, 0.005852234084159136, 0.003511340357363224, 0.004681787453591824, 0.010534021072089672, 0.9279590249061584, 0.03309376910328865, 0.059982456266880035, 0.07342679798603058, 0.14581942558288574, 0.03102540783584118, 0.15305867791175842, 0.08893950283527374, 0.02275196649134159, 0.09307622164487839, 0.00517090130597353, 0.18408408761024475, 0.029991228133440018, 0.009307622909545898, 0.025854507461190224, 0.013444343581795692, 0.014478524215519428, 0.0010341802844777703, 0.0020683605689555407, 0.012410162948071957, 0.0020683605689555407, 0.9578084349632263, 0.881358802318573, 0.022033968940377235, 0.06610190868377686, 0.15884768962860107, 0.0011427891440689564, 0.046854354441165924, 0.2788405418395996, 0.3188381791114807, 0.022855782881379128, 0.010285102762281895, 0.01485625933855772, 0.0011427891440689564, 0.0514255128800869, 0.007999524474143982, 0.02971251867711544, 0.03085530735552311, 0.006856734864413738, 0.0045711565762758255, 0.0045711565762758255, 0.0022855782881379128, 0.0045711565762758255, 0.0022855782881379128, 0.09239979088306427, 0.0071076760068535805, 0.04975373297929764, 0.7202445268630981, 0.011846126988530159, 0.014215352013707161, 0.0023692252580076456, 0.004738450516015291, 0.0023692252580076456, 0.04264605790376663, 0.004738450516015291, 0.004738450516015291, 0.0023692252580076456, 0.0023692252580076456, 0.033169154077768326, 0.0023692252580076456, 0.004738450516015291, 0.005894175730645657, 0.10020098090171814, 0.08841263502836227, 0.05894175544381142, 0.11788351088762283, 0.005894175730645657, 0.005894175730645657, 0.023576702922582626, 0.017682526260614395, 0.5010049343109131, 0.04715340584516525, 0.005894175730645657, 0.011788351461291313, 0.005894175730645657, 0.42829498648643494, 0.5353687405586243, 0.9452165961265564, 0.02864292822778225, 0.06627899408340454, 0.03313949704170227, 0.03313949704170227, 0.03313949704170227, 0.7953479290008545, 0.052682459354400635, 0.004515639506280422, 0.027093837037682533, 0.32362082600593567, 0.0602085255086422, 0.004515639506280422, 0.003010426415130496, 0.016557345166802406, 0.001505213207565248, 0.409417986869812, 0.001505213207565248, 0.003010426415130496, 0.003010426415130496, 0.0301042627543211, 0.001505213207565248, 0.004515639506280422, 0.01505213137716055, 0.001505213207565248, 0.03763033077120781, 0.05181477218866348, 0.004505632445216179, 0.027033794671297073, 0.36946186423301697, 0.04505632445216179, 0.013516897335648537, 0.0022528162226080894, 0.004505632445216179, 0.0022528162226080894, 0.4190238118171692, 0.0022528162226080894, 0.018022529780864716, 0.0022528162226080894, 0.004505632445216179, 0.01576971262693405, 0.0022528162226080894, 0.013516897335648537, 0.9542757272720337, 0.9064366221427917, 0.02107992209494114, 0.06323976069688797, 0.047147031873464584, 0.047147031873464584, 0.09429406374692917, 0.7543525099754333, 0.9131080508232117, 0.040582578629255295, 0.020291289314627647, 0.9374369978904724, 0.1281367838382721, 0.016713494434952736, 0.005571164656430483, 0.7743918895721436, 0.016713494434952736, 0.005571164656430483, 0.03899815306067467, 0.09226146340370178, 0.011532682925462723, 0.8534185290336609, 0.023065365850925446, 0.011532682925462723, 0.023996341973543167, 0.06399025022983551, 0.007998781278729439, 0.8238744139671326, 0.007998781278729439, 0.015997562557458878, 0.007998781278729439, 0.007998781278729439, 0.007998781278729439, 0.007998781278729439, 0.007998781278729439, 0.0060861362144351006, 0.9676956534385681, 0.018258407711982727, 0.09036746621131897, 0.7229397296905518, 0.8904948234558105, 0.08095407485961914, 0.9253684878349304, 0.11639072000980377, 0.015181398019194603, 0.005060466006398201, 0.03542326018214226, 0.010120932012796402, 0.07084652036428452, 0.16193491220474243, 0.015181398019194603, 0.10120932012796402, 0.16193491220474243, 0.05060466006398201, 0.08602792024612427, 0.16699537634849548, 0.9570009708404541, 0.2571488618850708, 0.01659025065600872, 0.14931224286556244, 0.03318050131201744, 0.00829512532800436, 0.00829512532800436, 0.4977074861526489, 0.00829512532800436, 0.9120827317237854, 0.8921957612037659, 0.027541320770978928, 0.009180440567433834, 0.20808997750282288, 0.09486455470323563, 0.23257115483283997, 0.021421028301119804, 0.003060146700590849, 0.027541320770978928, 0.012240586802363396, 0.0673232302069664, 0.012240586802363396, 0.021421028301119804, 0.06120293587446213, 0.021421028301119804, 0.003060146700590849, 0.17136822640895844, 0.003060146700590849, 0.003060146700590849, 0.9665863513946533, 0.06432779878377914, 0.1438911408185959, 0.07448482513427734, 0.07956333458423615, 0.04570659622550011, 0.07448482513427734, 0.052477944642305374, 0.01692836917936802, 0.03724241256713867, 0.0016928368713706732, 0.11342006921768188, 0.025392552837729454, 0.05924929305911064, 0.16759085655212402, 0.011849857866764069, 0.00846418458968401, 0.0016928368713706732, 0.018621206283569336, 0.0016928368713706732, 0.0016928368713706732, 0.01693568378686905, 0.3137133717536926, 0.01935506798326969, 0.15080823004245758, 0.008064611814916134, 0.014516300521790981, 0.21451866626739502, 0.005645228084176779, 0.013709839433431625, 0.011290456168353558, 0.1798408329486847, 0.01290337834507227, 0.0024193834979087114, 0.016129223629832268, 0.00887107290327549, 0.0008064611465670168, 0.0016129222931340337, 0.008064611814916134, 0.3005954921245575, 0.02049514651298523, 0.034158580005168915, 0.12297088652849197, 0.006831715814769268, 0.006831715814769268, 0.006831715814769268, 0.07514887303113937, 0.006831715814769268, 0.006831715814769268, 0.3962395191192627, 0.19036269187927246, 0.021608738228678703, 0.13994230329990387, 0.05916678160429001, 0.07408709824085236, 0.12965242564678192, 0.01594930700957775, 0.03807253763079643, 0.028811650350689888, 0.03447107970714569, 0.041673995554447174, 0.03807253763079643, 0.05093488097190857, 0.04681893065571785, 0.041673995554447174, 0.02057974971830845, 0.012862343341112137, 0.007202912587672472, 0.005659431219100952, 0.001543481252156198, 0.9272522926330566, 0.9111165404319763, 0.01094222255051136, 0.008206666447222233, 0.03282666578888893, 0.13677777349948883, 0.00273555563762784, 0.09574444591999054, 0.01094222255051136, 0.00273555563762784, 0.5197555422782898, 0.01914888806641102, 0.016413332894444466, 0.13677777349948883, 0.9702746272087097, 0.9644905924797058, 0.9599334597587585, 0.9603940844535828, 0.01996377669274807, 0.7945582866668701, 0.015971021726727486, 0.003992755431681871, 0.03992755338549614, 0.015971021726727486, 0.007985510863363743, 0.011978265829384327, 0.03194204345345497, 0.007985510863363743, 0.003992755431681871, 0.023956531658768654, 0.003992755431681871, 0.003992755431681871, 0.003992755431681871, 0.02778238244354725, 0.9168186187744141, 0.017999501898884773, 0.890975296497345, 0.05399850383400917, 0.026999251917004585, 0.9236979484558105, 0.05386734753847122, 0.017955783754587173, 0.017955783754587173, 0.017955783754587173, 0.017955783754587173, 0.05386734753847122, 0.7720986604690552, 0.016559753566980362, 0.016559753566980362, 0.8942266702651978, 0.033119507133960724, 0.016559753566980362, 0.9453480839729309, 0.8817277550697327, 0.04640672355890274, 0.02320336177945137, 0.02320336177945137, 0.02320336177945137, 0.019121935591101646, 0.11473160982131958, 0.10278040170669556, 0.15297548472881317, 0.04063411056995392, 0.033463384956121445, 0.1266828179359436, 0.008365846239030361, 0.04063411056995392, 0.016731692478060722, 0.234243705868721, 0.027487780898809433, 0.01314633060246706, 0.028682902455329895, 0.002390241948887706, 0.02151217684149742, 0.002390241948887706, 0.001195120974443853, 0.007170725613832474, 0.005975604522973299, 0.3123178482055664, 0.049313344061374664, 0.06575112789869308, 0.0887640193104744, 0.11506446450948715, 0.049313344061374664, 0.03287556394934654, 0.003287556115537882, 0.01643778197467327, 0.01643778197467327, 0.003287556115537882, 0.013150224462151527, 0.019725337624549866, 0.009862668812274933, 0.003287556115537882, 0.18081559240818024, 0.013150224462151527, 0.003287556115537882, 0.003287556115537882, 0.003909765742719173, 0.007819531485438347, 0.007819531485438347, 0.9735316634178162, 0.9520702362060547, 0.8949036598205566, 0.027359092608094215, 0.11490819603204727, 0.043774548918008804, 0.5417100787162781, 0.03283091261982918, 0.07660546153783798, 0.13679546117782593, 0.010943637229502201, 0.853772759437561, 0.9377897381782532, 0.9447408318519592, 0.5149146318435669, 0.0035348832607269287, 0.10958138108253479, 0.0247441828250885, 0.06362789869308472, 0.02827906608581543, 0.004713177680969238, 0.010604649782180786, 0.002356588840484619, 0.1107596755027771, 0.022387593984603882, 0.004713177680969238, 0.0247441828250885, 0.0011782944202423096, 0.02356588840484619, 0.008248060941696167, 0.03299224376678467, 0.0035348832607269287, 0.0035348832607269287, 0.6879602670669556, 0.8134087324142456, 0.004648050293326378, 0.004648050293326378, 0.004648050293326378, 0.009296100586652756, 0.10225710272789001, 0.004648050293326378, 0.004648050293326378, 0.03718440234661102, 0.30059146881103516, 0.2605126202106476, 0.42082807421684265, 0.9406548738479614, 0.13352134823799133, 0.06676067411899567, 0.013352134265005589, 0.12016920745372772, 0.053408537060022354, 0.013352134265005589, 0.013352134265005589, 0.5207332372665405, 0.026704268530011177, 0.013352134265005589, 0.02373536117374897, 0.04747072234749794, 0.02373536117374897, 0.7357961535453796, 0.02373536117374897, 0.04747072234749794, 0.04747072234749794, 0.9265535473823547, 0.03761345148086548, 0.0034194046165794134, 0.013677618466317654, 0.03419404476881027, 0.006838809233158827, 0.010258213616907597, 0.0034194046165794134, 0.0034194046165794134, 0.1880672574043274, 0.06154928356409073, 0.054710473865270615, 0.5607823729515076, 0.006838809233158827, 0.010258213616907597, 0.0034194046165794134, 0.0034194046165794134, 0.0034194046165794134, 0.0038051377050578594, 0.8751816749572754, 0.006658990867435932, 0.011415412649512291, 0.0028538531623780727, 0.008561559952795506, 0.03139238432049751, 0.0009512844262644649, 0.01997697353363037, 0.0009512844262644649, 0.01712311990559101, 0.0028538531623780727, 0.0009512844262644649, 0.0057077063247561455, 0.004756422247737646, 0.0028538531623780727, 0.0019025688525289297, 0.0019025688525289297, 0.003736743237823248, 0.5542835593223572, 0.014946972951292992, 0.003736743237823248, 0.01245581079274416, 0.019929297268390656, 0.2939571440219879, 0.01245581079274416, 0.004982324317097664, 0.009964648634195328, 0.011210230179131031, 0.009964648634195328, 0.007473486475646496, 0.03363068774342537, 0.002491162158548832, 0.001245581079274416, 0.002491162158548832, 0.9516898989677429, 0.03774692118167877, 0.9059261679649353, 0.026606397703289986, 0.013303198851644993, 0.06651599705219269, 0.784888744354248, 0.05321279540657997, 0.026606397703289986, 0.013303198851644993, 0.9260290265083313, 0.8863468766212463, 0.029488055035471916, 0.09045659750699997, 0.09802785515785217, 0.09364449977874756, 0.03825477510690689, 0.0609685443341732, 0.17493589222431183, 0.009962180629372597, 0.15062817931175232, 0.016736462712287903, 0.04662300646305084, 0.05897611007094383, 0.054991237819194794, 0.03905174881219864, 0.0019924361258745193, 0.007172769866883755, 0.014744027517735958, 0.005578821059316397, 0.0031878978479653597, 0.004781846888363361, 0.0018260328797623515, 0.014608263038098812, 0.03286859393119812, 0.0894756093621254, 0.04747685417532921, 0.14243057370185852, 0.03469462692737579, 0.13330040872097015, 0.12417023628950119, 0.03834669291973114, 0.018260329961776733, 0.009130164980888367, 0.2666008174419403, 0.01643429696559906, 0.003652065759524703, 0.014608263038098812, 0.005478098522871733, 0.003652065759524703, 0.9214004874229431, 0.20635099709033966, 0.7738162279129028, 0.38636136054992676, 0.010442199185490608, 0.05221099779009819, 0.010442199185490608, 0.005221099592745304, 0.010442199185490608, 0.005221099592745304, 0.49600446224212646, 0.010442199185490608, 0.005221099592745304, 0.012050455436110497, 0.5723966360092163, 0.012050455436110497, 0.03615136817097664, 0.19280728697776794, 0.024100910872220993, 0.06025227904319763, 0.04217659682035446, 0.006025227718055248, 0.006025227718055248, 0.024100910872220993, 0.006025227718055248, 0.030201705172657967, 0.7399417757987976, 0.21141193807125092, 0.01209315937012434, 0.008062106557190418, 0.04837263748049736, 0.02015526592731476, 0.04031053185462952, 0.7497758865356445, 0.004031053278595209, 0.016124213114380836, 0.004031053278595209, 0.01209315937012434, 0.03224842622876167, 0.008062106557190418, 0.004031053278595209, 0.03224842622876167, 0.8993303775787354, 0.9204708933830261, 0.928264856338501, 0.9136949777603149, 0.9268131256103516, 0.033100470900535583, 0.9092414379119873, 0.6913213729858398, 0.9034799337387085, 0.008527715690433979, 0.012791573069989681, 0.04263857752084732, 0.017055431380867958, 0.2600953280925751, 0.0042638578452169895, 0.5329822301864624, 0.008527715690433979, 0.0042638578452169895, 0.025583146139979362, 0.008527715690433979, 0.008527715690433979, 0.051166292279958725, 0.008527715690433979, 0.01268188375979662, 0.8243224620819092, 0.02536376751959324, 0.01268188375979662, 0.10145507007837296, 0.10047966241836548, 0.020095931366086006, 0.8440291285514832, 0.005851572845131159, 0.111179880797863, 0.04681258276104927, 0.017554719001054764, 0.03510943800210953, 0.011703145690262318, 0.011703145690262318, 0.005851572845131159, 0.005851572845131159, 0.011703145690262318, 0.07607044279575348, 0.596860408782959, 0.005851572845131159, 0.011703145690262318, 0.029257863759994507, 0.0069376942701637745, 0.607481837272644, 0.07024415582418442, 0.007371300365775824, 0.027750777080655098, 0.0637400671839714, 0.012140965089201927, 0.011273752897977829, 0.07934987545013428, 0.0026016354095190763, 0.05810318887233734, 0.005203270819038153, 0.0056368764489889145, 0.004336059093475342, 0.007371300365775824, 0.0026016354095190763, 0.0017344235675409436, 0.0008672117837704718, 0.02081308327615261, 0.0039024529978632927, 0.004789017140865326, 0.5243973731994629, 0.03112861141562462, 0.011972542852163315, 0.007183525711297989, 0.059862714260816574, 0.10775288194417953, 0.0015963390469551086, 0.09178949147462845, 0.01117437332868576, 0.09897302091121674, 0.002394508570432663, 0.0015963390469551086, 0.004789017140865326, 0.007981695234775543, 0.0015963390469551086, 0.0007981695234775543, 0.0015963390469551086, 0.027137763798236847, 0.0007981695234775543, 0.9345951080322266, 0.9334931373596191, 0.028287671506404877, 0.9718453288078308, 0.9115434288978577, 0.3421821594238281, 0.022812144830822945, 0.11406072229146957, 0.5018671751022339, 0.9260650277137756, 0.8674811720848083, 0.13670557737350464, 0.0019529368728399277, 0.08202335238456726, 0.013670558109879494, 0.10741152614355087, 0.027341116219758987, 0.027341116219758987, 0.031246989965438843, 0.04101167619228363, 0.019529368728399277, 0.35348159074783325, 0.08202335238456726, 0.03319992870092392, 0.0019529368728399277, 0.019529368728399277, 0.007811747491359711, 0.005858810618519783, 0.0039058737456798553, 0.0039058737456798553, 0.029121506959199905, 0.029121506959199905, 0.029121506959199905, 0.20385055243968964, 0.6697946786880493, 0.04339464381337166, 0.0027121652383357286, 0.24138270318508148, 0.010848660953342915, 0.01627299189567566, 0.03525814786553383, 0.013560825958848, 0.0027121652383357286, 0.02169732190668583, 0.1898515671491623, 0.005424330476671457, 0.2522313594818115, 0.13018393516540527, 0.005424330476671457, 0.0027121652383357286, 0.01627299189567566, 0.0027121652383357286, 0.0027121652383357286, 0.0027121652383357286, 0.0027121652383357286, 0.03919295594096184, 0.03919295594096184, 0.03919295594096184, 0.8622450232505798, 0.043744806200265884, 0.07994740456342697, 0.13726818561553955, 0.06486298888921738, 0.09352337568998337, 0.06335454434156418, 0.021118182688951492, 0.05279545485973358, 0.019609740003943443, 0.2639772891998291, 0.015084415674209595, 0.06637142598628998, 0.043744806200265884, 0.009050649590790272, 0.006033766083419323, 0.01357597392052412, 0.0030168830417096615, 0.0015084415208548307, 0.0015084415208548307, 0.034350428730249405, 0.927461564540863, 0.941848635673523, 0.06592948734760284, 0.0054941242560744286, 0.027470620349049568, 0.04944711551070213, 0.06043536588549614, 0.0054941242560744286, 0.7252243757247925, 0.0054941242560744286, 0.0054941242560744286, 0.027470620349049568, 0.010988248512148857, 0.9605828523635864, 0.84776771068573, 0.0010772059904411435, 0.27145591378211975, 0.062477946281433105, 0.004308823961764574, 0.008617647923529148, 0.049551475793123245, 0.2542206048965454, 0.002154411980882287, 0.04739706218242645, 0.005386029835790396, 0.011849265545606613, 0.03877941519021988, 0.007540441583842039, 0.22298163175582886, 0.004308823961764574, 0.0010772059904411435, 0.002154411980882287, 0.0010772059904411435, 0.004308823961764574, 0.9280011653900146, 0.05681639537215233, 0.052391182631254196, 0.9168456792831421, 0.9476374387741089, 0.922066330909729, 0.023642726242542267, 0.023642726242542267, 0.764905571937561, 0.0158733818680048, 0.02539741061627865, 0.003174676327034831, 0.9143068194389343, 0.02222273498773575, 0.006349352654069662, 0.0972418263554573, 0.03403463959693909, 0.004862091038376093, 0.8253399729728699, 0.0012155227595940232, 0.0024310455191880465, 0.015801796689629555, 0.0012155227595940232, 0.0024310455191880465, 0.0012155227595940232, 0.008508659899234772, 0.0012155227595940232, 0.0012155227595940232, 0.0012155227595940232, 0.0012155227595940232, 0.0012155227595940232, 0.9730177521705627, 0.022278567776083946, 0.0055696419440209866, 0.0055696419440209866, 0.9412695169448853, 0.0027848209720104933, 0.0027848209720104933, 0.0055696419440209866, 0.0027848209720104933, 0.0027848209720104933, 0.0027848209720104933, 0.0027848209720104933, 0.0027848209720104933, 0.0026594186201691628, 0.021275348961353302, 0.29519546031951904, 0.010637674480676651, 0.018615931272506714, 0.07712314277887344, 0.007978255860507488, 0.0026594186201691628, 0.4840141832828522, 0.0026594186201691628, 0.04786953702569008, 0.0053188372403383255, 0.007978255860507488, 0.0026594186201691628, 0.0053188372403383255, 0.0026594186201691628, 0.0026594186201691628, 0.05512930825352669, 0.882068932056427, 0.9133833646774292, 0.5588018298149109, 0.0023931555915623903, 0.0035897332709282637, 0.004786311183124781, 0.4056398570537567, 0.0023931555915623903, 0.005982888862490654, 0.0011965777957811952, 0.0035897332709282637, 0.0011965777957811952, 0.004786311183124781, 0.0011965777957811952, 0.0011965777957811952, 0.15942136943340302, 0.07766681909561157, 0.01635091006755829, 0.10628091543912888, 0.17168454825878143, 0.008175455033779144, 0.004087727516889572, 0.012263182550668716, 0.008175455033779144, 0.04087727516889572, 0.004087727516889572, 0.012263182550668716, 0.3678954839706421, 0.004087727516889572, 0.07491367310285568, 0.014406475238502026, 0.002881295047700405, 0.8845575451850891, 0.00576259009540081, 0.00576259009540081, 0.9704892635345459, 0.9566479325294495, 0.9084452986717224, 0.8402069807052612, 0.004469186067581177, 0.008938372135162354, 0.01340755820274353, 0.049161046743392944, 0.008938372135162354, 0.004469186067581177, 0.017876744270324707, 0.008938372135162354, 0.022345930337905884, 0.004469186067581177, 0.008938372135162354, 0.11666127294301987, 0.7907041907310486, 0.01296236366033554, 0.0648118183016777, 0.012152977287769318, 0.04253542050719261, 0.8446319103240967, 0.006076488643884659, 0.006076488643884659, 0.0729178637266159, 0.9268494844436646, 0.8788407444953918, 0.19016002118587494, 0.05895262956619263, 0.10702169686555862, 0.10188223421573639, 0.09523116797208786, 0.09099867194890976, 0.026604263111948967, 0.09704510122537613, 0.022976409643888474, 0.05562709644436836, 0.026604263111948967, 0.029022833332419395, 0.048673707991838455, 0.0036278541665524244, 0.00967427808791399, 0.009371956810355186, 0.009371956810355186, 0.006046423688530922, 0.010278919711709023, 0.0006046423804946244, 0.18487152457237244, 0.10605033487081528, 0.11034967005252838, 0.020063577219843864, 0.048725828528404236, 0.030095364898443222, 0.08455364406108856, 0.020063577219843864, 0.002866225317120552, 0.048725828528404236, 0.01433112658560276, 0.012898013927042484, 0.024362914264202118, 0.021496688947081566, 0.004299337975680828, 0.004299337975680828, 0.2536609470844269, 0.002866225317120552, 0.002866225317120552, 0.001433112658560276, 0.3771592378616333, 0.002961983671411872, 0.04837906360626221, 0.10761873424053192, 0.037518460303545, 0.0187592301517725, 0.002961983671411872, 0.12736529111862183, 0.001974655780941248, 0.14217521250247955, 0.013822590000927448, 0.037518460303545, 0.038505785167217255, 0.002961983671411872, 0.017771901562809944, 0.010860606096684933, 0.005923967342823744, 0.004936639219522476, 0.001974655780941248, 0.07962166517972946, 0.058979008346796036, 0.023591604083776474, 0.17103911936283112, 0.05603005737066269, 0.0058979010209441185, 0.11206011474132538, 0.41285306215286255, 0.011795802041888237, 0.03538740426301956, 0.01769370213150978, 0.0029489505104720592, 0.0058979010209441185, 0.03204929083585739, 0.04807393625378609, 0.03204929083585739, 0.8653308749198914, 0.936835527420044, 0.06762310117483139, 0.8655756711959839, 0.013524619862437248, 0.013524619862437248, 0.013524619862437248, 0.013524619862437248, 0.22040526568889618, 0.09872319549322128, 0.03290773183107376, 0.03903010115027428, 0.15688569843769073, 0.014540624804794788, 0.037499506026506424, 0.1729569137096405, 0.005357072688639164, 0.01760181039571762, 0.029846547171473503, 0.027550658211112022, 0.02295888215303421, 0.02295888215303421, 0.022193586453795433, 0.011479441076517105, 0.05433601886034012, 0.00765296071767807, 0.0015305920969694853, 0.0015305920969694853, 0.9297211170196533, 0.0603003092110157, 0.010050051845610142, 0.020100103691220284, 0.020100103691220284, 0.793954074382782, 0.020100103691220284, 0.08040041476488113, 0.028634628280997276, 0.06299618631601334, 0.02290770225226879, 0.011453851126134396, 0.0400884784758091, 0.1546269953250885, 0.06872310489416122, 0.005726925563067198, 0.028634628280997276, 0.05154233053326607, 0.005726925563067198, 0.005726925563067198, 0.4982425272464752, 0.005726925563067198, 0.8678448796272278, 0.8936471343040466, 0.01767192967236042, 0.10603158175945282, 0.05301579087972641, 0.00883596483618021, 0.00883596483618021, 0.00883596483618021, 0.7775649428367615, 0.7913320064544678, 0.9409389495849609, 0.9232097864151001, 0.6909254193305969, 0.0015218622284010053, 0.04109027981758118, 0.0015218622284010053, 0.01978420838713646, 0.00456558633595705, 0.13848945498466492, 0.0091311726719141, 0.0015218622284010053, 0.00456558633595705, 0.015218622051179409, 0.0015218622284010053, 0.03804655373096466, 0.0015218622284010053, 0.01978420838713646, 0.0076093110255897045, 0.8626118302345276, 0.011896317824721336, 0.004758527036756277, 0.047585271298885345, 0.004758527036756277, 0.028551163151860237, 0.3949577510356903, 0.0023792635183781385, 0.09279127418994904, 0.05472306162118912, 0.004758527036756277, 0.0023792635183781385, 0.3354761600494385, 0.0023792635183781385, 0.007137790787965059, 0.0023792635183781385, 0.8719264268875122, 0.017842045053839684, 0.005097727291285992, 0.028037499636411667, 0.8513204455375671, 0.020390909165143967, 0.0076465909369289875, 0.002548863645642996, 0.002548863645642996, 0.002548863645642996, 0.02293977327644825, 0.005097727291285992, 0.0076465909369289875, 0.005097727291285992, 0.005097727291285992, 0.002548863645642996, 0.005097727291285992, 0.002548863645642996, 0.041611574590206146, 0.8738430738449097, 0.861424446105957, 0.0007343572215177119, 0.7292166948318481, 0.004773322027176619, 0.03928811103105545, 0.02423378825187683, 0.050303470343351364, 0.08591979742050171, 0.0022030717227607965, 0.0011015358613803983, 0.0014687144430354238, 0.00844510830938816, 0.003304607467725873, 0.00036717861075885594, 0.03121018223464489, 0.009179465472698212, 0.0007343572215177119, 0.0007343572215177119, 0.0007343572215177119, 0.002570250304415822, 0.0036717860493808985, 0.03926072642207146, 0.9029966592788696, 0.13224875926971436, 0.1196235790848732, 0.08900751918554306, 0.05744456872344017, 0.05523516237735748, 0.05523516237735748, 0.15055526793003082, 0.025565989315509796, 0.04229435324668884, 0.060916490852832794, 0.05018508806824684, 0.053025756031274796, 0.038506798446178436, 0.018937770277261734, 0.016728363931179047, 0.013572067953646183, 0.006943848915398121, 0.0066282195039093494, 0.0047344425693154335, 0.001893776934593916, 0.964572012424469, 0.40234464406967163, 0.004235206637531519, 0.03388165310025215, 0.12846793234348297, 0.08046892285346985, 0.09458628296852112, 0.0014117355458438396, 0.007058677729219198, 0.04094032943248749, 0.10446842759847641, 0.008470413275063038, 0.012705620378255844, 0.016940826550126076, 0.0028234710916876793, 0.005646942183375359, 0.03811686113476753, 0.012705620378255844, 0.0028234710916876793, 0.0014117355458438396, 0.001998628955334425, 0.0079945158213377, 0.017987659201025963, 0.1738807111978531, 0.0159890316426754, 0.00399725791066885, 0.005995886400341988, 0.6075831651687622, 0.001998628955334425, 0.15589305758476257, 0.001998628955334425, 0.001998628955334425, 0.1036260575056076, 0.05404956266283989, 0.08387000858783722, 0.08051521331071854, 0.09579819440841675, 0.16438522934913635, 0.041003115475177765, 0.0861065462231636, 0.04659445211291313, 0.021619824692606926, 0.05964089557528496, 0.026838403195142746, 0.04994925111532211, 0.021992580965161324, 0.016774002462625504, 0.010809912346303463, 0.024974625557661057, 0.004473067354410887, 0.00521857850253582, 0.001863777986727655, 0.825246274471283, 0.9652939438819885, 0.03378045931458473, 0.03378045931458473, 0.01126015279442072, 0.7544302344322205, 0.13512183725833893, 0.01126015279442072, 0.01126015279442072, 0.01126015279442072, 0.035065483301877975, 0.2571468949317932, 0.2571468949317932, 0.011688495054841042, 0.011688495054841042, 0.4207858145236969, 0.04766150936484337, 0.9055686593055725, 0.00400279276072979, 0.03602513298392296, 0.00400279276072979, 0.1801256686449051, 0.01601117104291916, 0.00800558552145958, 0.04403071850538254, 0.00400279276072979, 0.5203630328178406, 0.06404468417167664, 0.03202234208583832, 0.00400279276072979, 0.0400279276072979, 0.00800558552145958, 0.02001396380364895, 0.00400279276072979, 0.00400279276072979, 0.00400279276072979, 0.9062853455543518, 0.8462890386581421, 0.004454152658581734, 0.004454152658581734, 0.004454152658581734, 0.06681229174137115, 0.022270765155553818, 0.02672491781413555, 0.004454152658581734, 0.004454152658581734, 0.004454152658581734, 0.059776462614536285, 0.8966469168663025, 0.9713435769081116, 0.7940360307693481, 0.03955119475722313, 0.092286117374897, 0.06591865420341492, 0.7778401374816895, 0.1882232427597046, 0.15783025324344635, 0.07091697305440903, 0.07091697305440903, 0.05278782173991203, 0.07358302175998688, 0.07944833487272263, 0.047988928854465485, 0.010664205998182297, 0.017062729224562645, 0.03785793110728264, 0.02772693522274494, 0.02932656742632389, 0.08104796707630157, 0.018662361428141594, 0.008531364612281322, 0.012797047384083271, 0.007998154498636723, 0.0031992618460208178, 0.002666051499545574, 0.9196178913116455, 0.002956970827654004, 0.005913941655308008, 0.005913941655308008, 0.002956970827654004, 0.002956970827654004, 0.047311533242464066, 0.002956970827654004, 0.002956970827654004, 0.002956970827654004, 0.002956970827654004, 0.027343949303030968, 0.14302988350391388, 0.10306565463542938, 0.06730818003416061, 0.004206761252135038, 0.004206761252135038, 0.002103380626067519, 0.060998041182756424, 0.004206761252135038, 0.4985012114048004, 0.05048113688826561, 0.02103380672633648, 0.002103380626067519, 0.006310142111033201, 0.002103380626067519, 0.002103380626067519, 0.09582065790891647, 0.007564788684248924, 0.11221103370189667, 0.22820445895195007, 0.33789390325546265, 0.02017277106642723, 0.005043192766606808, 0.030259154736995697, 0.02647676132619381, 0.0289983581751585, 0.005043192766606808, 0.025215962901711464, 0.011347183026373386, 0.013868779875338078, 0.018911972641944885, 0.006303990725427866, 0.018911972641944885, 0.003782394342124462, 0.003782394342124462, 0.7262247204780579, 0.0045294682495296, 0.0015098227886483073, 0.0045294682495296, 0.01056875940412283, 0.19325731694698334, 0.0015098227886483073, 0.0090589364990592, 0.0090589364990592, 0.006039291154593229, 0.0181178729981184, 0.0015098227886483073, 0.0015098227886483073, 0.007549113593995571, 0.0015098227886483073, 0.9337166547775269, 0.9136236310005188, 0.03654494509100914, 0.8991104960441589, 0.05744920298457146, 0.8042888045310974, 0.11489840596914291, 0.034182071685791016, 0.034182071685791016, 0.8545517921447754, 0.034182071685791016, 0.9676817059516907, 0.9598509669303894, 0.9786245226860046, 0.1714755892753601, 0.7103989124298096, 0.09798604995012283, 0.9518188238143921, 0.15076714754104614, 0.037691786885261536, 0.037691786885261536, 0.6784521341323853, 0.9594507217407227, 0.9568453431129456, 0.11793036758899689, 0.8255125880241394, 0.022852135822176933, 0.011426067911088467, 0.9026593565940857, 0.034278202801942825, 0.022852135822176933, 0.941032350063324, 0.9386011958122253, 0.020432231947779655, 0.006129669491201639, 0.026561900973320007, 0.0013621487887576222, 0.021113306283950806, 0.2867323160171509, 0.012259338982403278, 0.49377891421318054, 0.06333991885185242, 0.0013621487887576222, 0.0027242975775152445, 0.004767520818859339, 0.03473479300737381, 0.018389008939266205, 0.0020432230085134506, 0.0013621487887576222, 0.0006810743943788111, 0.0020432230085134506, 0.0013621487887576222, 0.9579116106033325, 0.029548965394496918, 0.8864689469337463, 0.059097930788993835, 0.004160810261964798, 0.01248242985457182, 0.004160810261964798, 0.008321620523929596, 0.9528254866600037, 0.004160810261964798, 0.004160810261964798, 0.7432207465171814, 0.016701590269804, 0.008350795134902, 0.066806361079216, 0.008350795134902, 0.008350795134902, 0.008350795134902, 0.09185874462127686, 0.033403180539608, 0.008350795134902, 0.9132559895515442, 0.0582929365336895, 0.03328205645084381, 0.022188039496541023, 0.055470097810029984, 0.011094019748270512, 0.17750431597232819, 0.5436069369316101, 0.13312822580337524, 0.011094019748270512, 0.06775110214948654, 0.00451673986390233, 0.08581805974245071, 0.0632343590259552, 0.00451673986390233, 0.00451673986390233, 0.00903347972780466, 0.00903347972780466, 0.00451673986390233, 0.022583700716495514, 0.00903347972780466, 0.00451673986390233, 0.013550220057368279, 0.00451673986390233, 0.6865444779396057, 0.00451673986390233, 0.00451673986390233, 0.9107705354690552, 0.9354459047317505, 0.9562702178955078, 0.07242606580257416, 0.0969802662730217, 0.1098756417632103, 0.057940851897001266, 0.05405457690358162, 0.1778854876756668, 0.07966867089271545, 0.046282023191452026, 0.09839346259832382, 0.04080590605735779, 0.041335850954055786, 0.027733884751796722, 0.035153139382600784, 0.023141011595726013, 0.0074192555621266365, 0.01165883056819439, 0.005122819449752569, 0.0021197872702032328, 0.009539042599499226, 0.0024730851873755455, 0.9264665246009827, 0.33222755789756775, 0.11074252426624298, 0.4983413517475128, 0.947563648223877, 0.18898217380046844, 0.008041794411838055, 0.008041794411838055, 0.01206269208341837, 0.7358242273330688, 0.004020897205919027, 0.020104486495256424, 0.004020897205919027, 0.004020897205919027, 0.004020897205919027, 0.9088547229766846, 0.7302635908126831, 0.025181502103805542, 0.06295375525951385, 0.018886126577854156, 0.06924913078546524, 0.0062953755259513855, 0.08183988183736801, 0.937198281288147, 0.9232167601585388, 0.034193214029073715, 0.11285071820020676, 0.08312123268842697, 0.113760806620121, 0.09980614483356476, 0.1510743498802185, 0.09677252918481827, 0.05369510129094124, 0.07311027497053146, 0.030032852664589882, 0.026392506435513496, 0.03488664701581001, 0.018201729282736778, 0.044897597283124924, 0.014258021488785744, 0.015774831175804138, 0.013651296496391296, 0.005460518877953291, 0.005763880908489227, 0.004853794351220131, 0.0012134485878050327, 0.15180616080760956, 0.8265001773834229, 0.969996452331543, 0.13974182307720184, 0.02574191428720951, 0.19005556404590607, 0.06569202989339828, 0.1091524064540863, 0.16615235805511475, 0.04078589007258415, 0.05967443808913231, 0.03727563098073006, 0.02323458530008793, 0.02791493386030197, 0.016381219029426575, 0.04847503453493118, 0.009695006534457207, 0.010865094140172005, 0.01437535509467125, 0.005348969250917435, 0.004178882110863924, 0.0035102611873298883, 0.0013372423127293587, 0.01922026090323925, 0.0057660783641040325, 0.02114228717982769, 0.05573875829577446, 0.04997267946600914, 0.04420660063624382, 0.0019220260437577963, 0.6496447920799255, 0.0288303904235363, 0.0038440520875155926, 0.02114228717982769, 0.01537620835006237, 0.0672709122300148, 0.007688104175031185, 0.0019220260437577963, 0.0019220260437577963, 0.0019220260437577963, 0.0019220260437577963, 0.06168873608112335, 0.9253310561180115, 0.6152156591415405, 0.001623260322958231, 0.08603280037641525, 0.004869780968874693, 0.03408846631646156, 0.008116302080452442, 0.001623260322958231, 0.03733498603105545, 0.021102383732795715, 0.006493041291832924, 0.006493041291832924, 0.024348905310034752, 0.12174452841281891, 0.011362822726368904, 0.001623260322958231, 0.016232604160904884, 0.001623260322958231, 0.9431781768798828, 0.09149780124425888, 0.06278420239686966, 0.10735456645488739, 0.03621341660618782, 0.08356942236423492, 0.09514056891202927, 0.0938548892736435, 0.10242611169815063, 0.09514056891202927, 0.04392751678824425, 0.02035665325820446, 0.0668555349111557, 0.05657006800174713, 0.012856833636760712, 0.004928452894091606, 0.010714028030633926, 0.0012856833636760712, 0.0034284889698028564, 0.009856905788183212, 0.0012856833636760712, 0.13306544721126556, 0.005078834015876055, 0.019299570471048355, 0.6333306431770325, 0.10767128318548203, 0.005586717743426561, 0.0025394170079380274, 0.009649785235524178, 0.001015766873024404, 0.027425704523921013, 0.007618251256644726, 0.016760151833295822, 0.0030473005026578903, 0.0015236502513289452, 0.002031533746048808, 0.0015236502513289452, 0.015744386240839958, 0.0045709507539868355, 0.0015236502513289452, 0.7799318432807922, 0.019998252391815186, 0.08999213576316833, 0.029997380450367928, 0.019998252391815186, 0.009999126195907593, 0.029997380450367928, 0.009999126195907593, 0.009999126195907593, 0.19272354245185852, 0.7708941698074341, 0.1884414553642273, 0.0038457440678030252, 0.0012819146504625678, 0.0025638293009251356, 0.005127658601850271, 0.7178722023963928, 0.0025638293009251356, 0.0012819146504625678, 0.02692020870745182, 0.03204786777496338, 0.012819146737456322, 0.0012819146504625678, 0.0012819146504625678, 0.0012819146504625678, 0.0012819146504625678, 0.9260702729225159, 0.9623473882675171, 0.007530884351581335, 0.056481633335351944, 0.03012353740632534, 0.01506176870316267, 0.007530884351581335, 0.01506176870316267, 0.6288288235664368, 0.0037654421757906675, 0.06024707481265068, 0.022592652589082718, 0.03765442222356796, 0.06024707481265068, 0.026358095929026604, 0.0037654421757906675, 0.0037654421757906675, 0.0037654421757906675, 0.011296326294541359, 0.0037654421757906675, 0.0037654421757906675, 0.9340001940727234, 0.01681060530245304, 0.01008636225014925, 0.006724241655319929, 0.34293633699417114, 0.006724241655319929, 0.0033621208276599646, 0.0033621208276599646, 0.0033621208276599646, 0.0033621208276599646, 0.006724241655319929, 0.01008636225014925, 0.04706969112157822, 0.006724241655319929, 0.5211287140846252, 0.01008636225014925, 0.03010842576622963, 0.9333611726760864, 0.9355628490447998, 0.08181185275316238, 0.0032083080150187016, 0.07058277726173401, 0.03849969804286957, 0.025666464120149612, 0.020854001864790916, 0.0032083080150187016, 0.043312158435583115, 0.5839120745658875, 0.019249849021434784, 0.03208307921886444, 0.059353698045015335, 0.0032083080150187016, 0.0016041540075093508, 0.0032083080150187016, 0.004812462255358696, 0.0016041540075093508, 0.0016041540075093508, 0.0016041540075093508, 0.0016041540075093508, 0.07451749593019485, 0.07451749593019485, 0.08871130645275116, 0.14785218238830566, 0.11355046927928925, 0.04317283630371094, 0.07215186208486557, 0.02779620885848999, 0.003548452164977789, 0.0816144049167633, 0.024839166551828384, 0.1094106137752533, 0.03193607181310654, 0.047312695533037186, 0.041990019381046295, 0.004731269553303719, 0.005914086941629648, 0.0023656347766518593, 0.0023656347766518593, 0.0023656347766518593, 0.02304244413971901, 0.921697735786438, 0.019004207104444504, 0.004434314556419849, 0.022805048152804375, 0.044976621866226196, 0.051944829523563385, 0.012669471092522144, 0.004434314556419849, 0.0038008412811905146, 0.0038008412811905146, 0.7272276282310486, 0.0038008412811905146, 0.0012669471325352788, 0.0012669471325352788, 0.04370967298746109, 0.0019004206405952573, 0.013936418108642101, 0.0006334735662676394, 0.0025338942650705576, 0.03610799089074135, 0.9650239944458008, 0.02924315072596073, 0.9760445952415466, 0.9364951252937317, 0.01122174970805645, 0.005610874854028225, 0.0168326236307621, 0.07855224609375, 0.2412676215171814, 0.005610874854028225, 0.3759286105632782, 0.07855224609375, 0.005610874854028225, 0.005610874854028225, 0.1627153754234314, 0.881298303604126, 0.03038959577679634, 0.03038959577679634, 0.08742249757051468, 0.3474673926830292, 0.10520334541797638, 0.033339086920022964, 0.06815991550683975, 0.04445211589336395, 0.016299109905958176, 0.028153007850050926, 0.09779465943574905, 0.025189533829689026, 0.047415591776371, 0.02000345289707184, 0.04000690579414368, 0.007408686447888613, 0.01185389794409275, 0.00889042392373085, 0.0029634744860231876, 0.0029634744860231876, 0.0051860804669559, 0.0007408686215057969, 0.964394211769104, 0.09718352556228638, 0.11034782975912094, 0.17578215897083282, 0.02903890237212181, 0.05420595407485962, 0.16029474139213562, 0.11847872287034988, 0.03020045906305313, 0.040267277508974075, 0.021682381629943848, 0.02787734754383564, 0.05962654575705528, 0.03407231345772743, 0.008518078364431858, 0.010841190814971924, 0.00774370739236474, 0.001161556108854711, 0.002710297703742981, 0.009292448870837688, 0.000774370739236474, 0.07448887079954147, 0.08276541531085968, 0.8276541233062744, 0.017005134373903275, 0.1360410749912262, 0.08502566814422607, 0.7142156362533569, 0.03401026874780655, 0.8674724102020264, 0.9596322178840637, 0.13168559968471527, 0.01795712672173977, 0.00598570890724659, 0.8200421333312988, 0.01795712672173977, 0.05803929269313812, 0.16515246033668518, 0.04577082395553589, 0.0476582832634449, 0.08871046453714371, 0.05615183711051941, 0.30246493220329285, 0.017930839210748672, 0.029727444052696228, 0.02359320968389511, 0.028783714398741722, 0.05096133053302765, 0.03538981452584267, 0.02406507357954979, 0.007077962625771761, 0.0037749134935438633, 0.0028311850037425756, 0.0033030491322278976, 0.007077962625771761, 0.0023593208752572536, 0.9648836851119995, 0.9666219353675842, 0.8646018505096436, 0.028706537559628487, 0.11313753575086594, 0.07204778492450714, 0.07655076682567596, 0.07486214488744736, 0.07598789781332016, 0.0838681235909462, 0.04671848192811012, 0.11651477217674255, 0.06641905009746552, 0.11144891381263733, 0.04559273645281792, 0.024766424670815468, 0.012946086004376411, 0.006754479371011257, 0.024203551933169365, 0.002251493278890848, 0.003940112888813019, 0.011257465928792953, 0.0016886198427528143, 0.8812865018844604, 0.9282456636428833, 0.9643440246582031, 0.0427703857421875, 0.009870088659226894, 0.06744560599327087, 0.011515103280544281, 0.10363592952489853, 0.5247597098350525, 0.006580058950930834, 0.10857097804546356, 0.047705426812171936, 0.014805132523179054, 0.009870088659226894, 0.003290029475465417, 0.036190323531627655, 0.003290029475465417, 0.008225074037909508, 0.0016450147377327085, 0.0016450147377327085, 0.0016450147377327085, 0.0057405466213822365, 0.11768121272325516, 0.020091913640499115, 0.08610820025205612, 0.6946061849594116, 0.0028702733106911182, 0.008610820397734642, 0.05453519523143768, 0.0028702733106911182, 0.0028702733106911182, 0.0028702733106911182, 0.19363871216773987, 0.006454623304307461, 0.051636986434459686, 0.11618322134017944, 0.025818493217229843, 0.012909246608614922, 0.05809161067008972, 0.006454623304307461, 0.019363870844244957, 0.4711875021457672, 0.019363870844244957, 0.006454623304307461, 0.022554121911525726, 0.022554121911525726, 0.14660178124904633, 0.04510824382305145, 0.7442860007286072, 0.010760830715298653, 0.014347774907946587, 0.0035869437269866467, 0.0035869437269866467, 0.9433661699295044, 0.0035869437269866467, 0.007173887453973293, 0.0035869437269866467, 0.0035869437269866467, 0.042723141610622406, 0.017089257016777992, 0.008544628508388996, 0.8288289308547974, 0.08544628322124481, 0.798168957233429, 0.9464658498764038, 0.022872893139719963, 0.049952294677495956, 0.1317163109779358, 0.04364252835512161, 0.0278681218624115, 0.05599914863705635, 0.2752634286880493, 0.052581362426280975, 0.15590374171733856, 0.01130499318242073, 0.031548816710710526, 0.030234282836318016, 0.06861867755651474, 0.02655358798801899, 0.001840347656980157, 0.006046856753528118, 0.0005258136079646647, 0.001840347656980157, 0.003417788539081812, 0.002103254431858659, 0.013561593368649483, 0.0033903983421623707, 0.11527354270219803, 0.0101711954921484, 0.04407517984509468, 0.05085597559809685, 0.0033903983421623707, 0.06441757082939148, 0.3627726137638092, 0.016951991245150566, 0.006780796684324741, 0.0406847819685936, 0.013561593368649483, 0.03051358461380005, 0.0033903983421623707, 0.18986231088638306, 0.0033903983421623707, 0.0033903983421623707, 0.013561593368649483, 0.0101711954921484, 0.9277598261833191, 0.09428513050079346, 0.056571077555418015, 0.8297091126441956, 0.04316291958093643, 0.9064213633537292, 0.40776997804641724, 0.011185710318386555, 0.02643895149230957, 0.043725959956645966, 0.253203809261322, 0.012202593497931957, 0.014236358925700188, 0.015253241173923016, 0.001016882830299437, 0.04169219359755516, 0.007118179462850094, 0.05694543570280075, 0.050844140350818634, 0.008135062642395496, 0.016270125284790993, 0.021354537457227707, 0.007118179462850094, 0.005084414035081863, 0.001016882830299437, 0.001016882830299437, 0.024411246180534363, 0.952038586139679, 0.9212065935134888, 0.04757802560925484, 0.9039824604988098, 0.9541302919387817, 0.7526459097862244, 0.028947919607162476, 0.009649306535720825, 0.01929861307144165, 0.028947919607162476, 0.12544098496437073, 0.009649306535720825, 0.009649306535720825, 0.009649306535720825, 0.9388231635093689, 0.04497643560171127, 0.9220169186592102, 0.3961542546749115, 0.00430602440610528, 0.00430602440610528, 0.00430602440610528, 0.5813133120536804, 0.00430602440610528, 0.9636967182159424, 0.021582525223493576, 0.06474757194519043, 0.9064660668373108, 0.805260181427002, 0.06315002590417862, 0.8209503293037415, 0.0023383686784654856, 0.25877946615219116, 0.007794562261551619, 0.005456193815916777, 0.013250756077468395, 0.016368580982089043, 0.5534139275550842, 0.0007794562261551619, 0.0007794562261551619, 0.0007794562261551619, 0.07404834032058716, 0.032737161964178085, 0.0023383686784654856, 0.013250756077468395, 0.013250756077468395, 0.0007794562261551619, 0.0007794562261551619, 0.0007794562261551619, 0.0023383686784654856, 0.0007794562261551619, 0.9314076900482178, 0.04049598425626755, 0.98475581407547, 0.06938765197992325, 0.8326518535614014, 0.9265692234039307, 0.03195066377520561, 0.9302672743797302, 0.017889754846692085, 0.017889754846692085, 0.017889754846692085, 0.9219437837600708, 0.8664191961288452, 0.028181064873933792, 0.2818106710910797, 0.027241697534918785, 0.08266445994377136, 0.06716487556695938, 0.04227159917354584, 0.053074341267347336, 0.035696014761924744, 0.014090532436966896, 0.013620848767459393, 0.05495307967066765, 0.0474381260573864, 0.02348422072827816, 0.17988914251327515, 0.012211794964969158, 0.005636213347315788, 0.007984635420143604, 0.003757475409656763, 0.012681479565799236, 0.006575582083314657, 0.9533418416976929, 0.9475424885749817, 0.9296895861625671, 0.07988963276147842, 0.026629876345396042, 0.14646431803703308, 0.11983444541692734, 0.013314938172698021, 0.6124871373176575, 0.9276794791221619, 0.030802609398961067, 0.2526954710483551, 0.020535072311758995, 0.2121957540512085, 0.027380095794796944, 0.018823817372322083, 0.11579499393701553, 0.013119629584252834, 0.04107014462351799, 0.022816747426986694, 0.048485588282346725, 0.02566884085536003, 0.01939423568546772, 0.11864708364009857, 0.013119629584252834, 0.003992930985987186, 0.003992930985987186, 0.001711255987174809, 0.004563349299132824, 0.004563349299132824, 0.9134047031402588, 0.0865405946969986, 0.19471633434295654, 0.2163514792919159, 0.49760839343070984, 0.06663519144058228, 0.8662574887275696, 0.017685437574982643, 0.12379806488752365, 0.017685437574982643, 0.7958447337150574, 0.035370875149965286, 0.015338607132434845, 0.015338607132434845, 0.9049777984619141, 0.015338607132434845, 0.015338607132434845, 0.44574227929115295, 0.08914845436811447, 0.44574227929115295, 0.9683329463005066, 0.9676532745361328, 0.011666864156723022, 0.011666864156723022, 0.8633479475975037, 0.07000118494033813, 0.023333728313446045, 0.011666864156723022, 0.9468369483947754, 0.02427787147462368, 0.004846583120524883, 0.7899930477142334, 0.019386332482099533, 0.024232914671301842, 0.009693166241049767, 0.009693166241049767, 0.038772664964199066, 0.0290794987231493, 0.048465829342603683, 0.004846583120524883, 0.004846583120524883, 0.004846583120524883, 0.009693166241049767, 0.924182653427124, 0.003148058895021677, 0.009444176219403744, 0.018888352438807487, 0.5697986483573914, 0.022036412730813026, 0.05036894232034683, 0.003148058895021677, 0.003148058895021677, 0.009444176219403744, 0.009444176219403744, 0.05036894232034683, 0.003148058895021677, 0.012592235580086708, 0.22980830073356628, 0.011537058278918266, 0.011537058278918266, 0.011537058278918266, 0.9460387825965881, 0.8917374610900879, 0.9568356871604919, 0.9111751317977905, 0.3763241171836853, 0.6079081892967224, 0.9481157064437866, 0.5822585225105286, 0.0177517831325531, 0.0177517831325531, 0.0355035662651062, 0.03905392438173294, 0.0035503567196428776, 0.02130214124917984, 0.0035503567196428776, 0.0710071325302124, 0.0035503567196428776, 0.0355035662651062, 0.01420142687857151, 0.0035503567196428776, 0.04615463688969612, 0.08165820688009262, 0.0035503567196428776, 0.0177517831325531, 0.9343323707580566, 0.9201706647872925, 0.9523407220840454, 0.9866650700569153, 0.9278092384338379, 0.25122153759002686, 0.0013579543447121978, 0.03259090334177017, 0.010863634757697582, 0.6341646909713745, 0.0027159086894243956, 0.0013579543447121978, 0.009505679830908775, 0.0013579543447121978, 0.01765340566635132, 0.02580113150179386, 0.0013579543447121978, 0.0013579543447121978, 0.005431817378848791, 0.04351875185966492, 0.04351875185966492, 0.8703750371932983, 0.13872890174388885, 0.04499315470457077, 0.06149064749479294, 0.21521726250648499, 0.09073619544506073, 0.036744412034749985, 0.03224509581923485, 0.04874258488416672, 0.005249201785773039, 0.05549155920743942, 0.01574760489165783, 0.07723825424909592, 0.011998174712061882, 0.10198448598384857, 0.026246007531881332, 0.017247376963496208, 0.0067489733919501305, 0.0022496578749269247, 0.00749885942786932, 0.0014997718390077353, 0.9708735942840576, 0.9282856583595276, 0.07177446782588959, 0.07759401947259903, 0.02715790644288063, 0.1726466864347458, 0.0038797007873654366, 0.0038797007873654366, 0.009699252434074879, 0.005819551181048155, 0.01163910236209631, 0.5334588885307312, 0.0019398503936827183, 0.04461656138300896, 0.007759401574730873, 0.019398504868149757, 0.005819551181048155, 0.0019398503936827183, 0.03794461116194725, 0.015810254961252213, 0.08221332728862762, 0.09802358597517014, 0.3604738116264343, 0.13280615210533142, 0.02687743492424488, 0.033201538026332855, 0.04901179298758507, 0.004743076395243406, 0.014229229651391506, 0.042687688022851944, 0.018972305580973625, 0.011067179031670094, 0.05533589422702789, 0.007905127480626106, 0.00158102554269135, 0.00158102554269135, 0.004743076395243406, 0.00158102554269135, 0.951116681098938, 0.9745940566062927, 0.951603353023529, 0.9035037755966187, 0.016578052192926407, 0.04973415285348892, 0.008289026096463203, 0.9413086771965027, 0.018762705847620964, 0.9006099104881287, 0.018762705847620964, 0.018762705847620964, 0.9678691625595093, 0.8792015314102173, 0.9670443534851074, 0.02335905097424984, 0.07704388350248337, 0.027866937220096588, 0.8015842437744141, 0.0024588473606854677, 0.01024519745260477, 0.02622770518064499, 0.004098079167306423, 0.01024519745260477, 0.0016392315737903118, 0.0016392315737903118, 0.005327502731233835, 0.0020490395836532116, 0.0024588473606854677, 0.00040980789344757795, 0.0016392315737903118, 0.00040980789344757795, 0.0012294236803427339, 0.00040980789344757795, 0.18574601411819458, 0.0035549476742744446, 0.05332421511411667, 0.0595453716814518, 0.47280803322792053, 0.051546741276979446, 0.0026662107557058334, 0.015997264534235, 0.0026662107557058334, 0.05243547633290291, 0.005332421511411667, 0.005332421511411667, 0.033772002905607224, 0.012442316859960556, 0.0026662107557058334, 0.005332421511411667, 0.018663475289940834, 0.0035549476742744446, 0.008887369185686111, 0.0017774738371372223, 0.0864403024315834, 0.016207557171583176, 0.03781763091683388, 0.005402518901973963, 0.016207557171583176, 0.15667304396629333, 0.010805037803947926, 0.5564594268798828, 0.010805037803947926, 0.016207557171583176, 0.016207557171583176, 0.016207557171583176, 0.016207557171583176, 0.010805037803947926, 0.02161007560789585, 0.005402518901973963, 0.1389942616224289, 0.03790752589702606, 0.06317920982837677, 0.03790752589702606, 0.12635841965675354, 0.01263584103435278, 0.01263584103435278, 0.05054336413741112, 0.5180695056915283, 0.14984209835529327, 0.07631133496761322, 0.07986429333686829, 0.06735170632600784, 0.12667062878608704, 0.05622940510511398, 0.13887426257133484, 0.03244004026055336, 0.04665186628699303, 0.03753776103258133, 0.03321242332458496, 0.03228556364774704, 0.051904063671827316, 0.01313049253076315, 0.02100878767669201, 0.015602114610373974, 0.00417086249217391, 0.006642484571784735, 0.00803277175873518, 0.002317145699635148, 0.09169723093509674, 0.8711236715316772, 0.10944748669862747, 0.054723743349313736, 0.7934942841529846, 0.039468999952077866, 0.8683180212974548, 0.012969798408448696, 0.012969798408448696, 0.012969798408448696, 0.8949160575866699, 0.012969798408448696, 0.025939596816897392, 0.953940749168396, 0.034795213490724564, 0.060513414442539215, 0.06101769208908081, 0.07412893325090408, 0.13716374337673187, 0.20977984368801117, 0.03378665819764137, 0.15279637277126312, 0.029248150065541267, 0.026222480461001396, 0.027231035754084587, 0.02370108664035797, 0.08068455010652542, 0.016136910766363144, 0.007564176805317402, 0.008068455383181572, 0.004538506269454956, 0.005042784381657839, 0.007059898227453232, 0.0010085569228976965, 0.9818721413612366, 0.9250029921531677, 0.008957969956099987, 0.0022394924890249968, 0.008957969956099987, 0.02463441900908947, 0.03359238803386688, 0.006718477699905634, 0.0044789849780499935, 0.0022394924890249968, 0.011197462677955627, 0.0022394924890249968, 0.8622046113014221, 0.02015543356537819, 0.0044789849780499935, 0.0022394924890249968, 0.0044789849780499935, 0.0022394924890249968, 0.14048954844474792, 0.003589149098843336, 0.043069787323474884, 0.4753058850765228, 0.03332781419157982, 0.017433010041713715, 0.006665562745183706, 0.030764134600758553, 0.002050942275673151, 0.07742307335138321, 0.003589149098843336, 0.014356596395373344, 0.014356596395373344, 0.00922924093902111, 0.06768109649419785, 0.05178629234433174, 0.0010254711378365755, 0.004614620469510555, 0.0025636779610067606, 0.0005127355689182878, 0.9025648236274719, 0.031122924759984016, 0.9017865657806396, 0.0838301032781601, 0.8834403157234192, 0.012896938249468803, 0.006448469124734402, 0.006448469124734402, 0.0834927037358284, 0.8349270224571228, 0.1083698570728302, 0.01290117297321558, 0.043863989412784576, 0.655379593372345, 0.02580234594643116, 0.018061643466353416, 0.0077407038770616055, 0.02580234594643116, 0.01290117297321558, 0.020641878247261047, 0.010320939123630524, 0.0077407038770616055, 0.010320939123630524, 0.01290117297321558, 0.005160469561815262, 0.018061643466353416, 0.002580234780907631, 0.002580234780907631, 0.9529821276664734, 0.9395498633384705, 0.9373384714126587, 0.9294406175613403, 0.14361591637134552, 0.051656316965818405, 0.1089891567826271, 0.06187405064702034, 0.11636862903833389, 0.18108093738555908, 0.07549769431352615, 0.06357700377702713, 0.014758948236703873, 0.032356154173612595, 0.01986781507730484, 0.01930016279220581, 0.055629879236221313, 0.012488340958952904, 0.009082429111003876, 0.01078538503497839, 0.013623644597828388, 0.003973562736064196, 0.002838259097188711, 0.002270607277750969, 0.9627882242202759, 0.3680656850337982, 0.009927082806825638, 0.09087099134922028, 0.05268990248441696, 0.12447034567594528, 0.05727163329720497, 0.012217948213219643, 0.07254406809806824, 0.002290865406394005, 0.08934374898672104, 0.023672275245189667, 0.04123557731509209, 0.012981570325791836, 0.00458173081278801, 0.010690704919397831, 0.01527243573218584, 0.006108974106609821, 0.002290865406394005, 0.0030544870533049107, 0.0007636217633262277, 0.0881119892001152, 0.021317416802048683, 0.15917004644870758, 0.036950189620256424, 0.03268670663237572, 0.21885882318019867, 0.021317416802048683, 0.009948127903044224, 0.28565338253974915, 0.03126554563641548, 0.036950189620256424, 0.01563277281820774, 0.019896255806088448, 0.0014211611123755574, 0.008526966907083988, 0.00568464444950223, 0.002842322224751115, 0.004263483453541994, 0.0014211611123755574, 0.9208150506019592, 0.054165590554475784, 0.04701065272092819, 0.09729419648647308, 0.1081046611070633, 0.045126259326934814, 0.047903258353471756, 0.08083055168390274, 0.2333672195672989, 0.03729115054011345, 0.11008823662996292, 0.023902039974927902, 0.033026471734046936, 0.03114207647740841, 0.05494493991136551, 0.018744753673672676, 0.009719502180814743, 0.006049893796443939, 0.0048597510904073715, 0.0024794647470116615, 0.00406632199883461, 0.004165500868111849, 0.9070578813552856, 0.02667817287147045, 0.02667817287147045, 0.05955227091908455, 0.9230601787567139, 0.013506278395652771, 0.08704046159982681, 0.08779080957174301, 0.04051883518695831, 0.024761511012911797, 0.039018139243125916, 0.11330267041921616, 0.05627616122364998, 0.030013952404260635, 0.008253837004303932, 0.0457712784409523, 0.03676709160208702, 0.034516043961048126, 0.34365975856781006, 0.0030013953801244497, 0.013506278395652771, 0.0067531391978263855, 0.0030013953801244497, 0.005252441857010126, 0.0060027907602488995, 0.3341042995452881, 0.0039000501856207848, 0.13260170817375183, 0.04420056939125061, 0.1638021022081375, 0.08190105110406876, 0.011700150556862354, 0.024050308391451836, 0.002600033301860094, 0.061100784689188004, 0.013000166974961758, 0.020150259137153625, 0.0390004999935627, 0.011700150556862354, 0.010400133207440376, 0.015600200742483139, 0.020800266414880753, 0.002600033301860094, 0.006500083487480879, 0.001300016650930047, 0.09215784817934036, 0.02981577441096306, 0.06776312738656998, 0.1680525541305542, 0.10842099785804749, 0.08131574839353561, 0.051499973982572556, 0.010842099785804749, 0.01897367462515831, 0.010842099785804749, 0.051499973982572556, 0.03523682430386543, 0.010842099785804749, 0.013552624732255936, 0.02710524946451187, 0.002710524946451187, 0.20599989593029022, 0.005421049892902374, 0.002710524946451187, 0.002710524946451187, 0.05857255682349205, 0.11335684359073639, 0.11481387168169022, 0.05245303735136986, 0.06032099202275276, 0.16318722069263458, 0.14832553267478943, 0.02855776436626911, 0.08713032305240631, 0.040213994681835175, 0.023312460631132126, 0.028266359120607376, 0.022146837785840034, 0.022729650139808655, 0.009907796047627926, 0.012821853160858154, 0.003788274945691228, 0.0029140575788915157, 0.0032054632902145386, 0.004079680889844894, 0.07850591838359833, 0.05109115317463875, 0.05856790766119957, 0.0336453951895237, 0.06479854136705399, 0.3389461934566498, 0.036137647926807404, 0.12087419629096985, 0.0074767544865608215, 0.02741476520895958, 0.012461257167160511, 0.029907017946243286, 0.08722879737615585, 0.018691886216402054, 0.011215131729841232, 0.0062306285835802555, 0.0037383772432804108, 0.0024922513402998447, 0.0062306285835802555, 0.0024922513402998447, 0.9699737429618835, 0.9426134824752808, 0.00422082282602787, 0.00844164565205574, 0.00422082282602787, 0.01688329130411148, 0.00422082282602787, 0.71753990650177, 0.21526196599006653, 0.01266246847808361, 0.00844164565205574, 0.8808834552764893, 0.10242830961942673, 0.0196749959141016, 0.9443998336791992, 0.051274608820676804, 0.8716683387756348, 0.051274608820676804, 0.017805732786655426, 0.5653320550918579, 0.06788435578346252, 0.03672432526946068, 0.02003145031630993, 0.0834643766283989, 0.09014152735471725, 0.0011128582991659641, 0.041175756603479385, 0.008902866393327713, 0.01335429958999157, 0.007790008094161749, 0.0033385748974978924, 0.027821458876132965, 0.0011128582991659641, 0.0044514331966638565, 0.0033385748974978924, 0.0011128582991659641, 0.0022257165983319283, 0.0011128582991659641, 0.8954400420188904, 0.0076084136962890625, 0.16901546716690063, 0.0608673095703125, 0.027172904461622238, 0.008695329539477825, 0.020651407539844513, 0.2575991451740265, 0.012499536387622356, 0.08206217736005783, 0.011412620544433594, 0.028259821236133575, 0.06901917606592178, 0.01684720069169998, 0.20216640830039978, 0.009782246313989162, 0.004347664769738913, 0.0005434580962173641, 0.0027172905392944813, 0.004347664769738913, 0.004891123156994581, 0.9182431101799011, 0.005664195865392685, 0.02265678346157074, 0.04531356692314148, 0.005664195865392685, 0.016992587596178055, 0.016992587596178055, 0.04531356692314148, 0.005664195865392685, 0.050977762788534164, 0.01132839173078537, 0.03398517519235611, 0.7250170707702637, 0.005664195865392685, 0.005664195865392685, 0.11488287895917892, 0.09872747957706451, 0.10378623753786087, 0.09203685075044632, 0.13903439044952393, 0.07604463398456573, 0.03818550333380699, 0.07506551593542099, 0.03998054936528206, 0.046671170741319656, 0.026925675570964813, 0.04748709872364998, 0.0489557720720768, 0.011423014104366302, 0.010280712507665157, 0.014360359869897366, 0.00489557720720768, 0.00489557720720768, 0.005221948958933353, 0.001468673232011497, 0.02523123100399971, 0.0925145149230957, 0.008410410024225712, 0.008410410024225712, 0.008410410024225712, 0.016820820048451424, 0.016820820048451424, 0.004205205012112856, 0.7569369673728943, 0.004205205012112856, 0.016820820048451424, 0.004205205012112856, 0.012615615501999855, 0.004205205012112856, 0.004205205012112856, 0.012615615501999855, 0.2408675104379654, 0.006990877445787191, 0.07626412063837051, 0.015888357535004616, 0.08643266558647156, 0.05084274709224701, 0.012710686773061752, 0.03304778411984444, 0.012710686773061752, 0.30124327540397644, 0.027963509783148766, 0.008897480554878712, 0.03813206031918526, 0.020972633734345436, 0.02669244259595871, 0.010168549604713917, 0.01970156468451023, 0.004448740277439356, 0.004448740277439356, 0.001868054736405611, 0.5865691900253296, 0.07845830172300339, 0.003736109472811222, 0.003736109472811222, 0.13823604583740234, 0.06911802291870117, 0.001868054736405611, 0.07659024000167847, 0.011208328418433666, 0.005604164209216833, 0.003736109472811222, 0.007472218945622444, 0.001868054736405611, 0.001868054736405611, 0.005604164209216833, 0.9802888631820679, 0.156953364610672, 0.08011161535978317, 0.078476682305336, 0.07291792333126068, 0.14125803112983704, 0.07030203193426132, 0.04185423254966736, 0.05362573638558388, 0.009482599794864655, 0.06376230716705322, 0.023869991302490234, 0.03596848249435425, 0.08174654841423035, 0.02812081202864647, 0.021908074617385864, 0.01896519958972931, 0.01079054456204176, 0.004577806685119867, 0.004577806685119867, 0.0006539723835885525, 0.9239341616630554, 0.33224907517433167, 0.018458282575011253, 0.6275815963745117, 0.018458282575011253, 0.9604618549346924, 0.035757534205913544, 0.09705616533756256, 0.005108219105750322, 0.005108219105750322, 0.03064931556582451, 0.1174890398979187, 0.6947178244590759, 0.005108219105750322, 0.005108219105750322, 0.8464259505271912, 0.00813871156424284, 0.024416133761405945, 0.08138711005449295, 0.00813871156424284, 0.00813871156424284, 0.08736511319875717, 0.08736511319875717, 0.7862859964370728, 0.03191012516617775, 0.007977531291544437, 0.055842719972133636, 0.15955063700675964, 0.007977531291544437, 0.007977531291544437, 0.007977531291544437, 0.023932594805955887, 0.6860677003860474, 0.007977531291544437, 0.9219738841056824, 0.8715450167655945, 0.11535154283046722, 0.9135351181030273, 0.20372037589550018, 0.0494350828230381, 0.13833849132061005, 0.08850474655628204, 0.13793982565402985, 0.05501646175980568, 0.05421912297606468, 0.10325553268194199, 0.004385370295494795, 0.025514882057905197, 0.01116276066750288, 0.03906966373324394, 0.028305571526288986, 0.007973400875926018, 0.012757441028952599, 0.023122861981391907, 0.0023920200765132904, 0.005980050191283226, 0.0075747305527329445, 0.0007973400643095374, 0.04727649316191673, 0.015758831053972244, 0.027577955275774002, 0.14970889687538147, 0.015758831053972244, 0.003939707763493061, 0.05909561738371849, 0.007879415526986122, 0.11031182110309601, 0.05121620371937752, 0.015758831053972244, 0.41366931796073914, 0.01969853974878788, 0.003939707763493061, 0.03151766210794449, 0.027577955275774002, 0.003939707763493061, 0.9329489469528198, 0.9491143226623535, 0.0771586075425148, 0.0514390729367733, 0.012859768234193325, 0.8358849287033081, 0.010813665576279163, 0.6758540868759155, 0.04190295562148094, 0.0013517081970348954, 0.009461957961320877, 0.022979039698839188, 0.10678494721651077, 0.005406832788139582, 0.021627331152558327, 0.006758541334420443, 0.03784783184528351, 0.012165374122560024, 0.021627331152558327, 0.008110249415040016, 0.006758541334420443, 0.006758541334420443, 0.0013517081970348954, 0.0013517081970348954, 0.0013517081970348954, 0.9283039569854736, 0.007288550492376089, 0.852760374546051, 0.029154201969504356, 0.007288550492376089, 0.05830840393900871, 0.029154201969504356, 0.9351255297660828, 0.9131276607513428, 0.04643021896481514, 0.26699116826057434, 0.028104335069656372, 0.07728692144155502, 0.028104335069656372, 0.007026083767414093, 0.007026083767414093, 0.5620867013931274, 0.010618778876960278, 0.021237557753920555, 0.7539332509040833, 0.04247511550784111, 0.13804411888122559, 0.010618778876960278, 0.010618778876960278, 0.010618778876960278, 0.16373762488365173, 0.1801113784313202, 0.004093440715223551, 0.012280321680009365, 0.07368192821741104, 0.004093440715223551, 0.5362406969070435, 0.004093440715223551, 0.012280321680009365, 0.004093440715223551, 0.004093440715223551, 0.8352353572845459, 0.006956926546990871, 0.10783235728740692, 0.04174155741930008, 0.03130616992712021, 0.21218626201152802, 0.0034784632734954357, 0.4522002041339874, 0.013913853093981743, 0.0034784632734954357, 0.0034784632734954357, 0.02087077870965004, 0.01043538935482502, 0.0034784632734954357, 0.0034784632734954357, 0.06956926733255386, 0.0034784632734954357, 0.01043538935482502, 0.05325130745768547, 0.017750434577465057, 0.2603397071361542, 0.43389952182769775, 0.003944541327655315, 0.003944541327655315, 0.07297401130199432, 0.10453034192323685, 0.021694976836442947, 0.003944541327655315, 0.003944541327655315, 0.005916811991482973, 0.0019722706638276577, 0.003944541327655315, 0.005916811991482973, 0.0019722706638276577, 0.087324358522892, 0.04623054340481758, 0.24142616987228394, 0.05136726796627045, 0.06677745282649994, 0.5085359811782837, 0.09079918265342712, 0.02269979566335678, 0.04539959132671356, 0.7944928407669067, 0.0709548071026802, 0.8514576554298401, 0.9009536504745483, 0.9611978530883789, 0.04498938471078873, 0.013842887245118618, 0.05537154898047447, 0.49834394454956055, 0.02076433040201664, 0.006921443622559309, 0.2664755880832672, 0.0034607218112796545, 0.013842887245118618, 0.0034607218112796545, 0.0034607218112796545, 0.006921443622559309, 0.0034607218112796545, 0.05537154898047447, 0.0034607218112796545, 0.0034607218112796545, 0.9030454754829407, 0.010493505746126175, 0.0139913409948349, 0.017489176243543625, 0.010493505746126175, 0.031480517238378525, 0.003497835248708725, 0.003497835248708725, 0.00699567049741745, 0.003497835248708725, 0.842978298664093, 0.0139913409948349, 0.00699567049741745, 0.00699567049741745, 0.010493505746126175, 0.003497835248708725, 0.003497835248708725, 0.003497835248708725, 0.8889570832252502, 0.8934159874916077, 0.10388045012950897, 0.8656704425811768, 0.9257438778877258, 0.08625295013189316, 0.0052807931788265705, 0.008801321499049664, 0.0035205285530537367, 0.007041057106107473, 0.7111467719078064, 0.0052807931788265705, 0.028164228424429893, 0.012321850284934044, 0.07569136470556259, 0.04400660842657089, 0.0052807931788265705, 0.0017602642765268683, 0.9229279160499573, 0.04060851410031319, 0.9339958429336548, 0.2535285949707031, 0.022045964375138283, 0.07716087251901627, 0.05511491000652313, 0.022045964375138283, 0.5511491298675537, 0.9122961163520813, 0.01911836303770542, 0.012745575048029423, 0.025491150096058846, 0.05098230019211769, 0.4524679183959961, 0.4206039607524872, 0.006372787524014711, 0.21841837465763092, 0.008824984543025494, 0.006618738640099764, 0.41036179661750793, 0.01103123091161251, 0.008824984543025494, 0.1698809564113617, 0.04412492364645004, 0.0022062461357563734, 0.04853741452097893, 0.04853741452097893, 0.004412492271512747, 0.006618738640099764, 0.008824984543025494, 0.0022062461357563734, 0.0022062461357563734, 0.12585052847862244, 0.003701485926285386, 0.19988024234771729, 0.003701485926285386, 0.011104458011686802, 0.5996407270431519, 0.003701485926285386, 0.011104458011686802, 0.025910401716828346, 0.011104458011686802, 0.7541831731796265, 0.009794586338102818, 0.009794586338102818, 0.2056863158941269, 0.009794586338102818, 0.009794586338102818, 0.8643091917037964, 0.8986141085624695, 0.05990760400891304, 0.9635902643203735, 0.9430400133132935, 0.016839999705553055, 0.008829738013446331, 0.24723267555236816, 0.11478659510612488, 0.008829738013446331, 0.06622304022312164, 0.0044148690067231655, 0.0044148690067231655, 0.0044148690067231655, 0.2781367599964142, 0.2516475319862366, 0.6338654160499573, 0.003706815419718623, 0.011120446026325226, 0.06301586329936981, 0.02224089205265045, 0.03336133807897568, 0.01853407733142376, 0.003706815419718623, 0.007413630839437246, 0.007413630839437246, 0.11120446026325226, 0.003706815419718623, 0.003706815419718623, 0.007413630839437246, 0.06301586329936981, 0.9289665222167969, 0.01784322038292885, 0.005947739817202091, 0.07732062041759491, 0.07732062041759491, 0.1130070611834526, 0.0356864407658577, 0.005947739817202091, 0.005947739817202091, 0.005947739817202091, 0.011895479634404182, 0.011895479634404182, 0.011895479634404182, 0.011895479634404182, 0.011895479634404182, 0.011895479634404182, 0.5828785300254822, 0.05921284109354019, 0.8026629686355591, 0.006579204462468624, 0.002193068154156208, 0.002193068154156208, 0.02193068154156208, 0.06798510998487473, 0.008772272616624832, 0.01096534077078104, 0.006579204462468624, 0.004386136308312416, 0.004386136308312416, 0.9140263199806213, 0.16536083817481995, 0.03307216987013817, 0.013228867202997208, 0.006614433601498604, 0.0992165058851242, 0.6614433526992798, 0.013228867202997208, 0.10474661737680435, 0.07639934867620468, 0.17112071812152863, 0.06706549227237701, 0.06844828277826309, 0.0874616950750351, 0.07639934867620468, 0.05289185792207718, 0.05289185792207718, 0.0369897298514843, 0.058423031121492386, 0.04459509626030922, 0.04943487420678139, 0.010716650635004044, 0.015210730023682117, 0.013482238166034222, 0.00207419041544199, 0.00414838083088398, 0.006913968361914158, 0.0006913968245498836, 0.9236080646514893, 0.12497985363006592, 0.0024995971471071243, 0.01749718002974987, 0.15247541666030884, 0.4974198043346405, 0.01749718002974987, 0.0024995971471071243, 0.03249476104974747, 0.03999355435371399, 0.0024995971471071243, 0.007498790975660086, 0.029995163902640343, 0.004999194294214249, 0.007498790975660086, 0.04749234393239021, 0.004999194294214249, 0.004999194294214249, 0.0024995971471071243, 0.9511734247207642, 0.16120481491088867, 0.04546802490949631, 0.08680259436368942, 0.13227061927318573, 0.004133456852287054, 0.004133456852287054, 0.05373493954539299, 0.004133456852287054, 0.008266913704574108, 0.008266913704574108, 0.004133456852287054, 0.008266913704574108, 0.01240037102252245, 0.45468026399612427, 0.004133456852287054, 0.9420341849327087, 0.1008027195930481, 0.13976328074932098, 0.11688167601823807, 0.03215792402625084, 0.08967112749814987, 0.10575009137392044, 0.07977638393640518, 0.03525003045797348, 0.015460539609193802, 0.018552647903561592, 0.05132899060845375, 0.014223696663975716, 0.05565794184803963, 0.08657902479171753, 0.021644756197929382, 0.013605275191366673, 0.0043289512395858765, 0.011750009842216969, 0.0043289512395858765, 0.00247368635609746, 0.042814817279577255, 0.8991112112998962, 0.8988606929779053, 0.8576393723487854, 0.8900813460350037, 0.02225203439593315, 0.06675609946250916, 0.09303261339664459, 0.156860813498497, 0.0605163611471653, 0.07827987521886826, 0.0563012920320034, 0.08189278841018677, 0.24357083439826965, 0.01565597392618656, 0.0725594162940979, 0.015053821727633476, 0.03341948240995407, 0.025290420278906822, 0.01896781474351883, 0.014451668597757816, 0.018666738644242287, 0.0066236816346645355, 0.0009032292873598635, 0.001806458574719727, 0.005118299275636673, 0.001806458574719727, 0.9554167985916138, 0.9661252498626709, 0.07493075728416443, 0.13380493223667145, 0.005352197214961052, 0.7439553737640381, 0.03211318328976631, 0.2395065277814865, 0.036887120455503464, 0.1641736626625061, 0.0332503616809845, 0.09507525712251663, 0.11118090152740479, 0.04468017444014549, 0.049875546246767044, 0.02857453003525734, 0.0332503616809845, 0.020261939615011215, 0.034289438277482986, 0.05351230129599571, 0.008312590420246124, 0.008832127787172794, 0.00935166422277689, 0.004156295210123062, 0.011949349194765091, 0.011949349194765091, 0.0005195369012653828, 0.059801626950502396, 0.1303749829530716, 0.0902596041560173, 0.11477455496788025, 0.0419725701212883, 0.10065988451242447, 0.07800212502479553, 0.017086179926991463, 0.16751885414123535, 0.017457617446780205, 0.026743585243821144, 0.04160113260149956, 0.027486462146043777, 0.045315518975257874, 0.01671474054455757, 0.005571580491960049, 0.007428773678839207, 0.003342948155477643, 0.007428773678839207, 0.00037143868394196033, 0.9437296390533447, 0.958605170249939, 0.025223910808563232, 0.03863121569156647, 0.1404358297586441, 0.042267095297575, 0.022269759327173233, 0.05544715374708176, 0.2797354459762573, 0.04567573219537735, 0.1592969447374344, 0.01590697094798088, 0.03113221377134323, 0.031586699187755585, 0.07249034196138382, 0.022269759327173233, 0.00272690923884511, 0.004999333526939154, 0.0006817273097112775, 0.0022724245209246874, 0.0036358791403472424, 0.002954151714220643, 0.841067910194397, 0.12074321508407593, 0.3018580377101898, 0.5433444976806641, 0.9233072400093079, 0.904224693775177, 0.9409161806106567, 0.039387643337249756, 0.004376404918730259, 0.14442135393619537, 0.24070225656032562, 0.004376404918730259, 0.004376404918730259, 0.004376404918730259, 0.008752809837460518, 0.008752809837460518, 0.013129213824868202, 0.004376404918730259, 0.5120393633842468, 0.04045531153678894, 0.11523633450269699, 0.04985401779413223, 0.1262696087360382, 0.07682422548532486, 0.10706354677677155, 0.20881478488445282, 0.028196124359965324, 0.017162859439849854, 0.10297714918851852, 0.022883811965584755, 0.02206653170287609, 0.020840615034103394, 0.02002333477139473, 0.007764150388538837, 0.0036777553614228964, 0.01021598745137453, 0.0012259185314178467, 0.017980137839913368, 0.0008172789821401238, 0.9085661768913269, 0.9036547541618347, 0.9507068395614624, 0.03457115963101387, 0.044076304882764816, 0.0029384202789515257, 0.02056894265115261, 0.029384203255176544, 0.07052208483219147, 0.005876840557903051, 0.011753681115806103, 0.7228513956069946, 0.0029384202789515257, 0.02644578367471695, 0.005876840557903051, 0.03819946572184563, 0.017630521208047867, 0.9518219232559204, 0.8623908162117004, 0.9837656021118164, 0.06873206049203873, 0.01145534310489893, 0.02291068620979786, 0.7789633274078369, 0.01145534310489893, 0.01145534310489893, 0.01145534310489893, 0.04582137241959572, 0.9478610754013062, 0.053764283657073975, 0.16618052124977112, 0.024438312277197838, 0.6744974255561829, 0.00977532472461462, 0.00488766236230731, 0.00488766236230731, 0.014662986621260643, 0.01955064944922924, 0.014662986621260643, 0.00488766236230731, 0.12505871057510376, 0.8441462516784668, 0.9558525085449219, 0.022643782198429108, 0.022643782198429108, 0.9283950328826904, 0.03688691556453705, 0.17916502058506012, 0.03425213694572449, 0.03425213694572449, 0.03952169790863991, 0.015808679163455963, 0.10407380014657974, 0.0065869493409991264, 0.2858735918998718, 0.010539119131863117, 0.015808679163455963, 0.07113905251026154, 0.013173898681998253, 0.12515203654766083, 0.005269559565931559, 0.009221728891134262, 0.0013173898914828897, 0.003952169790863991, 0.0065869493409991264, 0.0026347797829657793, 0.007790295407176018, 0.003895147703588009, 0.03116118162870407, 0.03895147517323494, 0.027266032993793488, 0.15191076695919037, 0.6271187663078308, 0.003895147703588009, 0.035056330263614655, 0.035056330263614655, 0.003895147703588009, 0.003895147703588009, 0.007790295407176018, 0.011685443110764027, 0.015482490882277489, 0.9444319605827332, 0.030964981764554977, 0.07095709443092346, 0.12116258591413498, 0.09304751455783844, 0.04150320589542389, 0.08099819719791412, 0.1332119107246399, 0.042172614485025406, 0.020082196220755577, 0.19345849752426147, 0.026776261627674103, 0.024098636582493782, 0.036817360669374466, 0.03213151544332504, 0.026776261627674103, 0.014057537540793419, 0.0060246591456234455, 0.024098636582493782, 0.00803287886083126, 0.003347032703459263, 0.0006694065523333848, 0.030489007011055946, 0.9146702289581299, 0.9349440932273865, 0.9700354337692261, 0.8884645700454712, 0.145112544298172, 0.030171914026141167, 0.22628934681415558, 0.05818869173526764, 0.09267088025808334, 0.034482188522815704, 0.06968275457620621, 0.06896437704563141, 0.0373557023704052, 0.053160037845373154, 0.017241094261407852, 0.070401132106781, 0.03951083868741989, 0.017241094261407852, 0.020832987502217293, 0.0093389255926013, 0.0007183788693509996, 0.004310273565351963, 0.003591894404962659, 0.0014367577387019992, 0.10128047317266464, 0.033760156482458115, 0.8440039753913879, 0.9087705016136169, 0.03029235079884529, 0.9456787705421448, 0.007020935881882906, 0.007020935881882906, 0.007020935881882906, 0.0023403118830174208, 0.0023403118830174208, 0.007020935881882906, 0.8401719927787781, 0.10531403869390488, 0.007020935881882906, 0.0023403118830174208, 0.009361247532069683, 0.0023403118830174208, 0.011754375882446766, 0.011754375882446766, 0.011754375882446766, 0.9050869345664978, 0.023508751764893532, 0.011754375882446766, 0.011754375882446766, 0.023995794355869293, 0.9358359575271606, 0.9460290670394897, 0.03174827992916107, 0.03174827992916107, 0.9524484276771545, 0.9413055777549744, 0.05229475349187851, 0.024812445044517517, 0.8436231017112732, 0.049624890089035034, 0.024812445044517517, 0.9075852036476135, 0.01072875875979662, 0.016093138605356216, 0.938766360282898, 0.02682189643383026, 0.00536437937989831, 0.06255204230546951, 0.031276021152734756, 0.8757285475730896, 0.0013296519173309207, 0.19412918388843536, 0.029252341017127037, 0.06382329016923904, 0.034570951014757156, 0.029252341017127037, 0.29119375348091125, 0.0013296519173309207, 0.005318607669323683, 0.0026593038346618414, 0.03855990618467331, 0.030581993982195854, 0.0013296519173309207, 0.24731525778770447, 0.00398895563557744, 0.014626170508563519, 0.0013296519173309207, 0.006648259703069925, 0.0013296519173309207, 0.018437720835208893, 0.23130959272384644, 0.023466190323233604, 0.03352312743663788, 0.07710319757461548, 0.010056938976049423, 0.09218860417604446, 0.0033523128367960453, 0.011733095161616802, 0.08883628994226456, 0.0653700977563858, 0.01676156371831894, 0.028494659811258316, 0.14414945244789124, 0.01508540753275156, 0.018437720835208893, 0.11230248212814331, 0.0016761564183980227, 0.0033523128367960453, 0.0016761564183980227, 0.12964923679828644, 0.020167658105492592, 0.07490845024585724, 0.025929847732186317, 0.023048752918839455, 0.09795720130205154, 0.002881094114854932, 0.002881094114854932, 0.3658989667892456, 0.005762188229709864, 0.17574673891067505, 0.03745422512292862, 0.01728656515479088, 0.005762188229709864, 0.011524376459419727, 0.961255669593811, 0.03433055803179741, 0.08470965176820755, 0.006516126915812492, 0.840580403804779, 0.006516126915812492, 0.019548380747437477, 0.013032253831624985, 0.013032253831624985, 0.006516126915812492, 0.9482128024101257, 0.9150547981262207, 0.004581107292324305, 0.17408208549022675, 0.022905537858605385, 0.07329771667718887, 0.013743322342634201, 0.01832442916929722, 0.05039218068122864, 0.5497329235076904, 0.06413550674915314, 0.013743322342634201, 0.004581107292324305, 0.004581107292324305, 0.004581107292324305, 0.1450715959072113, 0.048357196152210236, 0.7253579497337341, 0.9475837349891663, 0.9642241597175598, 0.9457066059112549, 0.11506928503513336, 0.08859794586896896, 0.1323566883802414, 0.1069658100605011, 0.1048048883676529, 0.06860938668251038, 0.055103600025177, 0.02701156958937645, 0.03727596625685692, 0.03943689167499542, 0.06806915253400803, 0.025390874594449997, 0.041597817093133926, 0.02647133730351925, 0.024310411885380745, 0.015126478858292103, 0.006482776720076799, 0.01134485937654972, 0.0037816197145730257, 0.0016206941800191998, 0.22584769129753113, 0.03226395696401596, 0.7098070383071899, 0.03225693851709366, 0.04838540405035019, 0.09677080810070038, 0.05644964054226875, 0.008064234629273415, 0.008064234629273415, 0.01612846925854683, 0.5322394371032715, 0.01612846925854683, 0.17741315066814423, 0.008064234629273415, 0.05066901445388794, 0.08444835990667343, 0.05066901445388794, 0.016889670863747597, 0.10133802890777588, 0.016889670863747597, 0.641807496547699, 0.033779341727495193, 0.017585666850209236, 0.011723778210580349, 0.8792833089828491, 0.0058618891052901745, 0.017585666850209236, 0.011723778210580349, 0.041033223271369934, 0.0058618891052901745, 0.0058618891052901745, 0.9526943564414978, 0.046258870512247086, 0.003304205136373639, 0.016521025449037552, 0.039650462567806244, 0.023129435256123543, 0.006608410272747278, 0.003304205136373639, 0.49893495440483093, 0.06608410179615021, 0.016521025449037552, 0.22799015045166016, 0.026433641090989113, 0.009912615641951561, 0.009912615641951561, 0.9457032084465027, 0.026159919798374176, 0.9155972003936768, 0.026159919798374176, 0.07846899330615997, 0.8631589412689209, 0.029647907242178917, 0.03680429980158806, 0.11654694378376007, 0.32817167043685913, 0.06747455149888992, 0.07360859960317612, 0.041916005313396454, 0.009201074950397015, 0.12574802339076996, 0.009201074950397015, 0.04702771455049515, 0.04293834790587425, 0.03680429980158806, 0.005111708305776119, 0.006134049966931343, 0.007156391628086567, 0.004089366644620895, 0.0010223416611552238, 0.009201074950397015, 0.04127423092722893, 0.01375807635486126, 0.9355491995811462, 0.8435711860656738, 0.20205719769001007, 0.0760994702577591, 0.018368836492300034, 0.5746821761131287, 0.005248239263892174, 0.002624119631946087, 0.03936179354786873, 0.002624119631946087, 0.03673767298460007, 0.013120598159730434, 0.013120598159730434, 0.002624119631946087, 0.002624119631946087, 0.00787235889583826, 0.8848522901535034, 0.9773083329200745, 0.04809391871094704, 0.14428174495697021, 0.793549656867981, 0.013897622004151344, 0.03706032410264015, 0.0880182683467865, 0.013897622004151344, 0.6578207612037659, 0.004632540512830019, 0.06022302806377411, 0.12044605612754822, 0.05990641564130783, 0.011981283314526081, 0.0639001727104187, 0.003993760794401169, 0.047925133258104324, 0.7188769578933716, 0.043931372463703156, 0.003993760794401169, 0.007987521588802338, 0.015975043177604675, 0.007987521588802338, 0.007975061424076557, 0.03987530991435051, 0.007975061424076557, 0.6858553290367126, 0.23127679526805878, 0.007975061424076557, 0.7582141757011414, 0.3156643509864807, 0.015266385860741138, 0.103684201836586, 0.09986761212348938, 0.12690183520317078, 0.034508392214775085, 0.021468356251716614, 0.041346460580825806, 0.004929770715534687, 0.10129883140325546, 0.014630286954343319, 0.03164594620466232, 0.02130933105945587, 0.008110268041491508, 0.01924200728535652, 0.0073151434771716595, 0.022899579256772995, 0.005883919540792704, 0.0030214721336960793, 0.0011131740175187588, 0.03600451350212097, 0.0060007525607943535, 0.024003010243177414, 0.09001128375530243, 0.10201279073953629, 0.0060007525607943535, 0.0060007525607943535, 0.012001505121588707, 0.012001505121588707, 0.4860609471797943, 0.012001505121588707, 0.03600451350212097, 0.09601204097270966, 0.030003761872649193, 0.018002256751060486, 0.0060007525607943535, 0.018002256751060486, 0.9665425419807434, 0.0161090437322855, 0.22684702277183533, 0.015618975274264812, 0.07214479148387909, 0.16585864126682281, 0.12792684137821198, 0.059500858187675476, 0.012643932364881039, 0.06247590109705925, 0.0074376072734594345, 0.12346427887678146, 0.011900171637535095, 0.031981710344552994, 0.016362736001610756, 0.008181368000805378, 0.026031624525785446, 0.015618975274264812, 0.0074376072734594345, 0.004462564364075661, 0.002975042909383774, 0.0007437607273459435, 0.9447920918464661, 0.9078081250190735, 0.9574703574180603, 0.9342731833457947, 0.01789974793791771, 0.01789974793791771, 0.026849621906876564, 0.08054886758327484, 0.01789974793791771, 0.008949873968958855, 0.5817418098449707, 0.1789974868297577, 0.01789974793791771, 0.008949873968958855, 0.01789974793791771, 0.03579949587583542, 0.04930488392710686, 0.10309202969074249, 0.15015578269958496, 0.008964523673057556, 0.033616963773965836, 0.080680713057518, 0.21514858305454254, 0.017929047346115112, 0.053787145763635635, 0.08516297489404678, 0.015687916427850723, 0.05826940760016441, 0.017929047346115112, 0.002241130918264389, 0.002241130918264389, 0.011205654591321945, 0.011205654591321945, 0.013446786440908909, 0.002241130918264389, 0.06947506219148636, 0.0762101486325264, 0.0762101486325264, 0.7621014714241028, 0.7295987010002136, 0.00865136831998825, 0.0173027366399765, 0.002883789362385869, 0.0173027366399765, 0.051908209919929504, 0.023070314899086952, 0.08362989127635956, 0.005767578724771738, 0.002883789362385869, 0.014418946579098701, 0.037489261478185654, 0.9763222336769104, 0.050874076783657074, 0.025437038391828537, 0.025437038391828537, 0.8394222855567932, 0.025437038391828537, 0.8849115967750549, 0.05419135093688965, 0.023224864155054092, 0.007741621695458889, 0.023224864155054092, 0.8593199849128723, 0.007741621695458889, 0.007741621695458889, 0.015483243390917778, 0.01063564047217369, 0.01063564047217369, 0.01063564047217369, 0.04786038398742676, 0.638138473033905, 0.09572076797485352, 0.1063564121723175, 0.01063564047217369, 0.005317820236086845, 0.04254256188869476, 0.015953460708260536, 0.9394105076789856, 0.009630902670323849, 0.06741631776094437, 0.14446353912353516, 0.7223176956176758, 0.02889270707964897, 0.009630902670323849, 0.009630902670323849, 0.07959092408418655, 0.8755001425743103, 0.888461709022522, 0.03447624295949936, 0.02585718221962452, 0.8963823318481445, 0.00861906073987484, 0.02585718221962452, 0.8937361836433411, 0.011922246776521206, 0.9537797570228577, 0.0032358570024371147, 0.006471714004874229, 0.016179285943508148, 0.49185025691986084, 0.006471714004874229, 0.18444384634494781, 0.0032358570024371147, 0.26534026861190796, 0.0032358570024371147, 0.0032358570024371147, 0.01941514201462269, 0.08506817370653152, 0.15595830976963043, 0.11342422664165497, 0.014178028330206871, 0.00472600944340229, 0.01890403777360916, 0.49623098969459534, 0.07561615109443665, 0.00945201888680458, 0.014178028330206871, 0.006873177830129862, 0.03436588868498802, 0.020619533956050873, 0.006873177830129862, 0.006873177830129862, 0.006873177830129862, 0.7079373598098755, 0.12371720373630524, 0.054985422641038895, 0.006873177830129862, 0.006873177830129862, 0.006873177830129862, 0.07606492191553116, 0.010866417549550533, 0.06519850343465805, 0.021732835099101067, 0.1412634253501892, 0.021732835099101067, 0.010866417549550533, 0.6411186456680298, 0.04249602183699608, 0.04249602183699608, 0.08499204367399216, 0.0084992041811347, 0.0084992041811347, 0.7309315800666809, 0.0169984083622694, 0.0084992041811347, 0.0084992041811347, 0.0084992041811347, 0.0084992041811347, 0.0084992041811347, 0.0084992041811347, 0.9229845404624939, 0.022524626925587654, 0.008259029127657413, 0.052557460963726044, 0.015767239034175873, 0.04730171337723732, 0.1276395469903946, 0.006006566807627678, 0.43847939372062683, 0.16067565977573395, 0.015767239034175873, 0.011262313462793827, 0.0037541042547672987, 0.07958701252937317, 0.0037541042547672987, 0.0015016417019069195, 0.0015016417019069195, 0.0015016417019069195, 0.003003283403813839, 0.0007508208509534597, 0.014783081598579884, 0.005279672332108021, 0.031678032130002975, 0.0010559344664216042, 0.03801364079117775, 0.06018826365470886, 0.0010559344664216042, 0.6831895709037781, 0.03695770353078842, 0.0021118689328432083, 0.0021118689328432083, 0.0010559344664216042, 0.11192905157804489, 0.0010559344664216042, 0.0010559344664216042, 0.006335606332868338, 0.0010559344664216042, 0.004481185227632523, 0.026887111365795135, 0.004481185227632523, 0.026887111365795135, 0.82901930809021, 0.08962370455265045, 0.004481185227632523, 0.9602854251861572, 0.9269831776618958, 0.03433271124958992, 0.867809534072876, 0.14662082493305206, 0.03266681358218193, 0.09838028997182846, 0.050519607961177826, 0.11851216852664948, 0.08850427716970444, 0.05811654403805733, 0.1272486448287964, 0.017472947016358376, 0.06077546998858452, 0.09951983392238617, 0.021271415054798126, 0.03494589403271675, 0.008736473508179188, 0.011775246821343899, 0.015573713928461075, 0.0018992334371432662, 0.0034186202101409435, 0.002279080217704177, 0.0015193867729976773, 0.02187296934425831, 0.03280945494771004, 0.010936484672129154, 0.07108715176582336, 0.7655539512634277, 0.02187296934425831, 0.01640472747385502, 0.03280945494771004, 0.005468242336064577, 0.026745043694972992, 0.9360765218734741, 0.00935372058302164, 0.00935372058302164, 0.17772068083286285, 0.7857125401496887, 0.00935372058302164, 0.0630369707942009, 0.029093986377120018, 0.07273496687412262, 0.303062379360199, 0.004848998039960861, 0.0072734965942800045, 0.0024244990199804306, 0.22305390238761902, 0.016971493139863014, 0.016971493139863014, 0.004848998039960861, 0.0072734965942800045, 0.0024244990199804306, 0.225478395819664, 0.012122494168579578, 0.009697996079921722, 0.9473299980163574, 0.006128514185547829, 0.48823830485343933, 0.018385542556643486, 0.006128514185547829, 0.012257028371095657, 0.0020428381394594908, 0.4289959967136383, 0.0040856762789189816, 0.0020428381394594908, 0.0040856762789189816, 0.012257028371095657, 0.0020428381394594908, 0.0040856762789189816, 0.0040856762789189816, 0.0020428381394594908, 0.0020428381394594908, 0.03824399784207344, 0.05089614540338516, 0.13227246701717377, 0.04457007348537445, 0.033930763602256775, 0.061966776847839355, 0.24729201197624207, 0.058372415602207184, 0.11372557282447815, 0.022716360166668892, 0.025879396125674248, 0.04730178788304329, 0.06412339210510254, 0.03709380328655243, 0.0051758792251348495, 0.006038526073098183, 0.0008626465569250286, 0.0028754884842783213, 0.004313232842832804, 0.0023003907408565283, 0.8751060962677002, 0.01080377958714962, 0.01080377958714962, 0.02160755917429924, 0.02160755917429924, 0.01080377958714962, 0.01080377958714962, 0.01080377958714962, 0.9352583289146423, 0.0688316747546196, 0.04858706519007683, 0.07423023879528046, 0.08435254544019699, 0.14036263525485992, 0.024968354031443596, 0.015520867891609669, 0.024293532595038414, 0.33066198229789734, 0.02361871302127838, 0.02901727519929409, 0.07153096050024033, 0.014171227812767029, 0.004723742604255676, 0.008772664703428745, 0.02631799317896366, 0.0020244610495865345, 0.0053985631093382835, 0.0020244610495865345, 0.9064953923225403, 0.06251692771911621, 0.916746973991394, 0.915748655796051, 0.00653237197548151, 0.00653237197548151, 0.01306474395096302, 0.00653237197548151, 0.07838845998048782, 0.587913453578949, 0.00653237197548151, 0.04572660103440285, 0.019597114995121956, 0.019597114995121956, 0.00653237197548151, 0.19597114622592926, 0.023591728881001472, 0.9672608971595764, 0.971346914768219, 0.054891202598810196, 0.027445601299405098, 0.08233679831027985, 0.03659413382411003, 0.03659413382411003, 0.009148533456027508, 0.03659413382411003, 0.6861400008201599, 0.009148533456027508, 0.8869799971580505, 0.8653969168663025, 0.9629349112510681, 0.007719370070844889, 0.08587799221277237, 0.08587799221277237, 0.03184239938855171, 0.026052873581647873, 0.041491612792015076, 0.08201830834150314, 0.006754448637366295, 0.5075485706329346, 0.008684291504323483, 0.02701779454946518, 0.026052873581647873, 0.0019298425177112222, 0.026052873581647873, 0.0048246062360703945, 0.0048246062360703945, 0.0009649212588556111, 0.0019298425177112222, 0.02412303164601326, 0.6454025506973267, 0.038096677511930466, 0.020168829709291458, 0.03361471742391586, 0.05602452903985977, 0.09412120282649994, 0.004481962416321039, 0.011204905807971954, 0.008963924832642078, 0.0022409812081605196, 0.058265507221221924, 0.015686867758631706, 0.0022409812081605196, 0.006722943391650915, 0.0022409812081605196, 0.9224029183387756, 0.005226078908890486, 0.002613039454445243, 0.002613039454445243, 0.05748686566948891, 0.002613039454445243, 0.002613039454445243, 0.11180247366428375, 0.8571522831916809, 0.03726749122142792, 0.11454861611127853, 0.04716707766056061, 0.023583538830280304, 0.6300173997879028, 0.03369076922535896, 0.011791769415140152, 0.023583538830280304, 0.015160846523940563, 0.005053615663200617, 0.005053615663200617, 0.025268077850341797, 0.025268077850341797, 0.0016845385544002056, 0.011791769415140152, 0.00842269230633974, 0.011791769415140152, 0.0033690771088004112, 0.0033690771088004112, 0.0016845385544002056, 0.008255323395133018, 0.033021293580532074, 0.008255323395133018, 0.008255323395133018, 0.016510646790266037, 0.16510646045207977, 0.016510646790266037, 0.7429790496826172, 0.010078608058393002, 0.045353733003139496, 0.015117911621928215, 0.005039304029196501, 0.005039304029196501, 0.005039304029196501, 0.11086468398571014, 0.5392054915428162, 0.24188658595085144, 0.005039304029196501, 0.010078608058393002, 0.010078608058393002, 0.05257933586835861, 0.22534000873565674, 0.09451761096715927, 0.02096913941204548, 0.05570905655622482, 0.06165552884340286, 0.14584505558013916, 0.017526445910334587, 0.05101447552442551, 0.03974747285246849, 0.050075557082891464, 0.08168575167655945, 0.02691561169922352, 0.011892944574356079, 0.01846536248922348, 0.008137278258800507, 0.004068639129400253, 0.0021908057387918234, 0.03004533424973488, 0.00187783339060843, 0.038359932601451874, 0.04475325345993042, 0.12147311866283417, 0.1534397304058075, 0.019179966300725937, 0.025573287159204483, 0.012786643579602242, 0.006393321789801121, 0.012786643579602242, 0.012786643579602242, 0.006393321789801121, 0.05753989890217781, 0.4475325345993042, 0.03196660801768303, 0.8677894473075867, 0.005439355969429016, 0.42336320877075195, 0.014504949562251568, 0.05620667710900307, 0.03626237437129021, 0.08793625235557556, 0.1731528341770172, 0.005439355969429016, 0.009065593592822552, 0.002719677984714508, 0.12555846571922302, 0.012691830284893513, 0.001813118695281446, 0.014504949562251568, 0.02085086517035961, 0.004986076150089502, 0.0004532796738203615, 0.0004532796738203615, 0.002719677984714508, 0.002719677984714508, 0.006025223061442375, 0.054227009415626526, 0.0723026767373085, 0.06025223433971405, 0.058243826031684875, 0.05221860110759735, 0.15665580332279205, 0.02811770886182785, 0.038159746676683426, 0.02811770886182785, 0.29523593187332153, 0.06025223433971405, 0.01205044612288475, 0.058243826031684875, 0.004016815684735775, 0.01205044612288475, 0.0020084078423678875, 0.0020084078423678875, 0.004016815684735775, 0.0020084078423678875, 0.04577695578336716, 0.9155390858650208, 0.9687536954879761, 0.9385293126106262, 0.040545713156461716, 0.8920057415962219, 0.9492549896240234, 0.020196914672851562, 0.9575685262680054, 0.01994934491813183, 0.11699556559324265, 0.06381575763225555, 0.1276315152645111, 0.010635959915816784, 0.010635959915816784, 0.03190787881612778, 0.03190787881612778, 0.1808113157749176, 0.3828945755958557, 0.010635959915816784, 0.2726827561855316, 0.6817069053649902, 0.0078075653873384, 0.0078075653873384, 0.0156151307746768, 0.046845391392707825, 0.0078075653873384, 0.0078075653873384, 0.8119868040084839, 0.0156151307746768, 0.023422695696353912, 0.03903782740235329, 0.0078075653873384, 0.0078075653873384, 0.10589729994535446, 0.060008469969034195, 0.022944414988160133, 0.5171318054199219, 0.08118793368339539, 0.007059819996356964, 0.010589729994535446, 0.01764954999089241, 0.01941450498998165, 0.061773426830768585, 0.007059819996356964, 0.060008469969034195, 0.003529909998178482, 0.007059819996356964, 0.003529909998178482, 0.007059819996356964, 0.005294864997267723, 0.007059819996356964, 0.08115100115537643, 0.8520854711532593, 0.02028775028884411, 0.9074755907058716, 0.04537377879023552, 0.04280745983123779, 0.08756071329116821, 0.04994203522801399, 0.5357418656349182, 0.02010653354227543, 0.023349523544311523, 0.06421118974685669, 0.009728968143463135, 0.005188783165067434, 0.028538307175040245, 0.014917750842869282, 0.022052327170968056, 0.009728968143463135, 0.04669904708862305, 0.007134576793760061, 0.016214946284890175, 0.0006485978956334293, 0.0012971957912668586, 0.009080369956791401, 0.003891587257385254, 0.02425043284893036, 0.03637564927339554, 0.00727513013407588, 0.15762782096862793, 0.0824514701962471, 0.02425043284893036, 0.02425043284893036, 0.004850086756050587, 0.11640208214521408, 0.04122573509812355, 0.019400347024202347, 0.05335095152258873, 0.29343023896217346, 0.004850086756050587, 0.009700173512101173, 0.09700173139572144, 0.0024250433780252934, 0.005305759608745575, 0.22814767062664032, 0.09019791334867477, 0.11142095178365707, 0.013264399021863937, 0.013264399021863937, 0.15386703610420227, 0.013264399021863937, 0.01061151921749115, 0.0424460768699646, 0.015917278826236725, 0.07958639413118362, 0.03979319706559181, 0.0026528798043727875, 0.01061151921749115, 0.0026528798043727875, 0.15651990473270416, 0.007958639413118362, 0.8591833710670471, 0.9695476293563843, 0.9173223972320557, 0.07242018729448318, 0.8870536088943481, 0.22219912707805634, 0.0879463404417038, 0.06784432381391525, 0.0570753812789917, 0.03302474692463875, 0.05887020379304886, 0.10194596648216248, 0.04738333448767662, 0.050255052745342255, 0.03553749993443489, 0.024050632491707802, 0.10051010549068451, 0.03338371217250824, 0.02943510189652443, 0.019025126472115517, 0.01579444482922554, 0.006820328533649445, 0.0021537879947572947, 0.005384469870477915, 0.0010768939973786473, 0.9667744636535645, 0.015345626510679722, 0.8485553860664368, 0.02020370028913021, 0.1010185033082962, 0.9662452936172485, 0.009760973043739796, 0.004880486521869898, 0.014641459099948406, 0.9516948461532593, 0.004880486521869898, 0.925731360912323, 0.904177725315094, 0.950682520866394, 0.8337842226028442, 0.0038279166910797358, 0.8536254167556763, 0.015311666764318943, 0.0076558333821594715, 0.08804208040237427, 0.0038279166910797358, 0.0076558333821594715, 0.0038279166910797358, 0.0038279166910797358, 0.0038279166910797358, 0.9479489922523499, 0.07137472182512283, 0.005947893485426903, 0.005947893485426903, 0.6602161526679993, 0.2022283673286438, 0.02379157394170761, 0.005947893485426903, 0.01784368045628071, 0.07334189116954803, 0.2566966116428375, 0.5867351293563843, 0.0022965208627283573, 0.09071257710456848, 0.049375198781490326, 0.08382301032543182, 0.0815264880657196, 0.07463692873716354, 0.14123603701591492, 0.005741302389651537, 0.012630864977836609, 0.08037823438644409, 0.1286051720380783, 0.011482604779303074, 0.00918608345091343, 0.019520428031682968, 0.0011482604313641787, 0.012630864977836609, 0.0011482604313641787, 0.19175949692726135, 0.0011482604313641787, 0.9150211811065674, 0.9469617009162903, 0.7577356100082397, 0.012842976488173008, 0.05137190595269203, 0.012842976488173008, 0.012842976488173008, 0.10274381190538406, 0.012842976488173008, 0.0385289303958416, 0.030532533302903175, 0.06106506660580635, 0.8243784308433533, 0.11799316108226776, 0.12120698392391205, 0.08172289282083511, 0.04315703362226486, 0.064735546708107, 0.12120698392391205, 0.10559699684381485, 0.02066028118133545, 0.031219981610774994, 0.06289908289909363, 0.03902497515082359, 0.05325761437416077, 0.04591173678636551, 0.026169689372181892, 0.039943210780620575, 0.015150872990489006, 0.0018364695133641362, 0.005968526005744934, 0.0018364695133641362, 0.0009182347566820681, 0.9546530842781067, 0.010125651024281979, 0.7290468811988831, 0.010125651024281979, 0.010125651024281979, 0.040502604097127914, 0.010125651024281979, 0.10125651210546494, 0.03037695400416851, 0.040502604097127914, 0.010125651024281979, 0.010125651024281979, 0.9239048957824707, 0.9600746631622314, 0.06353759765625, 0.116485595703125, 0.0476531982421875, 0.11251449584960938, 0.08074569702148438, 0.04500579833984375, 0.13898849487304688, 0.025150299072265625, 0.00794219970703125, 0.03441619873046875, 0.033092498779296875, 0.031768798828125, 0.01323699951171875, 0.16546249389648438, 0.031768798828125, 0.00794219970703125, 0.035739898681640625, 0.00264739990234375, 0.0052947998046875, 0.00973384827375412, 0.00973384827375412, 0.00973384827375412, 0.12654002010822296, 0.00973384827375412, 0.7787078619003296, 0.03893539309501648, 0.8659856915473938, 0.04027840495109558, 0.02013920247554779, 0.02013920247554779, 0.02013920247554779, 0.13909752666950226, 0.8345851302146912, 0.008090190589427948, 0.008090190589427948, 0.12135285884141922, 0.004045095294713974, 0.012135285884141922, 0.4854114353656769, 0.02022547647356987, 0.1253979504108429, 0.11326266825199127, 0.028315667062997818, 0.008090190589427948, 0.004045095294713974, 0.024270571768283844, 0.02022547647356987, 0.008090190589427948, 0.004045095294713974, 0.004045095294713974, 0.9001132845878601, 0.9528608918190002, 0.047688957303762436, 0.011922239325940609, 0.6080341935157776, 0.09537791460752487, 0.2265225499868393, 0.03504978492856026, 0.14019913971424103, 0.03504978492856026, 0.28039827942848206, 0.45564720034599304, 0.9270829558372498, 0.044874828308820724, 0.8526217341423035, 0.765017569065094, 0.0011087211314588785, 0.03658779710531235, 0.015522095374763012, 0.03658779710531235, 0.002217442262917757, 0.002217442262917757, 0.03437035530805588, 0.04213140159845352, 0.002217442262917757, 0.022174421697854996, 0.0011087211314588785, 0.02106570079922676, 0.012195932678878307, 0.0011087211314588785, 0.0033261633943766356, 0.6994562745094299, 0.04843880236148834, 0.032938383519649506, 0.06781432032585144, 0.003875104011967778, 0.025188175961375237, 0.034875936806201935, 0.001937552005983889, 0.011625312268733978, 0.040688592940568924, 0.001937552005983889, 0.013562864623963833, 0.005812656134366989, 0.001937552005983889, 0.007750208023935556, 0.029782060533761978, 0.1489102989435196, 0.012763740494847298, 0.029782060533761978, 0.11912824213504791, 0.5701137185096741, 0.03829122334718704, 0.00425458000972867, 0.012763740494847298, 0.012763740494847298, 0.00425458000972867, 0.570640504360199, 0.9127997159957886, 0.8872182369232178, 0.08449697494506836, 0.8831873536109924, 0.9610825181007385, 0.07958953082561493, 0.013264921493828297, 0.8091601729393005, 0.026529842987656593, 0.026529842987656593, 0.026529842987656593, 0.014446687884628773, 0.10112681239843369, 0.09287156164646149, 0.15891356766223907, 0.016510499641299248, 0.018574312329292297, 0.14653068780899048, 0.008255249820649624, 0.002063812455162406, 0.002063812455162406, 0.012382875196635723, 0.04334006458520889, 0.016510499641299248, 0.34465670585632324, 0.008255249820649624, 0.002063812455162406, 0.002063812455162406, 0.002063812455162406, 0.002063812455162406, 0.004127624910324812, 0.08294543623924255, 0.0599050372838974, 0.035328611731529236, 0.08755351603031158, 0.07372927665710449, 0.012288212776184082, 0.03993669152259827, 0.032256558537483215, 0.016896292567253113, 0.06758517026901245, 0.12595418095588684, 0.18278716504573822, 0.08601748943328857, 0.04147271811962128, 0.016896292567253113, 0.019968345761299133, 0.0015360265970230103, 0.004608079791069031, 0.007680132985115051, 0.0030720531940460205, 0.9285721182823181, 0.8268514275550842, 0.9453992247581482, 0.6987735033035278, 0.285662978887558, 0.012420129962265491, 0.049680519849061966, 0.571325957775116, 0.024840259924530983, 0.024840259924530983, 0.026978900656104088, 0.053957801312208176, 0.32374680042266846, 0.053957801312208176, 0.026978900656104088, 0.45864132046699524, 0.9218246340751648, 0.9706394672393799, 0.3224489390850067, 0.005465236492455006, 0.21860945224761963, 0.016395708546042442, 0.021860945969820023, 0.005465236492455006, 0.027326181530952454, 0.021860945969820023, 0.3388446569442749, 0.016395708546042442, 0.005465236492455006, 0.19270066916942596, 0.051386844366788864, 0.012846711091697216, 0.7194158434867859, 0.9580186605453491, 0.020315021276474, 0.040630042552948, 0.9141759872436523, 0.00704234978184104, 0.537566065788269, 0.002347450004890561, 0.00704234978184104, 0.2136179506778717, 0.002347450004890561, 0.009389800019562244, 0.01408469956368208, 0.002347450004890561, 0.004694900009781122, 0.03755920007824898, 0.05868624895811081, 0.02816939912736416, 0.002347450004890561, 0.044601548463106155, 0.02816939912736416, 0.8213465213775635, 0.005299009848386049, 0.010598019696772099, 0.03179405629634857, 0.042392078787088394, 0.042392078787088394, 0.005299009848386049, 0.03179405629634857, 0.9211050868034363, 0.9561619162559509, 0.22369207441806793, 0.025335291400551796, 0.13996203243732452, 0.210097536444664, 0.09825149178504944, 0.07755070924758911, 0.023790456354618073, 0.04016570374369621, 0.021318720653653145, 0.037076033651828766, 0.017302149906754494, 0.01699318364262581, 0.028733927756547928, 0.011122810654342175, 0.004325537476688623, 0.006797273177653551, 0.004016570281237364, 0.01174074411392212, 0.0018538017757236958, 0.00030896696262061596, 0.9148173332214355, 0.041582606732845306, 0.8763015270233154, 0.012637114152312279, 0.15164537727832794, 0.18955671787261963, 0.012637114152312279, 0.025274228304624557, 0.0442299023270607, 0.012637114152312279, 0.037911344319581985, 0.037911344319581985, 0.0442299023270607, 0.42334333062171936, 0.993813157081604, 0.9626350402832031, 0.10289950668811798, 0.12347940355539322, 0.7408764362335205, 0.020579900592565536, 0.8961805701255798, 0.018901227042078972, 0.1701110452413559, 0.04961572214961052, 0.1393965482711792, 0.3284088373184204, 0.0023626533802598715, 0.0023626533802598715, 0.030714495107531548, 0.021263880655169487, 0.011813267134130001, 0.007087960373610258, 0.007087960373610258, 0.0023626533802598715, 0.004725306760519743, 0.17719900608062744, 0.007087960373610258, 0.018901227042078972, 0.00826839916408062, 0.07028139382600784, 0.04134199768304825, 0.15709958970546722, 0.028939398005604744, 0.01653679832816124, 0.020670998841524124, 0.01653679832816124, 0.487835556268692, 0.04134199768304825, 0.04547619819641113, 0.00413419958204031, 0.04134199768304825, 0.00413419958204031, 0.00413419958204031, 0.012402599677443504, 0.956739068031311, 0.8209672570228577, 0.003909367602318525, 0.0156374704092741, 0.05864051729440689, 0.003909367602318525, 0.023456206545233727, 0.003909367602318525, 0.02736557461321354, 0.003909367602318525, 0.003909367602318525, 0.011728103272616863, 0.0312749408185482, 0.017814261838793755, 0.03562852367758751, 0.9085273146629333, 0.017814261838793755, 0.9602149724960327, 0.05254421755671501, 0.8932517170906067, 0.9213979244232178, 0.015539697371423244, 0.015539697371423244, 0.043511152267456055, 0.06837467104196548, 0.07148260623216629, 0.4910544455051422, 0.015539697371423244, 0.05594291165471077, 0.018647637218236923, 0.0031079393811523914, 0.006215878762304783, 0.02486351504921913, 0.14296521246433258, 0.009323818609118462, 0.009323818609118462, 0.0031079393811523914, 0.006215878762304783, 0.005757821258157492, 0.9270092248916626, 0.034546926617622375, 0.005757821258157492, 0.011515642516314983, 0.9648958444595337, 0.9364256858825684, 0.028376536443829536, 0.023916272446513176, 0.333651602268219, 0.0486166849732399, 0.022740062326192856, 0.03214974328875542, 0.2148543745279312, 0.09605716168880463, 0.020387642085552216, 0.10468269884586334, 0.011762101203203201, 0.019995572045445442, 0.012938311323523521, 0.010193821042776108, 0.021563852205872536, 0.0047048404812812805, 0.006665190681815147, 0.0011762101203203201, 0.0023524202406406403, 0.0047048404812812805, 0.006665190681815147, 0.913826048374176, 0.06413978338241577, 0.012026209384202957, 0.2766028046607971, 0.1723756641149521, 0.03607862815260887, 0.004008736461400986, 0.012026209384202957, 0.008017472922801971, 0.0561223067343235, 0.04008736461400986, 0.02004368230700493, 0.004008736461400986, 0.004008736461400986, 0.004008736461400986, 0.27259406447410583, 0.004008736461400986, 0.9436460137367249, 0.1579025685787201, 0.0384313128888607, 0.15038339793682098, 0.07045740634202957, 0.07491321116685867, 0.12448403984308243, 0.030076680704951286, 0.06878647953271866, 0.061824288219213486, 0.045115020126104355, 0.022557510063052177, 0.04344409331679344, 0.06822950392961502, 0.008076145313680172, 0.009190096519887447, 0.016152290627360344, 0.0013924388913437724, 0.005291267763823271, 0.002506389981135726, 0.0008354633464477956, 0.8562734723091125, 0.11571262776851654, 0.016588130965828896, 0.06635252386331558, 0.22512464225292206, 0.1540326476097107, 0.059243325144052505, 0.0023697330616414547, 0.004739466123282909, 0.049764394760131836, 0.16114184260368347, 0.026067063212394714, 0.004739466123282909, 0.014218398369848728, 0.007109199184924364, 0.20616677403450012, 0.0023697330616414547, 0.0023697330616414547, 0.06386669725179672, 0.05109335854649544, 0.01277333963662386, 0.85581374168396, 0.10481490194797516, 0.017469149082899094, 0.05240745097398758, 0.7861117124557495, 0.0015273147728294134, 0.045819442719221115, 0.085529625415802, 0.0641472190618515, 0.004581944085657597, 0.006109259091317654, 0.10233008861541748, 0.003054629545658827, 0.470412939786911, 0.006109259091317654, 0.01374583225697279, 0.024437036365270615, 0.003054629545658827, 0.1466222107410431, 0.0015273147728294134, 0.003054629545658827, 0.012218518182635307, 0.006109259091317654, 0.9128301739692688, 0.7743442058563232, 0.03758952394127846, 0.0075179049745202065, 0.022553715854883194, 0.022553715854883194, 0.06014323979616165, 0.03758952394127846, 0.0075179049745202065, 0.022553715854883194, 0.003432950936257839, 0.05149426311254501, 0.044628359377384186, 0.0240306556224823, 0.08239082247018814, 0.05149426311254501, 0.5836016535758972, 0.013731803745031357, 0.006865901872515678, 0.05492721498012543, 0.020597705617547035, 0.003432950936257839, 0.044628359377384186, 0.003432950936257839, 0.003432950936257839, 0.003432950936257839, 0.003432950936257839, 0.9561282396316528, 0.0037164632230997086, 0.007432926446199417, 0.018582316115498543, 0.02601524256169796, 0.0037164632230997086, 0.0037164632230997086, 0.9105334877967834, 0.011149389669299126, 0.0037164632230997086, 0.0037164632230997086, 0.0037164632230997086, 0.9415345788002014, 0.034871652722358704, 0.7923649549484253, 0.9422014355659485, 0.026964981108903885, 0.026964981108903885, 0.026964981108903885, 0.9168093800544739, 0.2663733959197998, 0.019933633506298065, 0.0860149934887886, 0.059937428683042526, 0.18527355790138245, 0.08123637735843658, 0.029217790812253952, 0.08164597302675247, 0.015291553921997547, 0.034269463270902634, 0.02061629109084606, 0.02061629109084606, 0.042461369186639786, 0.004369015339761972, 0.018568314611911774, 0.016520339995622635, 0.008055372163653374, 0.0050516738556325436, 0.003549824934452772, 0.0008191904053092003, 0.9836019277572632, 0.9610976576805115, 0.33850619196891785, 0.6093111634254456, 0.010518106631934643, 0.03272299841046333, 0.05609656870365143, 0.018698856234550476, 0.022204892709851265, 0.023373570293188095, 0.10050635039806366, 0.26762738823890686, 0.04440978541970253, 0.015192820690572262, 0.05375921353697777, 0.06310863792896271, 0.26178398728370667, 0.008180749602615833, 0.0023373570293188095, 0.010518106631934643, 0.0035060355439782143, 0.0011686785146594048, 0.0035060355439782143, 0.0011686785146594048, 0.01417273934930563, 0.004049353767186403, 0.022271446883678436, 0.17007286846637726, 0.6256251931190491, 0.12755465507507324, 0.0020246768835932016, 0.004049353767186403, 0.022271446883678436, 0.0060740308836102486, 0.0020246768835932016, 0.0064734178595244884, 0.5486221313476562, 0.009710126556456089, 0.008091771975159645, 0.021038606762886047, 0.3171974718570709, 0.0048550632782280445, 0.01780189946293831, 0.0032367089297622442, 0.011328481137752533, 0.009710126556456089, 0.03236708790063858, 0.0016183544648811221, 0.0032367089297622442, 0.4586297869682312, 0.009554787538945675, 0.01910957507789135, 0.003184929024428129, 0.003184929024428129, 0.012739716097712517, 0.003184929024428129, 0.006369858048856258, 0.42996543645858765, 0.041404079645872116, 0.006369858048856258, 0.029907364398241043, 0.8972209095954895, 0.044861044734716415, 0.14580492675304413, 0.003645123215392232, 0.007290246430784464, 0.01093536987900734, 0.003645123215392232, 0.8055722713470459, 0.014580492861568928, 0.161531463265419, 0.7672744393348694, 0.02679486759006977, 0.02679486759006977, 0.9110255241394043, 0.0062727490440011024, 0.0015681872610002756, 0.009409123100340366, 0.0031363745220005512, 0.0172500591725111, 0.14584141969680786, 0.7401843667030334, 0.01568187214434147, 0.0015681872610002756, 0.0015681872610002756, 0.0015681872610002756, 0.04390924423933029, 0.0062727490440011024, 0.0015681872610002756, 0.9351432919502258, 0.01957005448639393, 0.01957005448639393, 0.9197925329208374, 0.01957005448639393, 0.12292403727769852, 0.02353864535689354, 0.013077025301754475, 0.6983131766319275, 0.01569243147969246, 0.02615405060350895, 0.01569243147969246, 0.002615405013784766, 0.005230810027569532, 0.01830783486366272, 0.03400026634335518, 0.00784621573984623, 0.002615405013784766, 0.002615405013784766, 0.010461620055139065, 0.002615405013784766, 0.11296543478965759, 0.04466075450181961, 0.02101682499051094, 0.751351535320282, 0.01050841249525547, 0.005254206247627735, 0.01050841249525547, 0.0026271031238138676, 0.0026271031238138676, 0.0026271031238138676, 0.02101682499051094, 0.0026271031238138676, 0.00788130983710289, 0.0026271031238138676, 0.02973487228155136, 0.054222412407398224, 0.020989321172237396, 0.7381244897842407, 0.05597152188420296, 0.005247330293059349, 0.04197864234447479, 0.003498220117762685, 0.0017491100588813424, 0.0017491100588813424, 0.005247330293059349, 0.02273843064904213, 0.0017491100588813424, 0.00874555017799139, 0.0017491100588813424, 0.0017491100588813424, 0.0017491100588813424, 0.0017491100588813424, 0.9555788636207581, 0.022751878947019577, 0.16894343495368958, 0.09533387422561646, 0.1326659470796585, 0.031215514987707138, 0.08035886287689209, 0.1632487177848816, 0.04956517741084099, 0.0520961657166481, 0.017716914415359497, 0.03880847990512848, 0.022989805787801743, 0.04133946821093559, 0.052728909999132156, 0.010334867052733898, 0.012444023042917252, 0.012022191658616066, 0.008858457207679749, 0.005483806598931551, 0.0025309878401458263, 0.0010545782279223204, 0.9270684719085693, 0.1255488097667694, 0.08704716712236404, 0.13015225529670715, 0.051893506199121475, 0.09416159987449646, 0.07449229061603546, 0.06779635697603226, 0.0527304969727993, 0.04184960201382637, 0.056496962904930115, 0.027202241122722626, 0.05858943983912468, 0.08202521502971649, 0.007951424457132816, 0.01171788852661848, 0.010462400503456593, 0.00585894426330924, 0.008788416162133217, 0.0050219520926475525, 0.0008369919960387051, 0.010851893573999405, 0.010851893573999405, 0.11937082558870316, 0.8355957865715027, 0.027631867676973343, 0.027631867676973343, 0.041447803378105164, 0.055263735353946686, 0.013815933838486671, 0.08289560675621033, 0.7184285521507263, 0.027631867676973343, 0.14383666217327118, 0.8150743842124939, 0.015981851145625114, 0.015981851145625114, 0.029602428898215294, 0.037003036588430405, 0.11840971559286118, 0.12792478501796722, 0.02643073908984661, 0.023259051144123077, 0.07823499292135239, 0.014801214449107647, 0.42394906282424927, 0.014801214449107647, 0.009515066631138325, 0.04757533222436905, 0.012686754576861858, 0.020087361335754395, 0.0010572295868769288, 0.0031716886442154646, 0.0010572295868769288, 0.0010572295868769288, 0.006343377288430929, 0.004228918347507715, 0.02986029163002968, 0.08958087116479874, 0.8360881209373474, 0.007407297845929861, 0.014814595691859722, 0.014814595691859722, 0.05185108259320259, 0.14814595878124237, 0.16296054422855377, 0.03703648969531059, 0.08148027211427689, 0.014814595691859722, 0.04444378614425659, 0.4074013829231262, 0.02233060449361801, 0.16375775635242462, 0.08001799881458282, 0.06389033794403076, 0.058927983045578, 0.051484446972608566, 0.13212274014949799, 0.025432076305150986, 0.015507363714277744, 0.008063829503953457, 0.037217672914266586, 0.04404091462492943, 0.024191487580537796, 0.2474975287914276, 0.005582651123404503, 0.004342061933130026, 0.005582651123404503, 0.003101472742855549, 0.005582651123404503, 0.0018608836689963937, 0.9144158959388733, 0.040641721338033676, 0.010160430334508419, 0.020320860669016838, 0.010160430334508419, 0.8128344416618347, 0.08128344267606735, 0.020320860669016838, 0.009435639716684818, 0.22645536065101624, 0.0023589099291712046, 0.1438935101032257, 0.0023589099291712046, 0.0023589099291712046, 0.6015220284461975, 0.0023589099291712046, 0.0023589099291712046, 0.11903742700815201, 0.02856898307800293, 0.09999144077301025, 0.1666523963212967, 0.15951015055179596, 0.011903743259608746, 0.019045988097786903, 0.030949732288718224, 0.002380748512223363, 0.03571122884750366, 0.019045988097786903, 0.03333048149943352, 0.011903743259608746, 0.042853474617004395, 0.014284491539001465, 0.002380748512223363, 0.19522137939929962, 0.004761497024446726, 0.002380748512223363, 0.002380748512223363, 0.005754135083407164, 0.6847420334815979, 0.02589360624551773, 0.007192668505012989, 0.001438533770851791, 0.004315601196140051, 0.11939829587936401, 0.004315601196140051, 0.010069736279547215, 0.002877067541703582, 0.018700938671827316, 0.002877067541703582, 0.09925882518291473, 0.002877067541703582, 0.001438533770851791, 0.001438533770851791, 0.007192668505012989, 0.06986334174871445, 0.38596633076667786, 0.06127358600497246, 0.038940221071243286, 0.034931670874357224, 0.09047874808311462, 0.09448730200529099, 0.014888908714056015, 0.028059866279363632, 0.010307705961167812, 0.07959839701652527, 0.02004276216030121, 0.010880356654524803, 0.02863251604139805, 0.009735055267810822, 0.002863251604139805, 0.010307705961167812, 0.002863251604139805, 0.002863251604139805, 0.0022906013764441013, 0.8753134608268738, 0.006036644801497459, 0.012073289602994919, 0.006036644801497459, 0.036219868808984756, 0.012073289602994919, 0.048293158411979675, 0.006036644801497459, 0.05493588745594025, 0.16480766236782074, 0.03662392497062683, 0.007324784994125366, 0.003662392497062683, 0.040286317467689514, 0.5273845195770264, 0.003662392497062683, 0.0219743549823761, 0.029299139976501465, 0.08423502743244171, 0.0219743549823761, 0.003662392497062683, 0.024075107648968697, 0.040125176310539246, 0.012037553824484348, 0.024075107648968697, 0.0040125176310539246, 0.8225661516189575, 0.020062588155269623, 0.020062588155269623, 0.020062588155269623, 0.0040125176310539246, 0.3635757267475128, 0.6314736604690552, 0.9303421378135681, 0.012122318148612976, 0.012122318148612976, 0.9334185123443604, 0.04538390785455704, 0.884986162185669, 0.04538390785455704, 0.8675697445869446, 0.9453848004341125, 0.012300947681069374, 0.11070853471755981, 0.033827606588602066, 0.024601895362138748, 0.05535426735877991, 0.018451422452926636, 0.12608471512794495, 0.015376185066998005, 0.11378376930952072, 0.03997807949781418, 0.14146089553833008, 0.012300947681069374, 0.2552446722984314, 0.009225711226463318, 0.0030752369202673435, 0.021526658907532692, 0.9553419947624207, 0.05945228412747383, 0.051525313407182693, 0.03170788288116455, 0.3963485658168793, 0.19421079754829407, 0.007926970720291138, 0.12088631093502045, 0.011890457011759281, 0.061434026807546616, 0.003963485360145569, 0.0019817426800727844, 0.005945228505879641, 0.003963485360145569, 0.003963485360145569, 0.007926970720291138, 0.01783568412065506, 0.003963485360145569, 0.013872199691832066, 0.9595100283622742, 0.9295337796211243, 0.10970117151737213, 0.06515584886074066, 0.0970689132809639, 0.03723191097378731, 0.12698741257190704, 0.08377180248498917, 0.049199312925338745, 0.06582070142030716, 0.025929367169737816, 0.1163497269153595, 0.027923934161663055, 0.019945668056607246, 0.09374463558197021, 0.009307977743446827, 0.017951101064682007, 0.020610522478818893, 0.01928081177175045, 0.005983700044453144, 0.007978267036378384, 0.0006648555863648653, 0.9348700046539307, 0.0054330783896148205, 0.021732313558459282, 0.0054330783896148205, 0.038031551986932755, 0.021732313558459282, 0.0054330783896148205, 0.010866156779229641, 0.7171663641929626, 0.043464627116918564, 0.0054330783896148205, 0.08149617910385132, 0.0054330783896148205, 0.016299236565828323, 0.010866156779229641, 0.9454402923583984, 0.2777860760688782, 0.004629767965525389, 0.0023148839827626944, 0.02314884029328823, 0.011574420146644115, 0.020833956077694893, 0.0023148839827626944, 0.25232234597206116, 0.006944652181118727, 0.0023148839827626944, 0.009259535931050777, 0.006944652181118727, 0.34954747557640076, 0.013889304362237453, 0.0023148839827626944, 0.009259535931050777, 0.0023148839827626944, 0.04727553948760033, 0.20439718663692474, 0.08481787890195847, 0.07925605028867722, 0.0778655931353569, 0.08620833605527878, 0.0333709679543972, 0.019466398283839226, 0.03615188226103783, 0.029199598357081413, 0.08481787890195847, 0.0333709679543972, 0.009733199141919613, 0.019466398283839226, 0.012514113448560238, 0.0166854839771986, 0.11262702196836472, 0.0027809140738099813, 0.0027809140738099813, 0.00417137099429965, 0.9095970392227173, 0.014029542915523052, 0.34138554334640503, 0.029617924243211746, 0.04364746809005737, 0.04052979126572609, 0.020264895632863045, 0.09353028982877731, 0.0015588381793349981, 0.029617924243211746, 0.018706057220697403, 0.07950074225664139, 0.04052979126572609, 0.0015588381793349981, 0.1932959258556366, 0.0062353527173399925, 0.04052979126572609, 0.0015588381793349981, 0.0015588381793349981, 0.0031176763586699963, 0.0015588381793349981, 0.011090487241744995, 0.011090487241744995, 0.011090487241744995, 0.011090487241744995, 0.9426913857460022, 0.8129698634147644, 0.7165894508361816, 0.9471800327301025, 0.0509304516017437, 0.008488408289849758, 0.05941885709762573, 0.0763956755399704, 0.008488408289849758, 0.008488408289849758, 0.008488408289849758, 0.03395363315939903, 0.008488408289849758, 0.7300031185150146, 0.0522519089281559, 0.19855724275112152, 0.02090076357126236, 0.0034834605176001787, 0.04528498649597168, 0.0034834605176001787, 0.0034834605176001787, 0.01741730235517025, 0.0069669210352003574, 0.0069669210352003574, 0.0069669210352003574, 0.6270228624343872, 0.11056704074144363, 0.02764176018536091, 0.8016110062599182, 0.9202705025672913, 0.027066778391599655, 0.027066778391599655, 0.9023979306221008, 0.9672473073005676, 0.8401615619659424, 0.009046235121786594, 0.3555866479873657, 0.025051113218069077, 0.024355249479413033, 0.02018006332218647, 0.026442842558026314, 0.3493238687515259, 0.002783457050099969, 0.005566914100199938, 0.002783457050099969, 0.07724092900753021, 0.013917285017669201, 0.01461314968764782, 0.037576667964458466, 0.004175185691565275, 0.0034793212544173002, 0.0006958642625249922, 0.0013917285250499845, 0.012525556609034538, 0.012525556609034538, 0.12552650272846222, 0.04079611226916313, 0.025105301290750504, 0.5836982131004333, 0.006276325322687626, 0.003138162661343813, 0.015690812841057777, 0.003138162661343813, 0.003138162661343813, 0.006276325322687626, 0.003138162661343813, 0.009414487518370152, 0.003138162661343813, 0.16946077346801758, 0.003138162661343813, 0.003138162661343813, 0.003138162661343813, 0.8904543519020081, 0.9328428506851196, 0.25502148270606995, 0.04697764292359352, 0.003355545923113823, 0.15435510873794556, 0.006711091846227646, 0.003355545923113823, 0.006711091846227646, 0.003355545923113823, 0.026844367384910583, 0.010066637769341469, 0.0369110070168972, 0.010066637769341469, 0.3456212282180786, 0.003355545923113823, 0.06375537067651749, 0.003355545923113823, 0.02348882146179676, 0.23759029805660248, 0.010799558833241463, 0.021599117666482925, 0.02519896999001503, 0.20879146456718445, 0.0035998530220240355, 0.04319823533296585, 0.010799558833241463, 0.028798824176192284, 0.01799926534295082, 0.0035998530220240355, 0.010799558833241463, 0.0035998530220240355, 0.0863964706659317, 0.2807885408401489, 0.007199706044048071, 0.02339961752295494, 0.28883904218673706, 0.044605523347854614, 0.0650801882147789, 0.06581142544746399, 0.03436818718910217, 0.16160361468791962, 0.008043618872761726, 0.012431046925485134, 0.01754971407353878, 0.049724187701940536, 0.038755618035793304, 0.025593332946300507, 0.07970494776964188, 0.028518283739686012, 0.005849904380738735, 0.025593332946300507, 0.00877485703676939, 0.006581142544746399, 0.008043618872761726, 0.004083345644176006, 0.11127117276191711, 0.051041822880506516, 0.05206265673041344, 0.046958476305007935, 0.050020985305309296, 0.025520911440253258, 0.020416729152202606, 0.019395891577005386, 0.002041672822088003, 0.47468894720077515, 0.08472942560911179, 0.004083345644176006, 0.023479238152503967, 0.0030625092331320047, 0.013270873576402664, 0.0061250184662640095, 0.0051041822880506516, 0.002041672822088003, 0.005842253100126982, 0.005842253100126982, 0.005842253100126982, 0.9698140025138855, 0.005842253100126982, 0.9333519339561462, 0.11049680411815643, 0.16574521362781525, 0.662980854511261, 0.18161644041538239, 0.06486301124095917, 0.7134931683540344, 0.012972602620720863, 0.0011431945022195578, 0.23778444528579712, 0.2194933295249939, 0.02286388911306858, 0.00800236128270626, 0.05373013764619827, 0.048014167696237564, 0.01143194455653429, 0.05373013764619827, 0.0011431945022195578, 0.32009443640708923, 0.0034295832738280296, 0.0022863890044391155, 0.0011431945022195578, 0.0011431945022195578, 0.010288749821484089, 0.0022863890044391155, 0.0011431945022195578, 0.9108408093452454, 0.9641503095626831, 0.9001500010490417, 0.08679605275392532, 0.867960512638092, 0.9542300701141357, 0.47667884826660156, 0.5031610131263733, 0.9084641933441162, 0.43739834427833557, 0.5102980732917786, 0.9219689965248108, 0.8196194171905518, 0.9634053707122803, 0.9258964657783508, 0.05143869295716286, 0.09398484230041504, 0.03524431586265564, 0.07048863172531128, 0.01174810528755188, 0.7048863172531128, 0.03524431586265564, 0.01174810528755188, 0.02296624705195427, 0.9416161179542542, 0.7421401143074036, 0.15030796825885773, 0.0886976346373558, 0.10197572410106659, 0.07223280519247055, 0.10463134199380875, 0.21244943141937256, 0.031867414712905884, 0.047269996255636215, 0.021776067093014717, 0.023900561034679413, 0.023900561034679413, 0.02283831313252449, 0.054705727845430374, 0.010091347619891167, 0.006373482756316662, 0.005842359270900488, 0.013278089463710785, 0.003186741378158331, 0.00478011230006814, 0.0010622470872476697, 0.09161877632141113, 0.0279068686068058, 0.09214531630277634, 0.34278059005737305, 0.1679677516222, 0.03580503910779953, 0.014743250794708729, 0.026327233761548996, 0.008951259776949883, 0.048442110419273376, 0.02158833108842373, 0.026327233761548996, 0.026853779330849648, 0.01684943027794361, 0.011583982966840267, 0.02211487665772438, 0.005791991483420134, 0.0068450807593762875, 0.005265446845442057, 0.0005265446961857378, 0.9668372869491577, 0.10483996570110321, 0.052419982850551605, 0.052419982850551605, 0.1572599560022354, 0.6028298139572144, 0.7942092418670654, 0.011853869073092937, 0.023707738146185875, 0.011853869073092937, 0.0948309525847435, 0.03556160628795624, 0.011853869073092937, 0.011853869073092937, 0.9368219971656799, 0.9694314002990723, 0.8637771606445312, 0.8899562358856201, 0.02069665677845478, 0.02069665677845478, 0.02069665677845478, 0.02069665677845478, 0.8677152395248413, 0.9087870717048645, 0.9333164691925049, 0.9551511406898499, 0.9631139039993286, 0.057124748826026917, 0.0040803393349051476, 0.057124748826026917, 0.040803391486406326, 0.06392531841993332, 0.01768147014081478, 0.009520791471004486, 0.03400282934308052, 0.0013601131504401565, 0.360429972410202, 0.06936576962471008, 0.0367230549454689, 0.1428118795156479, 0.024482036009430885, 0.01632135733962059, 0.01632135733962059, 0.023121923208236694, 0.0040803393349051476, 0.01768147014081478, 0.0013601131504401565, 0.08846583962440491, 0.037913933396339417, 0.10110381990671158, 0.7709165811538696, 0.887302577495575, 0.025500312447547913, 0.9180112481117249, 0.0628342255949974, 0.041889481246471405, 0.041889481246471405, 0.7959001660346985, 0.020944740623235703, 0.9176581501960754, 0.9338605403900146, 0.014661762863397598, 0.33722054958343506, 0.014661762863397598, 0.6157940626144409, 0.055056389421224594, 0.8809022307395935, 0.965861439704895, 0.8767635226249695, 0.9446409344673157, 0.060276661068201065, 0.3032867908477783, 0.0628146231174469, 0.09834612905979156, 0.09961511194705963, 0.027917612344026566, 0.11167044937610626, 0.027283120900392532, 0.013958806172013283, 0.0418764166533947, 0.041241925209760666, 0.029186593368649483, 0.010786349885165691, 0.0323590487241745, 0.008882876485586166, 0.012689823284745216, 0.007613894063979387, 0.0019034735159948468, 0.005710420664399862, 0.003172455821186304, 0.007438811007887125, 0.022316433489322662, 0.06694930046796799, 0.011158216744661331, 0.007438811007887125, 0.01487762201577425, 0.19712848961353302, 0.0037194055039435625, 0.007438811007887125, 0.011158216744661331, 0.5653496384620667, 0.033474650233983994, 0.01487762201577425, 0.011158216744661331, 0.01487762201577425, 0.0037194055039435625, 0.0037194055039435625, 0.9344542026519775, 0.007305143866688013, 0.021915430203080177, 0.1826285868883133, 0.007305143866688013, 0.11688230186700821, 0.007305143866688013, 0.613632082939148, 0.029220575466752052, 0.007305143866688013, 0.009832357056438923, 0.8357503414154053, 0.009832357056438923, 0.009832357056438923, 0.06882649660110474, 0.03932942822575569, 0.009832357056438923, 0.009832357056438923, 0.9168217778205872, 0.020836858078837395, 0.020836858078837395, 0.020836858078837395, 0.06425171345472336, 0.8995240330696106, 0.8902442455291748, 0.9213912487030029, 0.9782800078392029, 0.9465427398681641, 0.07882954180240631, 0.7685880661010742, 0.1280980110168457, 0.8311523795127869, 0.8642879724502563, 0.06328275054693222, 0.374046266078949, 0.03474901244044304, 0.13956107199192047, 0.03474901244044304, 0.013560590334236622, 0.07401822507381439, 0.024861082434654236, 0.02938127890229225, 0.004802708979696035, 0.09294654428958893, 0.06497782468795776, 0.014690639451146126, 0.007910343818366528, 0.004520196933299303, 0.01271305326372385, 0.0011300492333248258, 0.0016950737917795777, 0.0031076353043317795, 0.0033901475835591555, 0.13621874153614044, 0.03202059119939804, 0.10708525776863098, 0.07270248979330063, 0.11207206547260284, 0.15432874858379364, 0.0679781436920166, 0.08215118944644928, 0.033857837319374084, 0.038319725543260574, 0.024146676063537598, 0.04094436392188072, 0.033857837319374084, 0.013123192824423313, 0.008136379532516003, 0.014960439875721931, 0.013385657221078873, 0.004724349360913038, 0.009973626583814621, 0.0005249277455732226, 0.014718151651322842, 0.24284949898719788, 0.6623167991638184, 0.03679537773132324, 0.022077227011322975, 0.007359075825661421, 0.19223323464393616, 0.028350945562124252, 0.08643580973148346, 0.0525529719889164, 0.2219671607017517, 0.08297837525606155, 0.029042432084679604, 0.06569121032953262, 0.017978647723793983, 0.04978702589869499, 0.03734026849269867, 0.018670134246349335, 0.06430824100971222, 0.006223378237336874, 0.024202026426792145, 0.008989323861896992, 0.006223378237336874, 0.0034574323799461126, 0.00207445933483541, 0.0006914864643476903, 0.8857285380363464, 0.9440091252326965, 0.949346661567688, 0.05248231813311577, 0.00477111991494894, 0.06679567694664001, 0.7442946434020996, 0.00477111991494894, 0.028626717627048492, 0.03339783847332001, 0.057253435254096985, 0.03589877858757973, 0.014359511435031891, 0.08615706861019135, 0.05025829002261162, 0.0071797557175159454, 0.03589877858757973, 0.7538743615150452, 0.002545713447034359, 0.005091426894068718, 0.06873425841331482, 0.7586225867271423, 0.048368554562330246, 0.048368554562330246, 0.002545713447034359, 0.03309427574276924, 0.002545713447034359, 0.005091426894068718, 0.005091426894068718, 0.005091426894068718, 0.005091426894068718, 0.005091426894068718, 0.010422877967357635, 0.001737146289087832, 0.013897170312702656, 0.001737146289087832, 0.02779434062540531, 0.08917351067066193, 0.0005790487630292773, 0.7811368107795715, 0.018529560416936874, 0.001737146289087832, 0.006948585156351328, 0.001737146289087832, 0.03705912083387375, 0.003474292578175664, 0.0005790487630292773, 0.0011580975260585546, 0.0005790487630292773, 0.001737146289087832, 0.031702619045972824, 0.18096911907196045, 0.019814137369394302, 0.45704612135887146, 0.0066047124564647675, 0.01849319599568844, 0.07397278398275375, 0.005283770151436329, 0.04491204395890236, 0.0026418850757181644, 0.09114503115415573, 0.035665448755025864, 0.0026418850757181644, 0.0066047124564647675, 0.003962827380746603, 0.00924659799784422, 0.0026418850757181644, 0.0026418850757181644, 0.0026418850757181644, 0.9710110425949097, 0.23709647357463837, 0.05304531380534172, 0.10649248957633972, 0.052241597324609756, 0.13904301822185516, 0.10126832872629166, 0.09242743998765945, 0.02853194996714592, 0.047821152955293655, 0.03536354377865791, 0.015672478824853897, 0.023709647357463837, 0.021700356155633926, 0.00401858426630497, 0.008840885944664478, 0.00803716853260994, 0.011252036318182945, 0.0076353102922439575, 0.004822301212698221, 0.0012055753031745553, 0.01680069789290428, 0.13440558314323425, 0.8232342004776001, 0.9091231226921082, 0.02424328215420246, 0.01212164107710123, 0.02424328215420246, 0.03502640500664711, 0.02335093542933464, 0.01167546771466732, 0.04670187085866928, 0.01167546771466732, 0.02335093542933464, 0.12843014299869537, 0.08172827214002609, 0.03502640500664711, 0.07005281001329422, 0.03502640500664711, 0.4786941707134247, 0.9699963927268982, 0.9618216753005981, 0.07970178872346878, 0.055178165435791016, 0.049047257751226425, 0.6927924752235413, 0.012261814437806606, 0.006130907218903303, 0.006130907218903303, 0.006130907218903303, 0.024523628875613213, 0.024523628875613213, 0.036785442382097244, 0.006130907218903303, 0.020591316744685173, 0.1780543327331543, 0.07146397978067398, 0.03754887357354164, 0.007267523556947708, 0.059351444244384766, 0.12475915998220444, 0.012112539261579514, 0.04602764919400215, 0.03391510993242264, 0.21196943521499634, 0.032703857868909836, 0.10659034550189972, 0.032703857868909836, 0.007267523556947708, 0.00969003140926361, 0.0012112539261579514, 0.003633761778473854, 0.08831623941659927, 0.34973230957984924, 0.037092819809913635, 0.06182136759161949, 0.024728547781705856, 0.060055043548345566, 0.1589692384004593, 0.005298974458128214, 0.003532649716362357, 0.010597948916256428, 0.017663247883319855, 0.012364273890852928, 0.04945709556341171, 0.026494871824979782, 0.03179384768009186, 0.014130598865449429, 0.003532649716362357, 0.040625471621751785, 0.0017663248581811786, 0.003532649716362357, 0.8490281701087952, 0.011096308939158916, 0.14203275740146637, 0.04260982573032379, 0.00843319483101368, 0.017754094675183296, 0.038171302527189255, 0.4434084892272949, 0.005326228216290474, 0.16333766281604767, 0.006213932763785124, 0.015978684648871422, 0.023524174466729164, 0.02929425612092018, 0.021304912865161896, 0.015534832142293453, 0.0008877047221176326, 0.0013315570540726185, 0.002219261834397912, 0.0039946711622178555, 0.007101637776941061, 0.9586629867553711, 0.03140351548790932, 0.09421055018901825, 0.753684401512146, 0.03140351548790932, 0.10001973062753677, 0.009525688365101814, 0.09049404412508011, 0.06429839879274368, 0.09763830900192261, 0.026195643469691277, 0.004762844182550907, 0.03572133183479309, 0.004762844182550907, 0.014288533478975296, 0.028577066957950592, 0.36197617650032043, 0.06906124204397202, 0.03810275346040726, 0.0023814220912754536, 0.03810275346040726, 0.0023814220912754536, 0.007144266739487648, 0.0023814220912754536, 0.013866440393030643, 0.027732880786061287, 0.4853253960609436, 0.041599322110414505, 0.4021267592906952, 0.18009436130523682, 0.07221315801143646, 0.1420874297618866, 0.05028608813881874, 0.14588811993598938, 0.08332287520170212, 0.045023590326309204, 0.04151525720953941, 0.03712984174489975, 0.03508331626653671, 0.02455832064151764, 0.04005345329642296, 0.04063817486166954, 0.0076013850048184395, 0.017834018915891647, 0.023973599076271057, 0.0017541658598929644, 0.0052624973468482494, 0.004970136564224958, 0.001169443828985095, 0.15091128647327423, 0.033751823008060455, 0.16027697920799255, 0.06167217716574669, 0.1418990194797516, 0.07015430927276611, 0.04612160101532936, 0.11327182501554489, 0.030040889978408813, 0.032514844089746475, 0.013253333978354931, 0.032338134944438934, 0.06467626988887787, 0.004594489000737667, 0.02138204500079155, 0.01060266699641943, 0.0021205332595854998, 0.006184889003634453, 0.0035342222545295954, 0.0007068444392643869, 0.9407036304473877, 0.03034527786076069, 0.9143595695495605, 0.9282939434051514, 0.9353930354118347, 0.12841910123825073, 0.05908099561929703, 0.1239059716463089, 0.05108044296503067, 0.10893058031797409, 0.11652085185050964, 0.09251919388771057, 0.0553884319961071, 0.028514785692095757, 0.04041304066777229, 0.060106705874204636, 0.029335355386137962, 0.04246446490287781, 0.015385675244033337, 0.014154821634292603, 0.013334251940250397, 0.010257117450237274, 0.004513131454586983, 0.004923416301608086, 0.00041028467239812016, 0.11136680096387863, 0.7795675992965698, 0.05971206724643707, 0.029856033623218536, 0.8658249378204346, 0.029856033623218536, 0.03458185866475105, 0.3025912642478943, 0.037463679909706116, 0.04034550115466118, 0.057636432349681854, 0.08357282727956772, 0.0028818214777857065, 0.07492735981941223, 0.014409108087420464, 0.014409108087420464, 0.008645464666187763, 0.014409108087420464, 0.03170003741979599, 0.2564821243286133, 0.011527285911142826, 0.0028818214777857065, 0.005763642955571413, 0.0028818214777857065, 0.028523853048682213, 0.04278578236699104, 0.9127632975578308, 0.18085220456123352, 0.012130331248044968, 0.05734338238835335, 0.23488731682300568, 0.1532832682132721, 0.0760902538895607, 0.004411029163748026, 0.03528823330998421, 0.02205514721572399, 0.017644116654992104, 0.020952388644218445, 0.03418547660112381, 0.031979963183403015, 0.005513786803930998, 0.013233087956905365, 0.0077193016186356544, 0.08050128817558289, 0.005513786803930998, 0.004411029163748026, 0.0011027572909370065, 0.9464384913444519, 0.946652889251709, 0.013921366073191166, 0.013921366073191166, 0.027842732146382332, 0.012184024788439274, 0.048736099153757095, 0.012184024788439274, 0.012184024788439274, 0.024368049576878548, 0.012184024788439274, 0.8650657534599304, 0.13408561050891876, 0.08194120228290558, 0.06704280525445938, 0.3203155994415283, 0.04841979965567589, 0.03352140262722969, 0.014898400753736496, 0.007449200376868248, 0.011173800565302372, 0.003724600188434124, 0.003724600188434124, 0.022347601130604744, 0.011173800565302372, 0.011173800565302372, 0.003724600188434124, 0.22347600758075714, 0.003724600188434124, 0.02513163909316063, 0.9550022482872009, 0.005248792469501495, 0.026243964210152626, 0.06298550963401794, 0.09972705692052841, 0.02361956611275673, 0.026243964210152626, 0.03674154728651047, 0.5117572546005249, 0.11284904181957245, 0.005248792469501495, 0.01049758493900299, 0.005248792469501495, 0.05248792842030525, 0.005248792469501495, 0.0026243962347507477, 0.0026243962347507477, 0.0026243962347507477, 0.0026243962347507477, 0.0026243962347507477, 0.007873188704252243, 0.9485646486282349, 0.04516974464058876, 0.014723075553774834, 0.004907691851258278, 0.04416922479867935, 0.02453845925629139, 0.1226922944188118, 0.09324613958597183, 0.004907691851258278, 0.06379999220371246, 0.029446151107549667, 0.058892302215099335, 0.20121535658836365, 0.3189999759197235, 0.004907691851258278, 0.009815383702516556, 0.9364911913871765, 0.9009592533111572, 0.7921937108039856, 0.9398812651634216, 0.02349439077079296, 0.04698878154158592, 0.05873597785830498, 0.15271353721618652, 0.09397756308317184, 0.01174719538539648, 0.03524158522486687, 0.01174719538539648, 0.5403710007667542, 0.01174719538539648, 0.023192765191197395, 0.9045178294181824, 0.023192765191197395, 0.1765037328004837, 0.01765037328004837, 0.026475559920072556, 0.5339238047599792, 0.013237779960036278, 0.004412593320012093, 0.004412593320012093, 0.004412593320012093, 0.004412593320012093, 0.19856670498847961, 0.008825186640024185, 0.004412593320012093, 0.9129043221473694, 0.38447919487953186, 0.05674969404935837, 0.09647448360919952, 0.04114352911710739, 0.09505573660135269, 0.049655981361866, 0.049655981361866, 0.054621580988168716, 0.022699877619743347, 0.03475918620824814, 0.007803082931786776, 0.02199050597846508, 0.024827990680933, 0.008512454107403755, 0.02199050597846508, 0.010640568099915981, 0.002128113526850939, 0.004256227053701878, 0.011349938809871674, 0.0014187423512339592, 0.9429704546928406, 0.7462174296379089, 0.004406795836985111, 0.039661161601543427, 0.014689319767057896, 0.04994368553161621, 0.016158251091837883, 0.007344659883528948, 0.038192231208086014, 0.013220387510955334, 0.008813591673970222, 0.002937863813713193, 0.008813591673970222, 0.011751455254852772, 0.0014689319068565965, 0.019096115604043007, 0.002937863813713193, 0.002937863813713193, 0.010282523930072784, 0.0014689319068565965, 0.12019243836402893, 0.1357545405626297, 0.1261523962020874, 0.045692991465330124, 0.10165034979581833, 0.05794401094317436, 0.13211235404014587, 0.042381905019283295, 0.05562625080347061, 0.03542862460017204, 0.01920430175960064, 0.04900407791137695, 0.0304619949311018, 0.009933259338140488, 0.014899889007210732, 0.007284390274435282, 0.005628847051411867, 0.002648869063705206, 0.005297738127410412, 0.002648869063705206, 0.9645034670829773, 0.00833240058273077, 0.002777467016130686, 0.06388173997402191, 0.08332400768995285, 0.002777467016130686, 0.002777467016130686, 0.002777467016130686, 0.002777467016130686, 0.002777467016130686, 0.002777467016130686, 0.8221302032470703, 0.002777467016130686, 0.008161038160324097, 0.0013601731043308973, 0.08977141976356506, 0.1686614602804184, 0.0027203462086617947, 0.0013601731043308973, 0.0013601731043308973, 0.0013601731043308973, 0.0013601731043308973, 0.0013601731043308973, 0.004080519080162048, 0.0013601731043308973, 0.006800865288823843, 0.0027203462086617947, 0.7018492817878723, 0.0013601731043308973, 0.0013601731043308973, 0.07323580235242844, 0.09764774143695831, 0.7567700147628784, 0.048823870718479156, 0.9396703839302063, 0.9420241713523865, 0.9494578838348389, 0.9508142471313477, 0.8866351246833801, 0.1001039668917656, 0.9295891523361206, 0.656631350517273, 0.852550208568573, 0.06195276975631714, 0.12833073735237122, 0.042039379477500916, 0.15709452331066132, 0.04867717623710632, 0.011062994599342346, 0.15930712223052979, 0.0044251978397369385, 0.10399214923381805, 0.0022125989198684692, 0.05088977515697479, 0.07080316543579102, 0.008850395679473877, 0.019913390278816223, 0.0022125989198684692, 0.12390553951263428, 0.0022125989198684692, 0.0044251978397369385, 0.9571222066879272, 0.025868168100714684, 0.8913297057151794, 0.9082704782485962, 0.9487919211387634, 0.879315972328186, 0.16803273558616638, 0.024004675447940826, 0.7681496143341064, 0.053227633237838745, 0.2649509310722351, 0.0751914530992508, 0.1011127158999443, 0.033044662326574326, 0.038782957941293716, 0.15513183176517487, 0.008112762123346329, 0.05718507617712021, 0.044323381036520004, 0.06668294221162796, 0.02948296256363392, 0.010487228631973267, 0.02137020230293274, 0.011872334405779839, 0.016819139942526817, 0.0007914889720268548, 0.0019787224009633064, 0.007914889603853226, 0.0013851056573912501, 0.8704989552497864, 0.0042612371034920216, 0.4847157299518585, 0.0564613938331604, 0.10226969420909882, 0.009587783366441727, 0.02130618505179882, 0.18536381423473358, 0.006391855888068676, 0.011718402616679668, 0.003195927944034338, 0.023436805233359337, 0.04261237010359764, 0.0021306185517460108, 0.026632731780409813, 0.006391855888068676, 0.0074571650475263596, 0.0010653092758730054, 0.0010653092758730054, 0.0010653092758730054, 0.003195927944034338, 0.9116459488868713, 0.041438452899456024, 0.9138296842575073, 0.033682916313409805, 0.09022209793329239, 0.09503394365310669, 0.08300433307886124, 0.020450342446565628, 0.06616286933422089, 0.22254784405231476, 0.26585444808006287, 0.04811845347285271, 0.010826651938259602, 0.012029613368213177, 0.02285626530647278, 0.013232574798166752, 0.006014806684106588, 0.0012029613135382533, 0.0012029613135382533, 0.0012029613135382533, 0.0036088840570300817, 0.0024059226270765066, 0.1995791792869568, 0.6985270977020264, 0.925041675567627, 0.033037204295396805, 0.9436126351356506, 0.2785138785839081, 0.7208594083786011, 0.976923942565918, 0.003096549538895488, 0.14863437414169312, 0.05264134332537651, 0.040255144238471985, 0.0959930345416069, 0.003096549538895488, 0.003096549538895488, 0.08670338988304138, 0.003096549538895488, 0.470675528049469, 0.015482747927308083, 0.021675847470760345, 0.003096549538895488, 0.006193099077790976, 0.030965495854616165, 0.003096549538895488, 0.00928964838385582, 0.9375399351119995, 0.016812527552247047, 0.4361916780471802, 0.0382952019572258, 0.01868058554828167, 0.007472234312444925, 0.044833406805992126, 0.26806640625, 0.004670146387070417, 0.021482672542333603, 0.01494446862488985, 0.01961461454629898, 0.021482672542333603, 0.009340292774140835, 0.033625055104494095, 0.01774655655026436, 0.004670146387070417, 0.0018680585781112313, 0.005604175850749016, 0.012142380699515343, 0.004670146387070417, 0.15780271589756012, 0.7584711313247681, 0.005090410355478525, 0.06617533415555954, 0.0027252878062427044, 0.47828802466392517, 0.014989083632826805, 0.01362643949687481, 0.005450575612485409, 0.019077014178037643, 0.38017764687538147, 0.0013626439031213522, 0.02043965831398964, 0.0027252878062427044, 0.024527590721845627, 0.0040879319421947, 0.0013626439031213522, 0.025890234857797623, 0.0013626439031213522, 0.0013626439031213522, 0.0013626439031213522, 0.157736137509346, 0.06669380515813828, 0.08680780977010727, 0.043403904885053635, 0.12703581154346466, 0.029641691595315933, 0.1365635097026825, 0.05081432685256004, 0.005293159279972315, 0.06034201383590698, 0.03916937857866287, 0.027524426579475403, 0.03281758725643158, 0.009527686052024364, 0.10374591499567032, 0.01058631855994463, 0.006351790856570005, 0.004234527237713337, 0.0010586318094283342, 0.05538990721106529, 0.013847476802766323, 0.027694953605532646, 0.05538990721106529, 0.8170011043548584, 0.010651502758264542, 0.010651502758264542, 0.028404008597135544, 0.7136507034301758, 0.003550501074641943, 0.003550501074641943, 0.003550501074641943, 0.003550501074641943, 0.003550501074641943, 0.010651502758264542, 0.010651502758264542, 0.18462605774402618, 0.003550501074641943, 0.012101906351745129, 0.12707002460956573, 0.048407625406980515, 0.15127383172512054, 0.012101906351745129, 0.5687896013259888, 0.006050953175872564, 0.048407625406980515, 0.012101906351745129, 0.02225087396800518, 0.9567875862121582, 0.8245723843574524, 0.02681536227464676, 0.0335192009806633, 0.01340768113732338, 0.02681536227464676, 0.04022304341197014, 0.01340768113732338, 0.01340768113732338, 0.09253279119729996, 0.018506556749343872, 0.8698081970214844, 0.018506556749343872, 0.03345046564936638, 0.006690093316137791, 0.22746317088603973, 0.7024598121643066, 0.020070279017090797, 0.006690093316137791, 0.9642725586891174, 0.9237820506095886, 0.15986032783985138, 0.017762258648872375, 0.8170638680458069, 0.12576764822006226, 0.08348369598388672, 0.1423017531633377, 0.04472340643405914, 0.07426796108484268, 0.09107311815023422, 0.14040438830852509, 0.03659188002347946, 0.06288382411003113, 0.044181305915117264, 0.02114197425544262, 0.04662076383829117, 0.035236623138189316, 0.01490780245512724, 0.01626305654644966, 0.005692069884389639, 0.004065764136612415, 0.0024394586216658354, 0.007589426822960377, 0.0008131528738886118, 0.15918149054050446, 0.0029478054493665695, 0.12233392894268036, 0.13854685425758362, 0.34636715054512024, 0.014739027246832848, 0.0029478054493665695, 0.007369513623416424, 0.14149466156959534, 0.005895610898733139, 0.008843416348099709, 0.010317319072782993, 0.008843416348099709, 0.0029478054493665695, 0.005895610898733139, 0.016212930902838707, 0.0029478054493665695, 0.8287590146064758, 0.02238919585943222, 0.006396913435310125, 0.0607706755399704, 0.035183023661375046, 0.10874752700328827, 0.01919073984026909, 0.006396913435310125, 0.006396913435310125, 0.009595369920134544, 0.006396913435310125, 0.03838147968053818, 0.3070518374443054, 0.006396913435310125, 0.006396913435310125, 0.0031984567176550627, 0.32944104075431824, 0.01279382687062025, 0.0031984567176550627, 0.009595369920134544, 0.0031984567176550627, 0.02426235005259514, 0.009704940021038055, 0.6211161613464355, 0.01940988004207611, 0.033967290073633194, 0.05822964012622833, 0.004852470010519028, 0.009704940021038055, 0.11645928025245667, 0.02426235005259514, 0.01940988004207611, 0.01940988004207611, 0.004852470010519028, 0.004852470010519028, 0.01940988004207611, 0.13937868177890778, 0.08792030811309814, 0.13967272639274597, 0.08880244940519333, 0.0849798247218132, 0.08733221143484116, 0.05528099462389946, 0.047047656029462814, 0.035285741090774536, 0.0641024261713028, 0.03293335810303688, 0.03352145478129387, 0.03999050706624985, 0.008821435272693634, 0.014996440149843693, 0.008527387864887714, 0.02293573133647442, 0.004410717636346817, 0.003234526375308633, 0.001176191377453506, 0.09880330413579941, 0.0014114758232608438, 0.01129180658608675, 0.19901809096336365, 0.31052467226982117, 0.018349185585975647, 0.0014114758232608438, 0.005645903293043375, 0.0028229516465216875, 0.2540656328201294, 0.0028229516465216875, 0.0028229516465216875, 0.0028229516465216875, 0.05222460255026817, 0.0014114758232608438, 0.023995088413357735, 0.0028229516465216875, 0.00988033041357994, 0.8268014788627625, 0.7888572812080383, 0.925477147102356, 0.13367167115211487, 0.08763904869556427, 0.11419633030891418, 0.04367198422551155, 0.13278643786907196, 0.09265542030334473, 0.04514738917350769, 0.10357341915369034, 0.047508034855127335, 0.03983592987060547, 0.040426094084978104, 0.027442529797554016, 0.04013101011514664, 0.006786862388253212, 0.017409777268767357, 0.012098319828510284, 0.0035409715492278337, 0.0070819430984556675, 0.0026557287201285362, 0.0011803238885477185, 0.9696422219276428, 0.788324773311615, 0.007805196102708578, 0.03902598097920418, 0.062441568821668625, 0.007805196102708578, 0.046831175684928894, 0.007805196102708578, 0.007805196102708578, 0.015610392205417156, 0.03488336130976677, 0.03270315006375313, 0.16569596529006958, 0.010901049710810184, 0.09810944646596909, 0.09592924267053604, 0.030522938817739487, 0.006540630012750626, 0.09810944646596909, 0.333572119474411, 0.02180209942162037, 0.017441680654883385, 0.028342729434370995, 0.010901049710810184, 0.002180210081860423, 0.002180210081860423, 0.002180210081860423, 0.004360420163720846, 0.004360420163720846, 0.7492836117744446, 0.1458432972431183, 0.729216456413269, 0.8947165608406067, 0.23661406338214874, 0.0342467725276947, 0.0031133429147303104, 0.0031133429147303104, 0.0342467725276947, 0.4389813542366028, 0.0031133429147303104, 0.0031133429147303104, 0.0031133429147303104, 0.16500717401504517, 0.0031133429147303104, 0.0031133429147303104, 0.06538020074367523, 0.011827823705971241, 0.1455732136964798, 0.047311294823884964, 0.0036393303889781237, 0.025475313887000084, 0.34027740359306335, 0.013647489249706268, 0.29933494329452515, 0.05822928622364998, 0.0009098325972445309, 0.0036393303889781237, 0.0027294978499412537, 0.02092614956200123, 0.0036393303889781237, 0.014557321555912495, 0.0027294978499412537, 0.0009098325972445309, 0.0009098325972445309, 0.0009098325972445309, 0.0018196651944890618, 0.978687047958374, 0.005593302194029093, 0.6213650703430176, 0.053899094462394714, 0.0005084820440970361, 0.003050892148166895, 0.019830798730254173, 0.19169773161411285, 0.0020339281763881445, 0.06152632459998131, 0.0010169640881940722, 0.006610266398638487, 0.0020339281763881445, 0.0010169640881940722, 0.003559374250471592, 0.0025424102786928415, 0.0010169640881940722, 0.01220356859266758, 0.0005084820440970361, 0.0005084820440970361, 0.009661158546805382, 0.01570778340101242, 0.0026179638225585222, 0.041887421160936356, 0.028797602280974388, 0.08377484232187271, 0.2329987734556198, 0.0026179638225585222, 0.19634728133678436, 0.0026179638225585222, 0.010471855290234089, 0.026179637759923935, 0.010471855290234089, 0.34033527970314026, 0.0026179638225585222, 0.8794873356819153, 0.93818199634552, 0.0293181873857975, 0.06285074353218079, 0.005713704042136669, 0.011427408084273338, 0.017141111195087433, 0.794204831123352, 0.07999185472726822, 0.017141111195087433, 0.005713704042136669, 0.007930117659270763, 0.025772880762815475, 0.025772880762815475, 0.005947588011622429, 0.001982529414817691, 0.001982529414817691, 0.005947588011622429, 0.8901556730270386, 0.001982529414817691, 0.001982529414817691, 0.015860235318541527, 0.001982529414817691, 0.003965058829635382, 0.001982529414817691, 0.001982529414817691, 0.001982529414817691, 0.9136817455291748, 0.10221841931343079, 0.008518201299011707, 0.8518201112747192, 0.017036402598023415, 0.008518201299011707, 0.01838809810578823, 0.006129366345703602, 0.9316636919975281, 0.04290556535124779, 0.8787624835968018, 0.07886330038309097, 0.011266185902059078, 0.011266185902059078, 0.282439261674881, 0.05286296457052231, 0.07929445058107376, 0.036248888820409775, 0.0996844470500946, 0.04531111195683479, 0.05814926326274872, 0.06570111215114594, 0.009062222205102444, 0.03851444646716118, 0.012838148511946201, 0.018124444410204887, 0.02945222333073616, 0.0241659265011549, 0.030207408592104912, 0.09288778156042099, 0.006041481625288725, 0.009817407466471195, 0.008307036943733692, 0.0007551852031610906, 0.06580347567796707, 0.22415128350257874, 0.06160883232951164, 0.07235760986804962, 0.07419276237487793, 0.07471709698438644, 0.11142022907733917, 0.015729915350675583, 0.07026028633117676, 0.014943419024348259, 0.043781597167253494, 0.05767635256052017, 0.043781597167253494, 0.012321766465902328, 0.01887589693069458, 0.007864957675337791, 0.01756507158279419, 0.0013108261628076434, 0.008389287628233433, 0.002883817767724395, 0.9574711918830872, 0.9837145209312439, 0.1076568141579628, 0.030278479680418968, 0.1070960983633995, 0.04093201830983162, 0.1732601821422577, 0.07289263606071472, 0.0863497331738472, 0.049903418868780136, 0.035885605961084366, 0.06840693205595016, 0.06728550791740417, 0.0269142035394907, 0.05663197115063667, 0.018503515049815178, 0.007849976420402527, 0.004485700745135546, 0.03308204188942909, 0.005046413280069828, 0.002803562907502055, 0.005046413280069828, 0.005135965999215841, 0.015407898463308811, 0.005135965999215841, 0.04622369259595871, 0.005135965999215841, 0.025679830461740494, 0.010271931998431683, 0.005135965999215841, 0.8679782748222351, 0.005135965999215841, 0.08770321309566498, 0.051705628633499146, 0.1744246780872345, 0.07199517637491226, 0.0458151139318943, 0.14824461936950684, 0.12435530871152878, 0.04843311756849289, 0.07428593188524246, 0.03599758818745613, 0.015708038583397865, 0.04221535474061966, 0.03468858450651169, 0.012762781232595444, 0.004254260566085577, 0.011126527562737465, 0.0029452573508024216, 0.006872266996651888, 0.0055632637813687325, 0.0013090032152831554, 0.08936437219381332, 0.07271142303943634, 0.1781478226184845, 0.05218569561839104, 0.06961319595575333, 0.09149439632892609, 0.08636296540498734, 0.06787044554948807, 0.0398896224796772, 0.04095463454723358, 0.04095463454723358, 0.038727790117263794, 0.0854915902018547, 0.012586531229317188, 0.008520113304257393, 0.009585127234458923, 0.002614125609397888, 0.004453695844858885, 0.006583724170923233, 0.0021300283260643482, 0.9485545754432678, 0.03648286685347557, 0.953671395778656, 0.03532116487622261, 0.03340598940849304, 0.021661696955561638, 0.04958701506257057, 0.08325398713350296, 0.10517667233943939, 0.18086211383342743, 0.013832167722284794, 0.16937880218029022, 0.06107032671570778, 0.038625676184892654, 0.046977173537015915, 0.03966961428523064, 0.10308879613876343, 0.009395434521138668, 0.00835149735212326, 0.01017838716506958, 0.010700356215238571, 0.004436733201146126, 0.009656419046223164, 0.0005219685845077038, 0.9232122898101807, 0.948585569858551], \"Term\": [\"_\", \"_\", \"_\", \"_\", \"_\", \"_\", \"_\", \"_\", \"_\", \"_\", \"_\", \"_\", \"aaa\", \"abdomen\", \"abnormal\", \"abolish\", \"abolish\", \"abolish\", \"abolish\", \"abolish\", \"absolute\", \"absolute\", \"absolute\", \"absolute\", \"absolute\", \"absolute\", \"absolute\", \"absolute\", \"absolute\", \"absolute\", \"absolute\", \"absolute\", \"absolute\", \"absolute\", \"absolute\", \"absurdity\", \"absurdity\", \"accelerator\", \"accelerator\", \"accelerator\", \"accelerator\", \"accelerator\", \"accelerator\", \"accelerator\", \"accelerator\", \"accident\", \"accident\", \"accident\", \"accident\", \"accident\", \"accident\", \"accident\", \"accident\", \"accident\", \"accident\", \"accident\", \"accident\", \"accident\", \"accident\", \"accident\", \"accident\", \"accomodate\", \"accusation\", \"acker\", \"adc\", \"adcom\", \"additive\", \"additive\", \"additive\", \"additive\", \"address\", \"address\", \"address\", \"address\", \"address\", \"address\", \"address\", \"address\", \"address\", \"address\", \"address\", \"address\", \"address\", \"address\", \"address\", \"address\", \"address\", \"address\", \"address\", \"address\", \"administration\", \"administration\", \"administration\", \"administration\", \"administration\", \"administration\", \"administration\", \"administration\", \"administration\", \"administration\", \"administration\", \"administration\", \"administration\", \"administration\", \"administration\", \"administration\", \"administrative\", \"adult\", \"adult\", \"adult\", \"adult\", \"adult\", \"adult\", \"adult\", \"adult\", \"adult\", \"adult\", \"adult\", \"adult\", \"adult\", \"advance\", \"advance\", \"advance\", \"advance\", \"advance\", \"advance\", \"advance\", \"advance\", \"advance\", \"advance\", \"advance\", \"advance\", \"advance\", \"advance\", \"advance\", \"advance\", \"advance\", \"advance\", \"advance\", \"advance\", \"advertising\", \"advertising\", \"advertising\", \"advertising\", \"advertising\", \"aerospace\", \"aerospace\", \"aftermarket\", \"aftermarket\", \"aftermarket\", \"agency\", \"agency\", \"agency\", \"agency\", \"agency\", \"agency\", \"agency\", \"agency\", \"agency\", \"agency\", \"agency\", \"agency\", \"agency\", \"agency\", \"agency\", \"agency\", \"agency\", \"agent\", \"agent\", \"agent\", \"agent\", \"agent\", \"agent\", \"agent\", \"agent\", \"agent\", \"agent\", \"agent\", \"agent\", \"agent\", \"agent\", \"agent\", \"agent\", \"agent\", \"agent\", \"agnostic\", \"ahve\", \"air\", \"air\", \"air\", \"air\", \"air\", \"air\", \"air\", \"air\", \"air\", \"air\", \"air\", \"air\", \"air\", \"air\", \"air\", \"albion\", \"alice\", \"also\", \"also\", \"also\", \"also\", \"also\", \"also\", \"also\", \"also\", \"also\", \"also\", \"also\", \"also\", \"also\", \"also\", \"also\", \"also\", \"also\", \"also\", \"also\", \"also\", \"amd\", \"amendment\", \"amendment\", \"amendment\", \"amendment\", \"amendment\", \"amendment\", \"amendment\", \"amendment\", \"amendment\", \"amendment\", \"amendment\", \"amendment\", \"amendment\", \"amp\", \"amp\", \"amp\", \"amp\", \"amp\", \"amp\", \"amp\", \"amplifier\", \"amplifier\", \"amplifier\", \"amplifier\", \"amplifier\", \"analgesic\", \"ancient\", \"ancient\", \"ancient\", \"ancient\", \"ancient\", \"ancient\", \"ancient\", \"ancient\", \"ancient\", \"ancient\", \"ancient\", \"anesthesiology\", \"animal\", \"animal\", \"animal\", \"animal\", \"animal\", \"animal\", \"animal\", \"animal\", \"animal\", \"animal\", \"animal\", \"animal\", \"animal\", \"animal\", \"animal\", \"animal\", \"annual\", \"annual\", \"annual\", \"annual\", \"annual\", \"annual\", \"annual\", \"annual\", \"annual\", \"annual\", \"ansi\", \"ansi\", \"ansi\", \"ansi\", \"ansi\", \"answer\", \"answer\", \"answer\", \"answer\", \"answer\", \"answer\", \"answer\", \"answer\", \"answer\", \"answer\", \"answer\", \"answer\", \"answer\", \"answer\", \"answer\", \"answer\", \"answer\", \"answer\", \"answer\", \"answer\", \"apparatus\", \"appear\", \"appear\", \"appear\", \"appear\", \"appear\", \"appear\", \"appear\", \"appear\", \"appear\", \"appear\", \"appear\", \"appear\", \"appear\", \"appear\", \"appear\", \"appear\", \"appear\", \"appear\", \"appear\", \"appear\", \"applicant\", \"applicant\", \"applicant\", \"application\", \"application\", \"application\", \"application\", \"application\", \"application\", \"application\", \"application\", \"application\", \"application\", \"application\", \"application\", \"application\", \"application\", \"application\", \"application\", \"application\", \"application\", \"application\", \"application\", \"applied\", \"appreciate\", \"appreciate\", \"appreciate\", \"appreciate\", \"appreciate\", \"appreciate\", \"appreciate\", \"appreciate\", \"appreciate\", \"appreciate\", \"appreciate\", \"appreciate\", \"appreciate\", \"appreciate\", \"appreciate\", \"appreciate\", \"appreciate\", \"appreciate\", \"appreciate\", \"appressian\", \"appressian\", \"appressian\", \"appressian\", \"arab\", \"arab\", \"arab\", \"arab\", \"arab\", \"arab\", \"arab\", \"arab\", \"arab\", \"arab\", \"arab\", \"arab\", \"arabic\", \"arabic\", \"archive\", \"archive\", \"archive\", \"archive\", \"archive\", \"archive\", \"archive\", \"archive\", \"archive\", \"archive\", \"archive\", \"archive\", \"archive\", \"archive\", \"archive\", \"archive\", \"archive\", \"archive\", \"argic\", \"argic\", \"argic\", \"argic\", \"arm\", \"arm\", \"arm\", \"arm\", \"arm\", \"arm\", \"arm\", \"arm\", \"arm\", \"arm\", \"arm\", \"arm\", \"arm\", \"arm\", \"arm\", \"arm\", \"arm\", \"arm\", \"arm\", \"armenian\", \"armenian\", \"armenian\", \"armenian\", \"armenian\", \"armenian\", \"armenian\", \"armenian\", \"armenian\", \"armenian\", \"armenian\", \"armenian\", \"armenian\", \"armenian\", \"armenian\", \"armenian\", \"armenian\", \"armenian\", \"armenian\", \"armenian\", \"arrogance\", \"arrogance\", \"arrogance\", \"arrogance\", \"arrogance\", \"arrogance\", \"arromdian\", \"arromdian\", \"article\", \"article\", \"article\", \"article\", \"article\", \"article\", \"article\", \"article\", \"article\", \"article\", \"article\", \"article\", \"article\", \"article\", \"article\", \"article\", \"article\", \"article\", \"article\", \"article\", \"asala\", \"asala\", \"asala\", \"ascii\", \"ascii\", \"ask\", \"ask\", \"ask\", \"ask\", \"ask\", \"ask\", \"ask\", \"ask\", \"ask\", \"ask\", \"ask\", \"ask\", \"ask\", \"ask\", \"ask\", \"ask\", \"ask\", \"ask\", \"ask\", \"ask\", \"aspiration\", \"aspiration\", \"assailant\", \"assembler\", \"asteroid\", \"asteroid\", \"asteroid\", \"atheism\", \"atheism\", \"atheism\", \"atheism\", \"atheism\", \"atheism\", \"atheism\", \"atheism\", \"atheism\", \"atheism\", \"atheist\", \"atheist\", \"atheist\", \"atheist\", \"atheist\", \"atheist\", \"atheist\", \"atheist\", \"atheist\", \"atheist\", \"atheist\", \"atheist\", \"atheist\", \"atheist\", \"athena\", \"athena\", \"athena\", \"athena\", \"atleast\", \"atleast\", \"atmosphere\", \"atmosphere\", \"atmosphere\", \"atmosphere\", \"atmosphere\", \"atmospheric\", \"att\", \"att\", \"attack\", \"attack\", \"attack\", \"attack\", \"attack\", \"attack\", \"attack\", \"attack\", \"attack\", \"attack\", \"attack\", \"attack\", \"attack\", \"attack\", \"attack\", \"attack\", \"attack\", \"attack\", \"attendance\", \"attest\", \"attest\", \"audio\", \"audio\", \"audio\", \"audio\", \"audio\", \"audio\", \"audio\", \"audio\", \"audio\", \"audio\", \"author\", \"author\", \"author\", \"author\", \"author\", \"author\", \"author\", \"author\", \"author\", \"author\", \"author\", \"author\", \"author\", \"author\", \"author\", \"author\", \"author\", \"author\", \"available\", \"available\", \"available\", \"available\", \"available\", \"available\", \"available\", \"available\", \"available\", \"available\", \"available\", \"available\", \"available\", \"available\", \"available\", \"available\", \"available\", \"available\", \"available\", \"available\", \"ax\", \"ax\", \"ax\", \"ax\", \"ax\", \"ax\", \"azerbadjan\", \"azeri\", \"back\", \"back\", \"back\", \"back\", \"back\", \"back\", \"back\", \"back\", \"back\", \"back\", \"back\", \"back\", \"back\", \"back\", \"back\", \"back\", \"back\", \"back\", \"back\", \"back\", \"backpack\", \"bag\", \"bag\", \"bag\", \"bag\", \"bag\", \"bag\", \"bag\", \"bag\", \"bag\", \"balloon\", \"balloon\", \"bank\", \"bank\", \"bank\", \"bank\", \"bank\", \"bank\", \"bank\", \"bank\", \"bank\", \"bank\", \"bank\", \"bank\", \"bank\", \"bank\", \"bank\", \"bank\", \"banner\", \"baptism\", \"baptize\", \"baptize\", \"barbecue\", \"baseball\", \"baseball\", \"baseball\", \"baseball\", \"baseball\", \"baseball\", \"baseball\", \"baseball\", \"baseball\", \"baseball\", \"baseball\", \"baseball\", \"baseball\", \"baseball\", \"baseball\", \"baseman\", \"battery\", \"battery\", \"battery\", \"battery\", \"battery\", \"battery\", \"battery\", \"battery\", \"battery\", \"battery\", \"battery\", \"bb\", \"be\", \"be\", \"be\", \"be\", \"be\", \"be\", \"be\", \"be\", \"be\", \"be\", \"be\", \"be\", \"be\", \"be\", \"be\", \"be\", \"be\", \"be\", \"be\", \"be\", \"beacon\", \"bean\", \"bean\", \"bear\", \"bear\", \"bear\", \"bear\", \"bear\", \"bear\", \"bear\", \"bear\", \"bear\", \"bear\", \"bear\", \"bear\", \"bear\", \"bear\", \"bear\", \"bear\", \"bear\", \"bear\", \"bear\", \"beep\", \"beep\", \"being\", \"being\", \"being\", \"being\", \"being\", \"being\", \"being\", \"belief\", \"belief\", \"belief\", \"belief\", \"belief\", \"belief\", \"belief\", \"belief\", \"belief\", \"belief\", \"belief\", \"belief\", \"belief\", \"belief\", \"belief\", \"belief\", \"believe\", \"believe\", \"believe\", \"believe\", \"believe\", \"believe\", \"believe\", \"believe\", \"believe\", \"believe\", \"believe\", \"believe\", \"believe\", \"believe\", \"believe\", \"believe\", \"believe\", \"believe\", \"believe\", \"believer\", \"believer\", \"believer\", \"believer\", \"believer\", \"believer\", \"belive\", \"belt\", \"belt\", \"belt\", \"belt\", \"belt\", \"belt\", \"belt\", \"belt\", \"belt\", \"belt\", \"benedikt\", \"benedikt\", \"bernoulli\", \"bike\", \"bike\", \"bike\", \"bike\", \"bike\", \"bike\", \"bike\", \"bike\", \"bike\", \"bike\", \"bike\", \"bike\", \"bike\", \"bike\", \"bike\", \"bike\", \"bike\", \"biker\", \"biker\", \"biker\", \"biker\", \"bio\", \"bio\", \"bio\", \"bio\", \"bit\", \"bit\", \"bit\", \"bit\", \"bit\", \"bit\", \"bit\", \"bit\", \"bit\", \"bit\", \"bit\", \"bit\", \"bit\", \"bit\", \"bit\", \"bit\", \"bit\", \"bit\", \"bit\", \"bit\", \"black\", \"black\", \"black\", \"black\", \"black\", \"black\", \"black\", \"black\", \"black\", \"black\", \"black\", \"black\", \"black\", \"black\", \"black\", \"black\", \"black\", \"black\", \"black\", \"black\", \"blackhawk\", \"blackhawk\", \"blaise\", \"bleed\", \"bless\", \"bless\", \"bless\", \"bless\", \"bless\", \"bless\", \"bless\", \"bless\", \"bless\", \"blindly\", \"blindly\", \"blindly\", \"blood\", \"blood\", \"blood\", \"blood\", \"blood\", \"blood\", \"blood\", \"blood\", \"blood\", \"blood\", \"blood\", \"blood\", \"blood\", \"blood\", \"blood\", \"blood\", \"blood\", \"blood\", \"blue\", \"blue\", \"blue\", \"blue\", \"blue\", \"blue\", \"blue\", \"blue\", \"blue\", \"blue\", \"blue\", \"blue\", \"blue\", \"blue\", \"blue\", \"blue\", \"blue\", \"bmug\", \"boiler\", \"boiling\", \"book\", \"book\", \"book\", \"book\", \"book\", \"book\", \"book\", \"book\", \"book\", \"book\", \"book\", \"book\", \"book\", \"book\", \"book\", \"book\", \"book\", \"book\", \"book\", \"book\", \"bookstore\", \"border\", \"border\", \"border\", \"border\", \"border\", \"border\", \"border\", \"border\", \"border\", \"border\", \"border\", \"border\", \"border\", \"border\", \"bosnian\", \"bow\", \"bowl\", \"bracket\", \"brake\", \"brake\", \"brake\", \"brake\", \"brake\", \"brake\", \"brake\", \"brake\", \"brass\", \"breaker\", \"breaker\", \"breaker\", \"breaker\", \"briefly\", \"briefly\", \"bruin\", \"bruin\", \"bruin\", \"bruin\", \"bruin\", \"buggy\", \"buick\", \"bulldozer\", \"bullet\", \"bullet\", \"bullet\", \"bullet\", \"bullet\", \"bullet\", \"bullet\", \"bullet\", \"bungee\", \"bure\", \"bure\", \"bure\", \"bus\", \"bus\", \"bus\", \"bus\", \"bus\", \"bus\", \"bus\", \"bus\", \"bus\", \"bus\", \"bus\", \"bus\", \"bus\", \"bus\", \"bus\", \"bus\", \"bus\", \"buster\", \"buttonpressmask\", \"buy\", \"buy\", \"buy\", \"buy\", \"buy\", \"buy\", \"buy\", \"buy\", \"buy\", \"buy\", \"buy\", \"buy\", \"buy\", \"buy\", \"buy\", \"buy\", \"buy\", \"buy\", \"buy\", \"buy\", \"byte\", \"byte\", \"byte\", \"byte\", \"byte\", \"byte\", \"byte\", \"byte\", \"cage\", \"cage\", \"cage\", \"cage\", \"cage\", \"cage\", \"cage\", \"cage\", \"cage\", \"call\", \"call\", \"call\", \"call\", \"call\", \"call\", \"call\", \"call\", \"call\", \"call\", \"call\", \"call\", \"call\", \"call\", \"call\", \"call\", \"call\", \"call\", \"call\", \"call\", \"can\", \"can\", \"can\", \"can\", \"can\", \"can\", \"can\", \"can\", \"can\", \"can\", \"can\", \"can\", \"can\", \"can\", \"can\", \"can\", \"can\", \"can\", \"can\", \"can\", \"canada\", \"canadien\", \"candy\", \"candy\", \"canuck\", \"canuck\", \"canuck\", \"canvas\", \"capslock\", \"capsule\", \"captain\", \"captain\", \"captain\", \"captain\", \"captain\", \"captain\", \"car\", \"car\", \"car\", \"car\", \"car\", \"car\", \"car\", \"car\", \"car\", \"car\", \"car\", \"car\", \"car\", \"car\", \"car\", \"car\", \"car\", \"car\", \"car\", \"car\", \"caravan\", \"card\", \"card\", \"card\", \"card\", \"card\", \"card\", \"card\", \"card\", \"card\", \"card\", \"card\", \"card\", \"card\", \"card\", \"card\", \"card\", \"card\", \"card\", \"cargo\", \"cartridge\", \"cartridge\", \"cartridge\", \"cartridge\", \"cartridge\", \"cartridge\", \"case\", \"case\", \"case\", \"case\", \"case\", \"case\", \"case\", \"case\", \"case\", \"case\", \"case\", \"case\", \"case\", \"case\", \"case\", \"case\", \"case\", \"case\", \"case\", \"case\", \"caste\", \"catcher\", \"catcher\", \"catcher\", \"catcher\", \"catcher\", \"caterpillar\", \"catholic\", \"catholic\", \"catholic\", \"catholic\", \"catholic\", \"catholic\", \"catholic\", \"catholic\", \"catholic\", \"cavalier\", \"cd\", \"cd\", \"cd\", \"cd\", \"cd\", \"cd\", \"cd\", \"cd\", \"ceiling\", \"cell\", \"cell\", \"cell\", \"cell\", \"cell\", \"cell\", \"cell\", \"cell\", \"cell\", \"cell\", \"cell\", \"cell\", \"censorship\", \"censorship\", \"centaur\", \"ceremonial\", \"ceremonial\", \"ceremony\", \"ceremony\", \"ceremony\", \"certificate\", \"certificate\", \"championship\", \"championship\", \"chaos\", \"chaos\", \"chaos\", \"charcoal\", \"chastity\", \"chastity\", \"chastity\", \"checker\", \"checker\", \"chemical\", \"chemical\", \"chemical\", \"chemical\", \"chemical\", \"chemical\", \"chemical\", \"chemical\", \"chemical\", \"chemical\", \"chemical\", \"chemical\", \"chemist\", \"cherry\", \"cherry\", \"cherry\", \"child\", \"child\", \"child\", \"child\", \"child\", \"child\", \"child\", \"child\", \"child\", \"child\", \"child\", \"child\", \"child\", \"child\", \"child\", \"child\", \"child\", \"child\", \"child\", \"child\", \"chimp\", \"chip\", \"chip\", \"chip\", \"chip\", \"chip\", \"chip\", \"chip\", \"chip\", \"chip\", \"chip\", \"chip\", \"chip\", \"chip\", \"chip\", \"chip\", \"chip\", \"chip\", \"chip\", \"chip\", \"christian\", \"christian\", \"christian\", \"christian\", \"christian\", \"christian\", \"christian\", \"christian\", \"christian\", \"christian\", \"christian\", \"christian\", \"christian\", \"christian\", \"christian\", \"christian\", \"christian\", \"christian\", \"christianity\", \"christianity\", \"christianity\", \"christianity\", \"christianity\", \"christianity\", \"christianity\", \"christianity\", \"christianity\", \"christianity\", \"christianity\", \"christianity\", \"christianity\", \"church\", \"church\", \"church\", \"church\", \"church\", \"church\", \"church\", \"church\", \"church\", \"church\", \"church\", \"church\", \"church\", \"church\", \"church\", \"church\", \"church\", \"cipher\", \"cipher\", \"cipher\", \"cipher\", \"ciphertext\", \"ciphertext\", \"ciphertext\", \"circuit\", \"circuit\", \"circuit\", \"circuit\", \"circuit\", \"circuit\", \"circuit\", \"circuit\", \"circuit\", \"circuit\", \"circuit\", \"circumcision\", \"cirrus\", \"citizen\", \"citizen\", \"citizen\", \"citizen\", \"citizen\", \"citizen\", \"citizen\", \"citizen\", \"citizen\", \"citizen\", \"citizen\", \"citizen\", \"citizen\", \"citizen\", \"citizen\", \"citizen\", \"citizen\", \"citizen\", \"civilian\", \"civilian\", \"civilian\", \"civilian\", \"civilian\", \"civilian\", \"civilian\", \"civilian\", \"civilian\", \"civilian\", \"civilian\", \"civilian\", \"civilian\", \"civilian\", \"claim\", \"claim\", \"claim\", \"claim\", \"claim\", \"claim\", \"claim\", \"claim\", \"claim\", \"claim\", \"claim\", \"claim\", \"claim\", \"claim\", \"claim\", \"claim\", \"claim\", \"claim\", \"claim\", \"claim\", \"claus\", \"cleaner\", \"cleaner\", \"clh\", \"clh\", \"clh\", \"clh\", \"clh\", \"clh\", \"clinic\", \"clintonite\", \"clipper\", \"clipper\", \"clipper\", \"clipper\", \"clipper\", \"clipper\", \"clipper\", \"clipper\", \"clockwise\", \"clockwise\", \"close\", \"close\", \"close\", \"close\", \"close\", \"close\", \"close\", \"close\", \"close\", \"close\", \"close\", \"close\", \"close\", \"close\", \"close\", \"close\", \"close\", \"close\", \"close\", \"close\", \"cluster\", \"coach\", \"coach\", \"coach\", \"coach\", \"coach\", \"cod\", \"cod\", \"code\", \"code\", \"code\", \"code\", \"code\", \"code\", \"code\", \"code\", \"code\", \"code\", \"code\", \"code\", \"code\", \"code\", \"code\", \"code\", \"code\", \"code\", \"code\", \"colonel\", \"colony\", \"colony\", \"colony\", \"color\", \"color\", \"color\", \"color\", \"color\", \"color\", \"color\", \"color\", \"color\", \"color\", \"color\", \"color\", \"color\", \"color\", \"color\", \"color\", \"color\", \"color\", \"color\", \"come\", \"come\", \"come\", \"come\", \"come\", \"come\", \"come\", \"come\", \"come\", \"come\", \"come\", \"come\", \"come\", \"come\", \"come\", \"come\", \"come\", \"come\", \"come\", \"come\", \"comedy\", \"comet\", \"comet\", \"comet\", \"comet\", \"commentate\", \"compass\", \"compatible\", \"compatible\", \"compatible\", \"compatible\", \"compatible\", \"compatible\", \"compatible\", \"compatible\", \"compatible\", \"compatible\", \"compatible\", \"competence\", \"compilation\", \"compliance\", \"compliant\", \"component\", \"component\", \"component\", \"component\", \"component\", \"component\", \"component\", \"component\", \"component\", \"component\", \"component\", \"component\", \"component\", \"component\", \"component\", \"component\", \"compression\", \"compression\", \"compression\", \"compression\", \"compression\", \"compression\", \"compression\", \"compression\", \"compression\", \"compression\", \"compund\", \"computer\", \"computer\", \"computer\", \"computer\", \"computer\", \"computer\", \"computer\", \"computer\", \"computer\", \"computer\", \"computer\", \"computer\", \"computer\", \"computer\", \"computer\", \"computer\", \"computer\", \"computer\", \"computer\", \"computer\", \"conception\", \"conception\", \"conception\", \"concur\", \"concurrently\", \"condition\", \"condition\", \"condition\", \"condition\", \"condition\", \"condition\", \"condition\", \"condition\", \"condition\", \"condition\", \"condition\", \"condition\", \"condition\", \"condition\", \"condition\", \"condition\", \"condition\", \"condition\", \"condition\", \"condition\", \"conductor\", \"conductor\", \"conference\", \"conference\", \"conference\", \"conference\", \"conference\", \"conference\", \"conference\", \"conference\", \"conference\", \"conference\", \"conference\", \"conference\", \"conference\", \"conference\", \"conference\", \"conference\", \"conference\", \"conference\", \"consulting\", \"contest\", \"contest\", \"contest\", \"contest\", \"contest\", \"contest\", \"contest\", \"contradictory\", \"contradictory\", \"contradictory\", \"contradictory\", \"control\", \"control\", \"control\", \"control\", \"control\", \"control\", \"control\", \"control\", \"control\", \"control\", \"control\", \"control\", \"control\", \"control\", \"control\", \"control\", \"control\", \"control\", \"control\", \"control\", \"controller\", \"controller\", \"controller\", \"controller\", \"controller\", \"controller\", \"controller\", \"controller\", \"controller\", \"converter\", \"converter\", \"converter\", \"converter\", \"converter\", \"converter\", \"converter\", \"convertible\", \"convertible\", \"convertible\", \"cool\", \"cool\", \"cool\", \"cool\", \"cool\", \"cool\", \"cool\", \"cool\", \"cool\", \"cool\", \"cool\", \"cool\", \"cool\", \"cop\", \"cop\", \"cop\", \"cop\", \"cop\", \"cop\", \"cop\", \"cop\", \"cop\", \"cop\", \"cop\", \"cop\", \"coplanar\", \"copper\", \"copy\", \"copy\", \"copy\", \"copy\", \"copy\", \"copy\", \"copy\", \"copy\", \"copy\", \"copy\", \"copy\", \"copy\", \"copy\", \"copy\", \"copy\", \"copy\", \"copy\", \"copy\", \"copy\", \"cosmetic\", \"cost\", \"cost\", \"cost\", \"cost\", \"cost\", \"cost\", \"cost\", \"cost\", \"cost\", \"cost\", \"cost\", \"cost\", \"cost\", \"cost\", \"cost\", \"cost\", \"cost\", \"cost\", \"cost\", \"cost\", \"counselor\", \"countersteere\", \"countersteere\", \"countersteere\", \"country\", \"country\", \"country\", \"country\", \"country\", \"country\", \"country\", \"country\", \"country\", \"country\", \"country\", \"country\", \"country\", \"country\", \"country\", \"country\", \"country\", \"country\", \"country\", \"court\", \"court\", \"court\", \"court\", \"court\", \"court\", \"court\", \"court\", \"court\", \"court\", \"court\", \"court\", \"court\", \"court\", \"court\", \"court\", \"court\", \"coverage\", \"coverage\", \"coverage\", \"coverage\", \"coverage\", \"coverage\", \"coverage\", \"coverage\", \"coverage\", \"coverage\", \"coverage\", \"coverage\", \"coverage\", \"coverage\", \"cpsr\", \"cpsr\", \"cramer\", \"cramer\", \"creed\", \"creed\", \"creed\", \"creed\", \"creed\", \"crime\", \"crime\", \"crime\", \"crime\", \"crime\", \"crime\", \"crime\", \"crime\", \"crime\", \"crime\", \"crime\", \"crime\", \"crime\", \"crime\", \"crime\", \"crime\", \"crime\", \"crime\", \"crime\", \"criminal\", \"criminal\", \"criminal\", \"criminal\", \"criminal\", \"criminal\", \"criminal\", \"criminal\", \"criminal\", \"criminal\", \"criminal\", \"criminal\", \"criminal\", \"criminal\", \"criminal\", \"criminal\", \"criminal\", \"crown\", \"cruel\", \"cruel\", \"cruel\", \"cruelty\", \"cruelty\", \"cruelty\", \"cruelty\", \"cruiser\", \"cruiser\", \"cruiser\", \"crusade\", \"crypto\", \"crypto\", \"crypto\", \"crypto\", \"crypto\", \"crypto\", \"crypto\", \"cryptographic\", \"cryptographic\", \"cryptographic\", \"cryptographic\", \"cryptographic\", \"cryptography\", \"cryptography\", \"cryptography\", \"cryptography\", \"cryptography\", \"cryptography\", \"cryptography\", \"cryptography\", \"cryptography\", \"cryptography\", \"cryptography\", \"cub\", \"cub\", \"cub\", \"culminate\", \"culminate\", \"cursor\", \"cursor\", \"cview\", \"cycle\", \"cycle\", \"cycle\", \"cycle\", \"cycle\", \"cycle\", \"cycle\", \"cycle\", \"cycle\", \"cycle\", \"cycle\", \"cycle\", \"cycle\", \"cyl\", \"cylinder\", \"cylinder\", \"cylinder\", \"cylinder\", \"cylinder\", \"cylinder\", \"cylinder\", \"cylinder\", \"czar\", \"daddy\", \"dangerous\", \"dangerous\", \"dangerous\", \"dangerous\", \"dangerous\", \"dangerous\", \"dangerous\", \"dangerous\", \"dangerous\", \"dangerous\", \"dangerous\", \"dangerous\", \"dangerous\", \"dangerous\", \"dangerous\", \"dangerous\", \"dangerous\", \"dangerous\", \"darren\", \"date\", \"date\", \"date\", \"date\", \"date\", \"date\", \"date\", \"date\", \"date\", \"date\", \"date\", \"date\", \"date\", \"date\", \"date\", \"date\", \"date\", \"date\", \"date\", \"date\", \"datum\", \"datum\", \"datum\", \"datum\", \"datum\", \"datum\", \"datum\", \"datum\", \"datum\", \"datum\", \"datum\", \"datum\", \"datum\", \"datum\", \"datum\", \"datum\", \"datum\", \"datum\", \"daughter\", \"daughter\", \"daughter\", \"daughter\", \"daughter\", \"daughter\", \"daughter\", \"daughter\", \"daughter\", \"daughter\", \"daughter\", \"day\", \"day\", \"day\", \"day\", \"day\", \"day\", \"day\", \"day\", \"day\", \"day\", \"day\", \"day\", \"day\", \"day\", \"day\", \"day\", \"day\", \"day\", \"day\", \"day\", \"dbase\", \"deaf\", \"dealer\", \"dealer\", \"dealer\", \"dealer\", \"dealer\", \"dealer\", \"dealer\", \"dealer\", \"dealer\", \"dealer\", \"dealer\", \"dealer\", \"dealership\", \"decimal\", \"decryption\", \"decwindow\", \"default\", \"default\", \"default\", \"default\", \"default\", \"default\", \"default\", \"default\", \"default\", \"default\", \"default\", \"default\", \"default\", \"default\", \"default\", \"defenseman\", \"defenseman\", \"deficit\", \"deficit\", \"deficit\", \"deficit\", \"delegate\", \"deletion\", \"deletion\", \"deletion\", \"deletion\", \"deletion\", \"deletion\", \"deletion\", \"den\", \"den\", \"den\", \"den\", \"den\", \"derek\", \"desert\", \"desert\", \"desert\", \"desert\", \"desert\", \"design\", \"design\", \"design\", \"design\", \"design\", \"design\", \"design\", \"design\", \"design\", \"design\", \"design\", \"design\", \"design\", \"design\", \"design\", \"design\", \"design\", \"design\", \"design\", \"design\", \"destroy\", \"destroy\", \"destroy\", \"destroy\", \"destroy\", \"destroy\", \"destroy\", \"destroy\", \"destroy\", \"destroy\", \"destroy\", \"destroy\", \"destroy\", \"destroy\", \"destroy\", \"destroy\", \"destroy\", \"destroy\", \"destroy\", \"detector\", \"detector\", \"detector\", \"detector\", \"detention\", \"deterrent\", \"devil\", \"devil\", \"devil\", \"devil\", \"devil\", \"devil\", \"devil\", \"devil\", \"diabetes\", \"diagram\", \"dialup\", \"die\", \"die\", \"die\", \"die\", \"die\", \"die\", \"die\", \"die\", \"die\", \"die\", \"die\", \"die\", \"die\", \"die\", \"die\", \"die\", \"die\", \"die\", \"die\", \"digitally\", \"directory\", \"directory\", \"directory\", \"directory\", \"directory\", \"directory\", \"directory\", \"directory\", \"directory\", \"disc\", \"disc\", \"disc\", \"discern\", \"disciple\", \"disciple\", \"disciple\", \"disciple\", \"disciple\", \"disciple\", \"disciple\", \"disciple\", \"disciple\", \"disciple\", \"discovery\", \"discovery\", \"discovery\", \"discovery\", \"discovery\", \"discovery\", \"discovery\", \"discusse\", \"disease\", \"disease\", \"disease\", \"disease\", \"disease\", \"disease\", \"disease\", \"disease\", \"disease\", \"disease\", \"disease\", \"disease\", \"disease\", \"disease\", \"disease\", \"disease\", \"disease\", \"disk\", \"disk\", \"disk\", \"disk\", \"disk\", \"disk\", \"disk\", \"disk\", \"disk\", \"disk\", \"disk\", \"disk\", \"disk\", \"disk\", \"disk\", \"disk\", \"disk\", \"disk\", \"display\", \"display\", \"display\", \"display\", \"display\", \"display\", \"display\", \"display\", \"display\", \"display\", \"display\", \"display\", \"display\", \"display\", \"display\", \"display\", \"display\", \"dissolve\", \"dist\", \"dist\", \"distortion\", \"distortion\", \"distortion\", \"distortion\", \"distortion\", \"distortion\", \"distortion\", \"distraction\", \"distributable\", \"distribution\", \"distribution\", \"distribution\", \"distribution\", \"distribution\", \"distribution\", \"distribution\", \"distribution\", \"distribution\", \"distribution\", \"distribution\", \"distribution\", \"distribution\", \"distribution\", \"distribution\", \"distribution\", \"distribution\", \"distribution\", \"distribution\", \"distribution\", \"division\", \"division\", \"division\", \"division\", \"division\", \"division\", \"division\", \"division\", \"division\", \"division\", \"division\", \"division\", \"division\", \"division\", \"division\", \"division\", \"division\", \"division\", \"dizziness\", \"dock\", \"dock\", \"doctrine\", \"doctrine\", \"doctrine\", \"doctrine\", \"doctrine\", \"doctrine\", \"doctrine\", \"doctrine\", \"doctrine\", \"doctrine\", \"dod\", \"dod\", \"dod\", \"dod\", \"dod\", \"dod\", \"dod\", \"dod\", \"dod\", \"dod\", \"dod\", \"dod\", \"dodger\", \"dodger\", \"dodger\", \"dog\", \"dog\", \"dog\", \"dog\", \"dog\", \"dog\", \"dog\", \"dog\", \"dog\", \"dog\", \"dog\", \"dog\", \"dog\", \"dog\", \"domi\", \"domino\", \"doom\", \"doorstep\", \"dorin\", \"dorin\", \"dorothy\", \"dortmund\", \"downshift\", \"draft\", \"draft\", \"draft\", \"draft\", \"draft\", \"draft\", \"draft\", \"draft\", \"draft\", \"draft\", \"draft\", \"draft\", \"draft\", \"draft\", \"drain\", \"drain\", \"drain\", \"drain\", \"drain\", \"dramatically\", \"dramatically\", \"dramatically\", \"drink\", \"drink\", \"drink\", \"drink\", \"drink\", \"drink\", \"drink\", \"drink\", \"drink\", \"drink\", \"drink\", \"drink\", \"drink\", \"drink\", \"drink\", \"drive\", \"drive\", \"drive\", \"drive\", \"drive\", \"drive\", \"drive\", \"drive\", \"drive\", \"drive\", \"drive\", \"drive\", \"drive\", \"drive\", \"drive\", \"drive\", \"drive\", \"drive\", \"drive\", \"drive\", \"driver\", \"driver\", \"driver\", \"driver\", \"driver\", \"driver\", \"driver\", \"driver\", \"driver\", \"driver\", \"driver\", \"driver\", \"driver\", \"driver\", \"driver\", \"driver\", \"driver\", \"driver\", \"driver\", \"driver\", \"drum\", \"drv\", \"drv\", \"dseg\", \"dsp\", \"duo\", \"duo\", \"duo\", \"duo\", \"durham\", \"dw\", \"earth\", \"earth\", \"earth\", \"earth\", \"earth\", \"earth\", \"earth\", \"earth\", \"earth\", \"earth\", \"earth\", \"earth\", \"earth\", \"earth\", \"earth\", \"earth\", \"earth\", \"earth\", \"earth\", \"easter\", \"easter\", \"easter\", \"easter\", \"easter\", \"eat\", \"eat\", \"eat\", \"eat\", \"eat\", \"eat\", \"eat\", \"eat\", \"eat\", \"eat\", \"eat\", \"eat\", \"eat\", \"eat\", \"eat\", \"eat\", \"eat\", \"eat\", \"eat\", \"eat\", \"eclipse\", \"eclipse\", \"eclipse\", \"eclipse\", \"effect\", \"effect\", \"effect\", \"effect\", \"effect\", \"effect\", \"effect\", \"effect\", \"effect\", \"effect\", \"effect\", \"effect\", \"effect\", \"effect\", \"effect\", \"effect\", \"effect\", \"effect\", \"effect\", \"ei\", \"ei\", \"eject\", \"electrical\", \"electrical\", \"electrical\", \"electrical\", \"electrical\", \"electrical\", \"electrical\", \"electrical\", \"electrical\", \"electrical\", \"electrical\", \"elephant\", \"elide\", \"email\", \"email\", \"email\", \"email\", \"email\", \"email\", \"email\", \"email\", \"email\", \"email\", \"email\", \"email\", \"email\", \"email\", \"email\", \"email\", \"email\", \"email\", \"email\", \"embargo\", \"embargo\", \"emm\", \"emm\", \"emulator\", \"enact\", \"enact\", \"enact\", \"enclosure\", \"encrypt\", \"encrypt\", \"encrypt\", \"encrypt\", \"encrypt\", \"encrypt\", \"encryption\", \"encryption\", \"encryption\", \"encryption\", \"encryption\", \"encryption\", \"encryption\", \"encryption\", \"encryption\", \"encryption\", \"encryption\", \"encryption\", \"encryption\", \"encryption\", \"encryption\", \"encryption\", \"endometriosis\", \"enforcement\", \"enforcement\", \"enforcement\", \"enforcement\", \"enforcement\", \"enforcement\", \"enforcement\", \"enforcement\", \"enforcement\", \"enforcement\", \"enforcement\", \"enforcement\", \"engine\", \"engine\", \"engine\", \"engine\", \"engine\", \"engine\", \"engine\", \"engine\", \"engine\", \"engine\", \"engine\", \"engine\", \"engine\", \"engine\", \"engine\", \"engine\", \"engine\", \"enlightenment\", \"enlightenment\", \"enrich\", \"entry\", \"entry\", \"entry\", \"entry\", \"entry\", \"entry\", \"entry\", \"entry\", \"entry\", \"entry\", \"entry\", \"entry\", \"entry\", \"escape\", \"escape\", \"escape\", \"escape\", \"escape\", \"escape\", \"escape\", \"escape\", \"escape\", \"escape\", \"escape\", \"escape\", \"escape\", \"escape\", \"escrow\", \"escrow\", \"escrow\", \"escrow\", \"escrow\", \"escrow\", \"escrowe\", \"espn\", \"espns\", \"eternal\", \"eternal\", \"eternal\", \"eternal\", \"eternal\", \"eternal\", \"eternal\", \"eternal\", \"eternal\", \"eternal\", \"eternal\", \"eternal\", \"ethernet\", \"ethernet\", \"ethernet\", \"ethernet\", \"ethnic\", \"ethnic\", \"ethnic\", \"ethnic\", \"ethnic\", \"ethnic\", \"euros\", \"evangelism\", \"even\", \"even\", \"even\", \"even\", \"even\", \"even\", \"even\", \"even\", \"even\", \"even\", \"even\", \"even\", \"even\", \"even\", \"even\", \"even\", \"even\", \"even\", \"even\", \"even\", \"event\", \"event\", \"event\", \"event\", \"event\", \"event\", \"event\", \"event\", \"event\", \"event\", \"event\", \"event\", \"event\", \"event\", \"event\", \"event\", \"event\", \"event\", \"event\", \"event\", \"evidence\", \"evidence\", \"evidence\", \"evidence\", \"evidence\", \"evidence\", \"evidence\", \"evidence\", \"evidence\", \"evidence\", \"evidence\", \"evidence\", \"evidence\", \"evidence\", \"evidence\", \"evidence\", \"evidence\", \"evidence\", \"evidence\", \"evil\", \"evil\", \"evil\", \"evil\", \"evil\", \"evil\", \"evil\", \"evil\", \"evil\", \"evil\", \"evil\", \"evil\", \"evil\", \"exclusively\", \"exclusively\", \"exclusively\", \"exclusively\", \"excommunicate\", \"executive\", \"executive\", \"executive\", \"executive\", \"executive\", \"executive\", \"exist\", \"exist\", \"exist\", \"exist\", \"exist\", \"exist\", \"exist\", \"exist\", \"exist\", \"exist\", \"exist\", \"exist\", \"exist\", \"exist\", \"exist\", \"exist\", \"exist\", \"exist\", \"exist\", \"exist\", \"expedition\", \"explosive\", \"explosive\", \"explosive\", \"explosive\", \"explosive\", \"explosive\", \"explosive\", \"expose\", \"expose\", \"expose\", \"expose\", \"expose\", \"expose\", \"expose\", \"expose\", \"expose\", \"expose\", \"expose\", \"expose\", \"expose\", \"expose\", \"expound\", \"expulsion\", \"extermination\", \"extermination\", \"extermination\", \"extermination\", \"extermination\", \"extermination\", \"extermination\", \"extoll\", \"fabricate\", \"facade\", \"faith\", \"faith\", \"faith\", \"faith\", \"faith\", \"faith\", \"faith\", \"faith\", \"faith\", \"faith\", \"faith\", \"faith\", \"faith\", \"faith\", \"faith\", \"faith\", \"fallen\", \"fan\", \"fan\", \"fan\", \"fan\", \"fan\", \"fan\", \"fan\", \"fan\", \"fan\", \"fan\", \"fan\", \"fan\", \"fan\", \"fan\", \"fan\", \"feast\", \"federal\", \"federal\", \"federal\", \"federal\", \"federal\", \"federal\", \"federal\", \"federal\", \"federal\", \"federal\", \"federal\", \"federal\", \"federal\", \"federal\", \"federal\", \"federal\", \"federal\", \"fever\", \"fever\", \"fij\", \"file\", \"file\", \"file\", \"file\", \"file\", \"file\", \"file\", \"file\", \"file\", \"file\", \"file\", \"file\", \"file\", \"file\", \"file\", \"file\", \"file\", \"file\", \"file\", \"file\", \"filing\", \"filing\", \"find\", \"find\", \"find\", \"find\", \"find\", \"find\", \"find\", \"find\", \"find\", \"find\", \"find\", \"find\", \"find\", \"find\", \"find\", \"find\", \"find\", \"find\", \"find\", \"find\", \"finnish\", \"fire\", \"fire\", \"fire\", \"fire\", \"fire\", \"fire\", \"fire\", \"fire\", \"fire\", \"fire\", \"fire\", \"fire\", \"fire\", \"fire\", \"fire\", \"fire\", \"fire\", \"fire\", \"fire\", \"firearm\", \"firearm\", \"firearm\", \"firearm\", \"firearm\", \"firearm\", \"firearm\", \"firearm\", \"firearm\", \"firearm\", \"firearm\", \"firearm\", \"first\", \"first\", \"first\", \"first\", \"first\", \"first\", \"first\", \"first\", \"first\", \"first\", \"first\", \"first\", \"first\", \"first\", \"first\", \"first\", \"first\", \"first\", \"first\", \"first\", \"fission\", \"fixture\", \"flash\", \"flash\", \"flash\", \"flash\", \"flash\", \"flash\", \"flash\", \"flash\", \"flee\", \"flee\", \"flee\", \"flee\", \"flee\", \"flee\", \"flex\", \"flex\", \"flight\", \"flight\", \"flight\", \"flight\", \"flight\", \"flight\", \"flight\", \"flight\", \"flight\", \"flight\", \"flight\", \"flight\", \"flight\", \"flight\", \"flight\", \"flight\", \"flight\", \"flight\", \"floppie\", \"floppy\", \"floppy\", \"floppy\", \"floppy\", \"floppy\", \"floppy\", \"floppy\", \"floppy\", \"floppy\", \"floppy\", \"floptical\", \"floptical\", \"flower\", \"fluctuation\", \"fold\", \"fold\", \"fold\", \"fold\", \"follow\", \"follow\", \"follow\", \"follow\", \"follow\", \"follow\", \"follow\", \"follow\", \"follow\", \"follow\", \"follow\", \"follow\", \"follow\", \"follow\", \"follow\", \"follow\", \"follow\", \"follow\", \"follow\", \"follow\", \"font\", \"font\", \"font\", \"font\", \"font\", \"font\", \"font\", \"font\", \"font\", \"font\", \"font\", \"food\", \"food\", \"food\", \"food\", \"food\", \"food\", \"food\", \"food\", \"food\", \"food\", \"food\", \"food\", \"food\", \"food\", \"food\", \"food\", \"force\", \"force\", \"force\", \"force\", \"force\", \"force\", \"force\", \"force\", \"force\", \"force\", \"force\", \"force\", \"force\", \"force\", \"force\", \"force\", \"force\", \"force\", \"force\", \"format\", \"format\", \"format\", \"format\", \"format\", \"format\", \"format\", \"format\", \"format\", \"format\", \"format\", \"format\", \"format\", \"format\", \"format\", \"forsale\", \"fortune\", \"fortune\", \"fossil\", \"fpu\", \"fpu\", \"fpu\", \"fractal\", \"fractal\", \"fractal\", \"fractal\", \"fraere\", \"fraering\", \"fragment\", \"francis\", \"francis\", \"francis\", \"frank\", \"freak\", \"freak\", \"freak\", \"freak\", \"frightening\", \"frustrated\", \"functional\", \"functional\", \"funding\", \"funding\", \"funding\", \"funding\", \"funding\", \"furnish\", \"fz\", \"game\", \"game\", \"game\", \"game\", \"game\", \"game\", \"game\", \"game\", \"game\", \"game\", \"game\", \"game\", \"game\", \"game\", \"game\", \"game\", \"game\", \"game\", \"game\", \"gasoline\", \"gauge\", \"gauge\", \"gauge\", \"gay\", \"gay\", \"gay\", \"gay\", \"gay\", \"gay\", \"gay\", \"gear\", \"gear\", \"gear\", \"gear\", \"gear\", \"gear\", \"gear\", \"gear\", \"gear\", \"gear\", \"gehrel\", \"gehrel\", \"gene\", \"gene\", \"gene\", \"gene\", \"gene\", \"gene\", \"gene\", \"gene\", \"genocide\", \"genocide\", \"genocide\", \"genocide\", \"genocide\", \"genocide\", \"genocide\", \"genocide\", \"genocide\", \"genocide\", \"genocide\", \"genocide\", \"genocide\", \"genocide\", \"genocide\", \"genocide\", \"genocide\", \"gentle\", \"gently\", \"gesture\", \"get\", \"get\", \"get\", \"get\", \"get\", \"get\", \"get\", \"get\", \"get\", \"get\", \"get\", \"get\", \"get\", \"get\", \"get\", \"get\", \"get\", \"get\", \"get\", \"get\", \"gfcis\", \"ghost\", \"ghost\", \"ghost\", \"gibbon\", \"gif\", \"gif\", \"gif\", \"gif\", \"gif\", \"gif\", \"gif\", \"gif\", \"gif\", \"gif\", \"gifs\", \"gift\", \"gift\", \"gift\", \"gift\", \"gift\", \"gift\", \"gift\", \"gig\", \"gilmour\", \"gilmour\", \"give\", \"give\", \"give\", \"give\", \"give\", \"give\", \"give\", \"give\", \"give\", \"give\", \"give\", \"give\", \"give\", \"give\", \"give\", \"give\", \"give\", \"give\", \"give\", \"give\", \"glock\", \"glock\", \"glutamate\", \"go\", \"go\", \"go\", \"go\", \"go\", \"go\", \"go\", \"go\", \"go\", \"go\", \"go\", \"go\", \"go\", \"go\", \"go\", \"go\", \"go\", \"go\", \"go\", \"go\", \"goal\", \"goal\", \"goal\", \"goal\", \"goal\", \"goal\", \"goal\", \"goal\", \"goal\", \"goal\", \"goal\", \"goal\", \"goal\", \"goal\", \"goal\", \"goal\", \"goal\", \"goal\", \"goaltende\", \"goaltende\", \"god\", \"god\", \"god\", \"god\", \"god\", \"god\", \"god\", \"god\", \"god\", \"god\", \"god\", \"god\", \"god\", \"god\", \"god\", \"god\", \"god\", \"godhead\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"government\", \"government\", \"government\", \"government\", \"government\", \"government\", \"government\", \"government\", \"government\", \"government\", \"government\", \"government\", \"government\", \"government\", \"government\", \"government\", \"government\", \"government\", \"government\", \"grace\", \"grace\", \"grace\", \"grace\", \"grace\", \"grace\", \"grace\", \"grace\", \"grace\", \"grad\", \"grad\", \"graphic\", \"graphic\", \"graphic\", \"graphic\", \"graphic\", \"graphic\", \"graphic\", \"graphic\", \"graphic\", \"graphic\", \"graphic\", \"graphic\", \"graphic\", \"graphic\", \"graphic\", \"grapple\", \"grasp\", \"greatly\", \"greatly\", \"greatly\", \"greatly\", \"greatly\", \"greatly\", \"greatly\", \"greatly\", \"greatly\", \"greatly\", \"greatly\", \"greatly\", \"greatly\", \"greatly\", \"greatly\", \"greatly\", \"greatly\", \"greatly\", \"greatly\", \"greed\", \"greek\", \"greek\", \"greek\", \"greek\", \"greek\", \"greek\", \"greek\", \"greek\", \"greek\", \"greek\", \"greek\", \"greek\", \"greek\", \"greek\", \"greek\", \"greeting\", \"greeting\", \"gregory\", \"ground\", \"ground\", \"ground\", \"ground\", \"ground\", \"ground\", \"ground\", \"ground\", \"ground\", \"ground\", \"ground\", \"ground\", \"ground\", \"ground\", \"ground\", \"ground\", \"ground\", \"ground\", \"ground\", \"ground\", \"group\", \"group\", \"group\", \"group\", \"group\", \"group\", \"group\", \"group\", \"group\", \"group\", \"group\", \"group\", \"group\", \"group\", \"group\", \"group\", \"group\", \"group\", \"group\", \"group\", \"guerilla\", \"guerilla\", \"gun\", \"gun\", \"gun\", \"gun\", \"gun\", \"gun\", \"gun\", \"gun\", \"gun\", \"gun\", \"gun\", \"gun\", \"gun\", \"gun\", \"gun\", \"gun\", \"gun\", \"gun\", \"gun\", \"ham\", \"ham\", \"handbook\", \"hander\", \"handgun\", \"handgun\", \"handgun\", \"handgun\", \"handgun\", \"handgun\", \"handgun\", \"handgun\", \"handgun\", \"handgun\", \"handgun\", \"harassment\", \"harassment\", \"harassment\", \"hard\", \"hard\", \"hard\", \"hard\", \"hard\", \"hard\", \"hard\", \"hard\", \"hard\", \"hard\", \"hard\", \"hard\", \"hard\", \"hard\", \"hard\", \"hard\", \"hard\", \"hard\", \"hard\", \"hard\", \"harddisk\", \"have\", \"have\", \"have\", \"have\", \"have\", \"have\", \"have\", \"have\", \"have\", \"have\", \"have\", \"have\", \"have\", \"have\", \"have\", \"have\", \"have\", \"have\", \"have\", \"have\", \"hawk\", \"hawk\", \"hawk\", \"headache\", \"headache\", \"headache\", \"headache\", \"headache\", \"heartily\", \"heating\", \"helmet\", \"helmet\", \"helmet\", \"helmet\", \"helmet\", \"help\", \"help\", \"help\", \"help\", \"help\", \"help\", \"help\", \"help\", \"help\", \"help\", \"help\", \"help\", \"help\", \"help\", \"help\", \"help\", \"help\", \"help\", \"help\", \"help\", \"heretic\", \"heterosexual\", \"hh\", \"high\", \"high\", \"high\", \"high\", \"high\", \"high\", \"high\", \"high\", \"high\", \"high\", \"high\", \"high\", \"high\", \"high\", \"high\", \"high\", \"high\", \"high\", \"high\", \"high\", \"hilarious\", \"hinduism\", \"hispanic\", \"hit\", \"hit\", \"hit\", \"hit\", \"hit\", \"hit\", \"hit\", \"hit\", \"hit\", \"hit\", \"hit\", \"hit\", \"hit\", \"hit\", \"hit\", \"hit\", \"hit\", \"hit\", \"hockey\", \"hockey\", \"hockey\", \"hockey\", \"hockey\", \"hockey\", \"hockey\", \"hockey\", \"hockey\", \"hockey\", \"hockey\", \"holy\", \"holy\", \"holy\", \"holy\", \"holy\", \"holy\", \"holy\", \"holy\", \"holy\", \"holy\", \"holy\", \"holy\", \"homicide\", \"homicide\", \"homicide\", \"homicide\", \"homicide\", \"homosexual\", \"homosexual\", \"homosexual\", \"homosexual\", \"homosexual\", \"homosexual\", \"homosexual\", \"homosexual\", \"homosexual\", \"homosexuality\", \"homosexuality\", \"homosexuality\", \"homosexuality\", \"homosexuality\", \"hopeful\", \"horizon\", \"host\", \"host\", \"host\", \"host\", \"host\", \"host\", \"host\", \"host\", \"host\", \"host\", \"host\", \"host\", \"host\", \"host\", \"host\", \"host\", \"host\", \"host\", \"host\", \"host\", \"hot\", \"hot\", \"hot\", \"hot\", \"hot\", \"hot\", \"hot\", \"hot\", \"hot\", \"hot\", \"hot\", \"hot\", \"hot\", \"hot\", \"hot\", \"hot\", \"hot\", \"hot\", \"hot\", \"hot\", \"huey\", \"hulk\", \"hulk\", \"hulk\", \"hull\", \"hull\", \"human\", \"human\", \"human\", \"human\", \"human\", \"human\", \"human\", \"human\", \"human\", \"human\", \"human\", \"human\", \"human\", \"human\", \"human\", \"human\", \"human\", \"human\", \"human\", \"human\", \"humor\", \"humor\", \"hunter\", \"hunting\", \"hunting\", \"husak\", \"husband\", \"husband\", \"husband\", \"husband\", \"husband\", \"husband\", \"husband\", \"husband\", \"husband\", \"hypocritical\", \"ics\", \"ics\", \"ide\", \"ide\", \"ide\", \"ide\", \"ide\", \"ide\", \"iff\", \"ignition\", \"ignition\", \"ignition\", \"iii\", \"illustration\", \"illustration\", \"image\", \"image\", \"image\", \"image\", \"image\", \"image\", \"image\", \"image\", \"image\", \"image\", \"image\", \"image\", \"image\", \"image\", \"image\", \"image\", \"image\", \"image\", \"image\", \"image\", \"imaginary\", \"imaginary\", \"imake\", \"imam\", \"imam\", \"imprison\", \"imprison\", \"imprisonment\", \"imprisonment\", \"imprisonment\", \"imprisonment\", \"inaccuracy\", \"inclined\", \"include\", \"include\", \"include\", \"include\", \"include\", \"include\", \"include\", \"include\", \"include\", \"include\", \"include\", \"include\", \"include\", \"include\", \"include\", \"include\", \"include\", \"include\", \"include\", \"include\", \"incriminate\", \"indirectly\", \"inductance\", \"inexpensive\", \"inexpensive\", \"inexpensive\", \"inexpensive\", \"inexpensive\", \"inexpensive\", \"infamous\", \"information\", \"information\", \"information\", \"information\", \"information\", \"information\", \"information\", \"information\", \"information\", \"information\", \"information\", \"information\", \"information\", \"information\", \"information\", \"information\", \"information\", \"information\", \"information\", \"information\", \"infoworld\", \"infringe\", \"infringe\", \"infringe\", \"infringe\", \"ingredient\", \"ingredient\", \"ini\", \"ini\", \"ini\", \"ini\", \"ini\", \"initiative\", \"initiative\", \"initiative\", \"initiative\", \"initiative\", \"inject\", \"inject\", \"inject\", \"injector\", \"inne\", \"inning\", \"inning\", \"inning\", \"inning\", \"inning\", \"inning\", \"inspector\", \"inspector\", \"install\", \"install\", \"install\", \"install\", \"install\", \"install\", \"install\", \"install\", \"install\", \"install\", \"install\", \"install\", \"install\", \"instrumentation\", \"insurance\", \"insurance\", \"insurance\", \"insurance\", \"insurance\", \"insurance\", \"insurance\", \"insurance\", \"insurance\", \"insurance\", \"insurance\", \"insurance\", \"insurance\", \"insurance\", \"intellect\", \"intellect\", \"intellect\", \"intellect\", \"intensify\", \"intercon\", \"interlaced\", \"interleave\", \"interleave\", \"interplanetary\", \"interpretation\", \"interpretation\", \"interpretation\", \"interpretation\", \"interpretation\", \"interpretation\", \"interpretation\", \"interpretation\", \"interpretation\", \"interpretation\", \"interpretation\", \"interpretation\", \"interpretation\", \"interpretation\", \"interpretation\", \"interpretation\", \"interpretation\", \"intersect\", \"inverter\", \"ipx\", \"iranian\", \"irq\", \"israeli\", \"israeli\", \"israeli\", \"israeli\", \"israeli\", \"israeli\", \"israeli\", \"israeli\", \"israeli\", \"israeli\", \"israeli\", \"israeli\", \"israeli\", \"israeli\", \"isreal\", \"isreal\", \"isreal\", \"issue\", \"issue\", \"issue\", \"issue\", \"issue\", \"issue\", \"issue\", \"issue\", \"issue\", \"issue\", \"issue\", \"issue\", \"issue\", \"issue\", \"issue\", \"issue\", \"issue\", \"issue\", \"issue\", \"issue\", \"jagr\", \"jam\", \"jewish\", \"jewish\", \"jewish\", \"jewish\", \"jewish\", \"jewish\", \"jewish\", \"jewish\", \"jewish\", \"jewish\", \"jewish\", \"jewish\", \"jewish\", \"jewish\", \"jewish\", \"jewish\", \"job\", \"job\", \"job\", \"job\", \"job\", \"job\", \"job\", \"job\", \"job\", \"job\", \"job\", \"job\", \"job\", \"job\", \"job\", \"job\", \"job\", \"job\", \"job\", \"job\", \"jointly\", \"jpeg\", \"judaism\", \"jumper\", \"jumper\", \"jumper\", \"jumper\", \"junction\", \"jurisdiction\", \"jurisdiction\", \"jurisdiction\", \"jurisdiction\", \"k_p\", \"kbyte\", \"kernel\", \"key\", \"key\", \"key\", \"key\", \"key\", \"key\", \"key\", \"key\", \"key\", \"key\", \"key\", \"key\", \"key\", \"key\", \"key\", \"key\", \"key\", \"key\", \"key\", \"kill\", \"kill\", \"kill\", \"kill\", \"kill\", \"kill\", \"kill\", \"kill\", \"kill\", \"kill\", \"kill\", \"kill\", \"kill\", \"kill\", \"kill\", \"kill\", \"kill\", \"kill\", \"kill\", \"kill\", \"king\", \"king\", \"king\", \"king\", \"king\", \"king\", \"king\", \"king\", \"king\", \"king\", \"king\", \"king\", \"king\", \"king\", \"king\", \"king\", \"knife\", \"knife\", \"knife\", \"knife\", \"knife\", \"knife\", \"knife\", \"knife\", \"knife\", \"know\", \"know\", \"know\", \"know\", \"know\", \"know\", \"know\", \"know\", \"know\", \"know\", \"know\", \"know\", \"know\", \"know\", \"know\", \"know\", \"know\", \"know\", \"know\", \"know\", \"kurd\", \"kurd\", \"kurdish\", \"kurdish\", \"kurdish\", \"lame\", \"lame\", \"landing\", \"landing\", \"landing\", \"landing\", \"landing\", \"landing\", \"laserwriter\", \"last\", \"last\", \"last\", \"last\", \"last\", \"last\", \"last\", \"last\", \"last\", \"last\", \"last\", \"last\", \"last\", \"last\", \"last\", \"last\", \"last\", \"last\", \"last\", \"last\", \"latch\", \"latin\", \"launch\", \"launch\", \"launch\", \"launch\", \"launch\", \"launch\", \"launch\", \"launch\", \"launch\", \"launch\", \"launch\", \"launch\", \"launch\", \"launch\", \"launch\", \"launch\", \"law\", \"law\", \"law\", \"law\", \"law\", \"law\", \"law\", \"law\", \"law\", \"law\", \"law\", \"law\", \"law\", \"law\", \"law\", \"law\", \"law\", \"law\", \"law\", \"law\", \"lawsuit\", \"lawsuit\", \"le\", \"lebanese\", \"lebanese\", \"lebanese\", \"lebanese\", \"lebanese\", \"led\", \"led\", \"legal\", \"legal\", \"legal\", \"legal\", \"legal\", \"legal\", \"legal\", \"legal\", \"legal\", \"legal\", \"legal\", \"legal\", \"legal\", \"legal\", \"legal\", \"legal\", \"legal\", \"legal\", \"legalization\", \"lemieux\", \"lens\", \"lense\", \"let\", \"let\", \"let\", \"let\", \"let\", \"let\", \"let\", \"let\", \"let\", \"let\", \"let\", \"let\", \"let\", \"let\", \"let\", \"let\", \"let\", \"let\", \"let\", \"let\", \"licensed\", \"life\", \"life\", \"life\", \"life\", \"life\", \"life\", \"life\", \"life\", \"life\", \"life\", \"life\", \"life\", \"life\", \"life\", \"life\", \"life\", \"life\", \"life\", \"life\", \"life\", \"light\", \"light\", \"light\", \"light\", \"light\", \"light\", \"light\", \"light\", \"light\", \"light\", \"light\", \"light\", \"light\", \"light\", \"light\", \"light\", \"light\", \"light\", \"light\", \"limbaugh\", \"limbaugh\", \"line\", \"line\", \"line\", \"line\", \"line\", \"line\", \"line\", \"line\", \"line\", \"line\", \"line\", \"line\", \"line\", \"line\", \"line\", \"line\", \"line\", \"line\", \"line\", \"line\", \"linear\", \"linear\", \"linear\", \"lineup\", \"lineup\", \"list\", \"list\", \"list\", \"list\", \"list\", \"list\", \"list\", \"list\", \"list\", \"list\", \"list\", \"list\", \"list\", \"list\", \"list\", \"list\", \"list\", \"list\", \"list\", \"list\", \"live\", \"live\", \"live\", \"live\", \"live\", \"live\", \"live\", \"live\", \"live\", \"live\", \"live\", \"live\", \"live\", \"live\", \"live\", \"live\", \"live\", \"live\", \"live\", \"live\", \"longer\", \"longer\", \"longer\", \"longer\", \"longer\", \"longer\", \"longer\", \"longer\", \"longer\", \"longer\", \"longer\", \"longer\", \"longer\", \"longer\", \"longer\", \"longer\", \"longer\", \"longer\", \"longer\", \"longer\", \"look\", \"look\", \"look\", \"look\", \"look\", \"look\", \"look\", \"look\", \"look\", \"look\", \"look\", \"look\", \"look\", \"look\", \"look\", \"look\", \"look\", \"look\", \"look\", \"look\", \"lose\", \"lose\", \"lose\", \"lose\", \"lose\", \"lose\", \"lose\", \"lose\", \"lose\", \"lose\", \"lose\", \"lose\", \"lose\", \"lose\", \"lose\", \"lose\", \"lose\", \"lose\", \"lose\", \"lose\", \"loser\", \"lucifer\", \"lunar\", \"lunar\", \"lunar\", \"lunar\", \"lunar\", \"lunar\", \"lunar\", \"lunar\", \"lunar\", \"luxury\", \"luxury\", \"lyme\", \"lyme\", \"mac\", \"mac\", \"mac\", \"machine\", \"machine\", \"machine\", \"machine\", \"machine\", \"machine\", \"machine\", \"machine\", \"machine\", \"machine\", \"machine\", \"machine\", \"machine\", \"machine\", \"machine\", \"machine\", \"machine\", \"machine\", \"machine\", \"machine\", \"mackie\", \"mail\", \"mail\", \"mail\", \"mail\", \"mail\", \"mail\", \"mail\", \"mail\", \"mail\", \"mail\", \"mail\", \"mail\", \"mail\", \"mail\", \"mail\", \"mail\", \"mail\", \"mail\", \"mail\", \"mail\", \"mailbox\", \"mailing\", \"mailing\", \"mailing\", \"mailing\", \"mailing\", \"mailing\", \"mailing\", \"mailing\", \"mailing\", \"mailing\", \"mailing\", \"mailing\", \"mailing\", \"mailing\", \"make\", \"make\", \"make\", \"make\", \"make\", \"make\", \"make\", \"make\", \"make\", \"make\", \"make\", \"make\", \"make\", \"make\", \"make\", \"make\", \"make\", \"make\", \"make\", \"make\", \"male\", \"male\", \"male\", \"male\", \"male\", \"male\", \"male\", \"male\", \"male\", \"male\", \"male\", \"male\", \"male\", \"male\", \"male\", \"male\", \"man\", \"man\", \"man\", \"man\", \"man\", \"man\", \"man\", \"man\", \"man\", \"man\", \"man\", \"man\", \"man\", \"man\", \"man\", \"man\", \"man\", \"man\", \"man\", \"manager\", \"manager\", \"manager\", \"manager\", \"manager\", \"manager\", \"manager\", \"manager\", \"manager\", \"manager\", \"manager\", \"manager\", \"manager\", \"manager\", \"manager\", \"manager\", \"manually\", \"many\", \"many\", \"many\", \"many\", \"many\", \"many\", \"many\", \"many\", \"many\", \"many\", \"many\", \"many\", \"many\", \"many\", \"many\", \"many\", \"many\", \"many\", \"many\", \"many\", \"marble\", \"margin\", \"margin\", \"margin\", \"margin\", \"marker\", \"marriage\", \"marriage\", \"marriage\", \"marriage\", \"marriage\", \"marriage\", \"marriage\", \"marriage\", \"marriage\", \"marry\", \"marry\", \"marry\", \"marry\", \"marry\", \"marry\", \"marvel\", \"marvel\", \"marvel\", \"massacre\", \"massacre\", \"massacre\", \"massacre\", \"massacre\", \"massacre\", \"massacre\", \"massacre\", \"massacre\", \"massacre\", \"mating\", \"maxtor\", \"maxtor\", \"mcrae\", \"mean\", \"mean\", \"mean\", \"mean\", \"mean\", \"mean\", \"mean\", \"mean\", \"mean\", \"mean\", \"mean\", \"mean\", \"mean\", \"mean\", \"mean\", \"mean\", \"mean\", \"mean\", \"mean\", \"mean\", \"medical\", \"medical\", \"medical\", \"medical\", \"medical\", \"medical\", \"medical\", \"medical\", \"medical\", \"medical\", \"medical\", \"medical\", \"medical\", \"medical\", \"medical\", \"medical\", \"medical\", \"mediocre\", \"meg\", \"melkonian\", \"melkonian\", \"melkonian\", \"melkonian\", \"memory\", \"memory\", \"memory\", \"memory\", \"memory\", \"memory\", \"memory\", \"memory\", \"memory\", \"memory\", \"memory\", \"memory\", \"memory\", \"memory\", \"memory\", \"memory\", \"memory\", \"memory\", \"memory\", \"menace\", \"menu\", \"menu\", \"menu\", \"menu\", \"menu\", \"menu\", \"mercede\", \"met\", \"met\", \"metal\", \"metal\", \"metal\", \"metal\", \"metal\", \"metal\", \"metal\", \"methodology\", \"methodology\", \"methodology\", \"methodology\", \"methodology\", \"methodology\", \"methodology\", \"methodology\", \"mhz\", \"mhz\", \"mhz\", \"mhz\", \"mhz\", \"mhz\", \"mhz\", \"mhz\", \"mhz\", \"mhz\", \"mhz\", \"miata\", \"mile\", \"mile\", \"mile\", \"mile\", \"mile\", \"mile\", \"mile\", \"mile\", \"mile\", \"mile\", \"mile\", \"mile\", \"mile\", \"mile\", \"mile\", \"mile\", \"mile\", \"military\", \"military\", \"military\", \"military\", \"military\", \"military\", \"military\", \"military\", \"military\", \"military\", \"military\", \"military\", \"military\", \"military\", \"military\", \"military\", \"militia\", \"militia\", \"militia\", \"militia\", \"militia\", \"militia\", \"milk\", \"milk\", \"milk\", \"milk\", \"miner\", \"miner\", \"mini\", \"minister\", \"minority\", \"minority\", \"minority\", \"minority\", \"minority\", \"minority\", \"minority\", \"minority\", \"minority\", \"minority\", \"minority\", \"minority\", \"minority\", \"minority\", \"minority\", \"minority\", \"mint\", \"mission\", \"mission\", \"mission\", \"mission\", \"mission\", \"mission\", \"mission\", \"mission\", \"mission\", \"mission\", \"mission\", \"mission\", \"mission\", \"mission\", \"mission\", \"mission\", \"mission\", \"mist\", \"mixer\", \"mobile\", \"mobile\", \"modifier\", \"monitor\", \"monitor\", \"monitor\", \"monitor\", \"monitor\", \"monitor\", \"monitor\", \"monitor\", \"monitor\", \"monitor\", \"monitor\", \"monitor\", \"monitor\", \"monkey\", \"monopoly\", \"monopoly\", \"monthly\", \"monthly\", \"monthly\", \"monthly\", \"monthly\", \"monthly\", \"montreal\", \"moon\", \"moon\", \"moon\", \"moon\", \"moon\", \"moon\", \"moon\", \"moral\", \"moral\", \"moral\", \"moral\", \"moral\", \"moral\", \"moral\", \"moral\", \"moral\", \"moral\", \"moral\", \"moral\", \"moral\", \"moral\", \"moral\", \"moral\", \"morality\", \"morality\", \"morality\", \"morality\", \"morality\", \"morality\", \"morality\", \"morality\", \"morality\", \"morality\", \"mormon\", \"mormon\", \"mormon\", \"mormon\", \"mormon\", \"mormon\", \"morphing\", \"moslem\", \"moslem\", \"mot\", \"motherboard\", \"motherboard\", \"motif\", \"motif\", \"motif\", \"motif\", \"motif\", \"motif\", \"motif\", \"motif\", \"motif\", \"motif\", \"motorcycle\", \"motorcycle\", \"motorcycle\", \"motorcycle\", \"motorcycle\", \"motorcycle\", \"motorcycle\", \"motorcycle\", \"motorcycle\", \"motorcycle\", \"motorcycle\", \"motorcycle\", \"motorcycle\", \"motorcycle\", \"motorcycle\", \"mould\", \"mountain\", \"mountain\", \"mountain\", \"mountain\", \"mountain\", \"mountain\", \"mountain\", \"mountain\", \"mountain\", \"mountain\", \"mountain\", \"mountain\", \"mountain\", \"mountain\", \"mountain\", \"mountain\", \"mouse\", \"mouse\", \"mouse\", \"mouse\", \"mouse\", \"mouse\", \"mouse\", \"mouse\", \"mouse\", \"mouse\", \"mouse\", \"mouse\", \"mrmc\", \"msg\", \"msg\", \"msg\", \"msg\", \"msg\", \"msg\", \"msg\", \"much\", \"much\", \"much\", \"much\", \"much\", \"much\", \"much\", \"much\", \"much\", \"much\", \"much\", \"much\", \"much\", \"much\", \"much\", \"much\", \"much\", \"much\", \"much\", \"much\", \"multiply\", \"murder\", \"murder\", \"murder\", \"murder\", \"murder\", \"murder\", \"murder\", \"murder\", \"murder\", \"murder\", \"murder\", \"murder\", \"murder\", \"murder\", \"murder\", \"murder\", \"murder\", \"murder\", \"musical\", \"muslim\", \"muslim\", \"muslim\", \"muslim\", \"muslim\", \"muslim\", \"muslim\", \"muslim\", \"muslim\", \"muslim\", \"muslim\", \"muslim\", \"muslim\", \"muslim\", \"muslim\", \"mutant\", \"name\", \"name\", \"name\", \"name\", \"name\", \"name\", \"name\", \"name\", \"name\", \"name\", \"name\", \"name\", \"name\", \"name\", \"name\", \"name\", \"name\", \"name\", \"name\", \"name\", \"nanao\", \"nanao\", \"nanosecond\", \"natonal\", \"neck\", \"neck\", \"neck\", \"need\", \"need\", \"need\", \"need\", \"need\", \"need\", \"need\", \"need\", \"need\", \"need\", \"need\", \"need\", \"need\", \"need\", \"need\", \"need\", \"need\", \"need\", \"need\", \"need\", \"needle\", \"netland\", \"neutral\", \"neutral\", \"neutral\", \"neutral\", \"neutral\", \"never\", \"never\", \"never\", \"never\", \"never\", \"never\", \"never\", \"never\", \"never\", \"never\", \"never\", \"never\", \"never\", \"never\", \"never\", \"never\", \"never\", \"never\", \"never\", \"never\", \"new\", \"new\", \"new\", \"new\", \"new\", \"new\", \"new\", \"new\", \"new\", \"new\", \"new\", \"new\", \"new\", \"new\", \"new\", \"new\", \"new\", \"new\", \"new\", \"new\", \"ninjaite\", \"nist\", \"nntp\", \"nntp\", \"nntp\", \"nntp\", \"nntp\", \"nntp\", \"nntp\", \"nntp\", \"nntp\", \"nntp\", \"nntp\", \"nntp\", \"nntp\", \"nntp\", \"nntp\", \"nntp\", \"nntp\", \"nntp\", \"nntp\", \"nntp\", \"notepad\", \"nowadays\", \"nowadays\", \"nowadays\", \"nrhj\", \"nth\", \"ntsc\", \"nuclear\", \"nuclear\", \"nuclear\", \"nuclear\", \"nuclear\", \"nuclear\", \"nuclear\", \"nuclear\", \"nuclear\", \"nuclear\", \"nuclear\", \"nuclear\", \"number\", \"number\", \"number\", \"number\", \"number\", \"number\", \"number\", \"number\", \"number\", \"number\", \"number\", \"number\", \"number\", \"number\", \"number\", \"number\", \"number\", \"number\", \"number\", \"number\", \"numerical\", \"numlock\", \"obedience\", \"obedience\", \"objective\", \"objective\", \"objective\", \"objective\", \"objective\", \"objective\", \"objective\", \"objective\", \"objective\", \"objective\", \"objective\", \"objective\", \"objective\", \"observable\", \"observed\", \"occupant\", \"occupation\", \"occupation\", \"occupation\", \"occupation\", \"occupation\", \"occupation\", \"occupation\", \"occupation\", \"occupier\", \"occupy\", \"occupy\", \"occupy\", \"occupy\", \"occupy\", \"occupy\", \"occupy\", \"occupy\", \"occupy\", \"occupy\", \"occupy\", \"occurrence\", \"occurrence\", \"od\", \"odometer\", \"odometer\", \"odometer\", \"offer\", \"offer\", \"offer\", \"offer\", \"offer\", \"offer\", \"offer\", \"offer\", \"offer\", \"offer\", \"offer\", \"offer\", \"offer\", \"offer\", \"offer\", \"offer\", \"offer\", \"offer\", \"offer\", \"offer\", \"oil\", \"oil\", \"oil\", \"oil\", \"oil\", \"oil\", \"oil\", \"oil\", \"oil\", \"oil\", \"oil\", \"oil\", \"oil\", \"oil\", \"oiler\", \"oiler\", \"oiler\", \"old\", \"old\", \"old\", \"old\", \"old\", \"old\", \"old\", \"old\", \"old\", \"old\", \"old\", \"old\", \"old\", \"old\", \"old\", \"old\", \"old\", \"old\", \"old\", \"old\", \"omission\", \"omission\", \"omnipotent\", \"omniscient\", \"openlook\", \"opinion\", \"opinion\", \"opinion\", \"opinion\", \"opinion\", \"opinion\", \"opinion\", \"opinion\", \"opinion\", \"opinion\", \"opinion\", \"opinion\", \"opinion\", \"opinion\", \"opinion\", \"opinion\", \"opinion\", \"opinion\", \"opinion\", \"opinion\", \"opt\", \"opt\", \"opt\", \"optilink\", \"optilink\", \"oral\", \"orbit\", \"orbit\", \"orbit\", \"orbit\", \"orbit\", \"orbit\", \"orbit\", \"orbit\", \"orbit\", \"orbit\", \"orbit\", \"orbit\", \"orbital\", \"orbital\", \"orbital\", \"orbital\", \"orbital\", \"orbital\", \"orbital\", \"organisation\", \"organisation\", \"oriole\", \"oscillator\", \"oscillator\", \"oscillator\", \"ot\", \"ot\", \"outbreak\", \"outbreak\", \"outbreak\", \"outbreak\", \"outfield\", \"outlet\", \"outlet\", \"outlet\", \"outlet\", \"outlet\", \"p\", \"p\", \"p\", \"package\", \"package\", \"package\", \"package\", \"package\", \"package\", \"package\", \"package\", \"package\", \"package\", \"package\", \"package\", \"package\", \"package\", \"package\", \"package\", \"package\", \"package\", \"package\", \"page\", \"page\", \"page\", \"page\", \"page\", \"page\", \"page\", \"page\", \"page\", \"page\", \"page\", \"page\", \"page\", \"page\", \"page\", \"page\", \"page\", \"page\", \"page\", \"page\", \"pain\", \"pain\", \"pain\", \"pain\", \"pain\", \"pain\", \"pain\", \"pain\", \"pain\", \"pain\", \"pain\", \"pain\", \"pain\", \"pain\", \"pain\", \"palestinean\", \"palestinean\", \"palestinian\", \"palestinian\", \"palestinian\", \"palestinian\", \"palestinian\", \"palestinian\", \"palestinian\", \"palestinian\", \"palette\", \"panasonic\", \"panel\", \"panel\", \"panel\", \"panel\", \"panel\", \"panel\", \"panel\", \"panel\", \"panel\", \"panel\", \"panel\", \"panel\", \"panel\", \"panther\", \"panther\", \"panther\", \"paperback\", \"parade\", \"pardon\", \"part\", \"part\", \"part\", \"part\", \"part\", \"part\", \"part\", \"part\", \"part\", \"part\", \"part\", \"part\", \"part\", \"part\", \"part\", \"part\", \"part\", \"part\", \"part\", \"part\", \"partition\", \"partition\", \"partition\", \"partner\", \"partner\", \"partner\", \"partner\", \"partner\", \"partner\", \"partner\", \"partner\", \"partner\", \"partner\", \"partner\", \"pascal\", \"pascal\", \"pascal\", \"pascal\", \"pascal\", \"pascal\", \"pascal\", \"pascal\", \"patent\", \"patent\", \"patent\", \"patent\", \"patent\", \"patent\", \"patent\", \"patent\", \"patent\", \"patently\", \"patient\", \"patient\", \"patient\", \"patient\", \"patient\", \"patient\", \"patient\", \"patient\", \"patient\", \"patient\", \"patient\", \"patient\", \"patient\", \"patient\", \"patrick\", \"patrol\", \"patrol\", \"patrol\", \"paul\", \"paul\", \"pay\", \"pay\", \"pay\", \"pay\", \"pay\", \"pay\", \"pay\", \"pay\", \"pay\", \"pay\", \"pay\", \"pay\", \"pay\", \"pay\", \"pay\", \"pay\", \"pay\", \"pay\", \"pay\", \"payload\", \"payload\", \"payload\", \"pcl\", \"peace\", \"peace\", \"peace\", \"peace\", \"peace\", \"peace\", \"peace\", \"peace\", \"peace\", \"peace\", \"peace\", \"peace\", \"peace\", \"peace\", \"peel\", \"pellet\", \"pem\", \"pem\", \"pem\", \"pen\", \"pen\", \"pen\", \"pen\", \"pen\", \"pen\", \"pen\", \"pen\", \"penalty\", \"penalty\", \"penalty\", \"penalty\", \"penalty\", \"penalty\", \"penalty\", \"penalty\", \"penalty\", \"penalty\", \"penalty\", \"penguin\", \"penguin\", \"penguin\", \"penguin\", \"penguin\", \"penguin\", \"peopel\", \"people\", \"people\", \"people\", \"people\", \"people\", \"people\", \"people\", \"people\", \"people\", \"people\", \"people\", \"people\", \"people\", \"people\", \"people\", \"people\", \"people\", \"people\", \"people\", \"people\", \"percent\", \"percent\", \"percent\", \"percent\", \"percent\", \"percent\", \"percent\", \"percent\", \"percent\", \"percent\", \"percent\", \"percent\", \"percent\", \"percent\", \"percent\", \"percent\", \"percent\", \"persian\", \"persian\", \"person\", \"person\", \"person\", \"person\", \"person\", \"person\", \"person\", \"person\", \"person\", \"person\", \"person\", \"person\", \"person\", \"person\", \"person\", \"person\", \"person\", \"person\", \"person\", \"person\", \"perturbation\", \"phakt\", \"phil\", \"philosophical\", \"physician\", \"physician\", \"physician\", \"physician\", \"physician\", \"physician\", \"physician\", \"physician\", \"physician\", \"physician\", \"physician\", \"physician\", \"picture\", \"picture\", \"picture\", \"picture\", \"picture\", \"picture\", \"picture\", \"picture\", \"picture\", \"picture\", \"picture\", \"picture\", \"picture\", \"picture\", \"picture\", \"picture\", \"picture\", \"picture\", \"picture\", \"picture\", \"pillage\", \"pillage\", \"pillage\", \"pin\", \"pin\", \"pin\", \"pin\", \"pin\", \"pin\", \"pin\", \"pin\", \"pin\", \"pin\", \"pin\", \"pin\", \"pinout\", \"pistol\", \"pistol\", \"pistol\", \"pistol\", \"pistol\", \"piston\", \"pit\", \"pit\", \"pit\", \"pit\", \"pit\", \"pit\", \"pit\", \"pit\", \"pitch\", \"pitch\", \"pitch\", \"pitch\", \"pitch\", \"pitch\", \"pitch\", \"pitch\", \"pitch\", \"pitch\", \"pitch\", \"pitched\", \"pitcher\", \"pitcher\", \"pitcher\", \"pitcher\", \"pitcher\", \"pitcher\", \"pitcher\", \"pittsburg\", \"pittsburg\", \"pittsburgher\", \"pixmap\", \"pixmap\", \"pixmap\", \"pixmap\", \"pixmap\", \"pizza\", \"plaintext\", \"plaintext\", \"plane\", \"plane\", \"plane\", \"plane\", \"plane\", \"plane\", \"plane\", \"plane\", \"plane\", \"plane\", \"plane\", \"planet\", \"planet\", \"planet\", \"planet\", \"planet\", \"planet\", \"planet\", \"planet\", \"planet\", \"planet\", \"planetary\", \"planetary\", \"planetary\", \"planetary\", \"planetary\", \"planetary\", \"planetary\", \"planetary\", \"planetary\", \"planetary\", \"planetary\", \"planetary\", \"plant\", \"plant\", \"plant\", \"plant\", \"plant\", \"plant\", \"plant\", \"plant\", \"plastic\", \"plastic\", \"plastic\", \"plastic\", \"plastic\", \"plastic\", \"plastic\", \"plastic\", \"plastic\", \"plastic\", \"plastic\", \"plastic\", \"plastic\", \"platoon\", \"play\", \"play\", \"play\", \"play\", \"play\", \"play\", \"play\", \"play\", \"play\", \"play\", \"play\", \"play\", \"play\", \"play\", \"play\", \"play\", \"play\", \"play\", \"play\", \"player\", \"player\", \"player\", \"player\", \"player\", \"player\", \"player\", \"player\", \"player\", \"player\", \"player\", \"player\", \"player\", \"player\", \"player\", \"player\", \"player\", \"playoff\", \"playoff\", \"playoff\", \"playoff\", \"playoff\", \"playoff\", \"playoff\", \"plier\", \"plutonium\", \"plutonium\", \"pne\", \"point\", \"point\", \"point\", \"point\", \"point\", \"point\", \"point\", \"point\", \"point\", \"point\", \"point\", \"point\", \"point\", \"point\", \"point\", \"point\", \"point\", \"point\", \"point\", \"point\", \"pointer\", \"pointer\", \"pointer\", \"pointer\", \"pointer\", \"pointer\", \"pointer\", \"pointer\", \"pointer\", \"polish\", \"polish\", \"polygon\", \"polygon\", \"polygon\", \"polygon\", \"polygon\", \"population\", \"population\", \"population\", \"population\", \"population\", \"population\", \"population\", \"population\", \"population\", \"population\", \"population\", \"population\", \"population\", \"population\", \"population\", \"population\", \"popup\", \"port\", \"port\", \"port\", \"port\", \"port\", \"port\", \"port\", \"port\", \"port\", \"port\", \"port\", \"port\", \"port\", \"port\", \"port\", \"port\", \"post\", \"post\", \"post\", \"post\", \"post\", \"post\", \"post\", \"post\", \"post\", \"post\", \"post\", \"post\", \"post\", \"post\", \"post\", \"post\", \"post\", \"post\", \"post\", \"post\", \"postscript\", \"postscript\", \"postscript\", \"postscript\", \"postscript\", \"postscript\", \"postscript\", \"postscript\", \"potassium\", \"power\", \"power\", \"power\", \"power\", \"power\", \"power\", \"power\", \"power\", \"power\", \"power\", \"power\", \"power\", \"power\", \"power\", \"power\", \"power\", \"power\", \"power\", \"power\", \"powerplay\", \"powerplay\", \"practitioner\", \"preamp\", \"prediction\", \"prediction\", \"prediction\", \"prediction\", \"prediction\", \"prediction\", \"prediction\", \"prediction\", \"prediction\", \"prediction\", \"prediction\", \"prediction\", \"pregnancy\", \"pregnancy\", \"prescribe\", \"presentation\", \"presentation\", \"presentation\", \"presentation\", \"presentation\", \"presentation\", \"presentation\", \"presentation\", \"presentation\", \"preset\", \"pretense\", \"prey\", \"price\", \"price\", \"price\", \"price\", \"price\", \"price\", \"price\", \"price\", \"price\", \"price\", \"price\", \"price\", \"price\", \"price\", \"price\", \"price\", \"price\", \"price\", \"price\", \"print\", \"print\", \"print\", \"print\", \"print\", \"print\", \"print\", \"print\", \"print\", \"print\", \"print\", \"print\", \"print\", \"print\", \"print\", \"printer\", \"printer\", \"printer\", \"printer\", \"printer\", \"printer\", \"printer\", \"printing\", \"printing\", \"printing\", \"private\", \"private\", \"private\", \"private\", \"private\", \"private\", \"private\", \"private\", \"private\", \"private\", \"private\", \"private\", \"private\", \"private\", \"private\", \"private\", \"private\", \"private\", \"private\", \"prize\", \"prize\", \"prize\", \"prize\", \"prize\", \"prize\", \"prize\", \"prize\", \"probe\", \"probe\", \"probe\", \"probe\", \"probe\", \"probe\", \"probe\", \"probe\", \"probe\", \"probe\", \"probe\", \"probe\", \"problem\", \"problem\", \"problem\", \"problem\", \"problem\", \"problem\", \"problem\", \"problem\", \"problem\", \"problem\", \"problem\", \"problem\", \"problem\", \"problem\", \"problem\", \"problem\", \"problem\", \"problem\", \"problem\", \"problem\", \"proceed\", \"proceed\", \"proceed\", \"proceed\", \"proceed\", \"proceed\", \"proceed\", \"proceed\", \"proceed\", \"proceed\", \"proceed\", \"proceed\", \"proceed\", \"proceed\", \"profound\", \"program\", \"program\", \"program\", \"program\", \"program\", \"program\", \"program\", \"program\", \"program\", \"program\", \"program\", \"program\", \"program\", \"program\", \"program\", \"program\", \"program\", \"program\", \"program\", \"program\", \"project\", \"project\", \"project\", \"project\", \"project\", \"project\", \"project\", \"project\", \"project\", \"project\", \"project\", \"project\", \"project\", \"project\", \"project\", \"project\", \"project\", \"project\", \"project\", \"project\", \"projectile\", \"projectile\", \"projection\", \"projector\", \"promiscuity\", \"promiscuity\", \"promiscuous\", \"promiscuous\", \"prong\", \"prong\", \"prophecy\", \"prophecy\", \"prophecy\", \"prophecy\", \"prophecy\", \"prophecy\", \"prophecy\", \"prophecy\", \"prophecy\", \"prophecy\", \"prophesy\", \"prophesy\", \"propulsion\", \"propulsion\", \"propulsion\", \"propulsion\", \"propulsion\", \"propulsion\", \"propulsion\", \"propulsion\", \"propulsion\", \"propulsion\", \"propulsion\", \"propulsion\", \"protect\", \"protect\", \"protect\", \"protect\", \"protect\", \"protect\", \"protect\", \"protect\", \"protect\", \"protect\", \"protect\", \"protect\", \"protect\", \"protect\", \"protect\", \"protect\", \"protect\", \"protect\", \"protestant\", \"protestant\", \"protestant\", \"provocative\", \"provocative\", \"public\", \"public\", \"public\", \"public\", \"public\", \"public\", \"public\", \"public\", \"public\", \"public\", \"public\", \"public\", \"public\", \"public\", \"public\", \"public\", \"public\", \"public\", \"public\", \"public\", \"publish\", \"publish\", \"publish\", \"publish\", \"publish\", \"publish\", \"publish\", \"publish\", \"publish\", \"publish\", \"publish\", \"publish\", \"publish\", \"publish\", \"publish\", \"publish\", \"publish\", \"purchase\", \"purchase\", \"purchase\", \"purchase\", \"purchase\", \"purchase\", \"purchase\", \"purchase\", \"purchase\", \"purchase\", \"purchase\", \"purchase\", \"purchase\", \"purchase\", \"purchase\", \"purchase\", \"purchase\", \"purchase\", \"purposefully\", \"pyron\", \"queen\", \"queen\", \"queer\", \"question\", \"question\", \"question\", \"question\", \"question\", \"question\", \"question\", \"question\", \"question\", \"question\", \"question\", \"question\", \"question\", \"question\", \"question\", \"question\", \"question\", \"question\", \"question\", \"question\", \"quicktime\", \"quicktime\", \"quotation\", \"quotation\", \"quotation\", \"ra\", \"radar\", \"radar\", \"radar\", \"radar\", \"radar\", \"radial\", \"radiologist\", \"raider\", \"railway\", \"ram\", \"ram\", \"ram\", \"ram\", \"ram\", \"ram\", \"ram\", \"ram\", \"ram\", \"ram\", \"ramble\", \"ranger\", \"ranger\", \"ranger\", \"ranger\", \"ranger\", \"ranger\", \"ranger\", \"ranger\", \"rash\", \"rash\", \"rash\", \"rate\", \"rate\", \"rate\", \"rate\", \"rate\", \"rate\", \"rate\", \"rate\", \"rate\", \"rate\", \"rate\", \"rate\", \"rate\", \"rate\", \"rate\", \"rate\", \"rate\", \"rate\", \"rate\", \"rationale\", \"rayssd\", \"react\", \"react\", \"react\", \"react\", \"react\", \"react\", \"react\", \"react\", \"reactor\", \"reactor\", \"reactor\", \"read\", \"read\", \"read\", \"read\", \"read\", \"read\", \"read\", \"read\", \"read\", \"read\", \"read\", \"read\", \"read\", \"read\", \"read\", \"read\", \"read\", \"read\", \"read\", \"read\", \"readable\", \"rear\", \"rear\", \"rear\", \"rear\", \"rear\", \"rear\", \"rear\", \"rear\", \"rear\", \"rear\", \"rear\", \"reassure\", \"rebel\", \"receive\", \"receive\", \"receive\", \"receive\", \"receive\", \"receive\", \"receive\", \"receive\", \"receive\", \"receive\", \"receive\", \"receive\", \"receive\", \"receive\", \"receive\", \"receive\", \"receive\", \"receive\", \"receive\", \"receiver\", \"receiver\", \"receiver\", \"receiver\", \"receiver\", \"receiver\", \"receiver\", \"reconcile\", \"reconcile\", \"reconcile\", \"reconcile\", \"reconcile\", \"recycle\", \"recycle\", \"red\", \"red\", \"red\", \"red\", \"red\", \"red\", \"red\", \"red\", \"red\", \"red\", \"red\", \"red\", \"red\", \"red\", \"red\", \"red\", \"red\", \"redemption\", \"regression\", \"regulate\", \"regulate\", \"regulate\", \"regulate\", \"regulate\", \"regulated\", \"regulated\", \"regulated\", \"regulated\", \"regulated\", \"rejoice\", \"relativity\", \"relativity\", \"religion\", \"religion\", \"religion\", \"religion\", \"religion\", \"religion\", \"religion\", \"religion\", \"religion\", \"religion\", \"religion\", \"religion\", \"religion\", \"religion\", \"religion\", \"religion\", \"religious\", \"religious\", \"religious\", \"religious\", \"religious\", \"religious\", \"religious\", \"religious\", \"religious\", \"religious\", \"religious\", \"religious\", \"religious\", \"religious\", \"religious\", \"remark\", \"remark\", \"remark\", \"remark\", \"remark\", \"remark\", \"remark\", \"remark\", \"remark\", \"remark\", \"remark\", \"removed\", \"remus\", \"renewal\", \"renewal\", \"repeater\", \"repentance\", \"reporter\", \"reporter\", \"reporter\", \"reporter\", \"reporter\", \"reporter\", \"request\", \"request\", \"request\", \"request\", \"request\", \"request\", \"request\", \"request\", \"request\", \"request\", \"request\", \"request\", \"request\", \"request\", \"request\", \"request\", \"request\", \"request\", \"request\", \"request\", \"research\", \"research\", \"research\", \"research\", \"research\", \"research\", \"research\", \"research\", \"research\", \"research\", \"research\", \"research\", \"research\", \"research\", \"research\", \"research\", \"research\", \"research\", \"research\", \"research\", \"resemblance\", \"residential\", \"residual\", \"resonance\", \"restaurant\", \"restaurant\", \"restaurant\", \"restaurant\", \"restaurant\", \"restaurant\", \"retail\", \"retail\", \"retail\", \"retail\", \"retail\", \"retail\", \"rethink\", \"rethought\", \"revelation\", \"revelation\", \"revelation\", \"revelation\", \"revelation\", \"revelation\", \"revelation\", \"revelation\", \"revelation\", \"revelation\", \"revelation\", \"revolver\", \"revolver\", \"revolver\", \"revolver\", \"rf\", \"rfc\", \"rfc\", \"rfc\", \"ride\", \"ride\", \"ride\", \"ride\", \"ride\", \"ride\", \"ride\", \"ride\", \"ride\", \"ride\", \"ride\", \"ride\", \"ride\", \"ride\", \"ride\", \"ride\", \"rider\", \"rider\", \"rider\", \"rider\", \"rider\", \"rider\", \"rider\", \"rider\", \"ridicule\", \"rig\", \"right\", \"right\", \"right\", \"right\", \"right\", \"right\", \"right\", \"right\", \"right\", \"right\", \"right\", \"right\", \"right\", \"right\", \"right\", \"right\", \"right\", \"right\", \"right\", \"right\", \"righteousness\", \"righteousness\", \"rigth\", \"ring\", \"ring\", \"ring\", \"ring\", \"ring\", \"ring\", \"ring\", \"ring\", \"ring\", \"ring\", \"ring\", \"ripem\", \"rite\", \"rkba\", \"rkba\", \"rkba\", \"rkba\", \"rl\", \"road\", \"road\", \"road\", \"road\", \"road\", \"road\", \"road\", \"road\", \"road\", \"road\", \"road\", \"road\", \"road\", \"road\", \"road\", \"road\", \"road\", \"rocket\", \"rocket\", \"rocket\", \"rocket\", \"rocket\", \"rocket\", \"rocket\", \"rocket\", \"rocket\", \"rocket\", \"rocket\", \"rocket\", \"rocket\", \"rocket\", \"rocket\", \"rocket\", \"roland\", \"rom\", \"rom\", \"rom\", \"rom\", \"rom\", \"rom\", \"rom\", \"rom\", \"rom\", \"rom\", \"rom\", \"rom\", \"rookie\", \"rookie\", \"rookie\", \"rookie\", \"rosicrucian\", \"rot\", \"rot\", \"rotor\", \"round\", \"round\", \"round\", \"round\", \"round\", \"round\", \"round\", \"round\", \"round\", \"round\", \"round\", \"round\", \"round\", \"round\", \"round\", \"round\", \"round\", \"rsa\", \"rsa\", \"rsa\", \"rsa\", \"rsa\", \"rsaref\", \"rub\", \"rub\", \"run\", \"run\", \"run\", \"run\", \"run\", \"run\", \"run\", \"run\", \"run\", \"run\", \"run\", \"run\", \"run\", \"run\", \"run\", \"run\", \"run\", \"run\", \"run\", \"run\", \"runtime\", \"russian\", \"russian\", \"russian\", \"russian\", \"russian\", \"russian\", \"russian\", \"russian\", \"russian\", \"russian\", \"russian\", \"russian\", \"russian\", \"russian\", \"russian\", \"russian\", \"rust\", \"s\", \"s\", \"s\", \"s\", \"s\", \"s\", \"s\", \"s\", \"s\", \"s\", \"s\", \"s\", \"s\", \"s\", \"s\", \"s\", \"s\", \"s\", \"s\", \"s\", \"sabre\", \"sabre\", \"safety\", \"safety\", \"safety\", \"safety\", \"safety\", \"safety\", \"safety\", \"safety\", \"safety\", \"safety\", \"safety\", \"safety\", \"safety\", \"safety\", \"safety\", \"safety\", \"sahak\", \"sahak\", \"sahak\", \"sahak\", \"sail\", \"sail\", \"sail\", \"sail\", \"sale\", \"sale\", \"sale\", \"sale\", \"sale\", \"sale\", \"sale\", \"sale\", \"sale\", \"sale\", \"sale\", \"sale\", \"sale\", \"sale\", \"sale\", \"sale\", \"sale\", \"sale\", \"salesperson\", \"salvation\", \"salvation\", \"salvation\", \"salvation\", \"salvation\", \"salvation\", \"salvation\", \"salvation\", \"salvation\", \"sample\", \"sample\", \"sample\", \"sample\", \"sample\", \"sample\", \"sample\", \"sample\", \"sample\", \"sample\", \"sample\", \"sample\", \"sample\", \"sample\", \"sample\", \"sample\", \"sample\", \"satanic\", \"satellite\", \"satellite\", \"satellite\", \"satellite\", \"satellite\", \"satellite\", \"satellite\", \"satellite\", \"satellite\", \"satellite\", \"satellite\", \"satisfaction\", \"satisfaction\", \"savagely\", \"savard\", \"saw\", \"saw\", \"saw\", \"saw\", \"say\", \"say\", \"say\", \"say\", \"say\", \"say\", \"say\", \"say\", \"say\", \"say\", \"say\", \"say\", \"say\", \"say\", \"say\", \"say\", \"say\", \"say\", \"say\", \"say\", \"scam\", \"scanning\", \"sceptical\", \"sceptical\", \"science\", \"science\", \"science\", \"science\", \"science\", \"science\", \"science\", \"science\", \"science\", \"science\", \"science\", \"science\", \"science\", \"science\", \"science\", \"science\", \"science\", \"science\", \"science\", \"science\", \"score\", \"score\", \"score\", \"score\", \"score\", \"score\", \"score\", \"score\", \"score\", \"score\", \"score\", \"screen\", \"screen\", \"screen\", \"screen\", \"screen\", \"screen\", \"screen\", \"screen\", \"screen\", \"screen\", \"screen\", \"screen\", \"screen\", \"screen\", \"scripture\", \"scripture\", \"scripture\", \"scripture\", \"scripture\", \"scripture\", \"scripture\", \"scripture\", \"scripture\", \"scripture\", \"scripture\", \"scroll\", \"scroll\", \"scroll\", \"scsi\", \"scsi\", \"scsi\", \"scsi\", \"scsi\", \"scsi\", \"scsi\", \"sdpa\", \"sdpa\", \"se\", \"se\", \"se\", \"season\", \"season\", \"season\", \"season\", \"season\", \"season\", \"season\", \"season\", \"season\", \"season\", \"season\", \"season\", \"season\", \"season\", \"seattle\", \"secrecy\", \"secrecy\", \"secrecy\", \"secrecy\", \"secret\", \"secret\", \"secret\", \"secret\", \"secret\", \"secret\", \"secret\", \"secret\", \"secret\", \"secret\", \"secret\", \"secret\", \"secret\", \"secret\", \"secret\", \"secret\", \"secure\", \"secure\", \"secure\", \"secure\", \"secure\", \"secure\", \"secure\", \"secure\", \"secure\", \"secure\", \"secure\", \"secure\", \"secure\", \"secure\", \"security\", \"security\", \"security\", \"security\", \"security\", \"security\", \"security\", \"security\", \"security\", \"security\", \"security\", \"security\", \"security\", \"security\", \"security\", \"security\", \"security\", \"security\", \"sedan\", \"sedan\", \"see\", \"see\", \"see\", \"see\", \"see\", \"see\", \"see\", \"see\", \"see\", \"see\", \"see\", \"see\", \"see\", \"see\", \"see\", \"see\", \"see\", \"see\", \"see\", \"see\", \"seeing\", \"seem\", \"seem\", \"seem\", \"seem\", \"seem\", \"seem\", \"seem\", \"seem\", \"seem\", \"seem\", \"seem\", \"seem\", \"seem\", \"seem\", \"seem\", \"seem\", \"seem\", \"seem\", \"seem\", \"seem\", \"seizure\", \"seizure\", \"seizure\", \"seizure\", \"selective\", \"selective\", \"selective\", \"selective\", \"selective\", \"selective\", \"selective\", \"selective\", \"selfish\", \"selfish\", \"selfish\", \"selfish\", \"sell\", \"sell\", \"sell\", \"sell\", \"sell\", \"sell\", \"sell\", \"sell\", \"sell\", \"sell\", \"sell\", \"sell\", \"sell\", \"sell\", \"sell\", \"sell\", \"sell\", \"sell\", \"sell\", \"sell\", \"seller\", \"seller\", \"seller\", \"semi\", \"semi\", \"semi\", \"semi\", \"semi\", \"semi\", \"semi\", \"semi\", \"semi\", \"semi\", \"semi\", \"send\", \"send\", \"send\", \"send\", \"send\", \"send\", \"send\", \"send\", \"send\", \"send\", \"send\", \"send\", \"send\", \"send\", \"send\", \"send\", \"send\", \"send\", \"send\", \"send\", \"sensation\", \"sensor\", \"sensor\", \"sensor\", \"sensor\", \"sensor\", \"sensor\", \"sensor\", \"serial\", \"serial\", \"serial\", \"serial\", \"serial\", \"serial\", \"serial\", \"serial\", \"serial\", \"serve\", \"serve\", \"serve\", \"serve\", \"serve\", \"serve\", \"serve\", \"serve\", \"serve\", \"serve\", \"serve\", \"serve\", \"serve\", \"serve\", \"serve\", \"serve\", \"serve\", \"serve\", \"serve\", \"serve\", \"server\", \"server\", \"server\", \"server\", \"server\", \"server\", \"server\", \"server\", \"server\", \"server\", \"server\", \"server\", \"server\", \"server\", \"server\", \"server\", \"server\", \"set\", \"set\", \"set\", \"set\", \"set\", \"set\", \"set\", \"set\", \"set\", \"set\", \"set\", \"set\", \"set\", \"set\", \"set\", \"set\", \"set\", \"set\", \"set\", \"set\", \"setting\", \"setting\", \"setting\", \"setting\", \"setting\", \"setting\", \"setting\", \"setting\", \"sex\", \"sex\", \"sex\", \"sex\", \"sex\", \"sex\", \"sex\", \"sex\", \"sex\", \"sex\", \"sex\", \"sex\", \"sex\", \"sexual\", \"sexual\", \"sexual\", \"sexual\", \"sexual\", \"sexual\", \"sexual\", \"sexual\", \"sexual\", \"sexual\", \"sexually\", \"sexually\", \"sgi\", \"shameful\", \"shameful\", \"shameful\", \"shark\", \"shark\", \"shark\", \"shawn\", \"shelter\", \"ship\", \"ship\", \"ship\", \"ship\", \"ship\", \"ship\", \"ship\", \"ship\", \"ship\", \"ship\", \"ship\", \"ship\", \"ship\", \"ship\", \"ship\", \"ship\", \"shoei\", \"shoot\", \"shoot\", \"shoot\", \"shoot\", \"shoot\", \"shoot\", \"shoot\", \"shoot\", \"shoot\", \"shoot\", \"shoot\", \"shoot\", \"shoot\", \"shoot\", \"shoot\", \"shoot\", \"shoot\", \"shoot\", \"shortstop\", \"shovel\", \"show\", \"show\", \"show\", \"show\", \"show\", \"show\", \"show\", \"show\", \"show\", \"show\", \"show\", \"show\", \"show\", \"show\", \"show\", \"show\", \"show\", \"show\", \"show\", \"show\", \"shrink\", \"shuttle\", \"shuttle\", \"shuttle\", \"shuttle\", \"shuttle\", \"shuttle\", \"shuttle\", \"shuttle\", \"shuttle\", \"shuttle\", \"shuttle\", \"shuttle\", \"shuttle\", \"shuttle\", \"simulate\", \"sin\", \"sin\", \"sin\", \"sin\", \"sin\", \"sin\", \"sin\", \"sin\", \"sin\", \"sin\", \"sin\", \"sin\", \"sin\", \"sin\", \"sin\", \"sin\", \"sin\", \"single\", \"single\", \"single\", \"single\", \"single\", \"single\", \"single\", \"single\", \"single\", \"single\", \"single\", \"single\", \"single\", \"single\", \"single\", \"single\", \"single\", \"single\", \"single\", \"single\", \"sinless\", \"site\", \"site\", \"site\", \"site\", \"site\", \"site\", \"site\", \"site\", \"site\", \"site\", \"site\", \"site\", \"site\", \"site\", \"site\", \"site\", \"site\", \"site\", \"site\", \"site\", \"skepticism\", \"skepticism\", \"skepticism\", \"skepticism\", \"skepticism\", \"skew\", \"skinny\", \"skndiv\", \"slaughter\", \"slaughter\", \"slaughter\", \"slaughter\", \"slaughter\", \"slaughter\", \"slaughter\", \"slaughter\", \"slaughter\", \"slaughter\", \"slave\", \"slave\", \"slave\", \"slave\", \"slave\", \"slave\", \"slave\", \"slave\", \"slave\", \"slave\", \"slave\", \"slave\", \"sleeve\", \"sleeve\", \"sleeve\", \"slick\", \"slick\", \"slick\", \"slowdown\", \"soak\", \"soar\", \"software\", \"software\", \"software\", \"software\", \"software\", \"software\", \"software\", \"software\", \"software\", \"software\", \"software\", \"software\", \"software\", \"software\", \"software\", \"software\", \"software\", \"software\", \"software\", \"software\", \"soldier\", \"soldier\", \"soldier\", \"soldier\", \"soldier\", \"soldier\", \"soldier\", \"soldier\", \"soldier\", \"soldier\", \"soldier\", \"soldier\", \"soldier\", \"soldier\", \"soldier\", \"soldier\", \"soldier\", \"solo\", \"someplace\", \"son\", \"son\", \"son\", \"son\", \"son\", \"son\", \"son\", \"son\", \"son\", \"son\", \"son\", \"son\", \"son\", \"son\", \"son\", \"son\", \"son\", \"soul\", \"soul\", \"soul\", \"soul\", \"soul\", \"soul\", \"soul\", \"soul\", \"soul\", \"soul\", \"soul\", \"soul\", \"soul\", \"soul\", \"soul\", \"soul\", \"source\", \"source\", \"source\", \"source\", \"source\", \"source\", \"source\", \"source\", \"source\", \"source\", \"source\", \"source\", \"source\", \"source\", \"source\", \"source\", \"source\", \"source\", \"source\", \"source\", \"space\", \"space\", \"space\", \"space\", \"space\", \"space\", \"space\", \"space\", \"space\", \"space\", \"space\", \"space\", \"space\", \"space\", \"space\", \"space\", \"space\", \"space\", \"space\", \"spacecraft\", \"spacecraft\", \"spacecraft\", \"spacecraft\", \"spacecraft\", \"spaceflight\", \"sparcstation\", \"sparcstation\", \"sparcstation\", \"specie\", \"specie\", \"specie\", \"specie\", \"speed\", \"speed\", \"speed\", \"speed\", \"speed\", \"speed\", \"speed\", \"speed\", \"speed\", \"speed\", \"speed\", \"speed\", \"speed\", \"speed\", \"speed\", \"speed\", \"speed\", \"speed\", \"speedometer\", \"speedstar\", \"speedup\", \"sperm\", \"sperm\", \"spice\", \"spike\", \"spike\", \"splicing\", \"spline\", \"spline\", \"sporty\", \"sps\", \"squid\", \"srb\", \"srb\", \"stable\", \"stable\", \"stable\", \"stable\", \"stable\", \"stable\", \"stable\", \"standpoint\", \"standpoint\", \"stanford\", \"start\", \"start\", \"start\", \"start\", \"start\", \"start\", \"start\", \"start\", \"start\", \"start\", \"start\", \"start\", \"start\", \"start\", \"start\", \"start\", \"start\", \"start\", \"start\", \"start\", \"state\", \"state\", \"state\", \"state\", \"state\", \"state\", \"state\", \"state\", \"state\", \"state\", \"state\", \"state\", \"state\", \"state\", \"state\", \"state\", \"state\", \"state\", \"state\", \"state\", \"std\", \"steam\", \"steam\", \"steam\", \"steam\", \"steam\", \"steer\", \"steer\", \"steer\", \"steer\", \"steer\", \"steer\", \"steer\", \"steer\", \"sticky\", \"stimulus\", \"stitch\", \"stove\", \"stove\", \"stove\", \"stove\", \"stove\", \"strand\", \"strider\", \"striped\", \"stud\", \"studio\", \"study\", \"study\", \"study\", \"study\", \"study\", \"study\", \"study\", \"study\", \"study\", \"study\", \"study\", \"study\", \"study\", \"study\", \"study\", \"study\", \"study\", \"study\", \"study\", \"study\", \"subjective\", \"subjective\", \"subjective\", \"subjective\", \"subjectively\", \"submarine\", \"submarine\", \"subscription\", \"subscription\", \"subscription\", \"subscription\", \"subscription\", \"suitably\", \"summit\", \"sunos\", \"sunos\", \"sunos\", \"sunos\", \"sunset\", \"sunset\", \"sunview\", \"superb\", \"supercede\", \"support\", \"support\", \"support\", \"support\", \"support\", \"support\", \"support\", \"support\", \"support\", \"support\", \"support\", \"support\", \"support\", \"support\", \"support\", \"support\", \"support\", \"support\", \"support\", \"support\", \"surface\", \"surface\", \"surface\", \"surface\", \"surface\", \"surface\", \"surface\", \"surface\", \"surface\", \"surface\", \"surface\", \"surface\", \"surface\", \"surface\", \"surface\", \"surface\", \"surface\", \"surplus\", \"surrender\", \"surrender\", \"surrender\", \"surrender\", \"surrender\", \"surrender\", \"surrender\", \"surrender\", \"surrender\", \"surveillance\", \"surveillance\", \"surveillance\", \"surveillance\", \"surveillance\", \"surveillance\", \"surveillance\", \"surveillance\", \"suspension\", \"suspension\", \"suspension\", \"suspension\", \"svr\", \"svr\", \"swerve\", \"swinge\", \"swiss\", \"switchover\", \"symbol\", \"symbol\", \"symbol\", \"symposium\", \"synthesize\", \"system\", \"system\", \"system\", \"system\", \"system\", \"system\", \"system\", \"system\", \"system\", \"system\", \"system\", \"system\", \"system\", \"system\", \"system\", \"system\", \"system\", \"system\", \"system\", \"system\", \"take\", \"take\", \"take\", \"take\", \"take\", \"take\", \"take\", \"take\", \"take\", \"take\", \"take\", \"take\", \"take\", \"take\", \"take\", \"take\", \"take\", \"take\", \"take\", \"take\", \"talent\", \"talent\", \"talent\", \"talent\", \"talent\", \"talent\", \"talk\", \"talk\", \"talk\", \"talk\", \"talk\", \"talk\", \"talk\", \"talk\", \"talk\", \"talk\", \"talk\", \"talk\", \"talk\", \"talk\", \"talk\", \"talk\", \"talk\", \"talk\", \"talk\", \"talk\", \"tammy\", \"tao\", \"taoism\", \"tap\", \"tap\", \"tap\", \"tap\", \"tap\", \"tap\", \"tap\", \"tap\", \"taste\", \"taste\", \"taste\", \"taste\", \"taste\", \"taste\", \"taste\", \"tax\", \"tax\", \"tax\", \"tax\", \"tax\", \"tax\", \"tax\", \"tax\", \"tax\", \"tax\", \"tax\", \"tax\", \"tax\", \"tax\", \"team\", \"team\", \"team\", \"team\", \"team\", \"team\", \"team\", \"team\", \"team\", \"team\", \"team\", \"team\", \"team\", \"team\", \"team\", \"team\", \"team\", \"team\", \"technology\", \"technology\", \"technology\", \"technology\", \"technology\", \"technology\", \"technology\", \"technology\", \"technology\", \"technology\", \"technology\", \"technology\", \"technology\", \"technology\", \"technology\", \"technology\", \"technology\", \"technology\", \"technology\", \"teenager\", \"tell\", \"tell\", \"tell\", \"tell\", \"tell\", \"tell\", \"tell\", \"tell\", \"tell\", \"tell\", \"tell\", \"tell\", \"tell\", \"tell\", \"tell\", \"tell\", \"tell\", \"tell\", \"tell\", \"tell\", \"telnet\", \"telnet\", \"telnet\", \"temp\", \"temp\", \"temp\", \"temp\", \"temperature\", \"temperature\", \"temperature\", \"temperature\", \"temperature\", \"temperature\", \"temperature\", \"temperature\", \"temperature\", \"temperature\", \"temperature\", \"temperature\", \"template\", \"temporal\", \"territory\", \"territory\", \"territory\", \"territory\", \"territory\", \"territory\", \"territory\", \"territory\", \"territory\", \"territory\", \"territory\", \"territory\", \"test\", \"test\", \"test\", \"test\", \"test\", \"test\", \"test\", \"test\", \"test\", \"test\", \"test\", \"test\", \"test\", \"test\", \"test\", \"test\", \"test\", \"test\", \"text\", \"text\", \"text\", \"text\", \"text\", \"text\", \"text\", \"text\", \"text\", \"text\", \"text\", \"text\", \"text\", \"text\", \"text\", \"text\", \"text\", \"text\", \"text\", \"text\", \"tg\", \"thank\", \"thank\", \"thank\", \"thank\", \"thank\", \"thank\", \"thank\", \"thank\", \"thank\", \"thank\", \"thank\", \"thank\", \"thank\", \"thank\", \"thank\", \"thank\", \"thank\", \"thank\", \"thank\", \"thank\", \"theism\", \"theologian\", \"theologian\", \"theologian\", \"theologian\", \"theory\", \"theory\", \"theory\", \"theory\", \"theory\", \"theory\", \"theory\", \"theory\", \"theory\", \"theory\", \"theory\", \"theory\", \"theory\", \"theory\", \"theory\", \"theory\", \"theory\", \"theory\", \"theory\", \"thermal\", \"thermal\", \"thermal\", \"thermal\", \"thermal\", \"thing\", \"thing\", \"thing\", \"thing\", \"thing\", \"thing\", \"thing\", \"thing\", \"thing\", \"thing\", \"thing\", \"thing\", \"thing\", \"thing\", \"thing\", \"thing\", \"thing\", \"thing\", \"thing\", \"thing\", \"think\", \"think\", \"think\", \"think\", \"think\", \"think\", \"think\", \"think\", \"think\", \"think\", \"think\", \"think\", \"think\", \"think\", \"think\", \"think\", \"think\", \"think\", \"think\", \"think\", \"thrace\", \"thrace\", \"throne\", \"tighten\", \"tightly\", \"time\", \"time\", \"time\", \"time\", \"time\", \"time\", \"time\", \"time\", \"time\", \"time\", \"time\", \"time\", \"time\", \"time\", \"time\", \"time\", \"time\", \"time\", \"time\", \"time\", \"timmon\", \"timmon\", \"tissue\", \"tissue\", \"tissue\", \"tissue\", \"title\", \"title\", \"title\", \"title\", \"title\", \"title\", \"title\", \"title\", \"title\", \"title\", \"title\", \"title\", \"title\", \"title\", \"title\", \"title\", \"title\", \"title\", \"tm\", \"tm\", \"tm\", \"today\", \"today\", \"today\", \"today\", \"today\", \"today\", \"today\", \"today\", \"today\", \"today\", \"today\", \"today\", \"today\", \"today\", \"today\", \"today\", \"today\", \"today\", \"today\", \"today\", \"toner\", \"tongue\", \"tongue\", \"tongue\", \"tongue\", \"tower\", \"tower\", \"tower\", \"tower\", \"tower\", \"tower\", \"tower\", \"town\", \"town\", \"town\", \"town\", \"town\", \"town\", \"town\", \"town\", \"town\", \"town\", \"town\", \"town\", \"town\", \"town\", \"town\", \"town\", \"town\", \"tq\", \"tq\", \"trade\", \"trade\", \"trade\", \"trade\", \"trade\", \"trade\", \"trade\", \"trade\", \"trade\", \"trade\", \"trade\", \"trade\", \"trade\", \"trade\", \"trade\", \"trade\", \"trade\", \"trade\", \"trade\", \"trade\", \"trader\", \"trader\", \"tradition\", \"tradition\", \"tradition\", \"tradition\", \"tradition\", \"tradition\", \"tradition\", \"tradition\", \"tradition\", \"tradition\", \"tradition\", \"tradition\", \"tradition\", \"tradition\", \"trajectory\", \"transparent\", \"transputer\", \"trident\", \"trigger\", \"trigger\", \"trigger\", \"trigger\", \"trigger\", \"trigger\", \"trigger\", \"trigger\", \"trigger\", \"trigger\", \"trinity\", \"trinity\", \"trinity\", \"troop\", \"troop\", \"troop\", \"troop\", \"troop\", \"troop\", \"troop\", \"troop\", \"troop\", \"troop\", \"troop\", \"troop\", \"trouser\", \"true\", \"true\", \"true\", \"true\", \"true\", \"true\", \"true\", \"true\", \"true\", \"true\", \"true\", \"true\", \"true\", \"true\", \"true\", \"true\", \"true\", \"true\", \"true\", \"true\", \"truecolor\", \"truth\", \"truth\", \"truth\", \"truth\", \"truth\", \"truth\", \"truth\", \"truth\", \"truth\", \"truth\", \"truth\", \"truth\", \"truth\", \"truth\", \"truth\", \"truth\", \"truth\", \"truth\", \"truth\", \"try\", \"try\", \"try\", \"try\", \"try\", \"try\", \"try\", \"try\", \"try\", \"try\", \"try\", \"try\", \"try\", \"try\", \"try\", \"try\", \"try\", \"try\", \"try\", \"try\", \"tumor\", \"turk\", \"turk\", \"turk\", \"turk\", \"turk\", \"turk\", \"turk\", \"turk\", \"turk\", \"turk\", \"turk\", \"turk\", \"turkish\", \"turkish\", \"turkish\", \"turkish\", \"turkish\", \"turkish\", \"turkish\", \"turkish\", \"turkish\", \"turkish\", \"turkish\", \"turkish\", \"turkish\", \"turkish\", \"turkish\", \"turkish\", \"turkish\", \"tutorial\", \"tutorial\", \"tutorial\", \"tutorial\", \"typo\", \"tyranny\", \"uart\", \"ucsc\", \"undefined\", \"undefined\", \"undeniable\", \"undesired\", \"uninstall\", \"unit\", \"unit\", \"unit\", \"unit\", \"unit\", \"unit\", \"unit\", \"unit\", \"unit\", \"unit\", \"unit\", \"unit\", \"unit\", \"unit\", \"unit\", \"unit\", \"unit\", \"unit\", \"unorganized\", \"unorganized\", \"unregistered\", \"unwanted\", \"uphold\", \"uploaded\", \"uranium\", \"uranium\", \"uranium\", \"use\", \"use\", \"use\", \"use\", \"use\", \"use\", \"use\", \"use\", \"use\", \"use\", \"use\", \"use\", \"use\", \"use\", \"use\", \"use\", \"use\", \"use\", \"use\", \"use\", \"usefull\", \"user\", \"user\", \"user\", \"user\", \"user\", \"user\", \"user\", \"user\", \"user\", \"user\", \"user\", \"user\", \"user\", \"user\", \"user\", \"user\", \"user\", \"user\", \"user\", \"user\", \"util\", \"util\", \"utopian\", \"value\", \"value\", \"value\", \"value\", \"value\", \"value\", \"value\", \"value\", \"value\", \"value\", \"value\", \"value\", \"value\", \"value\", \"value\", \"value\", \"value\", \"value\", \"value\", \"vancouver\", \"vancouver\", \"vc\", \"vc\", \"vcc\", \"vcr\", \"vcr\", \"vegetable\", \"vehicle\", \"vehicle\", \"vehicle\", \"vehicle\", \"vehicle\", \"vehicle\", \"vehicle\", \"vehicle\", \"vehicle\", \"vehicle\", \"vehicle\", \"vehicle\", \"vehicle\", \"vehicle\", \"vehicle\", \"vehicle\", \"vehicle\", \"venus\", \"version\", \"version\", \"version\", \"version\", \"version\", \"version\", \"version\", \"version\", \"version\", \"version\", \"version\", \"version\", \"version\", \"version\", \"version\", \"version\", \"version\", \"version\", \"version\", \"version\", \"vga\", \"vga\", \"vga\", \"vga\", \"video\", \"video\", \"video\", \"video\", \"video\", \"video\", \"video\", \"video\", \"video\", \"video\", \"video\", \"video\", \"video\", \"video\", \"video\", \"video\", \"video\", \"view\", \"view\", \"view\", \"view\", \"view\", \"view\", \"view\", \"view\", \"view\", \"view\", \"view\", \"view\", \"view\", \"view\", \"view\", \"view\", \"view\", \"view\", \"view\", \"viewer\", \"viewer\", \"viewer\", \"viewer\", \"viewer\", \"village\", \"village\", \"village\", \"village\", \"village\", \"village\", \"village\", \"village\", \"village\", \"village\", \"village\", \"village\", \"village\", \"violent\", \"violent\", \"violent\", \"violent\", \"violent\", \"violent\", \"violent\", \"violent\", \"violent\", \"viral\", \"viral\", \"virtual\", \"virtual\", \"virtual\", \"virtual\", \"virtual\", \"virtual\", \"virtual\", \"virtual\", \"vlb\", \"vlb\", \"vlb\", \"vlb\", \"voltage\", \"voltage\", \"voltage\", \"voltage\", \"voltage\", \"voltage\", \"vram\", \"wager\", \"wagon\", \"wagon\", \"wagon\", \"want\", \"want\", \"want\", \"want\", \"want\", \"want\", \"want\", \"want\", \"want\", \"want\", \"want\", \"want\", \"want\", \"want\", \"want\", \"want\", \"want\", \"want\", \"want\", \"want\", \"war\", \"war\", \"war\", \"war\", \"war\", \"war\", \"war\", \"war\", \"war\", \"war\", \"war\", \"war\", \"war\", \"war\", \"war\", \"war\", \"war\", \"washing\", \"water\", \"water\", \"water\", \"water\", \"water\", \"water\", \"water\", \"water\", \"water\", \"water\", \"water\", \"water\", \"water\", \"water\", \"water\", \"water\", \"water\", \"water\", \"water\", \"water\", \"wave\", \"wave\", \"wave\", \"wave\", \"wave\", \"wave\", \"wave\", \"wave\", \"wave\", \"wave\", \"wave\", \"wave\", \"wave\", \"wave\", \"wave\", \"way\", \"way\", \"way\", \"way\", \"way\", \"way\", \"way\", \"way\", \"way\", \"way\", \"way\", \"way\", \"way\", \"way\", \"way\", \"way\", \"way\", \"way\", \"way\", \"way\", \"weapon\", \"weapon\", \"weapon\", \"weapon\", \"weapon\", \"weapon\", \"weapon\", \"weapon\", \"weapon\", \"weapon\", \"weapon\", \"weapon\", \"weapon\", \"weapon\", \"weapon\", \"weapon\", \"weapon\", \"weapon\", \"weasel\", \"webber\", \"weld\", \"well\", \"well\", \"well\", \"well\", \"well\", \"well\", \"well\", \"well\", \"well\", \"well\", \"well\", \"well\", \"well\", \"well\", \"well\", \"well\", \"well\", \"well\", \"well\", \"well\", \"whaler\", \"wheel\", \"wheel\", \"wheel\", \"wheel\", \"wheel\", \"wheel\", \"wheel\", \"wheel\", \"wheel\", \"white\", \"white\", \"white\", \"white\", \"white\", \"white\", \"white\", \"white\", \"white\", \"white\", \"white\", \"white\", \"white\", \"white\", \"white\", \"white\", \"white\", \"white\", \"white\", \"wholesome\", \"whoop\", \"whoop\", \"wicke\", \"widget\", \"widget\", \"widget\", \"widget\", \"widget\", \"widget\", \"widget\", \"widget\", \"widget\", \"widget\", \"widget\", \"widget\", \"widget\", \"win\", \"win\", \"win\", \"win\", \"win\", \"win\", \"win\", \"win\", \"win\", \"win\", \"win\", \"win\", \"win\", \"win\", \"win\", \"win\", \"win\", \"win\", \"win\", \"win\", \"winbench\", \"window\", \"window\", \"window\", \"window\", \"window\", \"window\", \"window\", \"window\", \"window\", \"window\", \"window\", \"window\", \"window\", \"window\", \"window\", \"window\", \"window\", \"window\", \"window\", \"window\", \"wing\", \"wing\", \"wing\", \"wing\", \"wing\", \"wing\", \"wing\", \"wing\", \"wing\", \"wing\", \"wing\", \"wing\", \"wing\", \"wing\", \"winjet\", \"winmark\", \"winmark\", \"winner\", \"winner\", \"winner\", \"winner\", \"winner\", \"winner\", \"winner\", \"winner\", \"wire\", \"wire\", \"wire\", \"wire\", \"wire\", \"wire\", \"wire\", \"wire\", \"wire\", \"wire\", \"wire\", \"wire\", \"wire\", \"wire\", \"wire\", \"wire\", \"wireframe\", \"wiretap\", \"wiretap\", \"wiretap\", \"wiretap\", \"wiretap\", \"wiring\", \"wiring\", \"wiring\", \"wiring\", \"women\", \"women\", \"women\", \"women\", \"word\", \"word\", \"word\", \"word\", \"word\", \"word\", \"word\", \"word\", \"word\", \"word\", \"word\", \"word\", \"word\", \"word\", \"word\", \"word\", \"word\", \"word\", \"word\", \"word\", \"work\", \"work\", \"work\", \"work\", \"work\", \"work\", \"work\", \"work\", \"work\", \"work\", \"work\", \"work\", \"work\", \"work\", \"work\", \"work\", \"work\", \"work\", \"work\", \"work\", \"workaround\", \"workspace\", \"world\", \"world\", \"world\", \"world\", \"world\", \"world\", \"world\", \"world\", \"world\", \"world\", \"world\", \"world\", \"world\", \"world\", \"world\", \"world\", \"world\", \"world\", \"world\", \"world\", \"worship\", \"worship\", \"worship\", \"worship\", \"worship\", \"worship\", \"worship\", \"worship\", \"worship\", \"worship\", \"would\", \"would\", \"would\", \"would\", \"would\", \"would\", \"would\", \"would\", \"would\", \"would\", \"would\", \"would\", \"would\", \"would\", \"would\", \"would\", \"would\", \"would\", \"would\", \"would\", \"write\", \"write\", \"write\", \"write\", \"write\", \"write\", \"write\", \"write\", \"write\", \"write\", \"write\", \"write\", \"write\", \"write\", \"write\", \"write\", \"write\", \"write\", \"write\", \"write\", \"xor\", \"xor\", \"xputimage\", \"xputimage\", \"year\", \"year\", \"year\", \"year\", \"year\", \"year\", \"year\", \"year\", \"year\", \"year\", \"year\", \"year\", \"year\", \"year\", \"year\", \"year\", \"year\", \"year\", \"year\", \"year\", \"yearly\", \"zionism\"]}, \"R\": 30, \"lambda.step\": 0.01, \"plot.opts\": {\"xlab\": \"PC1\", \"ylab\": \"PC2\"}, \"topic.order\": [6, 8, 3, 11, 18, 9, 19, 13, 1, 4, 14, 2, 7, 10, 16, 17, 12, 5, 15, 20]};\n",
"\n",
"function LDAvis_load_lib(url, callback){\n",
" var s = document.createElement('script');\n",
" s.src = url;\n",
" s.async = true;\n",
" s.onreadystatechange = s.onload = callback;\n",
" s.onerror = function(){console.warn(\"failed to load library \" + url);};\n",
" document.getElementsByTagName(\"head\")[0].appendChild(s);\n",
"}\n",
"\n",
"if(typeof(LDAvis) !== \"undefined\"){\n",
" // already loaded: just create the visualization\n",
" !function(LDAvis){\n",
" new LDAvis(\"#\" + \"ldavis_el2994861398254952430083053112277\", ldavis_el2994861398254952430083053112277_data);\n",
" }(LDAvis);\n",
"}else if(typeof define === \"function\" && define.amd){\n",
" // require.js is available: use it to load d3/LDAvis\n",
" require.config({paths: {d3: \"https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.5/d3.min\"}});\n",
" require([\"d3\"], function(d3){\n",
" window.d3 = d3;\n",
" LDAvis_load_lib(\"https://cdn.rawgit.com/bmabey/pyLDAvis/files/ldavis.v1.0.0.js\", function(){\n",
" new LDAvis(\"#\" + \"ldavis_el2994861398254952430083053112277\", ldavis_el2994861398254952430083053112277_data);\n",
" });\n",
" });\n",
"}else{\n",
" // require.js not available: dynamically load d3 & LDAvis\n",
" LDAvis_load_lib(\"https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.5/d3.min.js\", function(){\n",
" LDAvis_load_lib(\"https://cdn.rawgit.com/bmabey/pyLDAvis/files/ldavis.v1.0.0.js\", function(){\n",
" new LDAvis(\"#\" + \"ldavis_el2994861398254952430083053112277\", ldavis_el2994861398254952430083053112277_data);\n",
" })\n",
" });\n",
"}\n",
"</script>"
],
"text/plain": [
"PreparedData(topic_coordinates= x y topics cluster Freq\n",
"topic \n",
"5 0.105814 -0.086612 1 1 10.300812\n",
"7 -0.177005 0.013123 2 1 10.065159\n",
"2 -0.001833 -0.064412 3 1 9.711070\n",
"10 0.012808 -0.049666 4 1 9.352972\n",
"17 0.081666 -0.057376 5 1 9.044584\n",
"8 -0.013083 -0.072723 6 1 7.797872\n",
"18 -0.159917 -0.004624 7 1 7.484725\n",
"12 0.058128 -0.108353 8 1 5.097230\n",
"0 -0.122883 -0.041612 9 1 4.685898\n",
"3 0.073989 -0.051506 10 1 4.408182\n",
"13 -0.083057 -0.006825 11 1 4.363589\n",
"1 -0.031480 -0.035291 12 1 4.147015\n",
"6 0.035194 -0.068955 13 1 4.091530\n",
"9 -0.096064 0.074567 14 1 2.659461\n",
"15 0.071260 0.028175 15 1 1.745190\n",
"16 0.042388 0.001617 16 1 1.544083\n",
"11 0.149412 0.149217 17 1 1.265558\n",
"4 0.138726 0.122585 18 1 1.084517\n",
"14 -0.020195 0.069886 19 1 0.833502\n",
"19 -0.063868 0.188786 20 1 0.317047, topic_info= Category Freq Term Total loglift logprob\n",
"3735 Default 5082.000000 ax 5082.000000 30.0000 30.0000\n",
"18 Default 10082.000000 line 10082.000000 29.0000 29.0000\n",
"691 Default 1726.000000 team 1726.000000 28.0000 28.0000\n",
"1500 Default 1578.000000 gun 1578.000000 27.0000 27.0000\n",
"1880 Default 842.000000 armenian 842.000000 26.0000 26.0000\n",
"... ... ... ... ... ... ...\n",
"103 Topic20 14.127934 get 5660.945312 -0.2393 -5.5564\n",
"23 Topic20 13.384160 nntp 4400.586426 -0.0415 -5.6105\n",
"184 Topic20 12.157939 system 3539.668945 0.0801 -5.7065\n",
"92 Topic20 11.768329 distribution 2509.490723 0.3915 -5.7391\n",
"681 Topic20 11.401780 source 1367.543701 0.9669 -5.7708\n",
"\n",
"[1649 rows x 6 columns], token_table= Topic Freq Term\n",
"term \n",
"7142 1 0.037161 _\n",
"7142 2 0.003097 _\n",
"7142 3 0.092903 _\n",
"7142 4 0.021677 _\n",
"7142 5 0.006194 _\n",
"... ... ... ...\n",
"37 18 0.004437 year\n",
"37 19 0.009656 year\n",
"37 20 0.000522 year\n",
"1002 6 0.923212 yearly\n",
"7384 3 0.948586 zionism\n",
"\n",
"[8950 rows x 3 columns], R=30, lambda_step=0.01, plot_opts={'xlab': 'PC1', 'ylab': 'PC2'}, topic_order=[6, 8, 3, 11, 18, 9, 19, 13, 1, 4, 14, 2, 7, 10, 16, 17, 12, 5, 15, 20])"
]
},
"execution_count": 21,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"# Visualize the topics\n",
"import pyLDAvis\n",
"import pyLDAvis.gensim \n",
"pyLDAvis.enable_notebook()\n",
"vis = pyLDAvis.gensim.prepare(lda_model, corpus, id2word)\n",
"vis"
]
},
{
"cell_type": "code",
"execution_count": 22,
"metadata": {},
"outputs": [],
"source": [
"def format_topics_sentences(ldamodel=lda_model, corpus=corpus, texts=text_corpus):\n",
" # Array of top 10 topics\n",
" top10array = []\n",
"\n",
" for row in range(ldamodel.num_topics):\n",
" wp = ldamodel.show_topic(row)\n",
" topic_keywords = \", \".join([word for word, prop in wp])\n",
" top10array.append((row+1, topic_keywords))\n",
"\n",
" top10dict = dict(top10array)\n",
"\n",
" sent_topics_df = pd.DataFrame(pd.DataFrame([sorted(topic[0], key=lambda x: (x[1]), reverse=True) for topic in ldamodel[corpus]])[0])\n",
" sent_topics_df.columns=[\"Data\"]\n",
" sent_topics_df['Dominant_Topic'] = sent_topics_df.Data.apply(lambda x: x[0]+1)\n",
" sent_topics_df['Perc_Contribution'] = sent_topics_df.Data.apply(lambda x: round(x[1],4))\n",
" sent_topics_df['Topic_Keywords'] = sent_topics_df.Dominant_Topic.apply(lambda x: top10dict[x])\n",
"\n",
" # Add original text to the end of the output\n",
" contents = pd.Series(texts)\n",
" sent_topics_df = pd.concat([sent_topics_df, contents.rename(\"Text\")], axis=1)\n",
" sent_topics_df = sent_topics_df[['Dominant_Topic', 'Perc_Contribution', 'Topic_Keywords', 'Text']]\n",
" return(sent_topics_df)\n",
"\n",
"df_topic_sents_keywords = format_topics_sentences()"
]
},
{
"cell_type": "code",
"execution_count": 23,
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"<div>\n",
"<style scoped>\n",
" .dataframe tbody tr th:only-of-type {\n",
" vertical-align: middle;\n",
" }\n",
"\n",
" .dataframe tbody tr th {\n",
" vertical-align: top;\n",
" }\n",
"\n",
" .dataframe thead th {\n",
" text-align: right;\n",
" }\n",
"</style>\n",
"<table border=\"1\" class=\"dataframe\">\n",
" <thead>\n",
" <tr style=\"text-align: right;\">\n",
" <th></th>\n",
" <th>Topic_Num</th>\n",
" <th>Topic_Perc_Contrib</th>\n",
" <th>Keywords</th>\n",
" <th>Text</th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <th>0</th>\n",
" <td>1</td>\n",
" <td>0.9912</td>\n",
" <td>line, car, post, nntp, host, get, price, be, p...</td>\n",
" <td>From: (John Whitmore) Subject: Re: A question ...</td>\n",
" </tr>\n",
" <tr>\n",
" <th>1</th>\n",
" <td>2</td>\n",
" <td>0.9917</td>\n",
" <td>write, post, line, good, be, make, article, qu...</td>\n",
" <td>From: (ANDREAS ARFF) Subject: Re: Newsgroup Sp...</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2</th>\n",
" <td>3</td>\n",
" <td>0.9951</td>\n",
" <td>write, go, line, article, be, post, think, peo...</td>\n",
" <td>From: (Jody Levine) Subject: Re: insect impact...</td>\n",
" </tr>\n",
" <tr>\n",
" <th>3</th>\n",
" <td>4</td>\n",
" <td>0.9922</td>\n",
" <td>gun, people, man, write, firearm, make, crime,...</td>\n",
" <td>From: (Lawrence C. Foard) Subject: Re: New Stu...</td>\n",
" </tr>\n",
" <tr>\n",
" <th>4</th>\n",
" <td>5</td>\n",
" <td>0.9994</td>\n",
" <td>ax, militia, tm, write, beep, know, right, tq,...</td>\n",
" <td>Subject: roman.bmp 12/14 From: (Cliff) Reply-T...</td>\n",
" </tr>\n",
" </tbody>\n",
"</table>\n",
"</div>"
],
"text/plain": [
" Topic_Num Topic_Perc_Contrib \\\n",
"0 1 0.9912 \n",
"1 2 0.9917 \n",
"2 3 0.9951 \n",
"3 4 0.9922 \n",
"4 5 0.9994 \n",
"\n",
" Keywords \\\n",
"0 line, car, post, nntp, host, get, price, be, p... \n",
"1 write, post, line, good, be, make, article, qu... \n",
"2 write, go, line, article, be, post, think, peo... \n",
"3 gun, people, man, write, firearm, make, crime,... \n",
"4 ax, militia, tm, write, beep, know, right, tq,... \n",
"\n",
" Text \n",
"0 From: (John Whitmore) Subject: Re: A question ... \n",
"1 From: (ANDREAS ARFF) Subject: Re: Newsgroup Sp... \n",
"2 From: (Jody Levine) Subject: Re: insect impact... \n",
"3 From: (Lawrence C. Foard) Subject: Re: New Stu... \n",
"4 Subject: roman.bmp 12/14 From: (Cliff) Reply-T... "
]
},
"execution_count": 23,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"# Group top 5 sentences under each topic\n",
"sent_topics_sorteddf_mallet = pd.DataFrame()\n",
"\n",
"sent_topics_outdf_grpd = df_topic_sents_keywords.groupby('Dominant_Topic')\n",
"\n",
"for i, grp in sent_topics_outdf_grpd:\n",
" sent_topics_sorteddf_mallet = pd.concat([sent_topics_sorteddf_mallet, \n",
" grp.sort_values(['Perc_Contribution'], ascending=[0]).head(1)], \n",
" axis=0)\n",
"\n",
"# Reset Index \n",
"sent_topics_sorteddf_mallet.reset_index(drop=True, inplace=True)\n",
"\n",
"# Format\n",
"sent_topics_sorteddf_mallet.columns = ['Topic_Num', \"Topic_Perc_Contrib\", \"Keywords\", \"Text\"]\n",
"\n",
"# Show\n",
"sent_topics_sorteddf_mallet.head()"
]
}
],
"metadata": {
"kernelspec": {
"display_name": "env",
"language": "python",
"name": "env"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.8.0"
}
},
"nbformat": 4,
"nbformat_minor": 2
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment