Skip to content

Instantly share code, notes, and snippets.

@AndradeEduardo
Last active November 5, 2017 14:18
Show Gist options
  • Save AndradeEduardo/ab0dfd658ca9dbe234a4148471a6ba87 to your computer and use it in GitHub Desktop.
Save AndradeEduardo/ab0dfd658ca9dbe234a4148471a6ba87 to your computer and use it in GitHub Desktop.
Display the source blob
Display the rendered blob
Raw
{
"cells": [
{
"cell_type": "markdown",
"metadata": {
"collapsed": true
},
"source": [
"## Loading all deed files"
]
},
{
"cell_type": "markdown",
"metadata": {
"collapsed": true
},
"source": [
"### Text Cleaning"
]
},
{
"cell_type": "code",
"execution_count": 5,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"#modules for preprocessing the corpus by regular expressions\n",
"import re\n",
"import textacy\n",
"# module for preprocessing the corpus by parts of speach \n",
"import spacy \n",
"nlp = spacy.load('en')"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"#### Regular Expression Cleaning"
]
},
{
"cell_type": "code",
"execution_count": 6,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"def clean_corpus(sentence):\n",
" sentence = re.sub(r\"\\\\\\'\", r' ', sentence)\n",
" sentence = re.sub(r' s ', r\" \", sentence)\n",
" ## removing character sequences of Word files\n",
" sentence = re.sub(r'(\\\\n|\\\\xe2|\\\\xa2|\\\\x80|\\\\x9c|\\\\x9c|\\\\x9d|\\\\t|\\\\nr|\\\\x93)', r' ', sentence)\n",
" sentence = sentence.replace(r\"b'\", ' ') ## removing the beginning of some documents\n",
" sentence = re.sub(r'\\{[^\\}]+\\}', r' ', sentence) ## removing word macros\n",
"\n",
" sentence = textacy.preprocess.replace_emails(sentence, replace_with=r' ') ## removing emails\n",
" sentence = textacy.preprocess.replace_urls(sentence, replace_with=r' ') ## removing urls\n",
"\n",
" sentence = re.sub(r'(#|$| [b-z] |\\s[B-Z]\\s|\\sxxx\\s|\\sXXX\\s|XXX\\w+)', r' ', sentence)\n",
" \n",
" ## removing character sequences of pdf files\n",
" sentence = re.sub(r'(\\\\x01|\\\\x0c|\\\\x98|\\\\x99|\\\\xa6|\\\\xc2|\\\\xa0|\\\\xa9|\\\\x82)', r' ', sentence)\n",
"\n",
" sentence = re.sub(r'(c/-d*)', r' ', sentence) #remove address\n",
" \n",
" sentence = re.sub(r'(\\\\x01|\\\\x0c|\\\\x98|\\\\x99|\\\\xa6|\\\\xc2|\\\\xa0|\\\\xa9|\\\\x82|\\\\xb7)', r' ', sentence)\n",
" \n",
" # removing trade mark of specific pdf file\n",
" sentence = sentence.replace(r'LE G A SA L E M D PL O C E S', ' ') \n",
" \n",
" # striping consecutive white spaces\n",
" sentence = re.sub(r'\\s\\s+', ' ', sentence).strip()\n",
" sentence = sentence.strip()\n",
" return sentence"
]
},
{
"cell_type": "code",
"execution_count": 7,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"clean_texts = [clean_corpus(str(doc)) for doc in corpus]"
]
},
{
"cell_type": "code",
"execution_count": 8,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"b'PROPERTY\\t\\t\\t\\t\\t\\t- 30 -\\n\\n10.5. \\tPOLICIES OF INSURANCE\\t\\t\\t\\t\\t\\t\\t- 31 -\\n\\n10.6. \\tUNIT TRUSTS\\t\\t\\t\\t\\t\\t\\t\\t\\t- 31 -\\n\\n10.7.\\tCOMPANIES\\t\\t\\t\\t\\t\\t\\t\\t\\t- 32 -\\n\\n10.8. \\tBUSINESSES\\t\\t\\t\\t\\t\\t\\t\\t\\t- 33 -\\n\\n10.9.\\tGIFTS\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t- 35 -\\n\\n10.10. \\tCHOSES-IN-ACTION\\t\\t\\t\\t\\t\\t\\t\\t- 35 -\\n\\n10.11. \\tBANKING AND FINANCE\\t\\t\\t\\t\\t\\t\\t- 35 -\\n\\n10.12. \\tLEGAL\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t' \n",
"\n",
" TION - 42 - 11.9. PROFESSIONAL AS TRUSTEE - 42 - 11.10. LIMITATION OF LIABILITY - 42 - 11.11. INDEMNITY - 42 - 12. APPOINTMENT, REMOVAL AND RESIGNATION OF TRUSTEES - 43 - 12.1. APPOINTMENT OF NEW OR ADDITIONAL TRUSTEES - 43 - 12.2. REMOVAL OF TRUSTEE - 44 - 12.3. RESIGNATION OF TRUSTEE - 45 - 12.4. \n"
]
}
],
"source": [
"print(corpus[7][3000:3300] , '\\n\\n', clean_texts[7][3000:3300])"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"#### Parts of Speech Cleaning\n",
"Spacy nlp documents were instantiated to perform parts of speech cleaning"
]
},
{
"cell_type": "code",
"execution_count": 9,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"nlp_docs = [nlp(clean_text) for clean_text in clean_texts]"
]
},
{
"cell_type": "code",
"execution_count": 10,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"At the trustees complete discretion, the distributions of trust income or other trust property may be made to any number of these eligible beneficiaries and in any proportion."
]
},
"execution_count": 10,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"sentence = list(nlp_docs[23].sents)[12]\n",
"sentence"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"##### Only nouns, verbs and adjectives will be kept."
]
},
{
"cell_type": "code",
"execution_count": 11,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"tags_to_keep = ['JJ', 'NN', 'NNP', 'NNPS', 'NNS', 'VB', 'VBD', 'VBG', 'VBN', 'VBP', 'VBZ']"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Every token of the previous sentence are listed below. We can see many words that are not concepts listed, such as 'at', 'the', 'or', 'in', etc."
]
},
{
"cell_type": "code",
"execution_count": 12,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"At - IN - ADP\n",
"the - DT - DET\n",
"trustees - NNS - NOUN\n",
"complete - JJ - ADJ\n",
"discretion - NN - NOUN\n",
", - , - PUNCT\n",
"the - DT - DET\n",
"distributions - NNS - NOUN\n",
"of - IN - ADP\n",
"trust - NN - NOUN\n",
"income - NN - NOUN\n",
"or - CC - CCONJ\n",
"other - JJ - ADJ\n",
"trust - NN - NOUN\n",
"property - NN - NOUN\n",
"may - MD - VERB\n",
"be - VB - VERB\n",
"made - VBN - VERB\n",
"to - IN - ADP\n",
"any - DT - DET\n",
"number - NN - NOUN\n",
"of - IN - ADP\n",
"these - DT - DET\n",
"eligible - JJ - ADJ\n",
"beneficiaries - NNS - NOUN\n",
"and - CC - CCONJ\n",
"in - IN - ADP\n",
"any - DT - DET\n",
"proportion - NN - NOUN\n",
". - . - PUNCT\n"
]
}
],
"source": [
"_=[print('{} - {} - {}'.format(token, token.tag_, token.pos_)) for token in sentence]"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Below, we selected only the words that fall into a part of speech category previously selected. We can see that this time only words that carry meaning are listed. Most of the concepts are related to the trust deeds business. For instance 'trustees', "
]
},
{
"cell_type": "code",
"execution_count": 13,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"trustees - NNS - NOUN - trustee\n",
"complete - JJ - ADJ - complete\n",
"discretion - NN - NOUN - discretion\n",
"distributions - NNS - NOUN - distribution\n",
"trust - NN - NOUN - trust\n",
"income - NN - NOUN - income\n",
"other - JJ - ADJ - other\n",
"trust - NN - NOUN - trust\n",
"property - NN - NOUN - property\n",
"be - VB - VERB - be\n",
"made - VBN - VERB - make\n",
"number - NN - NOUN - number\n",
"eligible - JJ - ADJ - eligible\n",
"beneficiaries - NNS - NOUN - beneficiary\n",
"proportion - NN - NOUN - proportion\n"
]
}
],
"source": [
"_=[print('{} - {} - {} - {}'.format(token, token.tag_, token.pos_, token.lemma_))\n",
" for token in sentence if token.tag_ in tags_to_keep]"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Besides removing filtering the token by pos tagd, the code below will also remove the remanining stop words from by using the STOPWORDS list provided by the SPACY package. This is performed by filtering the stop words with the is_stop function. To improve this filtering process, some terms found in the documents by exploration were added to the default stop list. Named entities will also be removed as they mostly refer to parties of the deeds, not to concepts related to it."
]
},
{
"cell_type": "code",
"execution_count": 14,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"sixty; unless; enough; cannot; this; fifteen; been; otherwise; in; others; not; side; an; it; were; last; would; due; its; one; using; afterwards; five; show; around; nothing; hundred; we; where; fifty; part; few; twenty; somehow; whither; more; across; those; always; still; whereafter; anything; moreover; other; top; latter; must; ten; about; seem; something; might; formerly; anywhere; name; you; which; thereupon; throughout; go; yours; of; without; upon; latterly; anyone; however; against; and; down; my; everything; nevertheless; being; whether; who; now; namely; via; hers; various; no; our; made; own; if; front; after; hereupon; here; everywhere; his; to; ours; whenever; fax; is; a; nobody; please; together; only; so; same; seemed; re; do; full; although; never; put; himself; yet; back; say; though; used; many; had; therein; between; again; within; he; can; almost; less; somewhere; four; else; another; ourselves; seeming; have; three; these; none; get; all; along; could; once; during; sa m ple; nine; are; nowhere; first; amount; becoming; for; the; myself; she; move; too; thereafter; whereby; eight; became; by; just; least; thus; whereupon; whose; or; most; each; has; into; whole; over; when; inc; at; whom; yourself; either; two; noone; ever; on; much; why; me; next; wherever; will; already; really; beside; neither; how; m; SA; amongst; yourselves; ca; give; some; us; hereafter; your; whence; towards; done; since; indeed; until; seems; several; six; onto; below; even; mostly; further; hereby; thence; they; herein; third; eleven; everyone; them; twelve; sometime; thereby; see; beyond; except; etc; anyway; besides; through; often; that; someone; behind; keep; be; perhaps; serious; herself; while; forty; beforehand; up; former; rather; but; i; under; meanwhile; doing; should; than; itself; becomes; very; every; whatever; regarding; bottom; was; may; as; take; therefore; quite; wherein; well; before; both; alone; call; e; off; empty; also; her; mine; any; hence; what; elsewhere; out; above; with; from; thru; sometimes; among; anyhow; him; did; become; because; their; there; whereas; does; nor; make; themselves; per; then; toward; am; such; whoever\n"
]
}
],
"source": [
"spacy.en.STOP_WORDS.update(['SA', 'fax', 'sa m ple', 'm', 'e'])\n",
"print (\"; \".join(spacy.en.STOP_WORDS))"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"We will also take advantage of the named entity recognition capabilities of the Spacy API to remove entities that cannot contribute to the finding of meaningful concepts in the deeds corpus. The only entity left in the corpus was the 'ORG', that stands for Companies, agencies, institutions, etc. (https://spacy.io/docs/usage/entity-recognition)"
]
},
{
"cell_type": "code",
"execution_count": 15,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"entities_to_remove = ['PERSON', 'GPE', 'LOC', 'NORP', 'FACILITY', 'PRODUCT', 'EVENT', 'WORK_OF_ART',\n",
" 'LANGUAGE', 'DATE', 'TIME', 'PERCENT', 'MONEY', 'QUANTITY', 'ORDINAL', 'CARDINAL']"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"The filtered text will receive only the lemma of the nouns, verbs and adjectives. In this way, the lemmatisation is already performed and variations of a certain word will be returned just as their common lemma. Furthermore, the lemmas in the spacy API are set in lowercase. Thus, the output text will be prepared to be processed into a vector space."
]
},
{
"cell_type": "code",
"execution_count": 16,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"filtered_texts = []\n",
"for doc in nlp_docs:\n",
" filtered_text = ''\n",
" for sentence in doc.sents:\n",
" sent_filt_text = ' '.join([token.lemma_ \n",
" for token in sentence if (token.tag_ in tags_to_keep \n",
" and not token.is_stop\n",
" and not token.ent_type_ in entities_to_remove\n",
" )])\n",
" filtered_text = filtered_text + ' ' + sent_filt_text\n",
" filtered_texts.append(filtered_text)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Perform a second regular expression cleaning to remove dirties found by parts of speech when it tokenised the text."
]
},
{
"cell_type": "code",
"execution_count": 17,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"filtered_texts = [clean_corpus(str(doc)) for doc in filtered_texts]"
]
},
{
"cell_type": "code",
"execution_count": 18,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"1.1. Definitions \"Appointor\" shall mean the person or persons (if any) named or described as such in the Schedule and any person or persons who succeed them in that position in accordance with the provisions of this Deed alive or in existence at any time or where at any time no such person or persons are alive or in existence the legal personal representatives of the last surviving one of them; \"Beneficiary\" means a Specified Beneficiary or a General Beneficiary; \"Business Day\" means a day that is not a Saturday, Sunday or any other day which is a public holiday or a bank holiday in the place where the act is to be performed or payment is to be made; \"Capital Gains\" means that part of the capital receipts of the Trust Fund which are liable to be treated as assessable income for the purposes of the Income Tax Law \n",
"\n",
" definition appointor mean person person name describe schedule person person succe position accordance provision deed alive existence time time person person alive existence legal personal representative survive mean specified beneficiary general business day mean day public holiday bank holiday place act perform payment mean capital receipt trust fund liable treat assessable income purpose income tax law mean\n"
]
}
],
"source": [
"print(clean_texts[7][5291:6114], '\\n\\n', filtered_texts[7][2412:2825])"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### Building the models to find correlated concepts"
]
},
{
"cell_type": "code",
"execution_count": 32,
"metadata": {},
"outputs": [],
"source": [
"#modules to build the topic extracting models\n",
"from gensim import corpora, models\n",
"import gensim\n",
"import pyLDAvis.gensim\n",
"pyLDAvis.enable_notebook()\n",
"import pandas as pd\n",
"import matplotlib.pyplot as plt"
]
},
{
"cell_type": "code",
"execution_count": 20,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"2767 different terms in the corpus\n"
]
}
],
"source": [
"#creating the dictionary\n",
"dictionary = corpora.Dictionary([\" \".join(filtered_texts).split()]) \n",
"print('{} different terms in the corpus'.format(len(dictionary)))\n",
"#creating the bag of words object\n",
"bow_corpus = [dictionary.doc2bow(text.split()) for text in filtered_texts]"
]
},
{
"cell_type": "code",
"execution_count": 21,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"tfidf_model = models.TfidfModel(bow_corpus) # creating the tf-idf model\n",
"tfidf_corpus = tfidf_model[bow_corpus]"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### Building the LDA models."
]
},
{
"cell_type": "code",
"execution_count": 22,
"metadata": {},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"/Users/EduardoAndrade/anaconda/lib/python3.6/site-packages/gensim/models/ldamodel.py:529: RuntimeWarning: overflow encountered in exp2\n",
" (perwordbound, np.exp2(-perwordbound), len(chunk), corpus_words))\n"
]
}
],
"source": [
"total_topics = 50\n",
"lda_model_tfidf = models.LdaModel(corpus=tfidf_corpus, id2word=dictionary, num_topics=total_topics, \n",
" passes=1, random_state=47)\n",
"lda_model_bow = models.LdaModel(corpus=bow_corpus, id2word=dictionary, num_topics=total_topics,\n",
" passes=1, random_state=47)"
]
},
{
"cell_type": "code",
"execution_count": 23,
"metadata": {},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"/Users/EduardoAndrade/anaconda/lib/python3.6/site-packages/pyLDAvis/_prepare.py:387: DeprecationWarning: \n",
".ix is deprecated. Please use\n",
".loc for label based indexing or\n",
".iloc for positional indexing\n",
"\n",
"See the documentation here:\n",
"http://pandas.pydata.org/pandas-docs/stable/indexing.html#ix-indexer-is-deprecated\n",
" topic_term_dists = topic_term_dists.ix[topic_order]\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_el1207358195495205299208295\"></div>\n",
"<script type=\"text/javascript\">\n",
"\n",
"var ldavis_el1207358195495205299208295_data = {\"mdsDat\": {\"Freq\": [32.051210474182014, 14.432954052511562, 11.951672632644216, 11.709898033339037, 8.429030525601846, 8.123675366012453, 7.091608493244229, 2.0749808109646932, 1.3772373098417252, 1.224570442913301, 0.7248800855683711, 0.35285834404030225, 0.17755770419759573, 0.11615438179376739, 0.11509819808551737, 0.02898780695722911, 0.0005843649633182538, 0.0005163931254211514, 0.0005163931254211514, 0.0005163931254211514, 0.0005163931254211514, 0.0005163931254211514, 0.0005163931254211514, 0.0005163931254211514, 0.0005163931254211514, 0.0005163931254211514, 0.0005163931254211514, 0.0005163931254211514, 0.0005163931254211514, 0.0005163931254211514, 0.0005163931254211514, 0.0005163931254211514, 0.0005163931254211514, 0.0005163931254211514, 0.0005163931254211514, 0.0005163931254211514, 0.0005163931254211514, 0.0005163931254211514, 0.0005163931254211514, 0.0005163931254211514, 0.0005163931254211514, 0.0005163931254211514, 0.0005163931254211514, 0.0005163931254211514, 0.0005163931254211514, 0.0005163931254211514, 0.0005163931254211514, 0.0005163931254211514, 0.0005163931254211514, 0.0005163931254211514], \"cluster\": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], \"topics\": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50], \"x\": [-0.009426026989423329, -0.01665639663120318, -0.009170257459414587, -0.006162893463591037, -0.008491799960260699, -0.019578336823933548, -0.017684688419241666, -0.017349464021126925, -0.015922550249973893, -0.018588461996572988, -0.010825329991311045, -0.004207806219894541, 0.0004379642339877391, -0.00827829764190123, -0.014197819302431865, -0.014439064343338564, -0.0033581616492767124, -0.005742201171720863, -0.00404723714664193, 0.004604559145840354, -0.0021789955937179103, 0.05496883700116083, 0.005430586263553374, -0.0035304571231270015, 0.0475547647112734, -0.00267836787542659, 0.001970625125274669, 0.012760987847931756, 0.003697513055468199, 0.013436102531916197, 0.006371419793361034, 0.018824468721425774, -0.0013180614792517229, -0.0011370627739379525, -0.007494399439888134, 0.009254462179955195, -0.0013986640921030923, 0.0013127332515404753, 0.00633293332320256, -0.0031610562259862685, 0.01511316856583921, 0.02336295686782825, 0.0022098305657125778, 0.006277417346958566, -0.009992585039459058, -0.008734036524565747, 0.004174140630752588, 0.003150706777586096, -0.001407734371835332, 0.005912036079988603], \"y\": [0.00022045537154002654, -0.0007717944897167289, -0.006818590551718503, -0.00039015253807174797, -0.004051918841476904, 0.002358151787792492, 0.011123139692755437, -0.003336108194147156, -0.0007763885986859374, 0.0009692609548176224, -0.0007216770521494907, -0.003610869713414936, 0.007935352203211206, -0.0014278277591059738, -0.0008702482768311058, 0.00743932327302256, -0.007850325123956482, -0.0030392978327903005, -0.0010362953435553543, -0.0006810408566724, -0.0037461678943461097, -0.0003913121009877283, -0.0010622741880064058, -0.0019003976314554364, 0.005475823810524088, -0.0010120550202368074, -0.004411353124727772, -0.007690949848914803, -0.001087111652695084, -0.0017329122448361894, 0.010257173408419763, -0.011183816607226619, 0.0008917631646184096, -0.00018436692061645505, 0.005305149807615176, -0.000776035046271932, -0.005655997511378896, 0.010848017311940843, 0.00580186861155405, 0.0037680027110580687, -0.007059779536390403, 0.011138474086098464, -0.002435508766024439, 0.002179086836149203, 0.0019167369130259327, 0.003355315116007389, 0.0002160722587935999, 0.00027001464612508655, -0.005583019179253786, -0.00017358951940748513]}, \"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\", \"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\", \"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\", \"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\", \"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\", \"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\", \"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\", \"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\", \"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\", \"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\", \"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\", \"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\", \"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\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic20\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic21\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic22\", \"Topic23\", \"Topic23\", \"Topic23\", \"Topic23\", \"Topic23\", \"Topic23\", \"Topic23\", \"Topic23\", \"Topic23\", \"Topic23\", \"Topic23\", \"Topic23\", \"Topic23\", \"Topic23\", \"Topic23\", \"Topic23\", \"Topic23\", \"Topic23\", \"Topic23\", \"Topic23\", \"Topic23\", \"Topic23\", \"Topic23\", \"Topic23\", \"Topic23\", \"Topic23\", \"Topic23\", \"Topic23\", \"Topic23\", \"Topic23\", \"Topic23\", \"Topic23\", \"Topic23\", \"Topic23\", \"Topic23\", \"Topic23\", \"Topic23\", \"Topic23\", \"Topic23\", \"Topic23\", \"Topic23\", \"Topic23\", \"Topic23\", \"Topic23\", \"Topic23\", \"Topic23\", \"Topic23\", \"Topic23\", \"Topic23\", \"Topic23\", \"Topic23\", \"Topic23\", \"Topic23\", \"Topic23\", \"Topic23\", \"Topic23\", \"Topic23\", \"Topic23\", \"Topic23\", \"Topic23\", \"Topic23\", \"Topic23\", \"Topic23\", \"Topic23\", \"Topic23\", \"Topic23\", \"Topic23\", \"Topic23\", \"Topic23\", \"Topic23\", \"Topic23\", \"Topic23\", \"Topic23\", \"Topic23\", \"Topic23\", \"Topic23\", \"Topic23\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic24\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic25\", \"Topic26\", \"Topic26\", \"Topic26\", \"Topic26\", \"Topic26\", \"Topic26\", \"Topic26\", \"Topic26\", \"Topic26\", \"Topic26\", \"Topic26\", \"Topic26\", \"Topic26\", \"Topic26\", \"Topic26\", \"Topic26\", \"Topic26\", \"Topic26\", \"Topic26\", \"Topic26\", \"Topic26\", \"Topic26\", \"Topic26\", \"Topic26\", \"Topic26\", \"Topic26\", \"Topic26\", \"Topic26\", \"Topic26\", \"Topic26\", \"Topic26\", \"Topic26\", \"Topic26\", \"Topic26\", \"Topic26\", \"Topic26\", \"Topic26\", \"Topic26\", \"Topic26\", \"Topic26\", \"Topic26\", \"Topic26\", \"Topic26\", \"Topic26\", \"Topic26\", \"Topic26\", \"Topic26\", \"Topic26\", \"Topic26\", \"Topic26\", \"Topic26\", \"Topic26\", \"Topic26\", \"Topic26\", \"Topic26\", \"Topic26\", \"Topic26\", \"Topic26\", \"Topic26\", \"Topic26\", \"Topic26\", \"Topic26\", \"Topic26\", \"Topic26\", \"Topic26\", \"Topic26\", \"Topic26\", \"Topic26\", \"Topic26\", \"Topic26\", \"Topic26\", \"Topic26\", \"Topic26\", \"Topic26\", \"Topic26\", \"Topic26\", \"Topic26\", \"Topic26\", \"Topic26\", \"Topic26\", \"Topic26\", \"Topic26\", \"Topic26\", \"Topic26\", \"Topic26\", \"Topic26\", \"Topic27\", \"Topic27\", \"Topic27\", \"Topic27\", \"Topic27\", \"Topic27\", \"Topic27\", \"Topic27\", \"Topic27\", \"Topic27\", \"Topic27\", \"Topic27\", \"Topic27\", \"Topic27\", \"Topic27\", \"Topic27\", \"Topic27\", \"Topic27\", \"Topic27\", \"Topic27\", \"Topic27\", \"Topic27\", \"Topic27\", \"Topic27\", \"Topic27\", \"Topic27\", \"Topic27\", \"Topic27\", \"Topic27\", \"Topic27\", \"Topic27\", \"Topic27\", \"Topic27\", \"Topic27\", \"Topic27\", \"Topic27\", \"Topic27\", \"Topic27\", \"Topic27\", \"Topic27\", \"Topic27\", \"Topic27\", \"Topic27\", \"Topic27\", \"Topic27\", \"Topic27\", \"Topic27\", \"Topic27\", \"Topic27\", \"Topic27\", \"Topic27\", \"Topic27\", \"Topic27\", \"Topic27\", \"Topic27\", \"Topic27\", \"Topic27\", \"Topic27\", \"Topic27\", \"Topic27\", \"Topic27\", \"Topic27\", \"Topic27\", \"Topic27\", \"Topic27\", \"Topic27\", \"Topic27\", \"Topic27\", \"Topic27\", \"Topic27\", \"Topic27\", \"Topic27\", \"Topic27\", \"Topic27\", \"Topic27\", \"Topic27\", \"Topic27\", \"Topic27\", \"Topic27\", \"Topic27\", \"Topic27\", \"Topic27\", \"Topic27\", \"Topic27\", \"Topic27\", \"Topic27\", \"Topic27\", \"Topic27\", \"Topic27\", \"Topic27\", \"Topic27\", \"Topic27\", \"Topic27\", \"Topic27\", \"Topic28\", \"Topic28\", \"Topic28\", \"Topic28\", \"Topic28\", \"Topic28\", \"Topic28\", \"Topic28\", \"Topic28\", \"Topic28\", \"Topic28\", \"Topic28\", \"Topic28\", \"Topic28\", \"Topic28\", \"Topic28\", \"Topic28\", \"Topic28\", \"Topic28\", \"Topic28\", \"Topic28\", \"Topic28\", \"Topic28\", \"Topic28\", \"Topic28\", \"Topic28\", \"Topic28\", \"Topic28\", \"Topic28\", \"Topic28\", \"Topic28\", \"Topic28\", \"Topic28\", \"Topic28\", \"Topic28\", \"Topic28\", \"Topic28\", \"Topic28\", \"Topic28\", \"Topic28\", \"Topic28\", \"Topic28\", \"Topic28\", \"Topic28\", \"Topic28\", \"Topic28\", \"Topic28\", \"Topic28\", \"Topic28\", \"Topic28\", \"Topic28\", \"Topic28\", \"Topic28\", \"Topic28\", \"Topic28\", \"Topic28\", \"Topic28\", \"Topic28\", \"Topic28\", \"Topic28\", \"Topic28\", \"Topic28\", \"Topic28\", \"Topic28\", \"Topic28\", \"Topic28\", \"Topic28\", \"Topic28\", \"Topic28\", \"Topic28\", \"Topic28\", \"Topic28\", \"Topic28\", \"Topic28\", \"Topic28\", \"Topic28\", \"Topic28\", \"Topic28\", \"Topic28\", \"Topic28\", \"Topic28\", \"Topic29\", \"Topic29\", \"Topic29\", \"Topic29\", \"Topic29\", \"Topic29\", \"Topic29\", \"Topic29\", \"Topic29\", \"Topic29\", \"Topic29\", \"Topic29\", \"Topic29\", \"Topic29\", \"Topic29\", \"Topic29\", \"Topic29\", \"Topic29\", \"Topic29\", \"Topic29\", \"Topic29\", \"Topic29\", \"Topic29\", \"Topic29\", \"Topic29\", \"Topic29\", \"Topic29\", \"Topic29\", \"Topic29\", \"Topic29\", \"Topic29\", \"Topic29\", \"Topic29\", \"Topic29\", \"Topic29\", \"Topic29\", \"Topic29\", \"Topic29\", \"Topic29\", \"Topic29\", \"Topic29\", \"Topic29\", \"Topic29\", \"Topic29\", \"Topic29\", \"Topic29\", \"Topic29\", \"Topic29\", \"Topic29\", \"Topic29\", \"Topic29\", \"Topic29\", \"Topic29\", \"Topic29\", \"Topic29\", \"Topic29\", \"Topic29\", \"Topic29\", \"Topic29\", \"Topic29\", \"Topic29\", \"Topic29\", \"Topic29\", \"Topic29\", \"Topic29\", \"Topic29\", \"Topic29\", \"Topic29\", \"Topic29\", \"Topic29\", \"Topic29\", \"Topic29\", \"Topic29\", \"Topic29\", \"Topic29\", \"Topic29\", \"Topic29\", \"Topic29\", \"Topic29\", \"Topic29\", \"Topic29\", \"Topic29\", \"Topic29\", \"Topic29\", \"Topic29\", \"Topic30\", \"Topic30\", \"Topic30\", \"Topic30\", \"Topic30\", \"Topic30\", \"Topic30\", \"Topic30\", \"Topic30\", \"Topic30\", \"Topic30\", \"Topic30\", \"Topic30\", \"Topic30\", \"Topic30\", \"Topic30\", \"Topic30\", \"Topic30\", \"Topic30\", \"Topic30\", \"Topic30\", \"Topic30\", \"Topic30\", \"Topic30\", \"Topic30\", \"Topic30\", \"Topic30\", \"Topic30\", \"Topic30\", \"Topic30\", \"Topic30\", \"Topic30\", \"Topic30\", \"Topic30\", \"Topic30\", \"Topic30\", \"Topic30\", \"Topic30\", \"Topic30\", \"Topic30\", \"Topic30\", \"Topic30\", \"Topic30\", \"Topic30\", \"Topic30\", \"Topic30\", \"Topic30\", \"Topic30\", \"Topic30\", \"Topic30\", \"Topic30\", \"Topic30\", \"Topic30\", \"Topic30\", \"Topic30\", \"Topic30\", \"Topic30\", \"Topic30\", \"Topic30\", \"Topic30\", \"Topic30\", \"Topic30\", \"Topic30\", \"Topic30\", \"Topic30\", \"Topic30\", \"Topic30\", \"Topic30\", \"Topic30\", \"Topic30\", \"Topic30\", \"Topic30\", \"Topic30\", \"Topic30\", \"Topic30\", \"Topic30\", \"Topic30\", \"Topic30\", \"Topic30\", \"Topic31\", \"Topic31\", \"Topic31\", \"Topic31\", \"Topic31\", \"Topic31\", \"Topic31\", \"Topic31\", \"Topic31\", \"Topic31\", \"Topic31\", \"Topic31\", \"Topic31\", \"Topic31\", \"Topic31\", \"Topic31\", \"Topic31\", \"Topic31\", \"Topic31\", \"Topic31\", \"Topic31\", \"Topic31\", \"Topic31\", \"Topic31\", \"Topic31\", \"Topic31\", \"Topic31\", \"Topic31\", \"Topic31\", \"Topic31\", \"Topic31\", \"Topic31\", \"Topic31\", \"Topic31\", \"Topic31\", \"Topic31\", \"Topic31\", \"Topic31\", \"Topic31\", \"Topic31\", \"Topic31\", \"Topic31\", \"Topic31\", \"Topic31\", \"Topic31\", \"Topic31\", \"Topic31\", \"Topic31\", \"Topic31\", \"Topic31\", \"Topic31\", \"Topic31\", \"Topic31\", \"Topic31\", \"Topic31\", \"Topic31\", \"Topic31\", \"Topic31\", \"Topic31\", \"Topic31\", \"Topic31\", \"Topic31\", \"Topic31\", \"Topic31\", \"Topic31\", \"Topic31\", \"Topic31\", \"Topic31\", \"Topic31\", \"Topic31\", \"Topic31\", \"Topic31\", \"Topic31\", \"Topic31\", \"Topic31\", \"Topic31\", \"Topic32\", \"Topic32\", \"Topic32\", \"Topic32\", \"Topic32\", \"Topic32\", \"Topic32\", \"Topic32\", \"Topic32\", \"Topic32\", \"Topic32\", \"Topic32\", \"Topic32\", \"Topic32\", \"Topic32\", \"Topic32\", \"Topic32\", \"Topic32\", \"Topic32\", \"Topic32\", \"Topic32\", \"Topic32\", \"Topic32\", \"Topic32\", \"Topic32\", \"Topic32\", \"Topic32\", \"Topic32\", \"Topic32\", \"Topic32\", \"Topic32\", \"Topic32\", \"Topic32\", \"Topic32\", \"Topic32\", \"Topic32\", \"Topic32\", \"Topic32\", \"Topic32\", \"Topic32\", \"Topic32\", \"Topic32\", \"Topic32\", \"Topic32\", \"Topic32\", \"Topic32\", \"Topic32\", \"Topic32\", \"Topic32\", \"Topic32\", \"Topic32\", \"Topic32\", \"Topic32\", \"Topic32\", \"Topic32\", \"Topic32\", \"Topic32\", \"Topic32\", \"Topic32\", \"Topic32\", \"Topic32\", \"Topic32\", \"Topic32\", \"Topic32\", \"Topic32\", \"Topic32\", \"Topic32\", \"Topic32\", \"Topic32\", \"Topic32\", \"Topic32\", \"Topic32\", \"Topic32\", \"Topic32\", \"Topic32\", \"Topic32\", \"Topic32\", \"Topic32\", \"Topic32\", \"Topic32\", \"Topic32\", \"Topic33\", \"Topic33\", \"Topic33\", \"Topic33\", \"Topic33\", \"Topic33\", \"Topic33\", \"Topic33\", \"Topic33\", \"Topic33\", \"Topic33\", \"Topic33\", \"Topic33\", \"Topic33\", \"Topic33\", \"Topic33\", \"Topic33\", \"Topic33\", \"Topic33\", \"Topic33\", \"Topic33\", \"Topic33\", \"Topic33\", \"Topic33\", \"Topic33\", \"Topic33\", \"Topic33\", \"Topic33\", \"Topic33\", \"Topic33\", \"Topic33\", \"Topic33\", \"Topic33\", \"Topic33\", \"Topic33\", \"Topic33\", \"Topic33\", \"Topic33\", \"Topic33\", \"Topic33\", \"Topic33\", \"Topic33\", \"Topic33\", \"Topic33\", \"Topic33\", \"Topic33\", \"Topic33\", \"Topic33\", \"Topic33\", \"Topic33\", \"Topic33\", \"Topic33\", \"Topic33\", \"Topic33\", \"Topic33\", \"Topic33\", \"Topic33\", \"Topic33\", \"Topic33\", \"Topic33\", \"Topic33\", \"Topic33\", \"Topic33\", \"Topic33\", \"Topic33\", \"Topic33\", \"Topic33\", \"Topic33\", \"Topic33\", \"Topic33\", \"Topic33\", \"Topic33\", \"Topic33\", \"Topic33\", \"Topic33\", \"Topic33\", \"Topic33\", \"Topic33\", \"Topic33\", \"Topic33\", \"Topic33\", \"Topic33\", \"Topic33\", \"Topic34\", \"Topic34\", \"Topic34\", \"Topic34\", \"Topic34\", \"Topic34\", \"Topic34\", \"Topic34\", \"Topic34\", \"Topic34\", \"Topic34\", \"Topic34\", \"Topic34\", \"Topic34\", \"Topic34\", \"Topic34\", \"Topic34\", \"Topic34\", \"Topic34\", \"Topic34\", \"Topic34\", \"Topic34\", \"Topic34\", \"Topic34\", \"Topic34\", \"Topic34\", \"Topic34\", \"Topic34\", \"Topic34\", \"Topic34\", \"Topic34\", \"Topic34\", \"Topic34\", \"Topic34\", \"Topic34\", \"Topic34\", \"Topic34\", \"Topic34\", \"Topic34\", \"Topic34\", \"Topic34\", \"Topic34\", \"Topic34\", \"Topic34\", \"Topic34\", \"Topic34\", \"Topic34\", \"Topic34\", \"Topic34\", \"Topic34\", \"Topic34\", \"Topic34\", \"Topic34\", \"Topic34\", \"Topic34\", \"Topic34\", \"Topic34\", \"Topic34\", \"Topic34\", \"Topic34\", \"Topic34\", \"Topic34\", \"Topic34\", \"Topic34\", \"Topic34\", \"Topic34\", \"Topic34\", \"Topic34\", \"Topic34\", \"Topic34\", \"Topic34\", \"Topic34\", \"Topic34\", \"Topic34\", \"Topic34\", \"Topic34\", \"Topic34\", \"Topic34\", \"Topic34\", \"Topic34\", \"Topic35\", \"Topic35\", \"Topic35\", \"Topic35\", \"Topic35\", \"Topic35\", \"Topic35\", \"Topic35\", \"Topic35\", \"Topic35\", \"Topic35\", \"Topic35\", \"Topic35\", \"Topic35\", \"Topic35\", \"Topic35\", \"Topic35\", \"Topic35\", \"Topic35\", \"Topic35\", \"Topic35\", \"Topic35\", \"Topic35\", \"Topic35\", \"Topic35\", \"Topic35\", \"Topic35\", \"Topic35\", \"Topic35\", \"Topic35\", \"Topic35\", \"Topic35\", \"Topic35\", \"Topic35\", \"Topic35\", \"Topic35\", \"Topic35\", \"Topic35\", \"Topic35\", \"Topic35\", \"Topic35\", \"Topic35\", \"Topic35\", \"Topic35\", \"Topic35\", \"Topic35\", \"Topic35\", \"Topic35\", \"Topic35\", \"Topic35\", \"Topic35\", \"Topic35\", \"Topic35\", \"Topic35\", \"Topic35\", \"Topic35\", \"Topic35\", \"Topic35\", \"Topic35\", \"Topic35\", \"Topic35\", \"Topic35\", \"Topic35\", \"Topic35\", \"Topic35\", \"Topic35\", \"Topic35\", \"Topic35\", \"Topic35\", \"Topic35\", \"Topic35\", \"Topic35\", \"Topic35\", \"Topic35\", \"Topic35\", \"Topic35\", \"Topic35\", \"Topic35\", \"Topic35\", \"Topic35\", \"Topic35\", \"Topic35\", \"Topic35\", \"Topic36\", \"Topic36\", \"Topic36\", \"Topic36\", \"Topic36\", \"Topic36\", \"Topic36\", \"Topic36\", \"Topic36\", \"Topic36\", \"Topic36\", \"Topic36\", \"Topic36\", \"Topic36\", \"Topic36\", \"Topic36\", \"Topic36\", \"Topic36\", \"Topic36\", \"Topic36\", \"Topic36\", \"Topic36\", \"Topic36\", \"Topic36\", \"Topic36\", \"Topic36\", \"Topic36\", \"Topic36\", \"Topic36\", \"Topic36\", \"Topic36\", \"Topic36\", \"Topic36\", \"Topic36\", \"Topic36\", \"Topic36\", \"Topic36\", \"Topic36\", \"Topic36\", \"Topic36\", \"Topic36\", \"Topic36\", \"Topic36\", \"Topic36\", \"Topic36\", \"Topic36\", \"Topic36\", \"Topic36\", \"Topic36\", \"Topic36\", \"Topic36\", \"Topic36\", \"Topic36\", \"Topic36\", \"Topic36\", \"Topic36\", \"Topic36\", \"Topic36\", \"Topic36\", \"Topic36\", \"Topic36\", \"Topic36\", \"Topic36\", \"Topic36\", \"Topic36\", \"Topic36\", \"Topic36\", \"Topic36\", \"Topic36\", \"Topic36\", \"Topic36\", \"Topic36\", \"Topic36\", \"Topic36\", \"Topic36\", \"Topic36\", \"Topic36\", \"Topic36\", \"Topic36\", \"Topic36\", \"Topic36\", \"Topic36\", \"Topic36\", \"Topic37\", \"Topic37\", \"Topic37\", \"Topic37\", \"Topic37\", \"Topic37\", \"Topic37\", \"Topic37\", \"Topic37\", \"Topic37\", \"Topic37\", \"Topic37\", \"Topic37\", \"Topic37\", \"Topic37\", \"Topic37\", \"Topic37\", \"Topic37\", \"Topic37\", \"Topic37\", \"Topic37\", \"Topic37\", \"Topic37\", \"Topic37\", \"Topic37\", \"Topic37\", \"Topic37\", \"Topic37\", \"Topic37\", \"Topic37\", \"Topic37\", \"Topic37\", \"Topic37\", \"Topic37\", \"Topic37\", \"Topic37\", \"Topic37\", \"Topic37\", \"Topic37\", \"Topic37\", \"Topic37\", \"Topic37\", \"Topic37\", \"Topic37\", \"Topic37\", \"Topic37\", \"Topic37\", \"Topic37\", \"Topic37\", \"Topic37\", \"Topic37\", \"Topic37\", \"Topic37\", \"Topic37\", \"Topic37\", \"Topic37\", \"Topic37\", \"Topic37\", \"Topic37\", \"Topic37\", \"Topic37\", \"Topic37\", \"Topic37\", \"Topic37\", \"Topic37\", \"Topic37\", \"Topic37\", \"Topic37\", \"Topic37\", \"Topic37\", \"Topic37\", \"Topic37\", \"Topic37\", \"Topic37\", \"Topic37\", \"Topic37\", \"Topic37\", \"Topic37\", \"Topic37\", \"Topic37\", \"Topic37\", \"Topic37\", \"Topic37\", \"Topic37\", \"Topic37\", \"Topic37\", \"Topic37\", \"Topic37\", \"Topic38\", \"Topic38\", \"Topic38\", \"Topic38\", \"Topic38\", \"Topic38\", \"Topic38\", \"Topic38\", \"Topic38\", \"Topic38\", \"Topic38\", \"Topic38\", \"Topic38\", \"Topic38\", \"Topic38\", \"Topic38\", \"Topic38\", \"Topic38\", \"Topic38\", \"Topic38\", \"Topic38\", \"Topic38\", \"Topic38\", \"Topic38\", \"Topic38\", \"Topic38\", \"Topic38\", \"Topic38\", \"Topic38\", \"Topic38\", \"Topic38\", \"Topic38\", \"Topic38\", \"Topic38\", \"Topic38\", \"Topic38\", \"Topic38\", \"Topic38\", \"Topic38\", \"Topic38\", \"Topic38\", \"Topic38\", \"Topic38\", \"Topic38\", \"Topic38\", \"Topic38\", \"Topic38\", \"Topic38\", \"Topic38\", \"Topic38\", \"Topic38\", \"Topic38\", \"Topic38\", \"Topic38\", \"Topic38\", \"Topic38\", \"Topic38\", \"Topic38\", \"Topic38\", \"Topic38\", \"Topic38\", \"Topic38\", \"Topic38\", \"Topic38\", \"Topic38\", \"Topic38\", \"Topic38\", \"Topic38\", \"Topic38\", \"Topic38\", \"Topic38\", \"Topic38\", \"Topic38\", \"Topic38\", \"Topic39\", \"Topic39\", \"Topic39\", \"Topic39\", \"Topic39\", \"Topic39\", \"Topic39\", \"Topic39\", \"Topic39\", \"Topic39\", \"Topic39\", \"Topic39\", \"Topic39\", \"Topic39\", \"Topic39\", \"Topic39\", \"Topic39\", \"Topic39\", \"Topic39\", \"Topic39\", \"Topic39\", \"Topic39\", \"Topic39\", \"Topic39\", \"Topic39\", \"Topic39\", \"Topic39\", \"Topic39\", \"Topic39\", \"Topic39\", \"Topic39\", \"Topic39\", \"Topic39\", \"Topic39\", \"Topic39\", \"Topic39\", \"Topic39\", \"Topic39\", \"Topic39\", \"Topic39\", \"Topic39\", \"Topic39\", \"Topic39\", \"Topic39\", \"Topic39\", \"Topic39\", \"Topic39\", \"Topic39\", \"Topic39\", \"Topic39\", \"Topic39\", \"Topic39\", \"Topic39\", \"Topic39\", \"Topic39\", \"Topic39\", \"Topic39\", \"Topic39\", \"Topic39\", \"Topic39\", \"Topic39\", \"Topic39\", \"Topic39\", \"Topic39\", \"Topic39\", \"Topic39\", \"Topic39\", \"Topic39\", \"Topic39\", \"Topic39\", \"Topic39\", \"Topic39\", \"Topic39\", \"Topic39\", \"Topic40\", \"Topic40\", \"Topic40\", \"Topic40\", \"Topic40\", \"Topic40\", \"Topic40\", \"Topic40\", \"Topic40\", \"Topic40\", \"Topic40\", \"Topic40\", \"Topic40\", \"Topic40\", \"Topic40\", \"Topic40\", \"Topic40\", \"Topic40\", \"Topic40\", \"Topic40\", \"Topic40\", \"Topic40\", \"Topic40\", \"Topic40\", \"Topic40\", \"Topic40\", \"Topic40\", \"Topic40\", \"Topic40\", \"Topic40\", \"Topic40\", \"Topic40\", \"Topic40\", \"Topic40\", \"Topic40\", \"Topic40\", \"Topic40\", \"Topic40\", \"Topic40\", \"Topic40\", \"Topic40\", \"Topic40\", \"Topic40\", \"Topic40\", \"Topic40\", \"Topic40\", \"Topic40\", \"Topic40\", \"Topic40\", \"Topic40\", \"Topic40\", \"Topic40\", \"Topic40\", \"Topic40\", \"Topic40\", \"Topic40\", \"Topic40\", \"Topic40\", \"Topic40\", \"Topic40\", \"Topic40\", \"Topic40\", \"Topic40\", \"Topic40\", \"Topic40\", \"Topic40\", \"Topic40\", \"Topic40\", \"Topic40\", \"Topic40\", \"Topic40\", \"Topic40\", \"Topic40\", \"Topic40\", \"Topic40\", \"Topic40\", \"Topic40\", \"Topic40\", \"Topic40\", \"Topic40\", \"Topic40\", \"Topic40\", \"Topic40\", \"Topic40\", \"Topic40\", \"Topic40\", \"Topic40\", \"Topic40\", \"Topic40\", \"Topic41\", \"Topic41\", \"Topic41\", \"Topic41\", \"Topic41\", \"Topic41\", \"Topic41\", \"Topic41\", \"Topic41\", \"Topic41\", \"Topic41\", \"Topic41\", \"Topic41\", \"Topic41\", \"Topic41\", \"Topic41\", \"Topic41\", \"Topic41\", \"Topic41\", \"Topic41\", \"Topic41\", \"Topic41\", \"Topic41\", \"Topic41\", \"Topic41\", \"Topic41\", \"Topic41\", \"Topic41\", \"Topic41\", \"Topic41\", \"Topic41\", \"Topic41\", \"Topic41\", \"Topic41\", \"Topic41\", \"Topic41\", \"Topic41\", \"Topic41\", \"Topic41\", \"Topic41\", \"Topic41\", \"Topic41\", \"Topic41\", \"Topic41\", \"Topic41\", \"Topic41\", \"Topic41\", \"Topic41\", \"Topic41\", \"Topic41\", \"Topic41\", \"Topic41\", \"Topic41\", \"Topic41\", \"Topic41\", \"Topic41\", \"Topic41\", \"Topic41\", \"Topic41\", \"Topic41\", \"Topic41\", \"Topic41\", \"Topic41\", \"Topic41\", \"Topic41\", \"Topic41\", \"Topic41\", \"Topic41\", \"Topic41\", \"Topic41\", \"Topic41\", \"Topic41\", \"Topic41\", \"Topic41\", \"Topic41\", \"Topic41\", \"Topic41\", \"Topic41\", \"Topic41\", \"Topic41\", \"Topic41\", \"Topic41\", \"Topic41\", \"Topic42\", \"Topic42\", \"Topic42\", \"Topic42\", \"Topic42\", \"Topic42\", \"Topic42\", \"Topic42\", \"Topic42\", \"Topic42\", \"Topic42\", \"Topic42\", \"Topic42\", \"Topic42\", \"Topic42\", \"Topic42\", \"Topic42\", \"Topic42\", \"Topic42\", \"Topic42\", \"Topic42\", \"Topic42\", \"Topic42\", \"Topic42\", \"Topic42\", \"Topic42\", \"Topic42\", \"Topic42\", \"Topic42\", \"Topic42\", \"Topic42\", \"Topic42\", \"Topic42\", \"Topic42\", \"Topic42\", \"Topic42\", \"Topic42\", \"Topic42\", \"Topic42\", \"Topic42\", \"Topic42\", \"Topic42\", \"Topic42\", \"Topic42\", \"Topic42\", \"Topic42\", \"Topic42\", \"Topic42\", \"Topic42\", \"Topic42\", \"Topic42\", \"Topic42\", \"Topic42\", \"Topic42\", \"Topic42\", \"Topic42\", \"Topic42\", \"Topic42\", \"Topic42\", \"Topic42\", \"Topic42\", \"Topic42\", \"Topic42\", \"Topic42\", \"Topic42\", \"Topic42\", \"Topic42\", \"Topic42\", \"Topic42\", \"Topic42\", \"Topic42\", \"Topic42\", \"Topic42\", \"Topic42\", \"Topic42\", \"Topic42\", \"Topic42\", \"Topic42\", \"Topic42\", \"Topic42\", \"Topic42\", \"Topic42\", \"Topic43\", \"Topic43\", \"Topic43\", \"Topic43\", \"Topic43\", \"Topic43\", \"Topic43\", \"Topic43\", \"Topic43\", \"Topic43\", \"Topic43\", \"Topic43\", \"Topic43\", \"Topic43\", \"Topic43\", \"Topic43\", \"Topic43\", \"Topic43\", \"Topic43\", \"Topic43\", \"Topic43\", \"Topic43\", \"Topic43\", \"Topic43\", \"Topic43\", \"Topic43\", \"Topic43\", \"Topic43\", \"Topic43\", \"Topic43\", \"Topic43\", \"Topic43\", \"Topic43\", \"Topic43\", \"Topic43\", \"Topic43\", \"Topic43\", \"Topic43\", \"Topic43\", \"Topic43\", \"Topic43\", \"Topic43\", \"Topic43\", \"Topic43\", \"Topic43\", \"Topic43\", \"Topic43\", \"Topic43\", \"Topic43\", \"Topic43\", \"Topic43\", \"Topic43\", \"Topic43\", \"Topic43\", \"Topic43\", \"Topic43\", \"Topic43\", \"Topic43\", \"Topic43\", \"Topic43\", \"Topic43\", \"Topic43\", \"Topic43\", \"Topic43\", \"Topic43\", \"Topic43\", \"Topic43\", \"Topic43\", \"Topic43\", \"Topic43\", \"Topic43\", \"Topic43\", \"Topic43\", \"Topic43\", \"Topic43\", \"Topic43\", \"Topic43\", \"Topic43\", \"Topic43\", \"Topic43\", \"Topic43\", \"Topic43\", \"Topic43\", \"Topic44\", \"Topic44\", \"Topic44\", \"Topic44\", \"Topic44\", \"Topic44\", \"Topic44\", \"Topic44\", \"Topic44\", \"Topic44\", \"Topic44\", \"Topic44\", \"Topic44\", \"Topic44\", \"Topic44\", \"Topic44\", \"Topic44\", \"Topic44\", \"Topic44\", \"Topic44\", \"Topic44\", \"Topic44\", \"Topic44\", \"Topic44\", \"Topic44\", \"Topic44\", \"Topic44\", \"Topic44\", \"Topic44\", \"Topic44\", \"Topic44\", \"Topic44\", \"Topic44\", \"Topic44\", \"Topic44\", \"Topic44\", \"Topic44\", \"Topic44\", \"Topic44\", \"Topic44\", \"Topic44\", \"Topic44\", \"Topic44\", \"Topic44\", \"Topic44\", \"Topic44\", \"Topic44\", \"Topic44\", \"Topic44\", \"Topic44\", \"Topic44\", \"Topic44\", \"Topic44\", \"Topic44\", \"Topic44\", \"Topic44\", \"Topic44\", \"Topic44\", \"Topic44\", \"Topic44\", \"Topic44\", \"Topic44\", \"Topic44\", \"Topic44\", \"Topic44\", \"Topic44\", \"Topic44\", \"Topic44\", \"Topic44\", \"Topic44\", \"Topic44\", \"Topic44\", \"Topic44\", \"Topic44\", \"Topic44\", \"Topic44\", \"Topic44\", \"Topic44\", \"Topic44\", \"Topic44\", \"Topic44\", \"Topic44\", \"Topic44\", \"Topic45\", \"Topic45\", \"Topic45\", \"Topic45\", \"Topic45\", \"Topic45\", \"Topic45\", \"Topic45\", \"Topic45\", \"Topic45\", \"Topic45\", \"Topic45\", \"Topic45\", \"Topic45\", \"Topic45\", \"Topic45\", \"Topic45\", \"Topic45\", \"Topic45\", \"Topic45\", \"Topic45\", \"Topic45\", \"Topic45\", \"Topic45\", \"Topic45\", \"Topic45\", \"Topic45\", \"Topic45\", \"Topic45\", \"Topic45\", \"Topic45\", \"Topic45\", \"Topic45\", \"Topic45\", \"Topic45\", \"Topic45\", \"Topic45\", \"Topic45\", \"Topic45\", \"Topic45\", \"Topic45\", \"Topic45\", \"Topic45\", \"Topic45\", \"Topic45\", \"Topic45\", \"Topic45\", \"Topic45\", \"Topic45\", \"Topic45\", \"Topic45\", \"Topic45\", \"Topic45\", \"Topic45\", \"Topic45\", \"Topic45\", \"Topic45\", \"Topic45\", \"Topic45\", \"Topic45\", \"Topic45\", \"Topic45\", \"Topic45\", \"Topic45\", \"Topic45\", \"Topic45\", \"Topic45\", \"Topic45\", \"Topic45\", \"Topic45\", \"Topic45\", \"Topic45\", \"Topic45\", \"Topic45\", \"Topic45\", \"Topic45\", \"Topic45\", \"Topic45\", \"Topic45\", \"Topic45\", \"Topic46\", \"Topic46\", \"Topic46\", \"Topic46\", \"Topic46\", \"Topic46\", \"Topic46\", \"Topic46\", \"Topic46\", \"Topic46\", \"Topic46\", \"Topic46\", \"Topic46\", \"Topic46\", \"Topic46\", \"Topic46\", \"Topic46\", \"Topic46\", \"Topic46\", \"Topic46\", \"Topic46\", \"Topic46\", \"Topic46\", \"Topic46\", \"Topic46\", \"Topic46\", \"Topic46\", \"Topic46\", \"Topic46\", \"Topic46\", \"Topic46\", \"Topic46\", \"Topic46\", \"Topic46\", \"Topic46\", \"Topic46\", \"Topic46\", \"Topic46\", \"Topic46\", \"Topic46\", \"Topic46\", \"Topic46\", \"Topic46\", \"Topic46\", \"Topic46\", \"Topic46\", \"Topic46\", \"Topic46\", \"Topic46\", \"Topic46\", \"Topic46\", \"Topic46\", \"Topic46\", \"Topic46\", \"Topic46\", \"Topic46\", \"Topic46\", \"Topic46\", \"Topic46\", \"Topic46\", \"Topic46\", \"Topic46\", \"Topic46\", \"Topic46\", \"Topic46\", \"Topic46\", \"Topic46\", \"Topic46\", \"Topic46\", \"Topic46\", \"Topic46\", \"Topic46\", \"Topic46\", \"Topic46\", \"Topic46\", \"Topic46\", \"Topic46\", \"Topic47\", \"Topic47\", \"Topic47\", \"Topic47\", \"Topic47\", \"Topic47\", \"Topic47\", \"Topic47\", \"Topic47\", \"Topic47\", \"Topic47\", \"Topic47\", \"Topic47\", \"Topic47\", \"Topic47\", \"Topic47\", \"Topic47\", \"Topic47\", \"Topic47\", \"Topic47\", \"Topic47\", \"Topic47\", \"Topic47\", \"Topic47\", \"Topic47\", \"Topic47\", \"Topic47\", \"Topic47\", \"Topic47\", \"Topic47\", \"Topic47\", \"Topic47\", \"Topic47\", \"Topic47\", \"Topic47\", \"Topic47\", \"Topic47\", \"Topic47\", \"Topic47\", \"Topic47\", \"Topic47\", \"Topic47\", \"Topic47\", \"Topic47\", \"Topic47\", \"Topic47\", \"Topic47\", \"Topic47\", \"Topic47\", \"Topic47\", \"Topic47\", \"Topic47\", \"Topic47\", \"Topic47\", \"Topic47\", \"Topic47\", \"Topic47\", \"Topic47\", \"Topic47\", \"Topic47\", \"Topic47\", \"Topic47\", \"Topic47\", \"Topic47\", \"Topic47\", \"Topic47\", \"Topic47\", \"Topic47\", \"Topic47\", \"Topic47\", \"Topic47\", \"Topic47\", \"Topic47\", \"Topic47\", \"Topic47\", \"Topic47\", \"Topic47\", \"Topic47\", \"Topic47\", \"Topic48\", \"Topic48\", \"Topic48\", \"Topic48\", \"Topic48\", \"Topic48\", \"Topic48\", \"Topic48\", \"Topic48\", \"Topic48\", \"Topic48\", \"Topic48\", \"Topic48\", \"Topic48\", \"Topic48\", \"Topic48\", \"Topic48\", \"Topic48\", \"Topic48\", \"Topic48\", \"Topic48\", \"Topic48\", \"Topic48\", \"Topic48\", \"Topic48\", \"Topic48\", \"Topic48\", \"Topic48\", \"Topic48\", \"Topic48\", \"Topic48\", \"Topic48\", \"Topic48\", \"Topic48\", \"Topic48\", \"Topic48\", \"Topic48\", \"Topic48\", \"Topic48\", \"Topic48\", \"Topic48\", \"Topic48\", \"Topic48\", \"Topic48\", \"Topic48\", \"Topic48\", \"Topic48\", \"Topic48\", \"Topic48\", \"Topic48\", \"Topic48\", \"Topic48\", \"Topic48\", \"Topic48\", \"Topic48\", \"Topic48\", \"Topic48\", \"Topic48\", \"Topic48\", \"Topic48\", \"Topic48\", \"Topic48\", \"Topic48\", \"Topic48\", \"Topic48\", \"Topic48\", \"Topic48\", \"Topic48\", \"Topic48\", \"Topic48\", \"Topic48\", \"Topic48\", \"Topic48\", \"Topic48\", \"Topic48\", \"Topic48\", \"Topic48\", \"Topic48\", \"Topic48\", \"Topic48\", \"Topic48\", \"Topic48\", \"Topic48\", \"Topic49\", \"Topic49\", \"Topic49\", \"Topic49\", \"Topic49\", \"Topic49\", \"Topic49\", \"Topic49\", \"Topic49\", \"Topic49\", \"Topic49\", \"Topic49\", \"Topic49\", \"Topic49\", \"Topic49\", \"Topic49\", \"Topic49\", \"Topic49\", \"Topic49\", \"Topic49\", \"Topic49\", \"Topic49\", \"Topic49\", \"Topic49\", \"Topic49\", \"Topic49\", \"Topic49\", \"Topic49\", \"Topic49\", \"Topic49\", \"Topic49\", \"Topic49\", \"Topic49\", \"Topic49\", \"Topic49\", \"Topic49\", \"Topic49\", \"Topic49\", \"Topic49\", \"Topic49\", \"Topic49\", \"Topic49\", \"Topic49\", \"Topic49\", \"Topic49\", \"Topic49\", \"Topic49\", \"Topic49\", \"Topic49\", \"Topic49\", \"Topic49\", \"Topic49\", \"Topic49\", \"Topic49\", \"Topic49\", \"Topic49\", \"Topic49\", \"Topic49\", \"Topic49\", \"Topic49\", \"Topic49\", \"Topic49\", \"Topic49\", \"Topic49\", \"Topic49\", \"Topic49\", \"Topic49\", \"Topic49\", \"Topic49\", \"Topic49\", \"Topic49\", \"Topic49\", \"Topic49\", \"Topic49\", \"Topic49\", \"Topic49\", \"Topic49\", \"Topic49\", \"Topic49\", \"Topic50\", \"Topic50\", \"Topic50\", \"Topic50\", \"Topic50\", \"Topic50\", \"Topic50\", \"Topic50\", \"Topic50\", \"Topic50\", \"Topic50\", \"Topic50\", \"Topic50\", \"Topic50\", \"Topic50\", \"Topic50\", \"Topic50\", \"Topic50\", \"Topic50\", \"Topic50\", \"Topic50\", \"Topic50\", \"Topic50\", \"Topic50\", \"Topic50\", \"Topic50\", \"Topic50\", \"Topic50\", \"Topic50\", \"Topic50\", \"Topic50\", \"Topic50\", \"Topic50\", \"Topic50\", \"Topic50\", \"Topic50\", \"Topic50\", \"Topic50\", \"Topic50\", \"Topic50\", \"Topic50\", \"Topic50\", \"Topic50\", \"Topic50\", \"Topic50\", \"Topic50\", \"Topic50\", \"Topic50\", \"Topic50\", \"Topic50\", \"Topic50\", \"Topic50\", \"Topic50\", \"Topic50\", \"Topic50\", \"Topic50\", \"Topic50\", \"Topic50\", \"Topic50\", \"Topic50\", \"Topic50\", \"Topic50\", \"Topic50\", \"Topic50\", \"Topic50\", \"Topic50\", \"Topic50\", \"Topic50\", \"Topic50\", \"Topic50\", \"Topic50\", \"Topic50\", \"Topic50\", \"Topic50\", \"Topic50\", \"Topic50\", \"Topic50\"], \"Freq\": [6319.0, 3675.0, 2360.0, 1971.0, 1688.0, 1344.0, 1285.0, 1255.0, 1184.0, 1003.0, 766.0, 763.0, 796.0, 722.0, 758.0, 708.0, 680.0, 647.0, 605.0, 608.0, 590.0, 569.0, 550.0, 477.0, 464.0, 437.0, 446.0, 420.0, 412.0, 420.0, 2.5209037992319834, 0.9432019011226072, 4.414189850937247, 2.1730666115212434, 25.413838774080897, 3.0812422298315165, 2.601311128125171, 3.5897473405053626, 2.41017431605259, 8.020815072615004, 136.24463361235448, 0.8726911309871402, 0.802529397453875, 1.9597076794556434, 5.132980628334304, 11.580029038581896, 0.823911328772683, 0.7918558177163229, 0.8575114775981125, 2.321257336774214, 0.8734551193729501, 0.835085975363918, 1.23521138137514, 10.588781090351794, 1.8755435715653748, 1.448045687442834, 1.4017350463907505, 2.2229763817581425, 3.0623104543487414, 28.285122428433496, 5.499797829418815, 15.750786852131691, 5.816816527518292, 6.433737262769562, 2389.149047007735, 17.104773476141176, 12.485414193507363, 3.277745753236505, 57.287026238373144, 155.33389415182089, 108.1733946046921, 95.4826830754107, 54.77371548467535, 24.270651342684918, 54.842188178937114, 26.179397984756886, 140.07129572884676, 95.48661691341123, 41.3163012947301, 213.84639231070372, 151.56759033180765, 73.48249041271748, 40.67461209553506, 449.1159837671788, 68.2020315635426, 242.14586105644443, 1101.214651895836, 97.04400440372336, 82.79448270664493, 601.9946621580675, 409.3799503450887, 325.3474816913453, 254.31669535529673, 205.7091009108537, 87.6591247639907, 685.7185709560116, 188.05769418124962, 241.73463264866305, 236.6076573617362, 215.17641022220704, 460.60577811807747, 358.57839355849825, 147.47839700860692, 334.4307148728632, 219.31452827286864, 226.20103992312465, 182.3900539407313, 135.28075573368943, 176.47286283406527, 121.02683327368014, 129.1696434432831, 136.95607897292209, 145.1742592425052, 0.7085240851872388, 13.532226576278115, 1.768399366726073, 1.6194518354093175, 1.1357073106933322, 0.5943486791469014, 0.35447639283993265, 9.210873877336512, 1.315143862220493, 0.33985407482315094, 1.2005412546161487, 1.8520655374974593, 0.5629585403771844, 1.1418626612001903, 0.6591337985087142, 0.579009076025955, 0.33412380025010013, 0.5521695549910698, 0.7326957315503543, 0.5773141795259634, 0.5407175328632899, 0.9441488131704909, 0.4111612599542493, 0.34157064004219334, 0.5363102357489996, 0.54489311958714, 0.3400850002435843, 0.32967594849945053, 0.32479866832413107, 1.0137095419978874, 4.296187851202109, 42.15110609777923, 24.126337914640015, 1.5813813090676365, 5.8837885030379455, 6.4812444827400055, 22.087076261925382, 74.30634240553732, 34.913104390263314, 7.238970476882711, 149.31473941297136, 127.70305675797033, 76.76458547964639, 79.77985525576366, 21.171790766218457, 104.8164759917446, 16.6558010022559, 6.183247518497756, 173.6888369830629, 71.6175918403449, 279.6689061253069, 940.4852914549219, 54.73214459086687, 542.619358205216, 132.57943945910438, 199.96121497360068, 114.45875625700506, 56.305644149919395, 123.66965211131418, 63.95631776854318, 276.1634732223895, 96.57478665590199, 22.13026025950834, 308.7907203124426, 74.83312587068824, 68.27042880528536, 105.60150007965474, 71.1895387832363, 65.97661306532628, 145.6577250253481, 149.929901877843, 153.40221810793113, 81.07987040709179, 89.91380174656473, 84.68178255678932, 71.45134541658581, 67.73120054907287, 0.5572420542275405, 2.401417707160755, 1.2850885574770374, 0.48818126002868484, 1.7217801942881643, 0.645059262027076, 0.2752971862161013, 0.7978556401936057, 0.4384082280962372, 2.825310982093557, 0.2526591138738768, 0.40497533342219794, 1.4140980529207818, 0.9601947468483588, 2.3010898283296406, 1.0743980147338723, 2.7860294851277527, 0.25800765173583656, 0.9020614872995543, 0.2636452490921963, 0.2631388918837771, 0.2527620259587272, 5.8384388807090595, 0.5491332664047947, 8.916598393782136, 0.263559685589395, 3.7948025943915744, 0.2516472777537254, 0.2375308626752315, 0.5827308246953354, 1.1305497774627995, 3.36092477038951, 5.523459402708839, 63.970513011255896, 5.3214798972707955, 212.38341991531323, 12.804076695820102, 8.058474914023494, 24.812983706939765, 7.566818183841016, 179.474694300249, 59.621485947333355, 40.5783509887065, 52.36610619963203, 16.666670520362057, 118.65584287940742, 273.7737693532695, 28.977876836834334, 109.3117677657652, 58.27722333906229, 52.77156375633822, 181.94886673942287, 167.13172349718613, 98.9876537712082, 38.33953887507278, 84.42330041024064, 19.707061655351254, 20.0379579899928, 206.73572999534082, 666.4696476271022, 52.266862062889956, 53.97870821063552, 379.02739589739156, 74.21891486496847, 94.46093856542348, 91.61457982336105, 74.04027495775847, 59.338636661133734, 60.45719204963533, 30.925811772592056, 218.1931160972693, 65.9509885761372, 53.6615378457519, 95.64043400075646, 74.54793866432159, 67.38073501186884, 52.445285728085075, 0.3956138629780303, 0.9734932946151256, 0.7500585583492306, 0.994289748307777, 0.36573480854142676, 0.9456911623191142, 2.255766499359557, 0.8534572584579131, 8.440127584474295, 0.3818876989972661, 3.5997238369207833, 0.3610350570796981, 0.37316148721701314, 1.9317301087220728, 5.947183038236754, 2.8751537971776804, 0.5089092196847625, 0.49440757942393787, 0.4845594144191436, 0.5154264677847027, 0.4166416220380049, 57.93193167345103, 1.7066296400783432, 0.6396901758552626, 2.233666883877476, 2.6038153663174457, 1.037422446170013, 0.3682254827200869, 0.2783487340982323, 1.1334582530940431, 2.801246461332471, 7.347447354168464, 11.554343099155021, 3.4892465656410394, 2.1450227889170574, 5.480710315917876, 27.021850728584788, 14.334679208420232, 16.71942331069939, 8.870189543807047, 190.029920019719, 24.33522409598813, 9.191387710327202, 324.07662195412325, 42.988028145635624, 189.32994356299787, 470.2763247335103, 28.451696409599517, 176.4336945544242, 41.420774026814115, 246.8086303073125, 23.3888233361911, 9.817384996476695, 49.19557106955914, 93.46268211549533, 49.645303697475946, 79.89103464388408, 195.11618699866014, 83.9147263873722, 57.09199847926237, 32.55972946679054, 97.87655661927882, 31.274277868346566, 50.43275127761325, 92.59458397118429, 114.3998961900293, 82.44294312606816, 511.7932231803947, 88.74530851963644, 126.97348507804693, 87.70822908883768, 72.47914482359471, 47.315939375960305, 80.10651608477197, 58.369982514002814, 44.15476309358423, 62.709368998351, 46.584557800328675, 49.79429769368099, 48.238080494004286, 48.78866305421201, 0.33256993032820015, 1.0999555380922532, 0.5211581843490313, 0.7914726896666562, 0.8888568899306469, 2.265726646922426, 1.0109220504300966, 0.8285915857871179, 0.3321376907977487, 1.0682473434512334, 0.35409544717579394, 0.33463136065271265, 0.3194460283578116, 0.32040931774831694, 0.3006040405253515, 0.30594962935707626, 0.308840648729855, 1.5582416783713364, 0.5363969379140113, 0.3124328616798648, 0.3132732242247723, 0.5052648730248976, 0.2951947802372222, 0.6557356064439798, 0.30266639924543015, 0.5013592499919177, 0.504814074114495, 0.3012385760358784, 0.5237468320784848, 0.2927544631550648, 0.5112334998270245, 0.5178927270852803, 0.7124761545547387, 7.131701229692735, 1.0974485784795642, 52.85443985678215, 41.38191628911641, 21.610901345496906, 9.136996859124535, 3.193516596850344, 3.9677163887613744, 181.73593483772737, 4.410464865897079, 50.594543657176565, 4.129024295014086, 6.685207929411616, 537.1511056937678, 35.45800733467616, 24.38654085100165, 12.71136200606855, 12.051612561263445, 322.15364547144566, 29.229037238052296, 63.23594911277047, 40.09154032954187, 169.23179211645035, 67.68767511057304, 113.64762826241466, 116.71184489131701, 18.52509461390946, 110.30098699181173, 14.944155272946116, 14.174610363010226, 71.00424312104076, 59.66957775430378, 13.962267212991392, 26.96829005608636, 64.18460598200741, 35.15034015752983, 53.71692183087697, 90.6101955395893, 50.49620405616374, 41.51009016317434, 34.74890251463284, 37.07232293654913, 41.74803160530206, 33.47433254831998, 126.1942864460656, 56.52597999179231, 56.39118670345373, 53.61387066619463, 57.10054624520235, 41.484583882712215, 41.04877370313139, 40.99708579730988, 0.9980037386243691, 0.7860545977744572, 0.4174912873438265, 1.1417490542330047, 0.21295904154564313, 0.39147466132708325, 0.3822279109288405, 0.34289320092356695, 0.6069695994936689, 0.5019773553892948, 0.3280435120137601, 0.2145029352096579, 16.301703860667267, 1.3504787363943838, 0.5669158919306005, 0.33660227880554444, 36.650218300524415, 0.634760122805479, 0.6339922997100462, 0.19839728834492465, 0.4666705397594359, 1.541793238833164, 0.3407121818117567, 0.21572215074289833, 62.93072069161161, 0.626351736897823, 0.20039368335013788, 0.32008884105898927, 3.396054918778682, 0.6081750269637668, 6.456456713448698, 22.68597375080538, 1.3086520964662647, 5.288008054920549, 268.6643941571586, 18.050880196477305, 55.929652657013555, 86.01299331975655, 6.031605743949837, 109.43564144935935, 79.84820312924802, 5.026411329115314, 9.670039305494715, 5.55178267783501, 118.42410760465376, 11.756629787332495, 329.1608592991444, 29.026144230721187, 3.1688479741879076, 59.06285408856326, 67.19465633350393, 29.676389599252733, 42.49757353400325, 30.720552672615163, 476.6932519333466, 145.62541648482696, 53.43828527681841, 45.88208225170673, 17.97174336721299, 37.305231742436966, 148.76921606701612, 11.289147013469771, 50.30045703310305, 49.68577693869293, 93.73166347112453, 86.82597011990957, 30.772926009690952, 84.69121844017953, 47.959801786984016, 50.07636747715579, 44.907729570777, 37.76822480571439, 42.30982829903586, 41.9614369479878, 31.64496346764916, 0.8827013873265084, 2.203721750098909, 1.0088108459252472, 0.2864905004474292, 0.29788266228926286, 0.421599939264255, 0.7140991872103475, 0.28794463814708016, 0.39723092250404596, 3.810395829848451, 0.26065688619476507, 1.2093600801986322, 0.2977093119890746, 0.25929865155059967, 1.4734183373629797, 1.376500633285655, 44.98420912188918, 0.648342529820008, 0.39245036852184195, 0.281861969552463, 0.42106758518912446, 0.2615033279191124, 0.25212177871402525, 0.2511380879734069, 1.7577157259905731, 0.2431474017440964, 0.6436028056870003, 0.22925079295923861, 0.24420788533268636, 0.5673775295945109, 1.1666254096673843, 5.0276223369427795, 259.500321608347, 2.4567586561211368, 1.055381769536729, 12.16684530487409, 59.74283674400739, 9.432741147505531, 7.971441872517464, 16.23017402241786, 54.364523777085985, 42.244055006260176, 106.58845049082576, 9.926440654035886, 44.953015226497115, 26.00378680849675, 51.22729298226866, 264.1116516729217, 24.40719351881931, 418.0499924793843, 35.50569364913409, 15.422469331581619, 139.85561352315932, 14.810093194093437, 32.465365298029056, 59.6351140122958, 19.65097050217629, 25.128028492642404, 71.79759337994761, 31.54278015487163, 54.5799957003935, 35.61453759596584, 50.23030164976752, 51.62323059334679, 27.07754386549341, 55.2718345555168, 47.04945692357178, 81.40837747717492, 29.642429808109068, 73.8926042969198, 91.28081189669328, 29.61097915834179, 67.3420623585763, 41.69368093199298, 44.2266947362226, 44.35721414189806, 30.96360667520489, 32.80718674435669, 36.49942033722757, 32.792327452069244, 0.11922013537713345, 0.19932369442754488, 0.2773274505868968, 0.31312983139547806, 0.11290873786257181, 0.19100824929705817, 0.06243913105308778, 0.1826099188028578, 0.10518312918635893, 0.06325240930994547, 0.9203953669574757, 0.0611956798783116, 0.09886504677750872, 0.10884645133688142, 0.05414507104891786, 0.1332323329031674, 0.10398092736386452, 1.059532793321865, 0.10251885329268959, 0.12362837181252612, 0.1824177816928203, 0.08822965695988688, 0.39103355062979095, 0.09418457084449092, 0.09756575689553913, 0.16735352601553233, 0.09325672215251626, 0.08766126262976894, 0.09317956852623589, 0.09384199399051099, 4.739025575335664, 0.8427637976343161, 0.3348561199654204, 16.551750981469365, 2.666103465577504, 0.30514221386691626, 1.9912430031616195, 48.578679004064306, 4.143744258790025, 94.18713464332112, 13.004306573495304, 31.56966037502865, 7.510740450839998, 3.390490343915066, 3.0854563164181963, 31.277227329619297, 4.23637330754725, 1.6437052066301214, 3.678300327340285, 1.8858531990785734, 52.3248916160706, 14.01688448015214, 115.38815341626075, 40.732421019171845, 9.153844323721104, 17.261776439806837, 21.65813357110842, 17.102898348578854, 27.413501675039186, 13.50698918731414, 3.5687682711578153, 9.258742891990511, 8.904210408650112, 8.739034689740778, 15.25471719232357, 12.084734808746171, 8.622461679272126, 6.362092516766454, 9.406480677542802, 15.064048946367645, 20.311807886062272, 13.31844892018976, 12.259363473125669, 8.152420064470649, 10.79575087470555, 11.730087462633877, 9.157056974853653, 8.85192631728162, 8.888487026282696, 0.16597481520538432, 0.09706792635156496, 0.04105650405431142, 0.09640243980675307, 0.12023153695748894, 0.06548326067694031, 0.09448077788964203, 0.10966061224647325, 0.0380850908217514, 0.08299399995467402, 0.06470484380708365, 0.03573065985362766, 0.08718961611118783, 0.08326475099662475, 0.14708397536024106, 0.03599625744327909, 0.05459903967486566, 0.030306535502347312, 0.03371975359255111, 0.03229309244789594, 0.555309017747271, 0.07703158351524339, 0.07950467252283076, 0.07154421656146699, 0.09503511650280207, 0.029772513125893907, 0.07453356371311103, 0.03414353898323243, 0.050388521388348026, 0.39563270467625333, 1.6126565792334089, 9.28880142828972, 1.8426139321625932, 4.445329282705039, 45.441289837994006, 10.904741698746951, 2.348009408875543, 7.311757069778411, 7.665470591398446, 0.578379935829922, 59.400361208456715, 1.1523082998678449, 28.21887605057233, 1.705734093774189, 90.72632796561322, 2.8997510660634878, 6.294965804320439, 9.784886683996957, 1.5827004501092528, 5.863627954220522, 11.886629271053001, 9.271639420238602, 3.0184718149892467, 11.291117773264913, 18.56097283247404, 11.667540018588467, 16.10107399041166, 24.722675270894193, 10.91122547709875, 13.728529123418257, 3.6652049430607, 5.937842650074539, 14.59349715291644, 8.429392716471996, 5.2557217042259055, 4.371179688414313, 8.205481308062692, 6.162395280487336, 5.189032066223902, 7.924135535151291, 7.013463380046526, 10.394776992718377, 6.414411476956593, 6.585048239422499, 0.14642077211180413, 0.11656851871449442, 0.061848908478453556, 0.038337086760751586, 0.061165678640759405, 0.036269773789033545, 0.3269027404878986, 0.03745189898982253, 0.07962732552252662, 0.03264719112904114, 0.4687308404456772, 0.1016580576713035, 0.09750227550013059, 0.060819119150138934, 0.2110373283372932, 0.03595928930766466, 0.29677467856318773, 0.11294082952757882, 0.05905587027347353, 0.08052945969705122, 0.07413784829964737, 0.07723256662764443, 0.5732143942078002, 0.3449677726498589, 0.059365457510795895, 0.034436744844968836, 0.08548314144207445, 0.1036873290826563, 0.03080205346160977, 0.1890202172512407, 2.4003777738598404, 1.0749426840138598, 0.9065550698540175, 14.263016247631002, 0.44686783553006765, 2.019999579962951, 0.8848746648044719, 1.4272757861387908, 2.3225868968285095, 11.729263513474912, 1.8960624936636938, 85.62814671223268, 25.244848493938314, 5.992710411172289, 49.10530494853601, 5.290142535780972, 2.962578785972744, 30.926865690338484, 1.0727988540875064, 6.166205308696085, 6.5820979221672715, 8.259759254836865, 2.01102857389647, 15.976192790740571, 5.73321763437871, 6.291948575965147, 16.517941093457626, 11.023046711760989, 5.536881960224373, 9.805803770519008, 8.080114421813159, 3.417315642636356, 5.99110863403195, 14.358344064039258, 8.986858360142186, 5.010686061905319, 8.4036651051948, 7.275523894621038, 17.833083393968316, 7.860622857619422, 10.261983257985682, 5.673426358782822, 11.2812109622522, 6.270071112339327, 6.610481714325762, 5.7008375196447245, 0.025783856032160168, 0.05383548238088386, 0.024490893442719, 0.042191415036825754, 0.022185596967625735, 0.023438629137064144, 0.024238582576369516, 0.021887558534779156, 0.021850035200737118, 0.022355275686539222, 0.022497771251742096, 0.024524637968217775, 0.022597652178458175, 0.021363318165528538, 0.021600436060149938, 0.038307203066149854, 0.02296045940580753, 0.1611277178229271, 0.021987786302001794, 0.02156526345965648, 0.021890480215299483, 0.021390196581382897, 0.0210185759411029, 0.02175287971720736, 0.02167039069574188, 0.1425167722000265, 0.021434006827509587, 0.02052245006049548, 0.08769167118366629, 0.0334180834771721, 0.036543740294261946, 0.0752532779761187, 0.05097253411089583, 0.13885188010609134, 22.686062967126094, 0.033700609353974245, 32.518098937981655, 5.969996325792308, 1.0832255800324075, 0.5537524071638895, 6.5461337965069575, 44.61307371549806, 6.0468198686792105, 0.8787538173954402, 14.988451962153507, 3.833156313253556, 0.8816512040474123, 5.458893438432941, 3.317202504877001, 2.243817201947051, 1.9889967431378481, 1.3107264777854766, 8.747072515839397, 4.894313857217158, 0.6737233590330036, 6.092373892988176, 5.589899643857097, 3.138774476687772, 9.395112291898585, 5.694115836776394, 2.802677176542991, 1.6948755367944872, 8.358415574170351, 2.931876419567995, 3.1488795263326166, 10.169000747584562, 3.659653632078083, 2.428090429157604, 2.86126683652403, 3.95762815064802, 4.769854883238323, 6.651011373213177, 4.558310687332452, 3.562861335330546, 2.874284358862746, 4.486372044598964, 3.5394441970424633, 2.991525828126863, 2.9791117424627087, 0.014132411454774339, 0.018512712704752403, 0.012802284323398805, 0.023091269108068066, 0.009908648079473508, 0.01767871285084767, 0.010179315339692716, 0.012569921029293966, 0.009483712041629892, 0.012536955366055076, 0.02163168098312863, 0.010031833734113241, 0.025434564826725445, 0.021691446772029513, 0.009611240942507135, 0.029722933224049362, 0.009227567726036114, 0.02755811242127807, 0.009154363170359232, 0.03327205970785894, 0.009224248411976528, 0.008892503071972065, 0.008844355332639194, 0.03440505726769312, 0.3709285952636623, 0.009021427736008497, 0.020462804557585375, 0.00917866798367356, 0.009263884296639447, 0.028343178054933586, 0.11153858100561656, 0.056747222996937054, 0.04116538366422144, 0.39244574113405134, 0.1231075553819879, 0.40128506949309584, 0.06065921795357222, 0.07288069529190634, 0.8556449333127741, 0.6588257992049912, 7.792205038321695, 1.5519407453908085, 5.8713083711918195, 0.5188080071659401, 14.681525380393422, 1.032222455394736, 0.9339260811643324, 0.6043297965583835, 0.3526126283656982, 0.9769569596035256, 1.2079680332226959, 0.9112042765509536, 2.9483537598957974, 19.981536655389522, 1.7024411731759188, 0.9733983727288649, 0.2561961996141579, 0.6205364288334603, 4.445938382443538, 1.5049263296942847, 2.7990358568799327, 4.4636100810884916, 0.7906456752529077, 7.511095215541695, 1.5320496260967913, 6.0097414923833234, 1.1715484060086632, 1.5677531361601522, 1.6094289326893045, 3.8851970615820886, 2.032256723235092, 2.031335350336859, 1.4467626589886686, 2.3379119222171187, 2.3299061169685613, 1.9959134403976821, 2.1484116115567975, 2.363053313739795, 2.2653140205302646, 1.7933905351442967, 1.6967963443223533, 1.8288204259264793, 1.963255936150912, 1.4588134835749476, 0.015107010094620331, 0.015505197019465525, 0.09841179384483559, 0.013768500539229763, 0.035224956964170356, 0.012540247373758905, 0.01478780827192932, 0.013848693273809264, 0.013346782548269492, 0.014131796527248598, 0.012699598719096476, 0.01382351406972462, 0.012131589900986693, 0.17232888619238226, 2.111818954817228, 0.012003887236558394, 0.054208569103354795, 0.01191590184967807, 0.013097865184776705, 0.06627735563690208, 0.011761808240412768, 0.013409833523655892, 0.012855075126137878, 0.01228042430740781, 0.012238668693543477, 0.0816645614371782, 0.02999008991913434, 0.028904300240221087, 0.0117341652827415, 0.019492674231485395, 0.0536638008595862, 0.09881404810138275, 0.027717258869193042, 0.38786748406002175, 0.3238636433092981, 0.0234283123908128, 0.08709162254379361, 2.5760292184835163, 3.821128883874706, 3.1275579839413385, 1.3580136303647565, 8.548739804138858, 3.8966207877150305, 0.8859004748647944, 5.16523849738603, 1.0439349326716403, 0.6466497372377743, 1.2630442884080242, 1.1873131199327207, 2.0661099123404547, 1.368908791003585, 2.0232213853053196, 1.9161446558904076, 0.8163617623474041, 1.2717051820299718, 1.191874195928935, 1.189922419438535, 1.0139762987740972, 1.490824717313108, 1.246791245843628, 0.8027585274988958, 1.1712251163768408, 0.6739568916690112, 1.0370153352736349, 0.9019724068174654, 0.70887732304797, 0.7419733770886948, 0.7959612337195133, 0.7120245201261189, 0.018080946600722632, 0.019667077414610996, 0.005362974162613024, 0.03625701294396029, 0.03909281867202434, 0.02181448201884659, 0.005174518990300319, 0.00480166572257693, 0.007150723505315376, 0.002964189501556779, 0.0028593394778087824, 0.00499725982933178, 0.0059764629303580155, 0.007967328608184929, 0.004820434632399246, 0.0027824749274565214, 0.005800449310435041, 0.00944465141394656, 0.0045122068498763485, 0.01931049012422104, 0.015788802693772808, 0.010566350428231692, 0.002626323233987391, 0.010948342071222113, 0.004249279334933085, 0.00899680232898829, 0.013658493362819114, 0.006429283590969218, 0.010688162409270799, 0.011767019254788232, 0.028111948536783594, 0.01370908593890725, 0.7271033588777484, 0.6667393571704056, 0.03483464590797602, 1.237252119688277, 0.6227828271916945, 0.2752910427666274, 0.19971394698115835, 0.10178781068531782, 0.09410282953866797, 0.6736681614162892, 5.1143662739358735, 0.18202736371161976, 1.0735649031532042, 2.7394592554630623, 0.17964369131222616, 0.27965279782331226, 0.3861013934060193, 0.6844673485860836, 2.928910638660962, 0.25923921991365684, 0.17208820532725014, 1.4715775773312192, 0.31497536236437335, 0.971542061428771, 0.3590831418574309, 1.536660078322952, 0.5069503982570753, 0.48965445993057977, 5.790439974305451, 1.5085922938959202, 0.38077647331765446, 0.7339462371299159, 1.6701732133260774, 0.7641604029977265, 0.3727486286226628, 0.35412005960091636, 0.4711867459293346, 0.5460704102122452, 1.0006390674474746, 0.790286503844775, 1.0927142933504463, 0.657782710872311, 0.6349330148433797, 0.7667749040472829, 0.7172608434794059, 0.5880766419024839, 0.5397760552929721, 0.49071389993447956, 0.006269275147834627, 0.003397992868027489, 0.00854014908670405, 0.1943386569160235, 0.00292838208439738, 0.15041173458601445, 0.004733295259142386, 0.018077385454773824, 0.01848746923172136, 0.0025465744102319294, 0.09295237333126538, 0.004194031935623379, 0.006043124472625192, 0.0159578976290966, 0.004605492860932192, 0.00654597853508423, 0.0024195482859926815, 0.0028575095203132016, 0.18732259118088654, 0.007425416475886178, 0.005422106572436828, 0.02254201893511547, 0.005953206983083048, 0.012002405941536879, 0.002629567308530709, 0.02809839782187289, 0.0384596252593041, 0.01731429919691042, 0.014797543885533879, 0.0042362933369945585, 0.21349191800727355, 0.038242736422610904, 0.21074892567932174, 0.42528699466212455, 0.2507722531242475, 0.07012049482471569, 0.11453112210392621, 5.557139879471987, 0.07282044842804553, 0.11101841863797803, 0.08008004057301407, 0.0908192772128516, 0.12862905728792043, 0.12647527463384, 0.32394592338727873, 0.2221990228270244, 2.594924085358011, 0.13872270336176795, 1.6909612607112778, 0.8247749678337675, 0.16069189107006326, 1.0573378843729797, 0.27723729879082926, 6.802235392781136, 2.0547845183659246, 0.9882928456157584, 0.5778726074618563, 0.9029029896282568, 0.26080897196165254, 0.49362789778219707, 2.5848742858660185, 0.5023192902922948, 1.479282938638597, 0.8253431899666188, 1.5485626143053293, 1.3811491438803514, 0.4953227618615793, 0.5345567369324696, 1.1050990166394499, 0.48826298715858685, 0.8702746464181049, 0.8071834104732521, 0.5809852207050512, 0.6395114616388088, 0.5913400038584942, 0.5911885120670063, 0.6320292219892958, 0.5922860719058654, 0.5889329541007368, 0.001190727373137533, 0.0011737468234664327, 0.0010564404116586881, 0.007812280131455078, 0.0011495355844266034, 0.01689590817524906, 0.002803175471880284, 0.00108414098807929, 0.0019270514002101922, 0.0010219779253476905, 0.0011328912096078324, 0.0009244671524400295, 0.001119744157500936, 0.001462927365529918, 0.002859552071230908, 0.007376133854160822, 0.000990011659362453, 0.0012116382726056617, 0.0010012826168156162, 0.002586448241653906, 0.001028360694536244, 0.013605676950299458, 0.0008883107161634044, 0.0006851758449349818, 0.001535771813259529, 0.027565208221794944, 0.0012428736675525007, 0.0009606833186870617, 0.001052790027100561, 0.0010049401052972975, 0.0014123077892806567, 0.00245930450190916, 0.009821715368843435, 0.13787594841580214, 0.002426221854465162, 0.03495048024814667, 0.11429717287094392, 0.7767533335188059, 0.004816037864427638, 0.6588033085425544, 0.08357808823183455, 0.011125833584549197, 0.23524181329766974, 0.06874359783020387, 0.02613051952448392, 0.06978045364474594, 0.020963038488153403, 0.08503977505136735, 0.1710068115920082, 0.2607263870056972, 0.10297463065013661, 0.15670498747616574, 1.7248906597742155, 0.07055682174165125, 0.17073818514032346, 0.1934684694259014, 0.9921324747749475, 0.04279109174206551, 0.06386074336936438, 0.6444773865438094, 0.3736061308098273, 0.35208633487365254, 0.30446513362254984, 0.20863234913818615, 0.1061203147528511, 0.20750111984867892, 0.1261404410678995, 0.22467510586634357, 0.22434213048920273, 0.20408825489404234, 0.17839669059394597, 0.21743081157190983, 0.3136197954553819, 0.2984279471753532, 0.16438953669969988, 0.13369703754014928, 0.14086525326048638, 0.11974501500367239, 0.1471478874948884, 0.15770928448563828, 2.258926567739387e-05, 3.5971118349819336e-05, 3.403006410999032e-05, 5.698195746128662e-05, 0.00011609746639971412, 7.896401541388435e-05, 1.991618568399248e-05, 3.0780753408660986e-05, 5.5419642523334735e-05, 3.242205158720329e-05, 0.00010986962968269367, 3.7767814802134075e-05, 1.927116617266945e-05, 5.7563402430077575e-05, 8.480272180361149e-05, 3.5821259198449875e-05, 1.916444167508907e-05, 3.104859134836556e-05, 2.936700653815185e-05, 2.5226435432588873e-05, 0.00018046348721331734, 2.9332302292081876e-05, 7.279316261706516e-05, 0.00021774497731724937, 3.4905100834241095e-05, 1.5082487909189839e-05, 2.896763218282693e-05, 0.00011861569025553866, 2.846833086294709e-05, 2.613710838078809e-05, 0.0002519963719896268, 4.693736576942564e-05, 0.0001240483601374647, 0.00012883472760475084, 0.00012497417237591492, 0.01221837189173234, 0.0026459373984546665, 0.0005376054717539189, 0.00023632834688612465, 0.000406872680204187, 0.002188892109374139, 0.0011239047745686165, 0.0009500595748732231, 0.0010337412063034918, 0.008783405356709108, 0.012550851342622422, 0.002047642056763071, 0.005046242183302352, 0.001923742757155112, 0.0015065066785802626, 0.002620420176894186, 0.002809724724585274, 0.019903589801183168, 0.0031760741842571973, 0.029356008016067883, 0.0021948839739305173, 0.0029763507114367632, 0.0030977150660427433, 0.006731754472520178, 0.011792983945978538, 0.0013755384399027084, 0.004564454191190913, 0.0043775552049104835, 0.0020498554843154182, 0.003691508574868931, 0.002436062618509753, 0.0064336565497119715, 0.001699236503484354, 0.004315427962959715, 0.00425727809268339, 0.007559801160528431, 0.0033283707558854863, 0.0032003234665046345, 0.0040197738440606355, 0.004672028888908497, 0.0034724308694733196, 0.0026009210363902146, 0.002492394020472003, 0.0029761973216252775, 0.0026141172477284983, 5.004560559738831e-05, 1.5860444238444523e-05, 2.7398427437201045e-05, 3.108003177107041e-05, 1.667360406600568e-05, 1.6796816626096548e-05, 1.677927937388343e-05, 1.4043332943434562e-05, 4.6327666630171595e-05, 1.448364835971606e-05, 2.6957368432590747e-05, 3.3087907845752936e-05, 0.0001599731191831911, 1.4296643974073929e-05, 2.81089079473451e-05, 1.5387472931764483e-05, 4.333499029045872e-05, 2.558640447311081e-05, 2.7689850210791786e-05, 2.176586606694478e-05, 2.3540953996709522e-05, 1.3553734674089838e-05, 1.4302048919919501e-05, 2.719755900257598e-05, 2.615700403217131e-05, 2.4509798269204355e-05, 1.4137100049589746e-05, 1.3734736302363665e-05, 1.2895354730062941e-05, 1.4251480717814816e-05, 0.00014057572010461517, 0.00010261799006999402, 6.584872113529719e-05, 0.00012035556547684811, 0.00012393287939892016, 4.4623165624717327e-05, 0.0012256969028230165, 0.0012929575380290774, 0.02221573799904418, 0.0003417371369942036, 0.0008720677481389051, 0.01185642193234383, 0.005048860951934371, 0.0019079916243351608, 0.0006500726626400634, 0.0077522000546489025, 0.00014538788624713557, 0.0017179478223611775, 0.0018108752936623284, 0.0017649875387044417, 0.0007469667056760056, 0.0008871413680443016, 0.028212943779763328, 0.01196723709716304, 0.004129419128547711, 0.0011583256779402005, 0.002195024844365665, 0.0007850554458688441, 0.00235858912021613, 0.005289180476451629, 0.006479230625222748, 0.008070800865746939, 0.0016321482693415184, 0.001782930474611244, 0.0016932162558726004, 0.0032568149947793485, 0.002142788991961336, 0.0038155401249393922, 0.003150308012561853, 0.005332039669357767, 0.002109769935302991, 0.002135305396043718, 0.00537925142260382, 0.002215600266078542, 0.0034330196405246986, 0.0027194999474146595, 0.002329941547053299, 0.0026908829746129666, 0.002896273301930757, 0.003148173355039534, 0.0022077699776368283, 0.002509021739754702, 0.002639601530447989, 0.002227077335707258, 0.0022191715753644217, 0.0022371074544393892, 1.6654244912163554e-05, 6.0245835569597755e-05, 2.51637938419902e-05, 1.5248992725314385e-05, 1.2884158700983457e-05, 1.328756430419196e-05, 0.0002634716816095818, 1.2815045598246018e-05, 1.4007991154775616e-05, 1.4928397009055146e-05, 1.2785999247614322e-05, 1.4244746222351155e-05, 1.3617384304619503e-05, 3.8922335321630866e-05, 1.3312180497682946e-05, 3.525528406588931e-05, 1.344269239676371e-05, 3.2767640791882724e-05, 3.878534820460476e-05, 1.3577816987016407e-05, 1.1973569274274857e-05, 1.3258155046503464e-05, 0.0001208142576089573, 3.24152128602571e-05, 1.3649871926159111e-05, 8.797506071957081e-05, 2.0181060786518575e-05, 2.2295877549468065e-05, 1.3356942466035553e-05, 1.3545711007639942e-05, 4.032932325826528e-05, 0.00033676739925817494, 0.0002410545929002134, 0.00046817762805377534, 0.0010585639397347427, 0.0012842372406077884, 0.0011343510802319702, 0.0027937801261622144, 0.00557178604108685, 0.001178403882786602, 0.0019140164261288238, 0.004219108944989114, 0.004837261358135283, 0.0018437580915138647, 0.00017765779587096558, 0.00031759822133133433, 0.0006160896154178129, 0.0027591254178457973, 0.003140767539277808, 0.008013603785322088, 0.0014187962873460334, 0.0022160540704331505, 0.02936614542668696, 0.0008223848574028023, 0.0016510844981716976, 0.00346198475495125, 0.017272722693936152, 0.004331919140871458, 0.0026884417640705665, 0.0022838620734217563, 0.003989353443547318, 0.005197466356623742, 0.01027362435334482, 0.003901177944340695, 0.003254483192888013, 0.007396257560098475, 0.0021012915324111576, 0.0053019225085805645, 0.005530443265861613, 0.007318496306814598, 0.005251524076975851, 0.0029450893599056714, 0.003147978711528533, 0.0035477395770327365, 0.002934209716671851, 0.002278902438714599, 0.0025107881422405547, 0.00012726323821155548, 3.301573448136408e-05, 0.00021738465462320261, 2.999501971580372e-05, 3.008245175197457e-05, 3.027098382841139e-05, 2.9677972877877936e-05, 2.985669198229206e-05, 3.0149343487926428e-05, 2.917266400342549e-05, 2.956525041241371e-05, 3.09976406327998e-05, 2.8452165690892208e-05, 2.9076588850304242e-05, 2.7019885431633432e-05, 2.9350354258456658e-05, 2.8234499901069224e-05, 2.66232096828967e-05, 2.7347530286202168e-05, 2.8245137757938305e-05, 2.7551190849501273e-05, 2.768270811045411e-05, 2.6285014662031802e-05, 6.100769919501738e-05, 4.8489300962084074e-05, 2.7743615278019077e-05, 2.7906865805392994e-05, 2.8337220228058513e-05, 4.767629415556379e-05, 2.6760326685662816e-05, 0.00010178017766246959, 4.353366787190643e-05, 0.00017950042739690636, 6.120689500288236e-05, 9.590682929963222e-05, 0.0026960353737488342, 0.02152971000617566, 0.005504927903112207, 4.3947231230866815e-05, 0.0001428632093292014, 0.00015933482801409974, 0.009871140365894681, 0.0004943473344726551, 0.00680187632884694, 0.0018746282931154628, 0.02305178836461913, 0.004388953151308054, 0.0025582240961437345, 0.002783882754701048, 0.005962284422311989, 0.0022903611904345604, 0.0036783531796376733, 0.009704612047454023, 0.0012085463154144827, 0.001897363021594854, 0.003583044049541556, 0.0017805842792931747, 0.003035155183876348, 0.005590878627189181, 0.0036444649607722123, 0.00241516659577151, 0.0016841649290449453, 0.0030857608315574543, 0.0031234018036323534, 0.005364990289492146, 0.0023561391848137183, 0.0036416974059750493, 0.005840436979475588, 0.002938828546088209, 0.003352113227920938, 0.0026646308733699305, 0.0030241368076268267, 0.00300894354708769, 0.002090522223229378, 3.4759831088841014e-05, 2.3376478391460514e-05, 2.3719860137020034e-05, 1.4299852115605895e-05, 1.3565301244851006e-05, 1.3762112384207385e-05, 3.0390619454892955e-05, 1.4423210958031526e-05, 8.48780046586106e-05, 1.2847125187934515e-05, 1.4550088527637555e-05, 2.1702834092971944e-05, 1.3880387453635674e-05, 1.3665744154650383e-05, 2.937432781890777e-05, 1.3099603362383896e-05, 1.3239883626338115e-05, 1.3082033553300813e-05, 1.3066690700775201e-05, 1.3044042318706125e-05, 2.1471962034221933e-05, 1.3585047054623601e-05, 2.39180067539225e-05, 1.3374858323903644e-05, 1.2783500166010172e-05, 2.236772860231174e-05, 2.1401825069720743e-05, 2.9821289332045526e-05, 3.030480200957713e-05, 5.410513799469777e-05, 9.503246581314288e-05, 8.44136494906701e-05, 3.305942404193899e-05, 4.347438846140653e-05, 5.859857816303865e-05, 0.00018306256001394158, 0.0008133531950750171, 0.0009696924407427621, 0.0012264815549703125, 0.0002852423864507045, 0.001412475173512783, 0.0001573858424625621, 0.00857038127172822, 0.0029562264244529495, 0.00516843612365563, 0.0007610837521313842, 0.0006437541687301837, 0.0005933912393755864, 0.0005267369534412379, 0.0009019034399116002, 0.0004054281375751245, 0.00041291299033297386, 0.00036824643665253626, 0.003937385197773829, 0.01968648789079535, 0.0013188156071620883, 0.0007623731617639834, 0.012625405558998326, 0.0008319890302390895, 0.002441876918403186, 0.002156921568396127, 0.0016153929421046623, 0.006589184492293239, 0.0026144639160973434, 0.0026028229498360313, 0.0071135991250030044, 0.003429279973190995, 0.0034907485799970128, 0.0036910947426930926, 0.0026104701685688123, 0.0016464583416475826, 0.002230363845578972, 0.02332098382397417, 0.00880217661884521, 0.003956179205127329, 0.001605541272752506, 0.007309909544131016, 0.003767660485933268, 0.0024966657415623397, 0.0034563828077361367, 0.002795354715725597, 0.0033691163455217134, 0.002201719077446356, 0.0025097897401935077, 0.004644252884401885, 0.003997250823794699, 0.003074451800075273, 0.0025862413037823304, 8.000366567895152e-05, 7.977704011414388e-05, 7.841514199078992e-05, 7.858859599193896e-05, 7.761107885468708e-05, 7.810883068088404e-05, 7.66905655883779e-05, 7.80720718224077e-05, 7.592516318976722e-05, 6.940086785565364e-05, 7.881513102906612e-05, 7.00414960065185e-05, 7.652590475725417e-05, 7.083409081682836e-05, 8.032966803046255e-05, 7.587788822987475e-05, 6.850673937130809e-05, 7.676357025137807e-05, 6.913721548115774e-05, 6.872861606713048e-05, 7.387761477870196e-05, 6.775918960324536e-05, 7.713603551834394e-05, 6.932779609440997e-05, 7.541925866792518e-05, 7.500752330423939e-05, 6.934931720605685e-05, 7.910516515694641e-05, 6.816542387110821e-05, 7.912011920381207e-05, 7.657722406547148e-05, 7.737096849038042e-05, 7.823232328817803e-05, 7.536838893750434e-05, 7.995604641376872e-05, 7.767557126223246e-05, 7.626517158849903e-05, 0.009523935273997265, 0.006153228554045654, 0.001978917156319149, 0.0060651503081066835, 0.013311427992431972, 0.008375837364482198, 0.0013466563751758744, 0.005402110278953763, 0.0026813256358788327, 0.004169191646475772, 0.002230922026362852, 0.003368836202177313, 0.003774046424262892, 0.002002126868351784, 0.0017637821468497405, 0.0013271261363961661, 0.0027205187524850342, 0.0025834424199287827, 0.003389826327517066, 0.002260926942370188, 0.001956225929209235, 0.0015321923236927245, 0.001859590794757857, 0.0023287566831331095, 0.0010957490367184413, 0.0010199884736282901, 0.0002704289961141699, 0.001400034192798022, 0.001566513519246566, 0.0015634944259890397, 0.0013241624043412257, 0.0015514392975261957, 0.001897617304635166, 0.0021228118131647973, 0.0021224454046012615, 0.0015593864931858104, 0.0017361610636470336, 0.001753050894904783, 0.00168563467886188, 2.1988063900925218e-05, 2.2094975286441192e-05, 2.1527501974921667e-05, 2.2424386193208764e-05, 2.2495650915615872e-05, 2.2390126035107044e-05, 2.347512097629599e-05, 2.232978888702802e-05, 2.0516100526740125e-05, 2.080752164599568e-05, 2.144891820691504e-05, 2.065489794763487e-05, 2.118251578793191e-05, 2.001139259975303e-05, 2.0294411908575736e-05, 1.9806513742410517e-05, 2.0976996359781668e-05, 2.0154964579649566e-05, 2.2136404133079963e-05, 2.0736574473694613e-05, 2.142604694779882e-05, 2.1136674678063965e-05, 2.128791906756717e-05, 1.9295596429474884e-05, 2.065844798052453e-05, 1.972903320796469e-05, 2.0108408182375803e-05, 2.0013942829341434e-05, 2.0273565984722757e-05, 2.0319390981586357e-05, 4.291355446611539e-05, 0.014576144583669072, 3.9746580810344944e-05, 3.178670439885202e-05, 0.020866252370138377, 0.0015535196108044515, 0.0004959475148074141, 0.0048654264478662935, 0.00180979172957412, 0.0025132740579838224, 0.00033325614061688823, 0.0017218454540436814, 0.001626169407577724, 0.0012208284389859149, 0.008015919698562475, 0.0023285992870481827, 0.01041667550934342, 0.00024843136201299463, 0.006504750513807218, 0.0038623203632827136, 0.0016316372059143984, 0.0056935245033395135, 0.0032756857822702086, 0.0012273215302870467, 0.002333539692969869, 0.0030264466665705075, 0.002233078833908159, 0.0016587167307755629, 0.0016312247381857008, 0.0031473020390576675, 0.000879276051224666, 0.0008468129957404797, 0.0038214589932711023, 0.00209221519480009, 0.003002562168130552, 0.005253946132488406, 0.0022767270653159376, 0.01760723658862334, 0.0052834311932314, 0.00336305223382422, 0.003470155781306632, 0.0030387056881241337, 0.003973122333128672, 0.0032844786913532463, 0.0022224372662414445, 0.0023448909273238094, 0.002209501399125318, 3.6627804585272356e-05, 8.061874202996011e-05, 1.4345501020885416e-05, 2.482471224598516e-05, 1.4210318482640911e-05, 1.4270437066406839e-05, 2.2884794860860833e-05, 1.3667142772201576e-05, 1.3345694503331267e-05, 1.251804279177061e-05, 3.3417785305878894e-05, 1.3090838912642512e-05, 2.915141643457163e-05, 2.1476177489654676e-05, 1.2329374950138126e-05, 1.3404330065019133e-05, 1.2382907319106755e-05, 0.00037978513171301316, 1.1645507982966985e-05, 1.2447134137203028e-05, 2.280123562264623e-05, 1.1963509034498073e-05, 0.0009951116433138019, 4.8799425985139475e-05, 7.207718857602853e-05, 1.2708589802222003e-05, 1.3251550901157121e-05, 1.1478173175951583e-05, 1.248948149519031e-05, 4.1399560654778694e-05, 0.00013169110701930707, 0.0012020232070604848, 0.0014217243915324342, 4.566541859855807e-05, 0.0001972969979789079, 0.0011830760632680806, 0.00013257567103441825, 0.0008094431407160974, 0.0005286370255375564, 0.005050777531159209, 8.698656103787147e-05, 0.0009213683546029933, 0.0007417960307132227, 0.0013613684924495858, 0.00027967926988372156, 0.0014328084401713263, 0.0004885253105375161, 0.0036739546424100797, 0.001675823377005735, 0.0008353607043464752, 0.0030317959261473375, 0.0014601013749328485, 0.0008802478082080196, 0.019479957133662316, 0.00027978430339678793, 0.0037694481176419143, 0.0008209856413084528, 0.002303615341667579, 0.0012520090727070866, 0.00365588936220807, 0.00387258180269604, 0.008896121501919943, 0.002329023990847175, 0.006312488837289546, 0.007043954207503275, 0.010946426689441877, 0.02513565822654799, 0.0039663482069084545, 0.004058564535523084, 0.006207801431369942, 0.005065418056655335, 0.0032414637563584797, 0.005887702360472724, 0.00830858545416859, 0.003126663439767868, 0.003914288480859869, 0.003553602492147547, 0.003566428842819775, 0.003098620048065187, 0.0019933459029205006, 0.0020215109883080355, 0.0022723000713156453, 0.002111354642040834, 0.0020370085236576514, 0.00203829297777212, 8.387055478725258e-05, 6.390051621837617e-05, 6.116268458798497e-05, 8.185174144670004e-05, 6.324648586697135e-05, 6.222596099951081e-05, 6.224466820847143e-05, 6.0381043094412204e-05, 5.906294991707958e-05, 5.951590260249924e-05, 6.377642027415088e-05, 5.9096517893669015e-05, 6.209018940341908e-05, 6.383619258947338e-05, 6.262055031330551e-05, 7.627005605181117e-05, 5.851823449897711e-05, 5.971658880996976e-05, 6.11390015124358e-05, 5.971734735075588e-05, 6.462265217566116e-05, 6.211632668075355e-05, 5.661465868644224e-05, 5.733711591358177e-05, 6.077672267315103e-05, 6.165484595641724e-05, 6.271860611933409e-05, 6.260261850209593e-05, 6.106620736025516e-05, 6.226745896594899e-05, 6.432503511340694e-05, 7.651821363763065e-05, 8.030045761880715e-05, 6.50048698129612e-05, 7.372536504425261e-05, 0.004623005581735562, 7.673334609255357e-05, 0.0003012328395394631, 6.322017787892704e-05, 0.006673981225794252, 0.003902420476812006, 0.01154304769528453, 0.01518447763338717, 0.003680568250713842, 0.006113498312345153, 0.0009538021000777111, 0.00613037826100717, 0.006497734522968924, 0.0005699457034429986, 0.0043446306548801245, 0.002699468729496777, 0.0020089772835990916, 0.0037900306056474742, 0.0016377829453566883, 0.0012450895145910423, 0.0002025568102507468, 0.0010945231754820289, 0.0008056901563499784, 0.002609769750771672, 0.002609094541693789, 0.0017209553549281656, 0.0018085212042888172, 0.00246677127421889, 0.0013170545413561181, 0.0031062112670816877, 0.0012411912182838018, 0.0016212970426619365, 0.0026897011669911523, 0.0021259733130393043, 0.0016656765489346701, 0.002105028811651176, 0.0016227765631966588, 0.0016099662631104043, 0.0018331429782074752, 0.0017968920677100706, 0.0017510886605983191, 0.0018537522257156423, 0.0018221901781872852, 4.1817462722101246e-05, 4.20618478267877e-05, 2.424853907566981e-05, 2.339073810687746e-05, 2.3467052610862048e-05, 2.333510257176108e-05, 2.457002471481952e-05, 2.3817091384911502e-05, 7.497893255146293e-05, 4.0260088949730134e-05, 2.420742731459043e-05, 8.757220042284109e-05, 2.3146179364231497e-05, 5.4270640930208504e-05, 3.955709147449524e-05, 2.2729681271464053e-05, 2.3291551313733545e-05, 2.2346359112936686e-05, 4.095307322444554e-05, 2.286405140536575e-05, 2.266910450372336e-05, 2.4219211532481133e-05, 2.137974688952021e-05, 2.295032520247327e-05, 2.1941712542627832e-05, 2.149570508024248e-05, 8.987513081611956e-05, 2.0751455470765065e-05, 2.1938964121336734e-05, 2.2608564415271886e-05, 3.9535189501350105e-05, 0.00016295451825459745, 0.0001265765219361144, 0.00014615839918009067, 0.0006618196245737549, 6.0801305487151894e-05, 0.00015423197722207708, 0.00016129290487631404, 0.00046629733177232837, 7.754785777238038e-05, 0.003940969357903586, 0.0007989731637749031, 0.00011846843305709055, 0.0001448933620143999, 0.012892112587979973, 0.005140411953729614, 0.01911383707474536, 8.463669622829428e-05, 0.009868958166738924, 0.0009003888365731226, 8.256121094897079e-05, 0.0004948476521988586, 0.02449443473885174, 0.0027068536421749048, 0.010700163652453, 0.001759432098167681, 0.0003376444884591455, 0.004204480572158465, 0.0026181654207730037, 0.003459005992686646, 0.006472663920320558, 0.0042662524009421015, 0.0038572507402906716, 0.0017911596858610833, 0.0022817906247696615, 0.0008735794002012157, 0.0022278850568189274, 0.001193625231514129, 0.0016543408946749522, 0.0017381146286296204, 0.00372974527024932, 0.0018162845518945967, 0.005394569772672697, 0.004267841043204604, 0.00495618122345888, 0.004707217696444507, 0.003115054971566549, 0.002173908478542337, 0.0029925748163987203, 0.0027107080407221423, 0.0020365212890226182, 0.002004610530317071, 0.0025576135938000823, 0.002640968187407057, 0.0025784229783139714, 0.0026707392911499367, 1.602331682798202e-05, 1.5867837272277127e-05, 1.5685741852319026e-05, 1.6348291730887775e-05, 1.4485073324962751e-05, 1.562936369851392e-05, 1.4309742156554277e-05, 1.495051114783646e-05, 1.4906247388855945e-05, 1.529553769331158e-05, 7.678554613565867e-05, 1.4458918275620471e-05, 1.4537798534935712e-05, 1.4212041051638817e-05, 1.45475443140855e-05, 1.3875836601350453e-05, 3.132879413291295e-05, 1.464348666156161e-05, 1.431626518596188e-05, 1.4842440865694611e-05, 2.2169399261146694e-05, 1.3523900498766858e-05, 1.5430866322034014e-05, 1.4334300370068108e-05, 3.153473936652128e-05, 1.3934578066739695e-05, 1.3530942582210549e-05, 1.4030123872504154e-05, 1.4585403890199863e-05, 1.4987727949508192e-05, 0.00021383478923481797, 4.203234217203252e-05, 2.542606807465436e-05, 0.0001886275898563884, 0.0002740470981582217, 0.00015521085676845376, 0.00047264225882592646, 0.0004672825372747679, 0.00036874883473510825, 0.0028243841725205457, 0.00035995378928984186, 0.0005857158690615664, 0.00012302745119556434, 0.0004025414720187639, 0.00038295939378554485, 9.312500725536188e-05, 0.0008815763788451521, 0.002652942517882653, 0.0004049406098354287, 0.00045570686363705586, 0.001955675683306244, 0.0038165244386252953, 0.002709515175282406, 0.00397397664306711, 0.0008839118351742452, 0.0005001413810029277, 0.0009243585633085646, 0.0008311419151953019, 0.0012478362311642403, 0.001765223734722882, 0.0024242171914198624, 0.00028840497315586234, 0.017902412806255538, 0.0006357589756689866, 0.00637211038304192, 0.009648683305607688, 0.0034528164399053375, 0.0012835711808242118, 0.008304369679341433, 0.0021768613246008857, 0.00629406229342042, 0.0017473688628428994, 0.022850468043783576, 0.006194089197001062, 0.0037983559438929696, 0.002248529119735748, 0.0019007579635429406, 0.0025469545087391044, 0.006153463182090709, 0.003882721929294373, 0.008951509815510229, 0.004512229589078317, 0.0036450221658532907, 0.0015306958199578758, 0.002033093232733779, 0.0022765094886055682, 0.0030803412417322595, 0.002429071909854838, 0.003281561152438073, 0.0030823740268362152, 0.002790011593582878, 0.003094301776925808, 0.00260076871784175, 0.002324401288570779, 3.1068169495664264e-05, 3.0091480382744397e-05, 2.9389089738429554e-05, 3.0901015811082425e-05, 2.962239419647293e-05, 3.065370396817889e-05, 2.8727100111346823e-05, 3.063761176207268e-05, 3.148980105662152e-05, 2.7999049970593832e-05, 2.7994264908760076e-05, 3.037946361777365e-05, 2.9017035467778725e-05, 2.8051083630744612e-05, 2.9323627177077403e-05, 3.0054173296608757e-05, 2.8953097770800627e-05, 2.8435218808166703e-05, 2.894640624528008e-05, 2.8341719312074912e-05, 2.8864020385587763e-05, 2.8759907359082885e-05, 2.917796462514549e-05, 2.907393000172381e-05, 2.839340809690829e-05, 2.975151270313583e-05, 2.8848988559367275e-05, 2.9052091931739618e-05, 2.8890260322325616e-05, 2.9069799056011e-05, 7.925429337415789e-05, 4.519096513872261e-05, 4.627717042936601e-05, 0.00504222569564215, 5.467441129398646e-05, 0.0029078170700910623, 0.000366000172928495, 0.008739098356763574, 0.007392237699217995, 0.002674137337299644, 0.0009495155301357411, 0.00019923663998459813, 0.004309863074552484, 0.010620677519539597, 0.00033740965743196704, 0.0020460621752539498, 0.0011373087467250332, 0.013474626925826988, 0.0024226370406285193, 0.003978269139670192, 0.000925031571235245, 0.0004399203316856463, 0.008034210505338982, 0.00543663217566146, 0.003227736306153471, 0.0038397478133695164, 0.0007117554727384851, 0.006899418206936249, 0.0009559106482220995, 0.0012046511174787333, 0.0020107656168758463, 0.018111893846013055, 0.003727827633162829, 0.0021635578030262123, 0.003549393195175837, 0.0021581350543279348, 0.0013999884060577528, 0.001583095018288209, 0.0022382110627454928, 0.0020563789691756267, 0.002284465302553887, 0.0021557961983796215, 0.004378450458760217, 0.0035682183358540314, 0.001961485422652294, 0.002002979573561524, 0.0025955968648443397, 0.0027525067176726948, 0.0022739100181405057, 0.0023146227938050674, 0.0021275496214347694, 2.4628000984004174e-05, 2.498833343924965e-05, 2.2675074234019955e-05, 2.431874239420021e-05, 2.4458757416102783e-05, 2.17745371961713e-05, 2.1459476351840384e-05, 2.15649420817379e-05, 2.1576965341104187e-05, 4.079278720493491e-05, 2.39427646042418e-05, 2.282831175919292e-05, 2.181348900532657e-05, 2.1744132498697192e-05, 2.2876364856546562e-05, 2.079428308612066e-05, 2.3859807470001365e-05, 2.2030051816393398e-05, 2.294164637427635e-05, 2.3691234509071986e-05, 2.4554855066318747e-05, 2.3319256084822467e-05, 2.3147228455088682e-05, 2.3852883629862658e-05, 2.2812286918219084e-05, 2.1678620785336298e-05, 2.2552749466958838e-05, 2.3500161946856284e-05, 2.032408530140509e-05, 2.2505044082662083e-05, 9.891328584038323e-05, 8.637021138392753e-05, 6.53017134734855e-05, 0.00019575322968427275, 0.0005955949050838002, 3.986299613059244e-05, 0.0007603349280782011, 0.0025751496683489874, 0.0004878247008133869, 6.420959645820974e-05, 0.0028989019730727658, 0.00014033011690063642, 0.00012580664296674396, 0.005014076372616644, 0.0007708616374483999, 0.0007432025840303443, 0.004140472257667383, 4.467535310237542e-05, 0.010187863114110069, 0.026234091194118396, 0.001327865239806734, 0.0010133655648664622, 0.001810753935994235, 7.933137185752461e-05, 0.001365777045572073, 0.01547017091984136, 0.006839580289701992, 0.006062515423068537, 0.0023384010995143663, 0.0024373185091301182, 0.0018076455499353833, 0.001265862646436607, 0.0016802649408677887, 0.001884396226739916, 0.0016253050653801545, 0.009074864918276871, 0.0008709871114139204, 0.006976713094836049, 0.004661537769383201, 0.0037504226857758044, 0.0036757777860803326, 0.005418045366245885, 0.005303365198291135, 0.003681793438931471, 0.003035419312604841, 0.0033760024579062428, 0.0023136261335521867, 0.0028823355620556973, 0.0029206720295525362, 0.003280069000536085, 0.0030168022104323524, 0.002620478665704388, 0.0023787023398708514, 0.0022033563587009674, 0.002276563642657119, 3.166895772293857e-05, 3.3116764570692754e-05, 3.143429672530788e-05, 3.1371396351828706e-05, 5.544421089316973e-05, 3.166608080217696e-05, 3.1658912822461045e-05, 3.225975240006967e-05, 3.000127954104177e-05, 2.9578183332669538e-05, 2.7099832252377087e-05, 3.0493456643105623e-05, 3.0259471664895657e-05, 3.0049183129178447e-05, 3.1617882839265e-05, 3.056134990304486e-05, 3.0227726067503928e-05, 2.8236927501177626e-05, 3.167392173151233e-05, 2.977127726669226e-05, 3.096478863962348e-05, 3.098493956630104e-05, 2.9812162573359795e-05, 2.938454880666435e-05, 2.7364836812847593e-05, 3.000119096553626e-05, 2.9817210117956494e-05, 2.6476325395154393e-05, 2.884707893740044e-05, 2.7108358793239258e-05, 5.5375452616260014e-05, 3.0283887855044938e-05, 5.428998379492467e-05, 9.151181100224469e-05, 4.981795451623514e-05, 6.570888543174736e-05, 0.0032696919490508088, 5.3327703950479044e-05, 0.005129794013545589, 0.00015288087344569437, 0.00029956868571429096, 0.000631491089503354, 0.0028218844722236193, 0.006927810364422469, 0.009576946224888482, 0.0018701206808483094, 0.002522771607034569, 0.01054978928519841, 0.000525246875876991, 0.001994075716567169, 0.0064902582187844286, 0.0007353418820866457, 0.020688744958184825, 0.0034739030721500797, 0.005635878773821027, 0.0040155601218784, 0.0022492515495263327, 0.0010527335806030129, 0.0011320514238002133, 0.006925991826829987, 0.003557355657808939, 0.0011688664905470465, 0.002997447577419799, 0.003561328393262618, 0.0010361746190612935, 0.010619767166032058, 0.0019786556137403153, 0.0015695203565964455, 0.004071446475897393, 0.0034646515797344844, 0.002843858120241721, 0.0022098886472665213, 0.0022031421678853002, 0.0020933698565996643, 0.00442929528814277, 0.0021958297768079997, 0.0027358546194324795, 0.0025766072459670482, 0.0020448504730518407, 3.190796103926783e-05, 3.190068374237894e-05, 3.0085275477622485e-05, 3.104813668947203e-05, 2.7595665105486337e-05, 2.6389387496810698e-05, 2.967661863211097e-05, 2.560634044391158e-05, 2.7633834757785723e-05, 2.796532778640681e-05, 2.6131600285720404e-05, 2.6679228980127604e-05, 2.668454223066101e-05, 2.666181037789258e-05, 2.6668648097728238e-05, 2.6770644726070396e-05, 2.602799452101292e-05, 2.708318642757411e-05, 2.724109219527471e-05, 2.7389866526192256e-05, 2.640716754266767e-05, 2.7383630117915116e-05, 2.492002856739461e-05, 2.5488521954046286e-05, 2.867594798880486e-05, 2.6659074511155008e-05, 2.5492295896640556e-05, 2.4727234113662662e-05, 2.5697210086511408e-05, 2.65052059501366e-05, 2.6674421102818884e-05, 3.433760462861975e-05, 5.555080180974459e-05, 9.141567411341914e-05, 2.883192852301403e-05, 2.7710364362491344e-05, 3.2979995328301465e-05, 3.192638668986807e-05, 0.0034140487134759912, 0.020650358388524432, 0.004503142142529925, 0.012783131482244645, 0.002696189238291908, 0.004610016602446575, 4.2012110630541725e-05, 0.006541782536623805, 0.003701589262906872, 0.0010292844755498075, 0.004556404762569676, 0.0028465284946810523, 0.021510499122153793, 0.0018906394125338026, 0.008449552559664859, 0.0025085549327135267, 0.0026082005765300296, 0.0006307119804289749, 0.002225167085891596, 0.007170054322220524, 0.0036163499236818923, 0.0021800352826153494, 0.0037722896662410223, 0.0029076401678768235, 0.003740057800402587, 0.0018278949319534027, 0.0015574104420402516, 0.0007997162649446566, 0.0028092862716386463, 0.0026619522179857193, 0.0027641473412378576, 0.004668276647548276, 0.00197592306329057, 0.004542974865914182, 0.003714330613881121, 0.004116013112054554, 0.0027494301184900283, 0.0026539103062923337, 4.320023132692951e-05, 4.334060805500654e-05, 4.3220959262973596e-05, 4.206197463051654e-05, 4.3717114066202415e-05, 4.5050064145442915e-05, 4.46645469606966e-05, 4.206719041541689e-05, 4.129430594130443e-05, 4.24764266658313e-05, 4.211828683170357e-05, 4.123676338592229e-05, 4.311646695927981e-05, 3.9950465465797066e-05, 3.991459800863084e-05, 4.136484988856161e-05, 4.1923601723185254e-05, 4.1022394586297476e-05, 4.256432365683687e-05, 4.211274746505109e-05, 4.1913177889949993e-05, 4.1561922150215994e-05, 4.1791597238143056e-05, 6.664601981999395e-05, 3.9619083306085406e-05, 4.1496044919578105e-05, 3.8300737942733805e-05, 3.9713955295887314e-05, 3.939056469017081e-05, 4.01865803517522e-05, 0.0006990474922975466, 0.0006556738288694171, 9.54851053271911e-05, 0.0003254733082484273, 0.0010056351482083078, 0.0004898005756172294, 0.007646427892438168, 0.00037289904691706056, 0.00015784657998069187, 0.023449162298372992, 0.009564180303997945, 0.00020941455142248612, 0.00043492067884989534, 0.002730213681953278, 0.002247242236722698, 0.0011429983589335711, 0.004336835865027657, 0.006219707467846631, 0.0038794465643331106, 0.0014681766320105043, 0.0007813095206439585, 0.012851229950044047, 0.006028631956018878, 0.0024081697242991323, 0.00042367762847702754, 0.000405429675891627, 0.00034848823814525177, 0.003769291864327378, 0.003465014682287024, 0.0009772940307553857, 0.002052256093366907, 0.003010328297910142, 0.0034866918685391214, 0.0013340090337250934, 0.0016272813745356893, 0.0015230701046669204, 0.005229351357321105, 0.006406210687352908, 0.004081465307165992, 0.003644465642518132, 0.002798380969205489, 0.0015602401238892696, 0.002764076529579262, 0.002422218706999218, 0.00231532836974561, 0.0018479589111514464, 0.002250717524662622, 0.002148180554921872, 0.001865192343029545, 0.0019535745276284757, 0.00185903053149753, 1.4328348780168325e-05, 1.5150199182251827e-05, 1.3138823055293733e-05, 1.3397670882741781e-05, 1.2883847210712455e-05, 1.315701099889691e-05, 1.4086744500720832e-05, 1.2816668540439737e-05, 1.463211630398248e-05, 5.166179364455559e-05, 1.5447176406153092e-05, 1.422971087610405e-05, 2.4118657981572614e-05, 1.3984257085140069e-05, 1.4453755427941966e-05, 1.379940145214634e-05, 1.3884805511270452e-05, 1.240378048468098e-05, 1.4488779909250377e-05, 1.4543491413986092e-05, 1.2821395007811426e-05, 1.3080817978091977e-05, 4.070584196302878e-05, 1.4364020162605252e-05, 1.4201926475577124e-05, 2.983558464154403e-05, 3.3524386344584396e-05, 1.2161079384856071e-05, 1.4242993460783197e-05, 1.4278956719662009e-05, 0.0005014429066759996, 7.679560732039254e-05, 0.00038145008738139544, 0.0002174701173122519, 0.00013060556005301373, 0.0009717307568994989, 0.001006620218977272, 0.00031805665307042797, 0.0003674996416231872, 0.0012617121661416067, 0.005160427887383185, 0.0004175409179279329, 0.00021795248200898732, 0.0025934159282001543, 0.004621424707944526, 0.0007431640957469613, 0.0007891578488472328, 0.00028191715497652946, 0.0319382791791619, 0.0022984815975098877, 0.012703002036888613, 0.001799132082106546, 0.000762535123444265, 0.0010740388609631647, 0.003705638894548261, 0.00453931284055669, 0.003880102211938202, 0.007329183356203649, 0.0036007212842756515, 0.008810525507724399, 0.0053549445693559464, 0.0024603995506759955, 0.0017357073324459503, 0.001580865746188399, 0.002164013391620327, 0.01497915243818423, 0.0059943434097581875, 0.0021020481966820713, 0.0026051813371790553, 0.0054325448493882985, 0.0020845901211630404, 0.005625853758730501, 0.007667690353499963, 0.002980332488576991, 0.0035817261376950927, 0.002081906367417895, 0.003452770275022462, 0.0031684413938176444, 0.0022242941084822435, 0.002335486752830151, 0.002385055443590385, 0.0021761592655976264, 0.002194998236866335, 1.756056568085904e-05, 2.010373107009749e-05, 3.059911570466967e-05, 1.8132210992740744e-05, 1.790480656830673e-05, 1.8477649110876875e-05, 1.7858989806713315e-05, 1.6911613329108917e-05, 1.767342935232617e-05, 1.801505985347004e-05, 1.7305492666015668e-05, 1.725980974434478e-05, 1.7175544516717368e-05, 3.188286426292633e-05, 1.7181165080387525e-05, 1.6845833463892326e-05, 1.6481867427364346e-05, 1.698672881672194e-05, 3.014084049418801e-05, 1.7268874462587958e-05, 1.812835517916404e-05, 1.620955677936468e-05, 1.7273098845085232e-05, 1.683784535538756e-05, 1.718005319772642e-05, 1.6372043950738738e-05, 1.605226610393511e-05, 1.7019902904783984e-05, 1.7670037643103155e-05, 1.6346716858327994e-05, 2.7951831540950887e-05, 1.8126275583545037e-05, 5.624946354641054e-05, 0.00015675238488695577, 0.0042796298755413895, 0.005071795552000245, 0.004823444133286206, 0.009703592230682016, 0.012453922425068549, 0.0009154647609598018, 0.017978753759127525, 0.0010315659049524048, 0.00241684707161795, 0.010214404752736862, 0.027534021136604518, 0.006999745957573088, 0.004454168008912682, 0.0026305666450004155, 0.0019303950590632188, 0.0011874995481280428, 0.0011093478793227885, 0.0022137980755361866, 0.006150003331668786, 0.002157694299616774, 0.0005985523215153663, 0.0016015816929434044, 0.002273847439709533, 0.0032805570388967846, 0.0024925156282095844, 0.0011905978797280192, 0.002146489170379636, 0.0012642710541392779, 0.006081428354622356, 0.0024556489522345303, 0.0035592438620428413, 0.002041262826316115, 0.002307235757240339, 0.0031027293696399994, 0.0027194811638232906, 0.002844605225111317, 0.001808356916547602, 0.001867170478472486, 0.0019942920149957147, 0.003079724939921908, 0.0033270395015106875, 0.0035827611238978996, 0.002605969056532043, 0.002611510963843673, 0.002395945248051042, 0.002239289348171651, 2.930689549204429e-05, 1.746462521212555e-05, 1.8156381812048324e-05, 2.6888566596555465e-05, 1.6839210456867146e-05, 1.6397152334769255e-05, 1.634261352292449e-05, 1.581633680400913e-05, 1.589454964417454e-05, 1.655569808414482e-05, 1.598486553233535e-05, 1.5926738951608636e-05, 1.581252732874685e-05, 1.572026499257585e-05, 1.5208284334095294e-05, 1.5104103328364516e-05, 1.5175902400805247e-05, 1.4720423371239857e-05, 1.5779553103111908e-05, 1.496719189378784e-05, 1.4910961059672694e-05, 2.56586249138184e-05, 1.5184630158395248e-05, 2.616232890702076e-05, 1.504558513989098e-05, 1.5004456965022915e-05, 1.4378250190873522e-05, 2.4539093316957724e-05, 1.4804877115635142e-05, 3.285197818355522e-05, 5.476643699404756e-05, 3.3124628866196025e-05, 0.0005506407061129983, 4.324208621365048e-05, 0.002796064907173277, 0.0006606736098480308, 9.836484623211156e-05, 0.00021677868309870192, 0.00545424321520024, 3.189300515651985e-05, 0.0043257433271537155, 0.0031499518091823615, 0.000705849879983531, 0.000978836029319482, 0.010367996342558498, 0.002270985753820973, 0.013679183451227402, 0.001228487425541395, 0.004868056009916225, 0.0036293989882086406, 0.0018069021117764405, 0.03076345516341395, 0.0018336625119141194, 0.0023291304649541503, 0.0041378140975468014, 0.00021138283212896017, 0.002341256183007655, 0.0006610259076651194, 0.00025795091965171476, 0.009571739094770942, 0.0006810068481379462, 0.0008239070184938836, 0.006131092608932387, 0.0036719019647208405, 0.003930483571069988, 0.0017348200757655583, 0.001011407203188588, 0.00208384278923097, 0.014167830626018613, 0.006045745365998126, 0.0032597016803087545, 0.004059375463993654, 0.002610112136853086, 0.0023422879805255993, 0.002591264269941362, 0.002470439232599924, 0.004253554836925948, 0.004853138647688007, 0.004542209012945736, 0.0027522292705592253, 0.0029436470465827374, 0.0025651446931153495, 0.0025372387214407316, 4.282664253455743e-05, 2.572692248485526e-05, 2.5642245881615334e-05, 2.510647404821626e-05, 2.3892330527629027e-05, 2.6088730620165196e-05, 2.5058742784729977e-05, 2.432196605102398e-05, 2.5003071020908448e-05, 2.5004045616712335e-05, 2.493590098624387e-05, 2.3819179052075023e-05, 2.4331058828391958e-05, 2.370549612396994e-05, 2.362955871354608e-05, 2.365999234945108e-05, 2.2580811941628512e-05, 2.345847606113703e-05, 2.4901071741663684e-05, 2.3130839436578666e-05, 2.3468603461132206e-05, 2.3438371964875694e-05, 2.307768243704147e-05, 2.329311786622261e-05, 2.2599611277645047e-05, 2.220351485597534e-05, 2.23774411213169e-05, 2.2211717124444098e-05, 2.4504810692573793e-05, 3.946593029380889e-05, 3.929913787017043e-05, 8.14763770673289e-05, 2.408946398220189e-05, 0.0002525740389144082, 0.0001358129177857014, 0.00025345963577081126, 0.00014398912640456094, 0.001954245048381836, 0.003114454642462728, 0.0030982554058504885, 0.007637700472420035, 0.0016180715076865298, 0.0075999651551505246, 0.012076611355138371, 0.007598794189120582, 0.0026131496833468634, 0.004721796879566704, 0.004291366417144171, 0.0022870496701962967, 0.0008931692838499618, 0.016045298880394947, 0.0018284993175744565, 0.002000774511846436, 0.000447679112577519, 0.002572724224113404, 0.00035757701781173997, 0.00026894125810138637, 0.004074957596066218, 0.0017814386079045843, 0.008409689468690898, 0.0008428564648650284, 0.0009428790483157014, 0.001583547989828967, 0.0024236757486065627, 0.003657529279108898, 0.0021814701993888483, 0.003089377484953656, 0.0172923051435722, 0.0034800667680010273, 0.005881921709732833, 0.004092743303655216, 0.002311909105369995, 0.0017448676568687636, 0.001976375697451813, 0.002574870099606586, 0.0026180653335553463, 0.002530370598616994, 0.003388597350430309, 0.0025326397880152765, 0.002269673022800717, 0.0021450874312147162, 0.0021964663747833665, 0.0022083913106110517, 1.6092716266661198e-05, 1.615465207260687e-05, 1.545343602326041e-05, 1.7565230734622152e-05, 3.470651264208374e-05, 4.887736714090016e-05, 1.5436315200842653e-05, 1.5302322113671477e-05, 1.5220846294340648e-05, 3.3653450761866504e-05, 2.588328297653552e-05, 2.4415263779462688e-05, 1.4072694500649213e-05, 2.6212532911975876e-05, 1.5142733834982193e-05, 1.433572623027903e-05, 2.5137976772486726e-05, 1.4414184090228255e-05, 1.605416045981796e-05, 2.50216759588582e-05, 1.4813660380669777e-05, 1.4624058441241195e-05, 1.550449357182934e-05, 1.4743105346980401e-05, 1.349404856257631e-05, 1.4076849243616479e-05, 1.3602119994322546e-05, 1.4285714667303682e-05, 1.5065530462731423e-05, 1.4996354942595218e-05, 3.405631867504907e-05, 0.000167132799733314, 2.4310824196044478e-05, 3.569300866262236e-05, 0.00020815360141528634, 4.37999921262724e-05, 4.183623784927906e-05, 0.0009270558815012563, 0.0003996440665359052, 4.430431067891405e-05, 0.010084346388389044, 0.0019430116626421613, 0.0012549547737168538, 0.0026998530901895298, 0.00029384943981521815, 0.0009451267900667874, 0.007508414847616162, 0.013480331635906166, 0.00178201835321918, 0.0048026632560531106, 0.0008448365904505041, 0.0025089088616399684, 0.0005093846314511233, 0.0018298812766506759, 0.0011014933963966044, 0.0008899183403832582, 0.0009167681453960363, 0.0005944642101288726, 0.007051475413733816, 0.0023491360839042264, 0.017235717006671567, 0.0022548614123444302, 0.00992394166521767, 0.0022030667980342455, 0.008428834059181847, 0.0008875531389779987, 0.025070592852431402, 0.002458768714149181, 0.002462240249114742, 0.001189108395252012, 0.003007880287726133, 0.003549413926645288, 0.002098870282312168, 0.001445892308532564, 0.0051126784223119925, 0.0020629789192200968, 0.0035374982153003, 0.0029446572630784373, 0.0032380490766764775, 0.001988968658448686, 0.0038839806475808245, 0.003011313321755196, 0.002357158296748936, 0.0029089154433076646, 0.0027604557645053854, 0.00239543184437277, 0.002162284163759341, 0.0022509871502963863, 4.478757624084901e-05, 0.00011086044410207523, 0.00011166269457956392, 3.9243958266783426e-05, 0.00010766118762298193, 4.05007046978826e-05, 0.00010277043271358723, 4.07082657550966e-05, 3.933845376548849e-05, 3.782815516882244e-05, 3.887510167482298e-05, 3.87611101183867e-05, 6.551454904935416e-05, 3.914446120947423e-05, 4.1331840710130995e-05, 4.120766495941533e-05, 9.661869373770578e-05, 3.965915876216957e-05, 0.00025018135617069253, 0.006051934511836519, 4.924993979031704e-05, 3.495137174824902e-05, 3.59084561228115e-05, 3.6745607439301666e-05, 0.00017623036995765594, 3.658222571029895e-05, 3.628035046962119e-05, 3.620177770553476e-05, 3.162508864698692e-05, 3.6298033171260345e-05, 0.00021395972867807762, 6.190576429099301e-05, 0.00014078547741173784, 0.0004133028997775814, 0.00028588599239627767, 6.887291046445482e-05, 0.000152192790798807, 0.0009008721336373341, 0.013452748569829294, 0.007687613822333525, 0.017933781269197858, 0.02757604185568381, 0.007102533307579191, 0.003229075710658993, 0.00437900075165822, 0.003901282698058255, 0.004755430564912816, 0.0022399189780502177, 0.0038867103774288063, 0.004227865929408497, 0.007650175454044198, 0.006441584582013836, 0.004283189229970549, 0.008004175103699078, 0.004468808116244793, 0.002135542741448025, 0.0011859123488286868, 0.002926590374099724, 0.004782043598492125, 0.0023296330857138594, 0.0016686486088186455, 0.0011043582941191797, 0.001437524147059065, 0.003131159082985174, 0.0016772379370523366, 0.0018318157486162576, 0.00265466855109196, 0.001877106854986833, 0.001822518802316978, 0.0021728155446292443, 0.0021507643480186216, 0.0019651157468918174, 0.0023051811325494084, 0.002111940582597796, 2.7691156663305145e-05, 2.6843822975113913e-05, 2.760482702386904e-05, 2.679945427219381e-05, 2.6404114977588753e-05, 2.3708596202396013e-05, 2.8368547479318225e-05, 2.8300294145934352e-05, 2.762044789862094e-05, 2.5300636743709898e-05, 2.4327722389866407e-05, 2.4026179302381983e-05, 2.70075766480112e-05, 2.6632721439273764e-05, 2.3667835442813774e-05, 2.370716008271911e-05, 2.4658486661104177e-05, 2.6553192465587597e-05, 2.332296151639075e-05, 2.460958478273647e-05, 2.823517424756594e-05, 2.650264486108742e-05, 2.4734736209950662e-05, 2.6674630111205806e-05, 2.452412600377733e-05, 2.4792133791529524e-05, 2.3501997619150633e-05, 2.4511742402428287e-05, 2.5522098948129723e-05, 2.5921282732791218e-05, 2.6025236375648644e-05, 3.5296464184473074e-05, 0.014772683869504862, 0.02661541338260838, 0.016725913888066855, 0.0018403733124260882, 0.0035708459801275746, 0.0024205630503563173, 0.004054806092429057, 0.0022970357494878743, 0.003502451830383554, 0.00517797387125091, 0.008417908052682457, 0.006001131631153474, 0.0030144159094558443, 0.003873688562166319, 0.000532263871522102, 0.0006370776891399068, 0.0017415727889416063, 0.0022083241339926796, 0.002946403213908963, 0.0010419061894177276, 0.0020884312386706756, 0.005667574330173399, 0.0015444186156639904, 0.0020813866018585168, 0.0019571428614462696, 0.0017127834100361381, 0.002196539120961706, 0.0009651236308511119, 0.001145822952303655, 0.0021887872853697957, 0.00470458270052963, 0.003482627571026623, 0.005974018750509115, 0.0029095272859313995, 0.0019365204261888713, 0.0028399134244356046, 0.002951087008248971, 0.002219569397428902, 0.0029015349942951257, 0.002528022232696489, 0.003013860824091344, 0.002127771207736052, 2.081372693478748e-05, 2.2323540346327147e-05, 1.52723464809902e-05, 2.220733390549297e-05, 1.6102753130062626e-05, 1.4616978237782276e-05, 1.960659768907145e-05, 2.1867908920322737e-05, 1.4800835848251356e-05, 3.1834990649401264e-05, 1.5449669102006152e-05, 4.7605022875618265e-05, 1.8118373778441455e-05, 4.0607974062339914e-05, 1.3875890000796463e-05, 0.00012730500960777503, 1.5742705476999314e-05, 1.4070368112104013e-05, 1.4414566215525288e-05, 1.3629625096464795e-05, 2.099685359608338e-05, 2.9933231597910625e-05, 1.4017722057729928e-05, 3.0768012179830496e-05, 3.0094667034782322e-05, 1.4141776364566065e-05, 1.5039759329240867e-05, 1.3133836862469047e-05, 1.8007485114785154e-05, 2.0203398533494935e-05, 0.00010356121457424639, 0.00013087901826296924, 2.3405107334558305e-05, 0.002793663229853069, 0.0004924438292252137, 0.00023308697173892373, 0.00018542335586007436, 4.520812126952505e-05, 7.737222564918044e-05, 4.695372688297357e-05, 9.673600625732231e-05, 4.3808426257170326e-05, 0.0020108389336770194, 0.0008569038628897697, 0.002737159219487038, 0.00534388769024947, 0.0006517361126628154, 0.0001331354898158472, 0.000939933076767389, 0.0064315901149912475, 0.0012858932035059573, 0.0015428782343428593, 0.0195623015223543, 0.0017813494021174784, 0.001078467389818713, 0.0008143362885377392, 0.000934392342165137, 0.0025305624536812415, 0.027892930842953478, 0.0009787475858794314, 0.003611105636288561, 0.0017825497227951606, 0.0012741097866267967, 0.011494818927843183, 0.002426240853995093, 0.00679945029046034, 0.0017694524898014146, 0.001222488202520286, 0.0037429688364222723, 0.007727873166159392, 0.0022573951536689666, 0.008418174698600973, 0.003932185306895655, 0.0024392355868295534, 0.004031480617453621, 0.0056892736556018635, 0.003152989562949913, 0.0033298711463553773, 0.0016680963286752081, 0.0023638661474002258, 0.0033043512722181097, 0.0033334076630172666, 0.004477302349388755, 0.00249902231772545, 0.0032786879968823186, 0.004585370760756391, 0.0024053218151273304, 0.0023702069625469377, 0.0023836600134960403, 3.082881539652633e-05, 3.205810315408922e-05, 3.115676364924864e-05, 3.3024054209931765e-05, 2.9852145688877566e-05, 3.011583505098115e-05, 2.909304891170789e-05, 3.281191922418132e-05, 3.390281979032264e-05, 2.9614261148027165e-05, 3.0347286275075473e-05, 3.0579545843471395e-05, 2.8511864263736748e-05, 3.1851326268157365e-05, 2.995303807228106e-05, 3.0567227520927155e-05, 2.8636587793507056e-05, 3.002647535592698e-05, 2.918294306926024e-05, 3.001264875073034e-05, 3.0179134020941358e-05, 3.110808464058526e-05, 2.9754359623767936e-05, 2.7099333624952892e-05, 2.8035850378241753e-05, 2.9942646649887888e-05, 3.2348464554442775e-05, 3.0305683727948287e-05, 2.7757482484321236e-05, 2.9287701648055753e-05, 3.1663530447562073e-05, 3.16036261356526e-05, 4.854992369458223e-05, 3.193715068280218e-05, 3.286734452488527e-05, 0.00035896278568822737, 0.00034370527405984283, 0.00041026019568561736, 0.008216370542517452, 0.0005407288103412187, 0.0010912107259317134, 0.006705442013716395, 0.01512524231864517, 0.0036874794719359474, 0.006070867002837895, 0.00039154898969864923, 0.0013610592589179855, 0.004197570731174285, 0.020413372788311412, 0.003867872176230722, 0.0024098402507532024, 0.0019532565450915257, 0.001710521828718268, 0.0038818975403827173, 0.005648763600340433, 0.0011092653456531577, 0.0008363439894734969, 0.002135056717353132, 0.0009425655112052321, 0.007456024233580472, 0.00311981786102702, 0.0065894056732559575, 0.0022395066276731444, 0.0021574195650954195, 0.0017632675322846816, 0.007681014579113912, 0.0030806152577934204, 0.0016601477214158997, 0.0022280019961584516, 0.002287204706214479, 0.002402277359407114, 0.0019827939682956243, 0.0015128327071013987, 0.003534746200429305, 0.001965209343634669, 0.0024506276593091974, 0.0021687888762354766, 0.0026768440595892748, 0.0025128313052094195, 0.0022882634905998464, 0.002137870805231403, 0.0021485905454803234, 0.0021592627305118844, 6.310100832931854e-05, 4.760564312178181e-05, 4.705540045363637e-05, 6.362242904197753e-05, 4.6428865507598036e-05, 4.64618301324319e-05, 6.846740834366049e-05, 4.713396438415942e-05, 4.574687328258071e-05, 5.974672589925197e-05, 4.573566673217195e-05, 4.906423609385424e-05, 4.481029661124742e-05, 4.67986675407106e-05, 4.622433707998818e-05, 6.087219002569006e-05, 4.6002522794467776e-05, 4.806485042229153e-05, 4.561042393232645e-05, 4.4529574950555386e-05, 4.4887412898246456e-05, 4.5645263241328076e-05, 4.6233641915738855e-05, 4.744866253579753e-05, 4.508244646453399e-05, 5.861479755491381e-05, 4.5079927876629446e-05, 4.411780851049554e-05, 4.405906576956199e-05, 4.469303644003925e-05, 4.517791362550357e-05, 5.9657429119362455e-05, 4.8082011997941375e-05, 5.725267089389709e-05, 6.0130697127042184e-05, 0.004652696819314805, 0.0002780173081795225, 5.776519652711428e-05, 6.042816430070211e-05, 5.8920564305309476e-05, 8.550960591472085e-05, 0.00039424039836355565, 0.010982739743984811, 0.014248006104761568, 0.01953901808640298, 9.986723570623258e-05, 0.006138215170633293, 0.003673929024352306, 0.00683157576684899, 0.0002076100232985383, 0.0035765618439277955, 0.0001063463598270572, 0.00010962449962872598, 0.006863836794681018, 0.003641139294208512, 0.0008854108713349547, 0.0030127276611102718, 0.0032400571195620557, 0.0015595948059239962, 0.0020922671453333925, 0.00273333222630574, 0.002113384750281862, 0.0015853994675155605, 0.0022074934982503213, 0.0026847769318373194, 0.0015736046784350127, 0.0031440745556937325, 0.002131077090420657, 0.0010282737150014913, 0.0040827826346538304, 0.0018686201186761454, 0.0019227914928168718, 0.003714639426567173, 0.0019235323005707052, 0.0035442599095680616, 0.002315379920690751, 0.001642047429803332, 0.0018961012380359589, 0.0023140457553852798, 0.0022813761804000706, 0.0024410427290739657, 0.002055475350378471, 2.0784521714322872e-05, 1.9124273940863078e-05, 1.9818326515992543e-05, 1.9397663412225946e-05, 2.094935069642404e-05, 1.885806749157846e-05, 1.822296836405001e-05, 3.0049077617517997e-05, 2.026318842309229e-05, 2.0049723961844006e-05, 1.872485232279215e-05, 1.8915130287826363e-05, 1.9405389836908046e-05, 2.0595500863679536e-05, 1.791517917501105e-05, 1.8263613563056e-05, 5.813598602996117e-05, 1.758816648418836e-05, 1.8501114699566415e-05, 1.7488224604179377e-05, 2.0134104173005583e-05, 1.9327771163077033e-05, 1.692730329028645e-05, 1.864829227559912e-05, 1.842135717727736e-05, 1.7716403784567422e-05, 1.842610550277616e-05, 1.790162985179485e-05, 1.821313182060459e-05, 1.6905734797265035e-05, 5.0038569670371345e-05, 6.0591528907095987e-05, 2.981692900244099e-05, 4.183924797820399e-05, 4.929010696374299e-05, 0.0009273105042563132, 0.012387543470582223, 7.452025690689093e-05, 0.004864906295169135, 0.004124526903054513, 0.0003321971794086258, 0.00021433591461050068, 0.00015222133618807818, 0.029396923065100233, 0.004079500874962925, 0.0002643497861697508, 0.00376741308710178, 0.0017789842363062972, 0.0018718728958360045, 0.001971136812425892, 0.00453839425234502, 0.004243205769363603, 0.00254059634483816, 0.0072160521301767215, 0.0010732267929981685, 0.01664106774021319, 0.0026815117909849023, 0.0006066591444940145, 0.0002881848624499259, 0.0010176727031956671, 0.002271429596920443, 0.001385623666246932, 0.0022088985490997157, 0.0021528641414864506, 0.002218487250543536, 0.002124383799362281, 0.0058179701375759285, 0.009633245911015578, 0.005881020189506094, 0.003105100407543968, 0.0015925023785355896, 0.002000557735542954, 0.0022723400967564734, 0.0036186652747694447, 0.006527592007795917, 0.0037121921183462213, 0.0025062349898658147, 0.0033896360160592127, 0.003837700236640454, 0.0025430192725967994, 0.0025861154111894036, 0.0028933566768382115, 0.002173148054939802, 2.8594389532002937e-05, 2.766596294489285e-05, 2.6124309559004602e-05, 2.614047356272612e-05, 4.6068049598711545e-05, 2.5970985811935034e-05, 2.008873878680881e-05, 2.8248767693274325e-05, 6.715344249481276e-05, 2.505671323659426e-05, 1.8864648807741332e-05, 2.7004735812688104e-05, 2.02401635721734e-05, 1.8777834781036986e-05, 2.5654610706177603e-05, 1.7463378446269336e-05, 1.743486084815313e-05, 1.8569961097073527e-05, 2.3358408797298576e-05, 2.429654644194418e-05, 0.00013480318592423772, 4.970171456687466e-05, 1.8064796141028915e-05, 1.7548901132814414e-05, 2.5664994091034137e-05, 1.9237485491969386e-05, 3.397122336643281e-05, 2.2885286853912296e-05, 2.0306976661585944e-05, 1.7704299539148858e-05, 0.0036712339773626195, 0.00030325511363824605, 5.654683752996147e-05, 5.8763516570833146e-05, 0.00022846492370568123, 0.00014060112639206984, 5.613136302061462e-05, 0.0024934558209160494, 0.00010019719800167615, 0.00016008730363325819, 0.002009420742424851, 0.008136456922668494, 0.00016622615208816384, 0.0018500159880311326, 8.768790881358327e-05, 0.01202591825790223, 0.00028376491068543954, 0.0016575862886818486, 0.0006603806527455868, 0.000776771793495319, 0.0023575216713570056, 0.0016157749519825, 0.001793977063797467, 0.003505789989883811, 0.009140449600944801, 0.002417491754049874, 0.003914451702155472, 0.015076707512687573, 0.003952109462283227, 0.006416197604232848, 0.001131132031755473, 0.0008091129435780657, 0.021510698972193407, 0.002145734906058633, 0.0025281205272898876, 0.005493994022088402, 0.0016906265604510226, 0.003104268014390502, 0.002553884304881668, 0.002581094537023008, 0.002035086486930149, 0.005297003345027342, 0.0017399035217008053, 0.003085808960526617, 0.005931189478999413, 0.003210455422685098, 0.002968263518172857, 0.003119879877515532, 0.0031564022971354013, 0.0035300788323169787, 0.0026032303237820418, 0.00285569707708631, 0.0024037139846739422, 1.5900702016380368e-05, 1.7258802838396816e-05, 2.6246024467110005e-05, 1.4716688619588648e-05, 1.4718496465204336e-05, 1.4144071479695446e-05, 1.6286265814525017e-05, 2.9023410913326247e-05, 1.5239603839041034e-05, 1.4615952638900915e-05, 3.0705788188601387e-05, 1.4302968597331977e-05, 1.381982407579685e-05, 4.316348681490159e-05, 1.4360300991631889e-05, 1.5567939470448998e-05, 1.3968609873338133e-05, 1.3351214580946053e-05, 1.3839801639734322e-05, 1.278548766562008e-05, 1.3010974094011428e-05, 1.3700967145944315e-05, 1.2714352217939966e-05, 3.973653401103555e-05, 1.2980823600717347e-05, 1.2967027541306736e-05, 1.3430325809102604e-05, 1.27561094356607e-05, 4.940410786037983e-05, 1.3214864992613882e-05, 0.00021149931543961277, 2.2047110689606346e-05, 0.0010902826474787253, 0.0009395989373072647, 0.01293662249142184, 8.929178232576703e-05, 0.0035244138571319324, 0.00012718037278439603, 0.000485143208464155, 0.0018366509449103988, 0.022104090595985934, 0.0012557416234907155, 0.005033477960587091, 0.003917078886051867, 0.0009077489778250375, 0.0041540696982894105, 0.00757082868791066, 0.0025704054861875702, 0.004500984024668059, 0.0017160998731192759, 0.003807546780609395, 0.012407193607333548, 0.006682226148669068, 0.0012090270003631439, 0.000624338051727694, 0.0029111562646449048, 0.001996350440189853, 0.001918983158673918, 0.0013728627755774255, 0.0027994671189142117, 0.0025088280728425383, 0.0021346955225461034, 0.0022750014152596427, 0.000967489654978561, 0.025274472176031144, 0.002144780054887776, 0.003607488332481692, 0.0032042712597567433, 0.0016443720702629886, 0.003645193124367082, 0.0037641692571822117, 0.005230209350173544, 0.005267840114029145, 0.006004292081432549, 0.002721287913529977, 0.003138703901748711, 0.00276309597657168, 0.0022718646019937415, 0.0028877650450024233, 0.003156893404821889, 1.5722798436353603e-05, 3.769732905294654e-05, 1.5113228128424462e-05, 1.4702018906331806e-05, 1.5071655698008673e-05, 1.426057725881124e-05, 1.4214380759306103e-05, 1.4711379416050551e-05, 2.3447929333427068e-05, 1.3584194437078633e-05, 1.320365607271421e-05, 2.9740930613659897e-05, 3.1781148808706506e-05, 2.0710916560923882e-05, 3.553099111995345e-05, 1.335914578288789e-05, 2.266450988366936e-05, 1.2545330002866028e-05, 1.4198700423564235e-05, 2.313242045997164e-05, 2.908457163322181e-05, 2.3763733999304715e-05, 1.3535390178542497e-05, 1.3175282134564324e-05, 1.2291088402025429e-05, 1.213162997425048e-05, 2.211075006692194e-05, 1.3933595987020928e-05, 2.7448608557606067e-05, 1.3255042786608188e-05, 4.478330821267575e-05, 3.95757762397446e-05, 3.1081469781831474e-05, 0.0010864452986417816, 0.0006288141779289412, 0.0007305619956148747, 0.0031933538212586894, 0.002414227577137932, 0.00014111332780020826, 0.023266308089794054, 0.0006327772051530059, 0.0018103577742428743, 0.0019015786487282793, 0.004571897556863387, 0.006691487578249266, 0.002496102311094175, 0.008343893639786075, 0.0010918997935186678, 0.0025227448498979883, 0.00250926305435816, 0.009941329817701924, 0.004568144090750959, 0.0027145834899094455, 0.0005642473768233773, 0.0017556491250375192, 0.0013294690679992503, 0.00664712903627502, 0.0033575257471320573, 0.002446352164201375, 0.00395157277843435, 0.0009796614182719225, 0.026744226761863527, 0.0020340063175985994, 0.006502100002106762, 0.0016943917206040003, 0.010467787088730503, 0.004151825961065439, 0.0032459104859844387, 0.003894923459570611, 0.003731042734625073, 0.005419417185800416, 0.0058388773766005955, 0.0026560335461341938, 0.002881797722064322, 0.002563571076166481, 0.002299907486982365, 0.002544609790564391, 2.360141380434225e-05, 2.4337216480295147e-05, 2.3109619877113803e-05, 2.2876977943356536e-05, 2.4028257022131582e-05, 2.3502549758927428e-05, 2.444804781935545e-05, 2.1730376106353757e-05, 2.3620522263973202e-05, 2.1713398080466574e-05, 2.2606366382026955e-05, 2.323510313598816e-05, 2.3432387153827404e-05, 2.3232295593930467e-05, 2.2647287144063838e-05, 2.2649378316350082e-05, 2.287534926975414e-05, 2.166279336697066e-05, 2.3159159104295974e-05, 2.225689456142034e-05, 2.2999210926143072e-05, 2.1102046093728635e-05, 2.145083497199728e-05, 3.745813097794757e-05, 2.3018492115637864e-05, 2.209641244155231e-05, 2.1673982927158876e-05, 2.3071450937267473e-05, 2.196442433110736e-05, 2.2048968060847267e-05, 0.00013350837279592687, 0.008828210646219277, 0.0005372809989117076, 0.00011363519015803922, 0.01295299744215134, 0.02945237306093231, 0.00014897148925446406, 0.00046040887416690774, 0.018109566003257006, 0.004165406755092559, 0.0017946104227873558, 0.002456608578476031, 0.0017765534399705686, 0.0018020284157088025, 0.004095291999310764, 0.0018215183094215303, 0.0009514151021778139, 0.003417544839037141, 0.0003250393897559299, 0.0006459619621375143, 0.0004476585530680227, 0.002260526675070923, 0.0004920012054937412, 0.0008596830288577395, 0.001940484955848936, 0.0021076741363844193, 0.0022712460458659753, 0.003228212399722248, 0.005756251527516577, 0.006962875408353965, 0.003533685860616565, 0.005055395295718099, 0.0031278464145484083, 0.007186608373705285, 0.0012377148697123503, 0.0034194446115336655, 0.002424833611122174, 0.0033764603743825076, 0.0032305711176822335, 0.0017801352211563952, 0.0020382608441740714, 0.004162883157090293, 0.001985293845326223, 0.0032757190005114904, 0.0023080866439436337, 0.0020295772650797696, 0.002158715744816733, 0.002003844986095348, 0.002181640890879169, 1.9877100349471774e-05, 1.7078134800509308e-05, 1.7625243684315878e-05, 1.686388621877547e-05, 1.7866904876255222e-05, 1.7133152893008174e-05, 1.7325507045857616e-05, 1.6819367617240264e-05, 1.7667753541637717e-05, 1.8024893550518915e-05, 1.682980802082507e-05, 1.6531389644932897e-05, 1.6731345572455782e-05, 1.691552262003914e-05, 1.6816348107008584e-05, 1.88538833229917e-05, 1.615306615140949e-05, 1.557995821047617e-05, 1.7255114728606603e-05, 1.687443347900436e-05, 1.7096031094992883e-05, 1.6500087572436286e-05, 1.8244594694355e-05, 1.5839648412215832e-05, 1.612017082651104e-05, 1.6552833096059495e-05, 1.5569013841849677e-05, 1.588192188637616e-05, 1.5969693426039325e-05, 1.6731801868602964e-05, 2.947678504098499e-05, 1.8600789975874505e-05, 0.00017429820567859083, 0.00013339741588539619, 0.000286181168336406, 0.00010843628403640796, 0.0013894945417020094, 0.00039213460640162513, 0.00020413547574926408, 0.00220534208177827, 0.004498367065002442, 0.0011637488043845143, 0.0027959760854050363, 0.0021415655085505756, 0.000357608396872428, 0.013968544493253176, 0.0003918262048688949, 0.00021580013593491476, 0.0006775477766355746, 0.007891183268624822, 0.0027984067038951672, 0.00020546240640677272, 0.0012450291449419032, 0.0001739601845342891, 0.002388826448138623, 0.0007241416846225475, 0.0025230140562821756, 0.000683444853363154, 0.0016355038188746757, 0.016765084440321047, 0.00978413262539555, 0.0029171247882656126, 0.00412630983421647, 0.00834920178981921, 0.003456615283208726, 0.004138357210197071, 0.00414834002721437, 0.002124927414164102, 0.0022707629780679664, 0.0032790578248454434, 0.002389963589117864, 0.00228307939938236, 0.02052694805917501, 0.005503463336562385, 0.005292601113013631, 0.003208397120982445, 0.0037000258331229183, 0.004644510047733408, 0.003171280128555298, 0.002384905771064024, 0.0034028194780174165, 0.002885315769692388, 0.0023620919680373497, 0.0001266093847212283, 1.9654465143873917e-05, 9.0827676255187e-05, 3.2239324848196236e-05, 8.636700318482339e-05, 4.396424794357536e-05, 3.170367690633595e-05, 4.50622298430294e-05, 0.00013111438432667697, 7.782480123131936e-05, 1.7835565810223867e-05, 4.1775422134930106e-05, 8.009353029311967e-05, 1.9124570971807956e-05, 0.00013604713265963882, 1.7955926563969295e-05, 7.293873333248907e-05, 3.0417460132380193e-05, 2.8128251594506827e-05, 2.945689140188796e-05, 4.0874116152549786e-05, 4.2593476772547105e-05, 7.951732332851059e-05, 4.2054993166886e-05, 3.8421916725401146e-05, 3.7715305525639375e-05, 1.647668806772501e-05, 3.856929129972318e-05, 2.566171692770096e-05, 1.641417535997829e-05, 9.927465516925789e-05, 3.8907103927205836e-05, 5.355771111956173e-05, 7.514940109517752e-05, 0.0003982997137153942, 0.0002100712902746585, 0.0005411797653879589, 0.0015354217736308954, 0.008892080691410727, 0.0014453099653200688, 0.0003681340222958104, 0.00099225501998967, 0.01377732244364776, 0.004066263179911045, 0.0019668069165059273, 0.00014702016832139335, 0.001885241639191002, 0.0007078339064042679, 0.0024309708324867377, 0.02799413785864712, 0.003790045304587634, 0.0023576205173853016, 0.0044800417744282495, 0.006819264761691002, 0.008431557456098577, 0.0014927033706831575, 0.0010790688199645924, 0.005934561654563483, 0.003885509096737713, 0.008844965908800927, 0.0022624264625825358, 0.005903554992522109, 0.013551956723309009, 0.002309623162647469, 0.004752338817031462, 0.0018126283433804835, 0.002086649194391234, 0.0029448267316669113, 0.0021961739331246835, 0.0035578104196152286, 0.0029977047394187605, 0.0033920071222637497, 0.0031620633733137186, 0.0021662023807640074, 0.0021769219527784773, 0.002681979553273058, 0.002275909844496948, 0.0021327214230129473, 0.0021719442052886813, 2.8540168540318344e-05, 2.7394600691067365e-05, 2.4950454680273775e-05, 3.937094309910836e-05, 2.396690576217967e-05, 2.4271651285237853e-05, 2.3999084638711646e-05, 2.4720832187588914e-05, 2.3327912691011735e-05, 2.3986837908474552e-05, 2.3446065970480915e-05, 8.778397300150885e-05, 2.2451643440181892e-05, 2.3566406985326622e-05, 2.4095228281414783e-05, 2.387463987516354e-05, 2.4600684785893404e-05, 2.4524621498695913e-05, 2.327151952514352e-05, 3.637807572622635e-05, 2.259592795081486e-05, 2.388719078585458e-05, 2.184754655342653e-05, 2.210099885574293e-05, 2.137099846062735e-05, 2.187733840952372e-05, 2.2998677540876674e-05, 2.2463987447757887e-05, 2.157223909608302e-05, 2.291679305764478e-05, 2.3169767509891123e-05, 0.0001496991109239588, 8.515653403182386e-05, 0.0008211338833543602, 0.004658323479298337, 0.009181444106722449, 0.0001275600768947304, 0.008180702755475344, 0.00047792430520598837, 0.0014860826434551814, 0.0019341982472274814, 0.012365947415993664, 0.004625589839005741, 0.00037484647486313473, 0.0001720268888768118, 0.0027089796053244293, 0.01591384485570327, 0.0036665178577530654, 0.002543026546533816, 0.00434541624440289, 0.009088882577534357, 0.0006487366129635934, 0.0077299873817232995, 0.004133995359637686, 0.00092570815732341, 0.0022279551031152514, 0.0017028252573810093, 0.0035531632636300707, 0.020775648593227402, 0.003951705190756419, 0.003732137400783911, 0.0018817695180834732, 0.0021951169975273797, 0.001998031280306884, 0.005223897050252525, 0.0024538374418571103, 0.0022443554653164585, 0.0021421993349964, 0.002838458463747218, 0.0032676237200309783, 0.0035344112282016797, 0.0021247629594689683, 0.0042172599263505944, 0.0027296412449279318, 0.003099354459552381, 0.0022300729911575836, 0.0022604588963463053], \"Term\": [\"trustee\", \"trust\", \"fund\", \"person\", \"income\", \"power\", \"time\", \"beneficiary\", \"deed\", \"property\", \"clause\", \"act\", \"pay\", \"company\", \"exercise\", \"include\", \"appointor\", \"capital\", \"discretion\", \"share\", \"money\", \"interest\", \"account\", \"period\", \"mean\", \"hold\", \"distribution\", \"fit\", \"law\", \"apply\", \"|attorney\", \"dwell\", \"|director\", \"|execut\", \"fix\", \"characterise\", \"apportionment\", \"|signed\", \"cgt\", \"private\", \"|\", \"dam\", \"lunatic\", \"|authorised\", \"accrue\", \"resettlement\", \"truste\", \"ix\", \"renovation\", \"father\", \"complaint\", \"stranger\", \"states\", \"|signature\", \"bound\", \"|trustee\", \"fees\", \"mother\", \"grammatical\", \"cash\", \"recoup\", \"contingent\", \"conversion\", \"test\", \"trustee\", \"accountant\", \"initial\", \"proposal\", \"variation\", \"provision\", \"personal\", \"liability\", \"state\", \"employee\", \"matter\", \"kind\", \"security\", \"purchase\", \"place\", \"money\", \"law\", \"beneficiaries\", \"additional\", \"power\", \"eligible\", \"include\", \"trust\", \"refer\", \"receive\", \"person\", \"time\", \"property\", \"act\", \"share\", \"provide\", \"fund\", \"interest\", \"clause\", \"exercise\", \"appointor\", \"income\", \"beneficiary\", \"hold\", \"deed\", \"company\", \"pay\", \"discretion\", \"fit\", \"capital\", \"net\", \"tax\", \"mean\", \"account\", \"g1\", \"r\", \"clover\", \"enterprises\", \"poll\", \"amplification\", \"reciprocal\", \"l\", \"conditions:(a\", \"b2\", \"chared\", \"kudla\", \"oflncome\", \"rank\", \"main\", \"payee\", \"blending\", \"f2\", \"ord\", \"asterios\", \"ceasing\", \"person(s\", \"university\", \"detennine\", \"c1\", \"c2\", \"testamentary\", \"trustee:(a\", \"share(s\", \"birth\", \"residence\", \"distribute\", \"public\", \"topic\", \"alive\", \"evidence\", \"lease\", \"date\", \"party\", \"omission\", \"exercise\", \"capital\", \"director\", \"tax\", \"society\", \"account\", \"infant\", \"price\", \"property\", \"think\", \"income\", \"trustee\", \"asset\", \"trust\", \"pay\", \"beneficiary\", \"appointor\", \"set\", \"act\", \"determine\", \"person\", \"discretion\", \"shareholder\", \"fund\", \"mean\", \"apply\", \"company\", \"distribution\", \"fit\", \"deed\", \"time\", \"power\", \"money\", \"include\", \"clause\", \"interest\", \"period\", \"trusteetrustees\", \"aggregate\", \"glen\", \"margin\", \"redemption\", \"i.\", \"example\", \"mediators\", \"recitalc\", \"hybrid\", \"s346c\", \"valley\", \"records\", \"noted\", \"david\", \"categories\", \"participate\", \"understanding\", \"envelope\", \"colony\", \"synthesis\", \"upward\", \"special\", \"attache\", \"r\", \"s34qp,(1\", \"sufficient\", \"cltleck\", \"\\\\\\\\os\", \"anticipate\", \"attribute\", \"relationship\", \"govern\", \"net\", \"revocable\", \"time\", \"paragraph\", \"uncontrolled\", \"borrow\", \"responsible\", \"deed\", \"subject\", \"charge\", \"absolute\", \"declare\", \"pay\", \"person\", \"office\", \"act\", \"director\", \"purpose\", \"power\", \"beneficiary\", \"include\", \"appointment\", \"share\", \"writing\", \"incur\", \"income\", \"trustee\", \"respect\", \"think\", \"trust\", \"interest\", \"exercise\", \"clause\", \"discretion\", \"mean\", \"period\", \"form\", \"fund\", \"account\", \"hold\", \"property\", \"company\", \"capital\", \"distribution\", \"bar\", \"aaa\", \"happen\", \"|appointor\", \"expediency\", \"|power\", \"aspect\", \"books\", \"corpus\", \"existent\", \"officeholder\", \"operating\", \"ompany\", \"|sign\", \"procedure\", \"selection\", \"professionals\", \"proportionate\", \"remedy\", \"server\", \"ascertainable\", \"|\", \"constituting\", \"|trustee\", \"go\", \"send\", \"arbitrator\", \"in|\", \"message\", \"able\", \"authorised\", \"forego\", \"jurisdiction\", \"delivered\", \"mergeformat\", \"provided\", \"effect\", \"witness\", \"limit\", \"bearer\", \"beneficiary\", \"contain\", \"relative\", \"fund\", \"vesting\", \"power\", \"trust\", \"settlement\", \"time\", \"relation\", \"person\", \"vary\", \"expression\", \"benefit\", \"include\", \"purpose\", \"discretion\", \"income\", \"capital\", \"fit\", \"capacity\", \"pay\", \"confer\", \"subject\", \"clause\", \"property\", \"appointor\", \"trustee\", \"exercise\", \"deed\", \"act\", \"share\", \"net\", \"company\", \"period\", \"absolute\", \"interest\", \"determine\", \"mean\", \"apply\", \"money\", \"structure\", \"cleardocs\", \"supply\", \"retained\", \"compulsory\", \"melbourne\", \"contact\", \"high\", \"forget\", \"robinson\", \"expertise\", \"sandra\", \"anomaly\", \"download\", \"college\", \"extensive\", \"february\", \"fax\", \"website\", \"competence\", \"inspect\", \"maddocks\", \"evidenced\", \"miscellaneous\", \"doctrine\", \"answer\", \"encumber\", \"john\", \"kit\", \"familiar\", \"waiver\", \"identical\", \"st\", \"family\", \"smith\", \"appoint\", \"asset\", \"name\", \"note\", \"pass\", \"termination\", \"income\", \"information\", \"hold\", \"ly\", \"replacement\", \"trustee\", \"right\", \"schedule\", \"limit\", \"entity\", \"trust\", \"legal\", \"share\", \"respect\", \"person\", \"appointor\", \"beneficiary\", \"power\", \"effect\", \"time\", \"sa\", \"case\", \"pay\", \"capital\", \"financial\", \"charge\", \"company\", \"purpose\", \"discretion\", \"deed\", \"interest\", \"distribution\", \"security\", \"tax\", \"period\", \"investment\", \"fund\", \"exercise\", \"clause\", \"act\", \"property\", \"account\", \"money\", \"include\", \"traditional\", \"napoli\", \"clause6\", \"precedence\", \"instant\", \"server\", \"professionals\", \"injurious\", \"mawson\", \"brincat\", \"streamed\", \"acceptable\", \"propose\", \"clauses\", \"impact\", \"services\", \"guardian\", \"fiduciary\", \"carer\", \"plain\", \"mcbride\", \"remarry\", \"internet\", \"company2\", \"distribution\", \"carlett\", \"rapuano\", \"saunders\", \"segregated\", \"lakes\", \"house\", \"write\", \"rest\", \"principal\", \"fund\", \"borrow\", \"period\", \"clause\", \"living\", \"property\", \"company\", \"incidental\", \"infant\", \"protect\", \"deed\", \"dealing\", \"trust\", \"determination\", \"unfranked\", \"money\", \"appointor\", \"give\", \"apply\", \"asset\", \"trustee\", \"income\", \"account\", \"mean\", \"consent\", \"subject\", \"person\", \"object\", \"share\", \"discretion\", \"power\", \"beneficiary\", \"benefit\", \"time\", \"capital\", \"include\", \"pay\", \"interest\", \"act\", \"exercise\", \"fit\", \"|name\", \"mergeformat\", \"|presence\", \"contemplate\", \"relating\", \"transferee\", \"|power\", \"involvement\", \"horse\", \"|signature\", \"fence\", \"|signed\", \"provisos\", \"xii\", \"|sign\", \"|director\", \"|\", \"|authorised\", \"fixture\", \"exonerate\", \"intervene\", \"viii\", \"installation\", \"bar\", \"|print\", \"expediency\", \"|appointor\", \"vii\", \"|settlor\", \"lawrence\", \"dictate\", \"surviving\", \"fund\", \"sealed\", \"farming\", \"direction\", \"money\", \"witness\", \"union\", \"value\", \"account\", \"apply\", \"deed\", \"appropriate\", \"period\", \"determination\", \"interest\", \"trust\", \"guardian\", \"trustee\", \"director\", \"accumulate\", \"person\", \"vary\", \"accounting\", \"clause\", \"bank\", \"give\", \"property\", \"appoint\", \"company\", \"hold\", \"appointor\", \"include\", \"set\", \"pay\", \"capital\", \"power\", \"investment\", \"beneficiary\", \"income\", \"date\", \"time\", \"share\", \"exercise\", \"act\", \"think\", \"distribution\", \"discretion\", \"mean\", \"relationships\", \"site\", \"likely\", \"traditional\", \"receivership\", \"lawrence\", \"central\", \"impact\", \"split\", \"plain\", \"segregate\", \"language\", \"injurious\", \"professionals\", \"kayla\", \"park\", \"entirety\", \"segregated\", \"threaten\", \"tiparra\", \"carer\", \"voting\", \"officeholders\", \"divorce\", \"internet\", \"aaa\", \"specifically\", \"streamed\", \"intact\", \"remedy\", \"rule\", \"cth\", \"sporting\", \"mean\", \"undistributed\", \"read\", \"building\", \"income\", \"spouse\", \"trust\", \"distribution\", \"deed\", \"appointment\", \"propose\", \"proportion\", \"time\", \"trustees\", \"bearer\", \"distributable\", \"control\", \"fund\", \"account\", \"trustee\", \"person\", \"investment\", \"clause\", \"property\", \"act\", \"power\", \"money\", \"reference\", \"director\", \"subject\", \"respect\", \"exercise\", \"interest\", \"accounting\", \"guardian\", \"apply\", \"pay\", \"beneficiary\", \"company\", \"capital\", \"appoint\", \"discretion\", \"include\", \"period\", \"hold\", \"share\", \"lakes\", \"holme\", \"kayla\", \"tiparra\", \"lawrence\", \"tobi\", \"claus\", \"avenue\", \"joseph\", \"park\", \"zen\", \"shannon\", \"brincat\", \"mcbride\", \"pulteney\", \"rapuano\", \"apartments\", \"subheading\", \"tony\", \"iiiaa\", \"rent\", \"chose\", \"periods\", \"apartment\", \"mawson\", \"numeral\", \"brokerage\", \"magill\", \"settledamount\", \"worthy\", \"undistributed\", \"apply\", \"distributor\", \"receipt\", \"fund\", \"account\", \"existence\", \"accounting\", \"director\", \"south\", \"trust\", \"building\", \"income\", \"concern\", \"trustee\", \"employ\", \"investment\", \"share\", \"application\", \"purpose\", \"clause\", \"money\", \"duty\", \"exercise\", \"power\", \"pay\", \"deed\", \"person\", \"act\", \"property\", \"credit\", \"think\", \"time\", \"capital\", \"net\", \"term\", \"include\", \"period\", \"determine\", \"company\", \"discretion\", \"beneficiary\", \"interest\", \"appointor\", \"cartland\", \"mawson\", \"tobi\", \"shannon\", \"flinders\", \"itsines\", \"normal\", \"pearce\", \"tiparra\", \"kayla\", \"intentional\", \"avenue\", \"lawrence\", \"zen\", \"takers\", \"magill\", \"creditors\", \"chared\", \"clare\", \"reflect\", \"park\", \"mcbride\", \"associated\", \"people\", \"files\\\\\\\\content.outlook\\\\\\\\iodf185i\\\\\", \"forest\", \"gabrielle\", \"carlett\", \"iiiaa\", \"dictate\", \"indemnity\", \"house\", \"revenue\", \"clause\", \"signing\", \"direction\", \"accord\", \"undistributed\", \"distributable\", \"company\", \"category\", \"trustee\", \"income\", \"investment\", \"trust\", \"set\", \"duty\", \"fund\", \"designated\", \"think\", \"fit\", \"account\", \"liable\", \"deed\", \"appoint\", \"law\", \"beneficiary\", \"pay\", \"security\", \"act\", \"share\", \"credit\", \"hold\", \"power\", \"exercise\", \"net\", \"include\", \"money\", \"person\", \"appointor\", \"property\", \"distribution\", \"time\", \"interest\", \"capital\", \"period\", \"howeverthat\", \"spurr\", \"~-\", \"painter\", \"vnetid\", \"is&ue\", \"lfm\", \"ian\", \"qq\", \"prescribed\", \"phone\", \"extract\", \"ascribed\", \"winifred\", \"gi\", \"tt\", \"pk\", \"winjen\", \"retum\", \"pkf\", \"jeffrey\", \"log\", \"lto\", \"l3\", \"contingency\", \"trust.doc\", \"~f\", \"s346c\", \"lapse\", \"deregistration\", \"happy\", \"remote\", \"~\", \"expiry\", \"fund\", \"jenna/\", \"trust\", \"money\", \"breach\", \"uncontrolled\", \"include\", \"trustee\", \"appointor\", \"make\", \"person\", \"fit\", \"infant\", \"capital\", \"security\", \"provide\", \"bank\", \"result\", \"deed\", \"discretion\", \"deceased\", \"pay\", \"company\", \"respect\", \"power\", \"exercise\", \"absolute\", \"office\", \"beneficiary\", \"investment\", \"think\", \"income\", \"period\", \"term\", \"date\", \"interest\", \"act\", \"time\", \"clause\", \"account\", \"director\", \"property\", \"share\", \"hold\", \"distribution\", \"extensive\", \"bearers\", \"sure\", \"insist\", \"urgent\", \"chargee\", \"chairman\", \"college\", \"wise\", \"evidenced\", \"significant\", \"begin\", \"counterparts\", \"exoneration\", \"endeavour\", \"override\", \"schedule:-\", \"warning\", \"scheduleon\", \"desirous\", \"second\", \"treatment\", \"stipulate\", \"envelope\", \"bearer\", \"wrapper\", \"rules\", \"attestation\", \"firms\", \"package\", \"auditor\", \"spurritt\", \"cablegram\", \"relevant\", \"dispute\", \"pl\", \"competent\", \"hereto\", \"general\", \"financial\", \"income\", \"asset\", \"time\", \"entity\", \"trust\", \"schedule\", \"office\", \"case\", \"discretionary\", \"relate\", \"appointment\", \"document\", \"include\", \"trustee\", \"director\", \"manner\", \"common\", \"agree\", \"deed\", \"benefit\", \"company\", \"beneficiary\", \"expense\", \"fund\", \"respect\", \"person\", \"vesting\", \"provision\", \"law\", \"power\", \"interest\", \"money\", \"subject\", \"clause\", \"act\", \"discretion\", \"appointor\", \"pay\", \"exercise\", \"share\", \"account\", \"capital\", \"property\", \"distribution\", \"contemplate\", \"resulting\", \"mergeformat\", \"farm\", \"|authorised\", \"vii\", \"dwell\", \"relating\", \"viii\", \"in|\", \"|settlor\", \"renovation\", \"xii\", \"|signature\", \"|\", \"expediency\", \"|signed\", \"bar\", \"dam\", \"|sign\", \"installation\", \"complaint\", \"existent\", \"involvement\", \"operating\", \"|print\", \"|name\", \"|power\", \"xiv\", \"reformation\", \"|director\", \"sealed\", \"|execut\", \"officer\", \"witness\", \"livestock\", \"delivered\", \"deed\", \"person\", \"income\", \"share\", \"trustee\", \"fund\", \"accounting\", \"trust\", \"period\", \"day\", \"capital\", \"discretion\", \"time\", \"clause\", \"power\", \"beneficiary\", \"think\", \"company\", \"appointor\", \"include\", \"interest\", \"property\", \"pay\", \"apply\", \"act\", \"absolute\", \"exercise\", \"money\", \"appoint\", \"law\", \"account\", \"director\", \"telex\", \"spurritt\", \"settledamount\", \"auditor\", \"develop\", \"enforce\", \"pyrmont\", \"variations\", \"brokerage\", \"unrealized\", \"faithful\", \"chartered\", \"exoneration\", \"purported\", \"pinako\", \"honorary\", \"holme\", \"envelope\", \"thetrustee\", \"exce\", \"negotiate\", \"debentur\", \"nonexercise\", \"likely\", \"prepaying\", \"subsection\", \"deletion\", \"reproduce\", \"link\", \"telegram\", \"topdocs\", \"bills\", \"law\", \"director\", \"facsimile\", \"clause\", \"subject\", \"authority\", \"case\", \"expression\", \"relative\", \"apply\", \"trust\", \"indemnity\", \"include\", \"person\", \"member\", \"eligible\", \"corporation\", \"period\", \"fund\", \"vest\", \"propose\", \"deed\", \"credit\", \"act\", \"charge\", \"time\", \"appoint\", \"date\", \"trustee\", \"power\", \"payment\", \"discretion\", \"income\", \"capital\", \"relation\", \"appointment\", \"respect\", \"distribution\", \"property\", \"exercise\", \"beneficiary\", \"share\", \"money\", \"pay\", \"company\", \"interest\", \"appointor\", \"mean\", \"jamie\", \"company2\", \"lawrence\", \"appropriate\", \"shannon\", \"undistributed\", \"deputy\", \"benevolent\", \"look\", \"follows\", \"specific\", \"flinders\", \"accident\", \"shares\", \"&\", \"oppose\", \"numeral\", \"address2\", \"society\", \"mawson\", \"tiparra\", \"creditors\", \"mcbride\", \"policies\", \"rapuano\", \"registrable\", \"interim\", \"rest\", \"dictate\", \"untaxed\", \"rule\", \"intestate\", \"distributable\", \"guardian\", \"debenture\", \"principal\", \"union\", \"trust\", \"portion\", \"build\", \"context\", \"maintain\", \"partition\", \"fact\", \"bank\", \"partnership\", \"person\", \"concern\", \"time\", \"money\", \"sell\", \"pay\", \"entitle\", \"trustee\", \"income\", \"act\", \"apply\", \"include\", \"policy\", \"net\", \"fund\", \"respect\", \"beneficiary\", \"capital\", \"power\", \"deed\", \"appoint\", \"tax\", \"property\", \"security\", \"clause\", \"company\", \"period\", \"interest\", \"account\", \"discretion\", \"appointor\", \"share\", \"exercise\", \"vii\", \"fence\", \"nicholas\", \"mergeformat\", \"installation\", \"associated\", \"|authorised\", \"farm\", \"reformation\", \"xii\", \"exonerate\", \"propety\", \"rent-\", \"internet\", \"|attorney\", \"creditors\", \"bar\", \"minimise\", \"|settlor\", \"|execut\", \"relating\", \"|signature\", \"acknowlegement\", \"postage\", \"rust\", \"specific\", \"president\", \"resulting\", \"dam\", \"running\", \"clare\", \"|name\", \"cancellation\", \"|\", \"|appointor\", \"undistributed\", \"guardian\", \"person\", \"benevolent\", \"income\", \"nominate\", \"duties\", \"money\", \"guarantee\", \"building\", \"consent\", \"protect\", \"bank\", \"distribution\", \"company\", \"notice\", \"apply\", \"trustee\", \"invest\", \"period\", \"account\", \"trust\", \"dealing\", \"attorney\", \"fund\", \"beneficiary\", \"deed\", \"property\", \"capital\", \"asset\", \"appointor\", \"appoint\", \"act\", \"clause\", \"include\", \"discretion\", \"pay\", \"power\", \"time\", \"interest\", \"fit\", \"mean\", \"accounting\", \"share\", \"exercise\", \"custodian\", \"streamed\", \"receivership\", \"impact\", \"audit\", \"likely\", \"plain\", \"divided\", \"site\", \"services\", \"institute\", \"club\", \"message\", \"aaa\", \"traditional\", \"significant\", \"acceptable\", \"subtrust\", \"entities\", \"confidentiality\", \"selection\", \"extant\", \"able\", \"officeholder\", \"residual\", \"second\", \"intact\", \"officeholders\", \"specifically\", \"president\", \"requirement\", \"award\", \"aspect\", \"support\", \"defeasance\", \"power\", \"relation\", \"relative\", \"cth\", \"corpus\", \"corporation\", \"reference\", \"resolution\", \"financial\", \"time\", \"person\", \"appointment\", \"include\", \"provide\", \"pursuant\", \"benefit\", \"subject\", \"trust\", \"distribution\", \"trustee\", \"right\", \"hold\", \"mean\", \"deed\", \"fund\", \"settlement\", \"exercise\", \"company\", \"term\", \"discretion\", \"net\", \"beneficiary\", \"deem\", \"clause\", \"act\", \"income\", \"interest\", \"account\", \"pay\", \"property\", \"appointor\", \"law\", \"think\", \"capital\", \"share\", \"impact\", \"subheading\", \"divided\", \"guardians\", \"instant\", \"message\", \"appraiser\", \"element\", \"site\", \"view\", \"services\", \"technique\", \"hybrid\", \"unique\", \"parts\", \"actions\", \"registerable\", \"injurious\", \"entirety\", \"achieve\", \"experience\", \"hall\", \"salesman\", \"proportionate\", \"divorce\", \"streamed\", \"investing\", \"registry\", \"voidble\", \"accessory\", \"connexion\", \"officeholders\", \"traditional\", \"ascertain\", \"work\", \"aaa\", \"trustees\", \"effect\", \"trust\", \"capable\", \"propose\", \"person\", \"clause\", \"payment\", \"say\", \"power\", \"desire\", \"guardian\", \"personal\", \"notice\", \"object\", \"reference\", \"trustee\", \"fund\", \"include\", \"vest\", \"purpose\", \"indemnity\", \"director\", \"property\", \"time\", \"income\", \"day\", \"term\", \"vesting\", \"share\", \"accounting\", \"exercise\", \"discretion\", \"deed\", \"respect\", \"subject\", \"beneficiary\", \"tax\", \"act\", \"account\", \"distribution\", \"money\", \"appointor\", \"pay\", \"fit\", \"interest\", \"company\", \"mean\", \"period\", \"capital\", \"outstanding\", \"trouble\", \"legacy\", \"authorisation\", \"basic\", \"conciliation\", \"mcmaster\", \"submission\", \"occupancy\", \"left\", \"hall\", \"shorten\", \"admission\", \"arbitrators\", \"compel\", \"yield\", \"cultural\", \"vigilance\", \"conditions\", \"outgo\", \"voidble\", \"queensland\", \"election\", \"determinable\", \"rescind\", \"competent\", \"minimise\", \"disburse\", \"depreciate\", \"caption\", \"xx\", \"d\", \"written\", \"bearer\", \"sa\", \"accumulate\", \"trustees\", \"respect\", \"clause\", \"general\", \"appointment\", \"discretion\", \"include\", \"day\", \"substitute\", \"capable\", \"execution\", \"law\", \"period\", \"power\", \"require\", \"benefit\", \"trustee\", \"meaning\", \"charge\", \"money\", \"trust\", \"act\", \"distribution\", \"subject\", \"company\", \"property\", \"fund\", \"exercise\", \"share\", \"income\", \"investment\", \"deed\", \"time\", \"person\", \"beneficiary\", \"interest\", \"capital\", \"pay\", \"appointor\", \"fit\", \"account\", \"blended\", \"moiety\", \"trust.doc\", \"s346a(1\", \"~,n~\", \"donat\", \"cti~ge\", \"log\", \"forgiveness\", \"prescribed\", \"s----\", \"wtthln\", \"\\\\\\\\os\", \"int\", \"lilllhin\", \"upward\", \"exertion\", \"vnetid\", \"concurrence\", \"phone\", \"i~ntordlartge\", \"pra\", \"jennifer\", \"spurr\", \"tt\", \"is&ue\", \"rmost\", \".as~\", \"subordinate\", \"missing\", \"remote\", \"deregistration\", \"winjen\", \"~\", \"appointer\", \"asset\", \"trust\", \"company\", \"sun\", \"expiry\", \"tsalamangos\", \"person\", \"r\", \"time\", \"appointment\", \"trustee\", \"clause\", \"director\", \"hold\", \"deed\", \"benefit\", \"capital\", \"fund\", \"effect\", \"term\", \"appointor\", \"payment\", \"account\", \"beneficiary\", \"include\", \"law\", \"corporation\", \"money\", \"discretion\", \"power\", \"fit\", \"pay\", \"income\", \"share\", \"act\", \"interest\", \"exercise\", \"property\", \"provision\", \"significant\", \"chapter\", \"try\", \"begin\", \"schedule:-\", \"divert\", \"residual\", \"ofpocket\", \"delegation\", \"treatment\", \"department\", \"involved\", \"transportation\", \"conveyance\", \"spurr\", \"registry\", \"summary\", \"beneficiaryie\", \"formal\", \"poor\", \"export\", \"arbitrations\", \"appreciation\", \"exceptions\", \"view\", \"x.x\", \"moneys\", \"herewith\", \"raising\", \"lapse\", \"winjen\", \"trust.doc\", \"connected\", \"desirous\", \"genuine\", \"impose\", \"declare\", \"writing\", \"name\", \"protection\", \"office\", \"dispute\", \"time\", \"law\", \"clause\", \"limit\", \"application\", \"unit\", \"generality\", \"primary\", \"bearer\", \"firm\", \"specified\", \"share\", \"trust\", \"document\", \"body\", \"fund\", \"liable\", \"subject\", \"absolute\", \"provide\", \"deed\", \"apply\", \"fit\", \"power\", \"money\", \"discretion\", \"capital\", \"hold\", \"corporation\", \"respect\", \"trustee\", \"person\", \"act\", \"appointment\", \"income\", \"exercise\", \"distribution\", \"include\", \"account\", \"company\", \"provision\", \"period\", \"beneficiary\", \"property\", \"pay\", \"appointor\", \"defectif\", \"asset(s\", \"branch\", \"subsidise\", \"salesman\", \"introduce\", \"line\", \"get\", \"investing\", \"wise\", \"furtherance\", \"element\", \"amusement\", \"submission\", \"powers:-\", \"part:-\", \"urgent\", \"reservoir\", \"stipulate\", \"voidble\", \"siding\", \"testament\", \"curtailment\", \"scheduleon\", \"maturity\", \"accessory\", \"insofar\", \"home\", \"treatment\", \"interference\", \"fund:-\", \"adult\", \"decorating\", \"wharv\", \"agricultural\", \"electrical\", \"drain\", \"fund\", \"time\", \"business\", \"income\", \"trustee\", \"trust\", \"eligible\", \"person\", \"discretion\", \"power\", \"period\", \"property\", \"beneficiary\", \"law\", \"absolute\", \"form\", \"clause\", \"company\", \"deed\", \"interest\", \"hold\", \"|\", \"fit\", \"capital\", \"settlement\", \"effect\", \"connexion\", \"term\", \"net\", \"respect\", \"personal\", \"accounting\", \"money\", \"exercise\", \"act\", \"think\", \"include\", \"pay\", \"appointor\", \"testament\", \"stipulate\", \"wise\", \"sentence\", \"australia:-\", \"beneficiaryie\", \"arbitrations\", \"firms\", \"treatment\", \"hall\", \"remake\", \"insofar\", \"registry\", \"element\", \"basic\", \"urgent\", \"severally\", \"schedule:-\", \"furtherance\", \"following:-\", \"said\", \"investing\", \"deed:-\", \"voidble\", \"asset(s\", \"prepay\", \"chairman\", \"hy9bligat\", \"attestation\", \"reach\", \"rules\", \"person\", \"significant\", \"offend\", \"trust\", \"office\", \"bearer\", \"clause\", \"charge\", \"director\", \"repayment\", \"appointment\", \"provide\", \"condition\", \"income\", \"subject\", \"fund\", \"written\", \"power\", \"company\", \"business\", \"deed\", \"discretion\", \"pursuant\", \"tax\", \"interest\", \"think\", \"relation\", \"determination\", \"share\", \"reference\", \"sole\", \"pay\", \"appoint\", \"money\", \"beneficiary\", \"fit\", \"trustee\", \"time\", \"include\", \"act\", \"capital\", \"property\", \"exercise\", \"law\", \"period\", \"hold\", \"reproduce\", \"minute\", \"lawyers\", \"determinations\", \"oversight\", \"hinder\", \"deputy\", \"temporary\", \"specification\", \"part:-\", \"miscellaneous\", \"tangible\", \"short\", \"pyrmont\", \"follows\", \"personality\", \"ofpocket\", \"principal\", \"closed\", \"completeness\", \"permanent\", \"prudence\", \"indemnity\", \"counterpart\", \"spurritt\", \"realised\", \"visible\", \"defectif\", \"identified\", \"subsection\", \"expire\", \"execute\", \"accordance\", \"brewery\", \"board\", \"contain\", \"auditor\", \"body\", \"generality\", \"include\", \"expend\", \"sa\", \"limit\", \"document\", \"repayment\", \"schedule\", \"discretionary\", \"account\", \"provide\", \"meaning\", \"mean\", \"confer\", \"reference\", \"trust\", \"retain\", \"share\", \"case\", \"net\", \"office\", \"discretion\", \"capital\", \"income\", \"subject\", \"deed\", \"power\", \"fund\", \"trustee\", \"company\", \"exercise\", \"time\", \"property\", \"money\", \"beneficiary\", \"person\", \"interest\", \"clause\", \"act\", \"pay\", \"appointor\", \"benefit\", \"respect\", \"period\", \"fit\", \"director\", \"distribution\", \"farm\", \"holdings\", \"licences\", \"xii\", \"withdrawal\", \"closed\", \"divert\", \"consents\", \"healing\", \"tender\", \"member:06/06/2016\", \"interpretations\", \"liquor\", \"industry\", \"tm\", \"vii\", \"fulfill\", \"trader\", \"regulated\", \"investigation\", \"referable\", \"warranty\", \"testament\", \"element\", \"vests\", \"payer\", \"5115\", \"itselfof\", \"refugee\", \"12.term\", \"acquiring\", \"contemplate\", \"viii\", \"c?t1::,~~9\", \"fence\", \"|\", \"|settlor\", \"|print\", \"vendor\", \"power\", \"share\", \"trust\", \"trustee\", \"company\", \"income\", \"officer\", \"person\", \"fund\", \"r\", \"time\", \"discretion\", \"director\", \"beneficiary\", \"absolute\", \"form\", \"|sign\", \"condition\", \"body\", \"clause\", \"pay\", \"provision\", \"hold\", \"act\", \"corporation\", \"deed\", \"class\", \"think\", \"property\", \"capital\", \"law\", \"appointor\", \"apply\", \"fit\", \"money\", \"interest\", \"account\", \"include\", \"exercise\", \"b\", \"no.of\", \"member:06/06/2016\", \"solemn\", \"tsala\", \"warranty\", \"j\", \"ofunsound\", \"poll\", \"c1\", \"chairperson\", \"ii\", \"18.lndemnity\", \"posting\", \"oflncome\", \"industry\", \"\\\\xbb\", \"considered\", \"e2\", \"tsimopoulos\", \"reciprocal\", \"10.power\", \"schedules\", \".45pm\", \"referable\", \"energy\", \"appointer\", \"payer\", \"---------------------------------------------receipt\", \"including\", \"cumulative\", \"halifax\", \"redemption\", \"georgia\", \"r\", \"l.\", \"redeem\", \"tsalamangos\", \"l\", \"conditions:(a\", \"director\", \"paragraph\", \"delivery\", \"surplus\", \"person\", \"company\", \"trust\", \"glen\", \"income\", \"body\", \"subparagraph\", \"wind\", \"trustee\", \"fit\", \"fund\", \"appointment\", \"holder\", \"act\", \"apply\", \"share\", \"power\", \"pay\", \"include\", \"payment\", \"determine\", \"public\", \"appoint\", \"new\", \"charge\", \"personal\", \"clause\", \"term\", \"time\", \"property\", \"beneficiary\", \"deed\", \"appointor\", \"think\", \"capital\", \"interest\", \"investment\", \"purpose\", \"account\", \"money\", \"discretion\", \"exercise\", \"permissible\", \"subdivider\", \"poor\", \"vendor\", \"urgent\", \"asset(s\", \"wise\", \"aid\", \"trader\", \"3rd\", \"disposal\", \"basic\", \"tender\", \"jennifer\", \"injunctive\", \"element\", \"significant\", \"precedent\", \"percentage\", \"keeping\", \"achieve\", \"stipulate\", \"residuary\", \"beneficiary(s\", \"spurr\", \"consents\", \"treatment\", \"necessitous\", \"int\", \"exact\", \"impose\", \"admit\", \"mutandis\", \"hereinafter\", \"aforesaid\", \"auditor\", \"irrevocable\", \"bearer\", \"hereunder\", \"purpose\", \"forego\", \"generality\", \"hereinbefore\", \"uncontrolled\", \"maintenance\", \"sheet\", \"hereof\", \"subject\", \"release\", \"maintain\", \"personal\", \"interest\", \"provision\", \"discretion\", \"entitled\", \"exclusion\", \"accept\", \"indemnity\", \"duty\", \"charge\", \"respect\", \"premium\", \"trust\", \"application\", \"deed\", \"person\", \"money\", \"office\", \"income\", \"benefit\", \"beneficiary\", \"payment\", \"trustee\", \"time\", \"include\", \"appoint\", \"right\", \"hold\", \"power\", \"act\", \"fund\", \"property\", \"exercise\", \"provide\", \"investment\", \"fit\", \"appointor\", \"period\", \"pay\", \"company\", \"share\", \"clause\", \"capital\", \"mean\", \"consents\", \"healing\", \"tender\", \"recompense\", \"futures\", \"buyer\", \"licences\", \"unincorporat\", \"mixing\", \"fulfill\", \"interpretations\", \"themfrom\", \"poor\", \"investigation\", \"whomsoever\", \"straddle\", \"types\", \"vests\", \"mutual\", \"subdivider\", \"conveyance\", \"keeping\", \"donations\", \"transportation\", \"consumption\", \"importer\", \"discuss\", \"protective\", \"derivation\", \"fault\", \"vacation\", \"occurrence\", \"disclaims\", \"discretion\", \"residual\", \"benefit\", \"aforesaid\", \"power\", \"time\", \"subject\", \"resolution\", \"topdocs\", \"include\", \"fund\", \"provided\", \"right\", \"execute\", \"trust\", \"provision\", \"exercise\", \"case\", \"equal\", \"person\", \"deed\", \"share\", \"clause\", \"administration\", \"income\", \"writing\", \"expense\", \"absolute\", \"trustee\", \"act\", \"security\", \"company\", \"appoint\", \"require\", \"charge\", \"law\", \"respect\", \"hold\", \"tax\", \"beneficiary\", \"property\", \"determine\", \"director\", \"appointor\", \"pay\", \"interest\", \"capital\", \"money\", \"payer\", \"5115\", \"wrapper\", \"ofunsound\", \"b2\", \"element\", \"testament\", \"voidble\", \"postage\", \"no.of\", \"withholding\", \"permissible\", \"prepay\", \"hall\", \"warranty\", \"wise\", \"tmcnt\", \"view\", \"church\", \"smart\", \"commihion\", \"measures\", \"18.lndemnity\", \"conferral\", \"addendum\", \"registry\", \"12.term\", \"currencies\", \"urgent\", \"committee\", \"glen\", \"appointer\", \"poll\", \"participate\", \"bearer\", \"cumulative\", \"paragraph\", \"asset\", \"specified\", \"birth\", \"appoint\", \"hereto\", \"georgia\", \"company\", \"sign\", \"application\", \"capital\", \"attache\", \"person\", \"trustee\", \"accordance\", \"sa\", \"corporation\", \"subparagraph\", \"office\", \"trust\", \"power\", \"deed\", \"respect\", \"director\", \"payment\", \"invest\", \"business\", \"right\", \"appointment\", \"fund\", \"financial\", \"income\", \"property\", \"clause\", \"exercise\", \"time\", \"beneficiary\", \"pay\", \"discretion\", \"include\", \"law\", \"money\", \"share\", \"act\", \"appointor\", \"account\", \"period\", \"distribution\", \"interest\", \"tsala\", \"agreementi\", \"12.term\", \"itselfof\", \"instrumental\", \"subparagraphs\", \"smart\", \"chamnan\", \"warranty\", \"payer\", \"wise\", \"magistrate\", \"industry\", \"considered\", \".45pm\", \"b1\", \"measures\", \"compame\", \"directly\", \"energy\", \"synthesis\", \"electoral\", \"18.lndemnity\", \"5115\", \"prepay\", \"b2\", \"f(1\", \"urgent\", \"schedules\", \"fulfill\", \"fettered\", \"international\", \"calling\", \"unimproved\", \"deputy\", \"preferred\", \"net\", \"non-\", \"company\", \"presumptive\", \"insert\", \"employee\", \"director\", \"time\", \"person\", \"charge\", \"security\", \"fund\", \"firm\", \"term\", \"power\", \"corporate\", \"trustee\", \"share\", \"deed\", \"act\", \"respect\", \"state\", \"general\", \"income\", \"include\", \"authority\", \"money\", \"clause\", \"execute\", \"trust\", \"purpose\", \"business\", \"property\", \"pay\", \"discretion\", \"fit\", \"apply\", \"think\", \"beneficiary\", \"hold\", \"capital\", \"exercise\", \"interest\", \"kayla\", \"numeral\", \"itsines\", \"pearce\", \"ro\", \"jennifer\", \"iiiaa\", \"wise\", \"particulars\", \"types\", \"healing\", \"consents\", \"trader\", \"futures\", \"investigation\", \"necessitous\", \"ian\", \"subdivider\", \"refugee\", \"parcel\", \"qq\", \"mutual\", \"urgent\", \"fulfill\", \"resolutions\", \"beneficiary(s\", \"interpretations\", \"testament\", \"licences\", \"s346a(1\", \"exertion\", \"bar\", \"holme\", \"cartland\", \"custodian\", \"fault\", \"contemplate\", \"vii\", \"apply\", \"trust\", \"capital\", \"fund\", \"accounting\", \"company\", \"flinders\", \"deed\", \"money\", \"distributable\", \"pay\", \"mean\", \"trustee\", \"|\", \"person\", \"law\", \"distribution\", \"undistributed\", \"appoint\", \"income\", \"include\", \"security\", \"act\", \"account\", \"clause\", \"set\", \"day\", \"indemnity\", \"share\", \"interest\", \"discretion\", \"time\", \"director\", \"power\", \"property\", \"beneficiary\", \"appointor\", \"exercise\", \"compel\", \"outgo\", \"stage\", \"cultural\", \"brisbane\", \"superannuate\", \"heir\", \"cheltenham\", \"earn\", \"ring\", \"consultants\", \"wales\", \"square\", \"quasi\", \"storage\", \"installment\", \"t1600\", \"eminent\", \"printing\", \"tape\", \"setting\", \"authorisation\", \"perth\", \"suggest\", \"hobart\", \"finding\", \"queensland\", \"shorten\", \"uncertainty\", \"accumulated\", \"written\", \"d\", \"conditions\", \"sample\", \"pl\", \"permission\", \"beneficiary\", \"mcmaster\", \"box\", \"trustee\", \"person\", \"exemption\", \"copyright\", \"provision\", \"right\", \"sa\", \"clause\", \"time\", \"appointor\", \"eligible\", \"unit\", \"trust\", \"power\", \"subject\", \"le\", \"acn\", \"solicitors\", \"act\", \"include\", \"case\", \"benefit\", \"discretion\", \"exercise\", \"document\", \"business\", \"provide\", \"income\", \"fund\", \"deed\", \"property\", \"company\", \"corporation\", \"pay\", \"capital\", \"share\", \"accounting\", \"money\", \"interest\", \"law\", \"period\", \"hold\", \"precedent\", \"stage\", \"postage\", \"scheduleon\", \"testament\", \"submission\", \"church\", \"voidble\", \"currencies\", \"disclaimer\", \"thank\", \"occupancy\", \"shareholding\", \"addendum\", \"lent\", \"admission\", \"quasi\", \"element\", \"accumulated\", \"efficient\", \"maximum\", \"solemn\", \"finance\", \"joseph\", \"authorisation\", \"predecessor\", \"license\", \"fulfill\", \"parliament\", \"finding\", \"bearer\", \"institute\", \"meeting\", \"continue\", \"resort\", \"sole\", \"reference\", \"foreign\", \"equal\", \"consent\", \"act\", \"firm\", \"solicitors\", \"subject\", \"company\", \"declare\", \"indemnity\", \"repayment\", \"trustee\", \"purpose\", \"fund\", \"vesting\", \"natural\", \"addition\", \"share\", \"clause\", \"capital\", \"power\", \"discretion\", \"income\", \"property\", \"law\", \"give\", \"business\", \"respect\", \"trust\", \"beneficiary\", \"date\", \"mean\", \"deed\", \"net\", \"time\", \"person\", \"money\", \"exercise\", \"accounting\", \"pay\", \"include\", \"apply\", \"period\", \"interest\", \"distribution\", \"appointor\", \"jennifer\", \"instant\", \"jenna/\", \"undischarged\", \"s346a(1\", \"stgmnmt\", \"\\\\\\\\os\", \"ian\", \"ve\", \"contingency\", \"exertion\", \"centenary\", \"is&ue\", \"wayville\", \"parcel\", \"cti~ge\", \"winifred\", \"pkf\", \"entities\", \"incomplete\", \"pepjadd\", \"hy9bligat\", \"-~\", \"int\", \"f(2\", \"defectif\", \"qq\", \"addendum\", \"conferral\", \"~,n~\", \"divided\", \"plain\", \"blended\", \"adequacy\", \"money\", \"act\", \"company\", \"income\", \"fund\", \"accept\", \"trust\", \"section\", \"accounting\", \"person\", \"trustee\", \"time\", \"clause\", \"apply\", \"asset\", \"accordance\", \"effect\", \"investment\", \"deed\", \"purpose\", \"event\", \"appointment\", \"director\", \"discretion\", \"hold\", \"pursuant\", \"respect\", \"relate\", \"power\", \"distribution\", \"include\", \"date\", \"fit\", \"capital\", \"account\", \"share\", \"set\", \"absolute\", \"determine\", \"pay\", \"property\", \"beneficiary\", \"appointor\", \"exercise\", \"interest\", \"mean\", \"achieve\", \"testament\", \"injunctive\", \"chapter\", \"inchoate\", \"submission\", \"insofar\", \"treatment\", \"basic\", \"said\", \"beneficiaryie\", \"unique\", \"precedent\", \"reach\", \"sentence\", \"wrapper\", \"registry\", \"prepay\", \"d.\", \"endeavour\", \"funds\", \"merger\", \"severability\", \"x.x\", \"formal\", \"australia:-\", \"schedule:-\", \"bearers\", \"severally\", \"rules\", \"debentures\", \"disputant\", \"bearer\", \"arbitrators\", \"asset\", \"union\", \"clauses\", \"iii\", \"company\", \"exoneration\", \"money\", \"apply\", \"distributor\", \"distributable\", \"income\", \"set\", \"fund\", \"attorney\", \"clause\", \"account\", \"guardian\", \"trustee\", \"notice\", \"purpose\", \"appointor\", \"taxable\", \"respect\", \"lend\", \"cancel\", \"person\", \"appropriate\", \"liable\", \"deed\", \"capital\", \"include\", \"payment\", \"follow\", \"benefit\", \"trust\", \"time\", \"discretion\", \"pay\", \"mean\", \"law\", \"period\", \"distribution\", \"property\", \"beneficiary\", \"power\", \"share\", \"act\", \"interest\", \"exercise\", \"valley\", \"concurrence\", \"\\\\\\\\os\", \"moiety\", \"jennifer\", \"\\\\xa3y\", \"lto\", \"qq\", \"centenary\", \"s----\", \"ph\", \"undischarged\", \"log\", \"s346a(1\", \"~,n~\", \"particulars\", \"lilllhin\", \"cti~ge\", \"lfter1h\", \"missing\", \"advice;.\", \"is&ue\", \"prescribed\", \"e__.4c-\", \"howeverthat\", \"investigation\", \"compame\", \"winifred\", \"/alu~/security\", \"crescent\", \"tt\", \"blended\", \"im\", \"empower\", \"trust.doc\", \"dispute\", \"winjen\", \"office\", \"subject\", \"provision\", \"deed\", \"schedule\", \"time\", \"fund\", \"power\", \"respect\", \"act\", \"include\", \"absolute\", \"separate\", \"trust\", \"appointment\", \"term\", \"uncontrolled\", \"law\", \"l\", \"different\", \"exercise\", \"payment\", \"person\", \"natural\", \"writing\", \"provide\", \"apply\", \"company\", \"appoint\", \"discretion\", \"trustee\", \"clause\", \"income\", \"property\", \"hold\", \"asset\", \"date\", \"account\", \"money\", \"interest\", \"beneficiary\", \"capital\", \"share\", \"mean\", \"appointor\", \"pay\", \"investigation\", \"compel\", \"futures\", \"assignee\", \"spurr\", \"aside\", \"severally\", \"ro\", \"necessitous\", \"club\", \"female\", \"onerous\", \"healing\", \"male\", \"discrimination\", \"compame\", \"sun\", \"subdivider\", \"blank\", \"negate\", \"donations\", \"examination\", \"rescind\", \"switch\", \"fulfill\", \"poor\", \"licences\", \"types\", \"uncertainty\", \"cheltenham\", \"relinquish\", \"excepted\", \"sick\", \"remoteness\", \"substitute\", \"xx\", \"deregister\", \"resolution\", \"attach\", \"sourced\", \"power\", \"provide\", \"addition\", \"net\", \"le\", \"primary\", \"deed\", \"fund\", \"charge\", \"act\", \"hereof\", \"subject\", \"express\", \"determination\", \"general\", \"accept\", \"proper\", \"reason\", \"time\", \"accounting\", \"trust\", \"investment\", \"person\", \"purpose\", \"income\", \"reference\", \"trustee\", \"tax\", \"fit\", \"settlement\", \"interest\", \"company\", \"appoint\", \"deem\", \"beneficiary\", \"security\", \"clause\", \"discretion\", \"include\", \"date\", \"property\", \"appointor\", \"period\", \"pay\", \"exercise\", \"share\", \"distribution\", \"money\", \"expediency\", \"|appointor\", \"|execut\", \"vii\", \"|power\", \"xii\", \"|authorised\", \"bar\", \"farm\", \"fence\", \"installation\", \"|settlor\", \"reformation\", \"xiv\", \"dwell\", \"in|\", \"|name\", \"stranger\", \"|print\", \"|\", \"horse\", \"viii\", \"relating\", \"existent\", \"|director\", \"exonerate\", \"renovation\", \"dam\", \"contemplate\", \"provisos\", \"mergeformat\", \"|trustee\", \"|signed\", \"|signature\", \"delivered\", \"livestock\", \"|sign\", \"witness\", \"fund\", \"beneficiary\", \"trust\", \"trustee\", \"deed\", \"distribution\", \"appointor\", \"money\", \"clause\", \"asset\", \"discretion\", \"company\", \"income\", \"power\", \"pay\", \"person\", \"property\", \"investment\", \"attorney\", \"share\", \"time\", \"hold\", \"personal\", \"specify\", \"capacity\", \"exercise\", \"right\", \"purpose\", \"include\", \"think\", \"determine\", \"account\", \"interest\", \"mean\", \"act\", \"capital\", \"gateway\", \"requirements\", \"completeness\", \"faithful\", \"part:-\", \"voidble\", \"actuary\", \"clth\", \"realised\", \"siding\", \"aid\", \"licences\", \"tangible\", \"furnishing\", \"interpretations\", \"tender\", \"asset(s\", \"savings\", \"fulfill\", \"decease\", \"agreed\", \"powers:-\", \"subsidise\", \"de\", \"line\", \"prudence\", \"investigation\", \"salesman\", \"decree\", \"hinder\", \"revert\", \"confidentiality\", \"fund\", \"trustee\", \"trust\", \"corporation\", \"money\", \"security\", \"include\", \"investment\", \"discretion\", \"property\", \"person\", \"time\", \"account\", \"clause\", \"deceased\", \"decision\", \"|\", \"provision\", \"interest\", \"debenture\", \"respect\", \"power\", \"charge\", \"accounting\", \"purpose\", \"asset\", \"law\", \"trustees\", \"settlement\", \"apply\", \"deed\", \"pay\", \"income\", \"capital\", \"appoint\", \"appointor\", \"exercise\", \"mean\", \"act\", \"company\", \"beneficiary\", \"distribution\", \"contemplate\", \"involvement\", \"fulfill\", \"operating\", \"line\", \"wise\", \"fence\", \"ompany\", \"endeavour\", \"significant\", \"central\", \"enforceable\", \"vii\", \"july\", \"submission\", \"mergeformat\", \"appointee\", \"registry\", \"pursue\", \"schedule:-\", \"rent-\", \"station\", \"view\", \"continued\", \"cultivate\", \"stationery\", \"railway\", \"element\", \"farm\", \"stranger\", \"|sign\", \"|print\", \"merger\", \"|\", \"bearer\", \"|signature\", \"delivered\", \"incapacitate\", \"|signed\", \"|execut\", \"proceeds\", \"registration\", \"guardian\", \"category\", \"respect\", \"clause\", \"decision\", \"email\", \"sole\", \"property\", \"duty\", \"require\", \"trust\", \"business\", \"specify\", \"indemnity\", \"proper\", \"provision\", \"trustee\", \"grant\", \"discretion\", \"vesting\", \"office\", \"fund\", \"director\", \"time\", \"payment\", \"settlement\", \"appointor\", \"income\", \"subject\", \"person\", \"act\", \"apply\", \"pay\", \"beneficiary\", \"money\", \"capital\", \"notice\", \"hold\", \"include\", \"company\", \"deed\", \"period\", \"exercise\", \"power\", \"mean\", \"account\", \"interest\", \"fulfill\", \"subheading\", \"trader\", \"storage\", \"healing\", \"necessitous\", \"interpretations\", \"eminent\", \"point\", \"sanction\", \"keeping\", \"admission\", \"tender\", \"maximise\", \"persecution\", \"quasi\", \"investigation\", \"whomsoever\", \"divert\", \"spendthrift\", \"nonexercise\", \"shorten\", \"franchises\", \"postage\", \"aid\", \"courier\", \"finding\", \"occupancy\", \"licences\", \"compel\", \"ambiguity\", \"7th\", \"moritz\", \"setting\", \"reward\", \"solicitors\", \"written\", \"le\", \"power\", \"bearer\", \"reference\", \"time\", \"trust\", \"discretion\", \"deed\", \"repayment\", \"settlement\", \"clause\", \"trustee\", \"include\", \"think\", \"right\", \"appointment\", \"exercise\", \"beneficiary\", \"contain\", \"body\", \"purpose\", \"primary\", \"person\", \"share\", \"income\", \"provision\", \"subject\", \"term\", \"fund\", \"capital\", \"payment\", \"law\", \"hold\", \"period\", \"net\", \"provide\", \"property\", \"determine\", \"interest\", \"mean\", \"act\", \"appointor\", \"company\", \"account\", \"money\", \"pay\", \"vii\", \"fulfill\", \"healing\", \"expediency\", \"interpretations\", \"licences\", \"stranger\", \"regulated\", \"aid\", \"fence\", \"trader\", \"outside\", \"tender\", \"3rd\", \"subdivider\", \"bar\", \"sickness\", \"seller\", \"poor\", \"investigation\", \"sanction\", \"liquor\", \"contracts\", \"hearing\", \"vests\", \"xii\", \"divert\", \"percentage\", \"necessitous\", \"cents\", \"stationery\", \"|settlor\", \"residuary\", \"farm\", \"xiv\", \"|\", \"|print\", \"viii\", \"exonerate\", \"running\", \"reformation\", \"|signature\", \"fund\", \"trust\", \"trustee\", \"livestock\", \"power\", \"capital\", \"income\", \"mergeformat\", \"company\", \"|authorised\", \"|name\", \"person\", \"clause\", \"officer\", \"share\", \"include\", \"class\", \"security\", \"interest\", \"director\", \"business\", \"apply\", \"discretion\", \"vesting\", \"pay\", \"hold\", \"follow\", \"time\", \"accounting\", \"provision\", \"deed\", \"tax\", \"beneficiary\", \"money\", \"purpose\", \"period\", \"act\", \"exercise\", \"property\", \"appointor\", \"firstmentioned\", \"asset(s\", \"reservoir\", \"introduce\", \"supervision\", \"siding\", \"compame\", \"couple\", \"investor\", \"decorating\", \"salesman\", \"part:-\", \"curtailment\", \"prospect\", \"percentage\", \"investing\", \"therewith\", \"qq\", \"5115\", \"investigation\", \"agricultural\", \"phase\", \"fulfill\", \"furtherance\", \"ofunsound\", \"conformity\", \"~$\", \"subsidise\", \"commerce\", \"licences\", \"development\", \"motor\", \"namely:-\", \"deeds\", \"deregister\", \"separate\", \"person\", \"letter\", \"company\", \"discretion\", \"l\", \"improve\", \"rebate\", \"trustee\", \"capital\", \"aforesaid\", \"share\", \"business\", \"personal\", \"term\", \"clause\", \"include\", \"provision\", \"power\", \"exchange\", \"trust\", \"hold\", \"contract\", \"description\", \"trustees\", \"security\", \"manner\", \"respect\", \"investment\", \"subject\", \"date\", \"beneficiary\", \"fund\", \"time\", \"money\", \"corporation\", \"benefit\", \"tax\", \"exercise\", \"income\", \"pay\", \"period\", \"act\", \"property\", \"account\", \"appointor\", \"deed\", \"law\", \"vii\", \"expediency\", \"fence\", \"farm\", \"reformation\", \"installation\", \"spendthrift\", \"renovation\", \"|execut\", \"resulting\", \"refugee\", \"stranger\", \"belief\", \"software\", \"running\", \"interpretations\", \"fulfill\", \"keeping\", \"contemplate\", \"|settlor\", \"|sign\", \"run\", \"vests\", \"injunctive\", \"ompany\", \"lessee\", \"horse\", \"xii\", \"2f\", \"pursue\", \"|\", \"|signature\", \"|authorised\", \"|appointor\", \"delivered\", \"mergeformat\", \"|power\", \"right\", \"delivery\", \"rebate\", \"corporation\", \"time\", \"denote\", \"appointment\", \"|signed\", \"fund\", \"disclose\", \"class\", \"corporate\", \"payable\", \"security\", \"provide\", \"vesting\", \"discretion\", \"person\", \"think\", \"include\", \"trust\", \"company\", \"power\", \"authority\", \"arise\", \"trustee\", \"investment\", \"hold\", \"deed\", \"payment\", \"money\", \"mean\", \"period\", \"purpose\", \"beneficiary\", \"term\", \"capital\", \"income\", \"exercise\", \"appointor\", \"clause\", \"pay\", \"property\", \"interest\", \"act\", \"share\", \"numeral\", \"|***comsettlorsign\", \"auction\", \"kayla\", \"itselfof\", \"solemn\", \"appointed\", \"illegality\", \"tony\", \"iiiaa\", \"holme\", \"g2\", \"church\", \"mawson\", \"depreciate\", \"|of\", \"ngos\", \"industry\", \"c?t1::,~~9\", \"closed\", \"compel\", \"highway\", \"tm\", \"avenue\", \"f(2\", \"18.lndemnity\", \"instant\", \"ti.mebeing\", \"subclause\", \"---------------------------------------------receipt\", \"duties\", \"injurious\", \"distributable\", \"indemnity\", \"income\", \"officeholders\", \"distribution\", \"participate\", \"proceeding\", \"guardian\", \"trust\", \"duty\", \"act\", \"money\", \"sa\", \"capital\", \"beneficiary\", \"director\", \"company\", \"charge\", \"share\", \"fund\", \"deed\", \"settlor\", \"distributor\", \"period\", \"set\", \"right\", \"bank\", \"mean\", \"law\", \"benefit\", \"appoint\", \"partnership\", \"trustee\", \"investment\", \"appointor\", \"discretion\", \"determination\", \"exercise\", \"pay\", \"time\", \"power\", \"person\", \"account\", \"include\", \"interest\", \"apply\", \"clause\", \"property\", \"custodians\", \"periods\", \"mixing\", \"thenceforward\", \"feasibility\", \"mutual\", \"numeral\", \"outgo\", \"occurrence\", \"cents\", \"aid\", \"residual\", \"gifts\", \"confidentiality\", \"brincat\", \"recompense\", \"tobi\", \"licences\", \"t1600\", \"unwilling\", \"holme\", \"procedures\", \"adhere\", \"software\", \"tender\", \"healing\", \"nt\", \"incom\", \"club\", \"wales\", \"lakes\", \"avenue\", \"juris\", \"distributable\", \"undistributed\", \"distributor\", \"apply\", \"set\", \"excepted\", \"trust\", \"operate\", \"provide\", \"legal\", \"capital\", \"property\", \"investment\", \"power\", \"vary\", \"security\", \"appoint\", \"income\", \"company\", \"law\", \"unit\", \"determination\", \"transfer\", \"deed\", \"account\", \"think\", \"appointor\", \"trustees\", \"trustee\", \"absolute\", \"beneficiary\", \"personal\", \"fund\", \"pay\", \"money\", \"clause\", \"act\", \"time\", \"person\", \"discretion\", \"include\", \"interest\", \"period\", \"exercise\", \"interpretations\", \"regulated\", \"tender\", \"aid\", \"examination\", \"rehabilitation\", \"retraining\", \"healing\", \"derivation\", \"licences\", \"refugee\", \"donations\", \"seller\", \"desirability\", \"consumption\", \"pursue\", \"buyer\", \"consents\", \"dispositive\", \"liquor\", \"imputation\", \"lilllhin\", \"trader\", \"occurrence\", \"reporting\", \"stationery\", \"unique\", \"correspondence\", \"is&ue\", \"recompense\", \"winjen\", \"power\", \"individual\", \"trust.doc\", \"fund\", \"trustee\", \"exemption\", \"successor\", \"trust\", \"appointor\", \"legal\", \"subject\", \"corporation\", \"notice\", \"company\", \"payment\", \"writing\", \"money\", \"le\", \"operate\", \"bearer\", \"appoint\", \"end\", \"financial\", \"set\", \"purpose\", \"director\", \"discretion\", \"time\", \"income\", \"include\", \"deed\", \"capital\", \"person\", \"nominate\", \"act\", \"period\", \"pay\", \"clause\", \"absolute\", \"tax\", \"beneficiary\", \"think\", \"property\", \"share\", \"apply\", \"interest\", \"law\", \"exercise\", \"instant\", \"basic\", \"moiety\", \"lilllhin\", \"e__.4c-\", \"hy9bligat\", \"undischarged\", \"licences\", \"buyer\", \"l3\", \"maximum\", \"wrapper\", \"percentage\", \"cti~ge\", \"howeverthat\", \"message\", \"insofar\", \"voidble\", \"-~~;~e\", \"int\", \"imputation\", \"refugee\", \"accelerate\", \"aid\", \"sanction\", \"parcel\", \"scheduleon\", \"investigation\", \"concurrence\", \"directs\", \"extant\", \"acceptable\", \"licence\", \"ascertain\", \"virtue\", \"expiry\", \"effect\", \"interpretation\", \"disqualify\", \"relation\", \"discretion\", \"section\", \"respect\", \"term\", \"forego\", \"fund\", \"rate\", \"transact\", \"administration\", \"power\", \"fit\", \"enjoyment\", \"accordance\", \"grandparent\", \"net\", \"secure\", \"director\", \"exclude\", \"provide\", \"trust\", \"person\", \"period\", \"company\", \"income\", \"share\", \"exercise\", \"clause\", \"benefit\", \"subject\", \"money\", \"law\", \"provision\", \"trustee\", \"time\", \"beneficiary\", \"capital\", \"pay\", \"deed\", \"act\", \"mean\", \"property\", \"include\", \"interest\", \"spurritt\", \"subheading\", \"molfetas\", \"prepaying\", \"pulteney\", \"apartment\", \"moritz\", \"corporeal\", \"enforce\", \"cablegram\", \"nonexercise\", \"anticipate\", \"observance\", \"income-\", \"robert\", \"impres\", \"telex\", \"ktb\", \"variations\", \"trusteetrustees\", \"committed\", \"applie\", \"associates\", \"discretions\", \"factor\", \"whereon\", \"reenact\", \"brokerage\", \"recitalc\", \"principal(s\", \"constituting\", \"supplemental\", \"envelope\", \"resettle\", \"forego\", \"disqualify\", \"manager\", \"office\", \"power\", \"eligible\", \"debt\", \"primary\", \"fund\", \"money\", \"relation\", \"selection\", \"notice\", \"action\", \"net\", \"trustee\", \"discretion\", \"purpose\", \"clause\", \"time\", \"income\", \"confer\", \"contain\", \"deed\", \"include\", \"person\", \"subject\", \"beneficiary\", \"trust\", \"provision\", \"property\", \"asset\", \"date\", \"interest\", \"think\", \"act\", \"share\", \"exercise\", \"company\", \"hold\", \"distribution\", \"pay\", \"account\", \"mean\", \"appointor\", \"jennifer\", \"exertion\", \"i~ntordlartge\", \"valley\", \"qq\", \"missing\", \"ro\", \"rmost\", \"lilllhin\", \"s346a(1\", \"pra\", \"blended\", \"concurrence\", \"~f\", \"-69\", \"tlelail\", \"s34qp,(1\", \"jun\", \"ph\", \"deregistration\", \"is&ue\", \"-12-\", \"winifred\", \"gi\", \"ian\", \"moiety\", \"\\\\xa3y\", \"log\", \"hy9bligat\", \"l3\", \"correspondence\", \"winjen\", \"lapse\", \"infant\", \"discretion\", \"power\", \"expiry\", \"time\", \"r\", \"office\", \"business\", \"fund\", \"company\", \"privilege\", \"intent\", \"law\", \"trust\", \"share\", \"director\", \"act\", \"person\", \"contract\", \"income\", \"clause\", \"sole\", \"date\", \"corporation\", \"capital\", \"trustee\", \"exercise\", \"include\", \"right\", \"respect\", \"absolute\", \"deed\", \"hold\", \"think\", \"security\", \"account\", \"appointor\", \"pay\", \"appoint\", \"beneficiary\", \"money\", \"property\", \"mean\", \"interest\"], \"Total\": [6319.0, 3675.0, 2360.0, 1971.0, 1688.0, 1344.0, 1285.0, 1255.0, 1184.0, 1003.0, 766.0, 763.0, 796.0, 722.0, 758.0, 708.0, 680.0, 647.0, 605.0, 608.0, 590.0, 569.0, 550.0, 477.0, 464.0, 437.0, 446.0, 420.0, 412.0, 420.0, 4.720535590596603, 1.8189770584926057, 8.651472348270879, 4.349463974089002, 51.0517432746069, 6.235811345472896, 5.31322268045626, 7.367876678254737, 4.967293449368164, 16.563167991736655, 284.20155636127987, 1.8220626272671698, 1.6832977490580336, 4.11170988633673, 10.776853012402663, 24.3721797761025, 1.7475995000518083, 1.6842358225180658, 1.8243180546944862, 4.942550832069597, 1.8713971214378864, 1.7954840621173986, 2.6603400899807146, 22.973657102458088, 4.073450877921068, 3.1457179063036174, 3.0519913491824804, 4.864641502801818, 6.702834208894475, 61.97150542933128, 12.076530070192604, 35.44962429544443, 12.866157838347485, 14.266781471180618, 6319.81330049568, 39.2235243700086, 28.383215494505468, 7.219721366168034, 138.21973563764203, 390.68744366853673, 268.86016420069325, 239.02672426107432, 134.94703342635444, 57.80751839745841, 135.45348495136668, 62.69425322583505, 369.8183356151785, 248.12029557937558, 102.14650694563153, 590.2166633744398, 412.17903146209414, 189.78474392001644, 101.0828719533599, 1344.8948653235605, 176.7975454639352, 708.533504409662, 3675.8615757896832, 262.6970465282021, 221.2612958473865, 1971.1221886344297, 1285.940638458025, 1003.5501466410082, 763.6866108061433, 608.2328942327664, 237.15450781542867, 2360.4663309528887, 569.1807592146448, 766.8110759280104, 758.0196435601065, 680.1007804895872, 1688.5451118423678, 1255.1521629511126, 437.9691016099637, 1184.968914830233, 722.7362004619495, 796.1099202521276, 605.5913648897136, 420.1079621952106, 647.9050126128866, 359.67613597078014, 405.1317868801221, 464.2231775748252, 550.1960167755402, 2.3770307565774043, 45.570304434208914, 6.13718870305308, 5.795123552461663, 4.06686338857215, 2.2083897973362516, 1.3290206940885945, 34.60075166953441, 5.058577616406743, 1.3073371223733263, 4.669919668435853, 7.2683026790675775, 2.2379759196871953, 4.541402654650917, 2.6445368098000084, 2.32813116664339, 1.3527931329368843, 2.241255363501614, 2.9750359172563194, 2.3441714670400495, 2.2028183216206267, 3.867685364494875, 1.6885405572671452, 1.403614137312247, 2.2125341109915957, 2.2515391872633357, 1.408791221160338, 1.3687425914618483, 1.3553692419059302, 4.234277269388315, 18.172843827384153, 187.92114114411422, 106.57632303829749, 6.684709060725749, 25.895744121478305, 28.777340909076383, 102.11302063600932, 357.21416903238196, 165.7772127252801, 32.39232573844705, 758.0196435601065, 647.9050126128866, 387.76637945148843, 405.1317868801221, 100.28146326769408, 550.1960167755402, 80.07379701085414, 28.190662410677994, 1003.5501466410082, 390.05246045435064, 1688.5451118423678, 6319.81330049568, 293.5633430041045, 3675.8615757896832, 796.1099202521276, 1255.1521629511126, 680.1007804895872, 312.84799093627885, 763.6866108061433, 369.5160753663228, 1971.1221886344297, 605.5913648897136, 113.81734963303305, 2360.4663309528887, 464.2231775748252, 420.1319397016177, 722.7362004619495, 446.41181793417593, 420.1079621952106, 1184.968914830233, 1285.940638458025, 1344.8948653235605, 590.2166633744398, 708.533504409662, 766.8110759280104, 569.1807592146448, 477.3261035177206, 2.2507701957860466, 10.762838298214357, 5.800119271547169, 2.203846418666737, 7.990447088272539, 3.0581898917934773, 1.3134502738365847, 3.819117267040961, 2.1236614904242335, 13.70849212828866, 1.227305760801255, 1.9887755614344378, 6.972945039881795, 4.749792354831578, 11.466912712192979, 5.360312207175277, 14.055868701442943, 1.3032016373920203, 4.559261944063644, 1.3410196464805848, 1.3405516151304042, 1.2878191594387376, 29.766545146274854, 2.80347835526375, 45.570304434208914, 1.3513981342229324, 19.635766704584945, 1.3081886616245588, 1.2365272126513573, 3.0391345298786425, 5.908344079872013, 17.809072872056422, 29.5036641599501, 359.67613597078014, 28.466622419888047, 1285.940638458025, 71.27262628112535, 45.07308675759605, 145.5153600343637, 42.25156894408107, 1184.968914830233, 374.14291367776417, 249.71207323521327, 328.8550138764397, 98.41368101032158, 796.1099202521276, 1971.1221886344297, 182.68645405723302, 763.6866108061433, 387.76637945148843, 349.355461791069, 1344.8948653235605, 1255.1521629511126, 708.533504409662, 252.27764676253344, 608.2328942327664, 121.05984198658, 123.78604640574281, 1688.5451118423678, 6319.81330049568, 367.1757350109187, 390.05246045435064, 3675.8615757896832, 569.1807592146448, 758.0196435601065, 766.8110759280104, 605.5913648897136, 464.2231775748252, 477.3261035177206, 209.61329987417642, 2360.4663309528887, 550.1960167755402, 437.9691016099637, 1003.5501466410082, 722.7362004619495, 647.9050126128866, 446.41181793417593, 1.63848860407432, 4.141825963774658, 3.2313155177009665, 4.297243010337191, 1.6225082395591532, 4.241165888450676, 10.441184537984764, 3.9543395130557224, 39.59719014129761, 1.7978070400487804, 16.9676663748303, 1.7212321565142727, 1.7800885440203023, 9.220231455158762, 28.650129877038193, 13.894878765905068, 2.4661033452576127, 2.405837321655737, 2.3586712027125465, 2.5149208650952635, 2.0432121813432675, 284.20155636127987, 8.38274528808684, 3.1457179063036174, 11.008952988280011, 12.844319175870126, 5.132899582803939, 1.8231311397509802, 1.3822840927621398, 5.666684287400219, 14.332072403094056, 38.38517487934721, 61.98479973471727, 18.09047315653259, 10.965349722710751, 29.244594077762827, 154.72471642575033, 80.24200514390114, 95.94607604743987, 49.26005319837895, 1255.1521629511126, 144.62093546927656, 51.845757465136074, 2360.4663309528887, 269.50199542753387, 1344.8948653235605, 3675.8615757896832, 175.37064774821917, 1285.940638458025, 268.6065863673616, 1971.1221886344297, 145.6074390471194, 56.210430840619324, 342.82681533825894, 708.533504409662, 349.355461791069, 605.5913648897136, 1688.5451118423678, 647.9050126128866, 420.1079621952106, 220.88561995662477, 796.1099202521276, 212.69568610541364, 374.14291367776417, 766.8110759280104, 1003.5501466410082, 680.1007804895872, 6319.81330049568, 758.0196435601065, 1184.968914830233, 763.6866108061433, 608.2328942327664, 359.67613597078014, 722.7362004619495, 477.3261035177206, 328.8550138764397, 569.1807592146448, 369.5160753663228, 464.2231775748252, 420.1319397016177, 590.2166633744398, 1.4930186141876425, 4.979765661809145, 2.391252894468591, 3.7024520708150814, 4.255727919193062, 10.89993121248683, 4.867024087378649, 4.005975890131566, 1.6241969901276188, 5.2323525818344, 1.7530809964911394, 1.667597869105634, 1.5925473910136954, 1.6106313961831449, 1.5125505340076137, 1.5401631454519829, 1.561022165800912, 7.887551948244277, 2.737397209455476, 1.5964644741475988, 1.6015220393872784, 2.591222372313913, 1.5210348003589425, 3.439637564433605, 1.5943566719104492, 2.652595488450488, 2.6717001004110306, 1.5949432102672627, 2.7784769630901294, 1.5556962511550785, 2.723091585755802, 2.7632361717660547, 3.8324691117665677, 41.46142312029114, 6.07075664135085, 368.9297435491398, 293.5633430041045, 156.18263227038426, 61.55374796955017, 19.79725693425962, 25.238079043335055, 1688.5451118423678, 29.10267102544583, 437.9691016099637, 27.133619802737158, 46.539270317113264, 6319.81330049568, 299.64229777364267, 196.8449178906959, 95.94607604743987, 90.40605000584668, 3675.8615757896832, 250.61527746810867, 608.2328942327664, 367.1757350109187, 1971.1221886344297, 680.1007804895872, 1255.1521629511126, 1344.8948653235605, 154.72471642575033, 1285.940638458025, 120.6419424937286, 114.07747221325258, 796.1099202521276, 647.9050126128866, 112.89774028317336, 249.71207323521327, 722.7362004619495, 349.355461791069, 605.5913648897136, 1184.968914830233, 569.1807592146448, 446.41181793417593, 369.8183356151785, 405.1317868801221, 477.3261035177206, 355.9345109264788, 2360.4663309528887, 758.0196435601065, 766.8110759280104, 763.6866108061433, 1003.5501466410082, 550.1960167755402, 590.2166633744398, 708.533504409662, 6.157106548514765, 4.862593414569523, 2.587045976435401, 7.202893725032096, 1.3442860177034293, 2.5149208650952635, 2.4661033452576127, 2.232108460498582, 4.001386239444605, 3.3212188175880053, 2.176304535494836, 1.4243265964614595, 108.26172945770513, 8.971475630628618, 3.779952137981066, 2.289758480676137, 250.13007576480132, 4.3348195778965755, 4.366009154836315, 1.3766911543588434, 3.254660511036598, 10.810210806218745, 2.4045009247914533, 1.5242067545095352, 446.41181793417593, 4.44479224533617, 1.4437222038777637, 2.3256351468577394, 24.736676549196005, 4.447760604118348, 47.62656704983535, 171.49159310194023, 9.662979648771081, 40.240544269022806, 2360.4663309528887, 145.5153600343637, 477.3261035177206, 766.8110759280104, 47.12649252750712, 1003.5501466410082, 722.7362004619495, 39.55242776027259, 80.07379701085414, 44.11677817840331, 1184.968914830233, 99.2126884717463, 3675.8615757896832, 263.1210333231556, 24.321213090356455, 590.2166633744398, 680.1007804895872, 279.6286224051843, 420.1319397016177, 293.5633430041045, 6319.81330049568, 1688.5451118423678, 550.1960167755402, 464.2231775748252, 162.94936750646315, 374.14291367776417, 1971.1221886344297, 99.47635691978817, 608.2328942327664, 605.5913648897136, 1344.8948653235605, 1255.1521629511126, 342.82681533825894, 1285.940638458025, 647.9050126128866, 708.533504409662, 796.1099202521276, 569.1807592146448, 763.6866108061433, 758.0196435601065, 420.1079621952106, 4.310881041614005, 10.965349722710751, 5.61183704415682, 1.5949704481759182, 1.7325068637408092, 2.4800232540789318, 4.241165888450676, 1.7188376633024063, 2.3740264807455373, 22.973657102458088, 1.5726894155291553, 7.367876678254737, 1.8410898607717407, 1.6108940172680977, 9.220231455158762, 8.651472348270879, 284.20155636127987, 4.11170988633673, 2.5003102082691218, 1.7981157244751904, 2.702988862553265, 1.6850113373955324, 1.6401547728757184, 1.63848860407432, 11.695769880687273, 1.6225082395591532, 4.297243010337191, 1.5408318806021775, 1.659786179798529, 3.8618104234491266, 8.263259050905827, 37.873404447995036, 2360.4663309528887, 18.3414542893785, 7.519202257696664, 102.15493149097173, 590.2166633744398, 80.24200514390114, 67.08336070269507, 145.56214938554405, 550.1960167755402, 420.1319397016177, 1184.968914830233, 88.20070054590141, 477.3261035177206, 263.1210333231556, 569.1807592146448, 3675.8615757896832, 250.13007576480132, 6319.81330049568, 387.76637945148843, 151.4684423635949, 1971.1221886344297, 145.6074390471194, 368.7682431991349, 766.8110759280104, 206.49594698334172, 279.6286224051843, 1003.5501466410082, 368.9297435491398, 722.7362004619495, 437.9691016099637, 680.1007804895872, 708.533504409662, 312.84799093627885, 796.1099202521276, 647.9050126128866, 1344.8948653235605, 355.9345109264788, 1255.1521629511126, 1688.5451118423678, 357.21416903238196, 1285.940638458025, 608.2328942327664, 758.0196435601065, 763.6866108061433, 390.05246045435064, 446.41181793417593, 605.5913648897136, 464.2231775748252, 2.2388549996776304, 3.885858852535735, 5.441953801210164, 6.157106548514765, 2.229561751166345, 3.8618104234491266, 1.2858304576498165, 3.779952137981066, 2.2825376535621, 1.3766911543588434, 20.31759034911287, 1.3759146262395479, 2.232108460498582, 2.4661033452576127, 1.242567285196862, 3.0931366875570023, 2.41623402814123, 24.736676549196005, 2.4030148438010692, 2.9317842054856307, 4.366009154836315, 2.112608913664615, 9.598950275403642, 2.321123767092672, 2.4045009247914533, 4.141825963774658, 2.3086845316824114, 2.176304535494836, 2.3230791999527605, 2.3586712027125465, 119.81789491559606, 21.644494948888685, 8.506709349557587, 464.2231775748252, 71.62321212932073, 7.742183702156151, 55.98631142869919, 1688.5451118423678, 123.72581681075867, 3675.8615757896832, 446.41181793417593, 1184.968914830233, 252.27764676253344, 108.26172945770513, 97.92795348652646, 1285.940638458025, 139.81218964288053, 49.26005319837895, 121.04559922685235, 57.73133964664242, 2360.4663309528887, 550.1960167755402, 6319.81330049568, 1971.1221886344297, 355.9345109264788, 766.8110759280104, 1003.5501466410082, 763.6866108061433, 1344.8948653235605, 590.2166633744398, 121.98375497410173, 387.76637945148843, 374.14291367776417, 367.1757350109187, 758.0196435601065, 569.1807592146448, 368.7682431991349, 250.13007576480132, 420.1319397016177, 796.1099202521276, 1255.1521629511126, 722.7362004619495, 647.9050126128866, 368.9297435491398, 605.5913648897136, 708.533504409662, 477.3261035177206, 437.9691016099637, 608.2328942327664, 4.447760604118348, 2.7882557905579595, 1.242567285196862, 2.9317842054856307, 3.8618104234491266, 2.142886659453774, 3.299377073242303, 3.9500831348080574, 1.3921210238318065, 3.0931366875570023, 2.4275308982010078, 1.3457217763157594, 3.3212188175880053, 3.254660511036598, 5.848532023806627, 1.4437222038777637, 2.2196029159906914, 1.2351249981991723, 1.3815540683094842, 1.3265639753652778, 22.81383404340479, 3.1826810941178376, 3.2993948481434394, 2.997320060448588, 4.001386239444605, 1.2692069164598505, 3.1887641035337966, 1.4772432298726146, 2.19753678214194, 17.275311618264325, 71.62321212932073, 420.1319397016177, 84.17025844426979, 210.28462682284464, 2360.4663309528887, 550.1960167755402, 111.34283134100876, 368.7682431991349, 387.76637945148843, 26.34694104041096, 3675.8615757896832, 55.98631142869919, 1688.5451118423678, 85.59064675824287, 6319.81330049568, 152.044001306011, 355.9345109264788, 608.2328942327664, 80.60070311603019, 349.355461791069, 766.8110759280104, 590.2166633744398, 168.3334697178693, 758.0196435601065, 1344.8948653235605, 796.1099202521276, 1184.968914830233, 1971.1221886344297, 763.6866108061433, 1003.5501466410082, 215.15059015372648, 390.05246045435064, 1285.940638458025, 647.9050126128866, 359.67613597078014, 286.6660993331088, 708.533504409662, 477.3261035177206, 369.5160753663228, 722.7362004619495, 605.5913648897136, 1255.1521629511126, 569.1807592146448, 680.1007804895872, 4.874837555931271, 4.001386239444605, 2.142886659453774, 1.3457217763157594, 2.150782539915753, 1.282515343561479, 11.60619506863861, 1.3480314567511336, 2.9317842054856307, 1.242567285196862, 17.93597179329752, 3.9500831348080574, 3.8618104234491266, 2.4275308982010078, 8.652576592399257, 1.4772432298726146, 12.207444781920787, 4.669919668435853, 2.451380696200192, 3.344686166512482, 3.0931366875570023, 3.254660511036598, 24.224472276352273, 14.584267403611982, 2.5231367856552844, 1.4682208195451731, 3.652484829134841, 4.44479224533617, 1.3265639753652778, 8.263259050905827, 106.46887901274869, 47.62656704983535, 42.71605869452559, 766.8110759280104, 20.54585162296139, 102.15493149097173, 42.97750746124238, 71.62321212932073, 121.04559922685235, 722.7362004619495, 100.4392868926535, 6319.81330049568, 1688.5451118423678, 355.9345109264788, 3675.8615757896832, 312.84799093627885, 168.3334697178693, 2360.4663309528887, 54.59776602386452, 390.05246045435064, 420.1079621952106, 550.1960167755402, 111.40642688490428, 1184.968914830233, 368.9297435491398, 412.17903146209414, 1255.1521629511126, 796.1099202521276, 369.8183356151785, 763.6866108061433, 608.2328942327664, 215.15059015372648, 437.9691016099637, 1344.8948653235605, 758.0196435601065, 359.67613597078014, 708.533504409662, 590.2166633744398, 1971.1221886344297, 680.1007804895872, 1003.5501466410082, 446.41181793417593, 1285.940638458025, 569.1807592146448, 647.9050126128866, 477.3261035177206, 1.2284131123895388, 2.7295255990759104, 1.2689394664924376, 2.1917324424491698, 1.1808258223638763, 1.2481585086337912, 1.3172789362861441, 1.190682357955661, 1.2131533143434865, 1.2444428664041423, 1.2594867587289837, 1.37586175496645, 1.2761817590393993, 1.2122703412259221, 1.2282669291667352, 2.1811717371447736, 1.3166023424367284, 9.318773875581487, 1.2728796657902945, 1.250812138119397, 1.2858832154369093, 1.2641996775805036, 1.2428017360849966, 1.294210913291452, 1.2894233797442534, 8.492145568069601, 1.279057043738577, 1.227305760801255, 5.252319443102381, 2.0052269198803443, 2.198385267287715, 4.6801625638555775, 3.1333956404833962, 9.45421546110686, 2360.4663309528887, 2.0707802115626777, 3675.8615757896832, 590.2166633744398, 91.85370035226016, 45.07308675759605, 708.533504409662, 6319.81330049568, 680.1007804895872, 78.05964402955644, 1971.1221886344297, 420.1079621952106, 80.07379701085414, 647.9050126128866, 369.8183356151785, 237.15450781542867, 206.49594698334172, 129.242670872461, 1184.968914830233, 605.5913648897136, 60.94408909282322, 796.1099202521276, 722.7362004619495, 367.1757350109187, 1344.8948653235605, 758.0196435601065, 328.8550138764397, 182.68645405723302, 1255.1521629511126, 355.9345109264788, 390.05246045435064, 1688.5451118423678, 477.3261035177206, 286.6660993331088, 357.21416903238196, 569.1807592146448, 763.6866108061433, 1285.940638458025, 766.8110759280104, 550.1960167755402, 387.76637945148843, 1003.5501466410082, 608.2328942327664, 437.9691016099637, 446.41181793417593, 1.5401631454519829, 2.0286721943726094, 1.456809893065024, 2.66695272461084, 1.1552901513270812, 2.074783073313928, 1.2202540885585622, 1.5125505340076137, 1.1500716355377671, 1.5210348003589425, 2.641593253094831, 1.2427025457647003, 3.2009986540539557, 2.7306652758253667, 1.2151660911824353, 3.8161428073236308, 1.1862790758390895, 3.5488858329422834, 1.1855546449040923, 4.3222311283050425, 1.200178063479883, 1.172777276302364, 1.1671811668231697, 4.559261944063644, 49.26005319837895, 1.1984451920484986, 2.7359235292136828, 1.2318114936298814, 1.2440240074614255, 3.8191894643337805, 15.196379724074605, 7.722394933021617, 5.633865572264222, 56.39291247418275, 17.32958924936696, 64.25488546028404, 8.718365430521638, 10.599227275950348, 149.1094244685022, 112.89774028317336, 1688.5451118423678, 293.5633430041045, 1285.940638458025, 90.40605000584668, 3675.8615757896832, 196.8449178906959, 182.68645405723302, 114.07747221325258, 62.65858207122556, 197.70602222767482, 252.27764676253344, 183.81612659576103, 708.533504409662, 6319.81330049568, 387.76637945148843, 204.46833701808643, 44.21000831577558, 122.27166356360034, 1184.968914830233, 342.82681533825894, 722.7362004619495, 1255.1521629511126, 166.0831446805581, 2360.4663309528887, 367.1757350109187, 1971.1221886344297, 269.50199542753387, 390.68744366853673, 412.17903146209414, 1344.8948653235605, 569.1807592146448, 590.2166633744398, 374.14291367776417, 766.8110759280104, 763.6866108061433, 605.5913648897136, 680.1007804895872, 796.1099202521276, 758.0196435601065, 608.2328942327664, 550.1960167755402, 647.9050126128866, 1003.5501466410082, 446.41181793417593, 1.5949704481759182, 1.6534835255480815, 10.965349722710751, 1.5982051184346304, 4.11170988633673, 1.5408318806021775, 1.8189770584926057, 1.7325068637408092, 1.6850113373955324, 1.8231311397509802, 1.659786179798529, 1.8243180546944862, 1.6108940172680977, 22.973657102458088, 284.20155636127987, 1.6225082395591532, 7.367876678254737, 1.63848860407432, 1.8220626272671698, 9.220231455158762, 1.6401547728757184, 1.8713971214378864, 1.7978070400487804, 1.7188376633024063, 1.7212321565142727, 11.695769880687273, 4.310881041614005, 4.241165888450676, 1.7219973416631762, 2.8795798788067346, 8.651472348270879, 18.3414542893785, 4.349463974089002, 94.43827010940228, 80.24200514390114, 3.695149349279877, 18.09047315653259, 1184.968914830233, 1971.1221886344297, 1688.5451118423678, 608.2328942327664, 6319.81330049568, 2360.4663309528887, 368.7682431991349, 3675.8615757896832, 477.3261035177206, 256.26511686163064, 647.9050126128866, 605.5913648897136, 1285.940638458025, 766.8110759280104, 1344.8948653235605, 1255.1521629511126, 390.05246045435064, 722.7362004619495, 680.1007804895872, 708.533504409662, 569.1807592146448, 1003.5501466410082, 796.1099202521276, 420.1319397016177, 763.6866108061433, 328.8550138764397, 758.0196435601065, 590.2166633744398, 368.9297435491398, 412.17903146209414, 550.1960167755402, 387.76637945148843, 5.4839802590670645, 7.722394933021617, 2.19753678214194, 15.196379724074605, 16.66162130549611, 9.322469142147396, 2.2207364617459016, 2.1322462095017296, 3.1887641035337966, 1.3246497209007384, 1.2922200784559017, 2.281072907617917, 2.7306652758253667, 3.715072333059574, 2.2777122815832893, 1.329567226652271, 2.7882557905579595, 4.559261944063644, 2.1883715434015256, 9.380395017621806, 7.723570569352716, 5.199767532988737, 1.2935088567310515, 5.441953801210164, 2.112670965937099, 4.476912245237995, 6.808794381322389, 3.2051583118095937, 5.357956022568786, 5.9270793623603915, 14.42606852250245, 6.944103413259501, 412.17903146209414, 387.76637945148843, 18.194137096315433, 766.8110759280104, 374.14291367776417, 159.508863128854, 114.07747221325258, 56.210430840619324, 51.845757465136074, 420.1319397016177, 3675.8615757896832, 106.46887901274869, 708.533504409662, 1971.1221886344297, 109.14785870116732, 176.7975454639352, 254.29266298024905, 477.3261035177206, 2360.4663309528887, 165.6391891883085, 108.26172945770513, 1184.968914830233, 215.15059015372648, 763.6866108061433, 249.71207323521327, 1285.940638458025, 368.9297435491398, 357.21416903238196, 6319.81330049568, 1344.8948653235605, 269.07659891926005, 605.5913648897136, 1688.5451118423678, 647.9050126128866, 268.6065863673616, 252.27764676253344, 367.1757350109187, 446.41181793417593, 1003.5501466410082, 758.0196435601065, 1255.1521629511126, 608.2328942327664, 590.2166633744398, 796.1099202521276, 722.7362004619495, 569.1807592146448, 680.1007804895872, 464.2231775748252, 2.695560261965741, 1.5242067545095352, 3.8618104234491266, 88.20070054590141, 1.3457217763157594, 71.62321212932073, 2.284518606975247, 8.906152888136099, 9.1522648270337, 1.2809948458923466, 47.36481939990195, 2.150782539915753, 3.1078221117747535, 8.320678016910774, 2.409254140157898, 3.4250759726401103, 1.2692069164598505, 1.502892674869858, 100.28146326769408, 4.001386239444605, 2.9317842054856307, 12.207444781920787, 3.254660511036598, 6.582315185318071, 1.4437222038777637, 15.44079886739282, 21.246891721847017, 9.662979648771081, 8.263259050905827, 2.369038231592431, 119.81789491559606, 21.43780156641903, 121.04559922685235, 250.13007576480132, 147.64811036229554, 40.240544269022806, 67.08336070269507, 3675.8615757896832, 42.135758257474976, 65.25632076497861, 46.66658643105255, 53.23563257910514, 77.62423824031454, 76.54749112803705, 206.49594698334172, 139.46116216182696, 1971.1221886344297, 85.59064675824287, 1285.940638458025, 590.2166633744398, 101.13677218053004, 796.1099202521276, 183.1426241191817, 6319.81330049568, 1688.5451118423678, 763.6866108061433, 420.1319397016177, 708.533504409662, 175.5984245172064, 359.67613597078014, 2360.4663309528887, 367.1757350109187, 1255.1521629511126, 647.9050126128866, 1344.8948653235605, 1184.968914830233, 368.9297435491398, 405.1317868801221, 1003.5501466410082, 369.8183356151785, 766.8110759280104, 722.7362004619495, 477.3261035177206, 569.1807592146448, 550.1960167755402, 605.5913648897136, 680.1007804895872, 608.2328942327664, 758.0196435601065, 1.5408318806021775, 1.5726894155291553, 1.4404933974599576, 10.965349722710751, 1.6401547728757184, 24.224472276352273, 4.11170988633673, 1.5982051184346304, 2.8795798788067346, 1.6108940172680977, 1.7981157244751904, 1.4941225230375386, 1.8291906547674492, 2.4045009247914533, 4.720535590596603, 12.207444781920787, 1.63848860407432, 2.008243367688741, 1.659786179798529, 4.349463974089002, 1.7325068637408092, 22.973657102458088, 1.5041602218111911, 1.1622722986047893, 2.611509908727643, 47.36481939990195, 2.1357851015284384, 1.6534835255480815, 1.8220626272671698, 1.7396449851171871, 2.451380696200192, 4.310881041614005, 17.777117997984814, 284.20155636127987, 4.297243010337191, 71.62321212932073, 250.13007576480132, 1971.1221886344297, 8.906152888136099, 1688.5451118423678, 189.87590682632748, 21.75622609257515, 590.2166633744398, 158.09565795232962, 55.98631142869919, 162.94936750646315, 44.11677817840331, 206.49594698334172, 446.41181793417593, 722.7362004619495, 261.44802511789516, 420.1319397016177, 6319.81330049568, 173.98511856253714, 477.3261035177206, 550.1960167755402, 3675.8615757896832, 99.2126884717463, 158.505119245895, 2360.4663309528887, 1255.1521629511126, 1184.968914830233, 1003.5501466410082, 647.9050126128866, 293.5633430041045, 680.1007804895872, 368.9297435491398, 763.6866108061433, 766.8110759280104, 708.533504409662, 605.5913648897136, 796.1099202521276, 1344.8948653235605, 1285.940638458025, 569.1807592146448, 420.1079621952106, 464.2231775748252, 368.7682431991349, 608.2328942327664, 758.0196435601065, 1.3586864432295553, 2.176304535494836, 2.229561751166345, 3.779952137981066, 7.953647826683011, 5.441953801210164, 1.3766911543588434, 2.1356297826843336, 3.885858852535735, 2.289758480676137, 7.872293272662334, 2.7082764309264507, 1.3822840927621398, 4.141825963774658, 6.157106548514765, 2.641593253094831, 1.4243265964614595, 2.3442374887097435, 2.22052731970205, 1.9243594658106167, 13.894878765905068, 2.276177952418088, 5.666684287400219, 16.9676663748303, 2.7478959890586503, 1.200178063479883, 2.3230791999527605, 9.598950275403642, 2.3086845316824114, 2.1357851015284384, 20.819473385830197, 3.841952492954411, 10.441184537984764, 10.945231125240158, 10.679312320691494, 1344.8948653235605, 268.6065863673616, 51.845757465136074, 21.644494948888685, 39.59719014129761, 254.29266298024905, 121.98375497410173, 102.27951538623665, 112.89774028317336, 1285.940638458025, 1971.1221886344297, 252.27764676253344, 708.533504409662, 237.15450781542867, 180.31659023538987, 342.82681533825894, 374.14291367776417, 3675.8615757896832, 446.41181793417593, 6319.81330049568, 299.64229777364267, 437.9691016099637, 464.2231775748252, 1184.968914830233, 2360.4663309528887, 175.37064774821917, 758.0196435601065, 722.7362004619495, 286.6660993331088, 605.5913648897136, 359.67613597078014, 1255.1521629511126, 229.7855746605666, 766.8110759280104, 763.6866108061433, 1688.5451118423678, 569.1807592146448, 550.1960167755402, 796.1099202521276, 1003.5501466410082, 680.1007804895872, 412.17903146209414, 390.05246045435064, 647.9050126128866, 608.2328942327664, 3.779952137981066, 1.2351249981991723, 2.1356297826843336, 2.46363024713686, 1.3442860177034293, 1.3822840927621398, 1.386632375481073, 1.1646617190136292, 3.885858852535735, 1.2243600598294426, 2.289758480676137, 2.8226246642692114, 13.70849212828866, 1.2286005497011927, 2.425820425223957, 1.3294396174020835, 3.7790413171310586, 2.232108460498582, 2.41623402814123, 1.8994570992762212, 2.0659620992101293, 1.1953483315424562, 1.2625641898808935, 2.405837321655737, 2.321123767092672, 2.176304535494836, 1.2566793353684058, 1.223563812807088, 1.1614207876837117, 1.2854922296789015, 12.799355230687937, 9.598950275403642, 6.157106548514765, 11.494850105741993, 12.122456078323813, 4.141825963774658, 139.81218964288053, 154.72471642575033, 3675.8615757896832, 38.26223520436794, 108.26172945770513, 1971.1221886344297, 766.8110759280104, 269.07659891926005, 81.63365848947579, 1344.8948653235605, 15.4934280814534, 250.13007576480132, 268.86016420069325, 261.44802511789516, 99.47635691978817, 121.98375497410173, 6319.81330049568, 2360.4663309528887, 708.533504409662, 165.6391891883085, 349.355461791069, 106.46887901274869, 387.76637945148843, 1003.5501466410082, 1285.940638458025, 1688.5451118423678, 256.26511686163064, 286.6660993331088, 269.50199542753387, 608.2328942327664, 368.7682431991349, 758.0196435601065, 605.5913648897136, 1184.968914830233, 367.1757350109187, 374.14291367776417, 1255.1521629511126, 405.1317868801221, 763.6866108061433, 550.1960167755402, 446.41181793417593, 590.2166633744398, 680.1007804895872, 796.1099202521276, 420.1079621952106, 569.1807592146448, 722.7362004619495, 464.2231775748252, 477.3261035177206, 647.9050126128866, 1.3258283618101239, 5.372503506756878, 2.244630187838541, 1.3779844653823516, 1.1817445744228334, 1.2307218287176547, 24.414421670888927, 1.1887648300226037, 1.3063639429116403, 1.3933232900672972, 1.1953483315424562, 1.333756982305359, 1.2757842380097777, 3.651277297159393, 1.264076957027223, 3.375715618251296, 1.287697869607734, 3.1394631229642602, 3.745840106218892, 1.3142081205679546, 1.1614207876837117, 1.2861503981594191, 11.857481449464917, 3.188223273722526, 1.3493569923060926, 8.718365430521638, 2.008243367688741, 2.220841322448999, 1.3342473963070327, 1.3560847693520008, 4.0377820913400875, 34.489365778195264, 24.861368244795916, 49.26005319837895, 120.6419424937286, 151.4684423635949, 139.81218964288053, 367.1757350109187, 766.8110759280104, 149.1094244685022, 252.27764676253344, 605.5913648897136, 708.533504409662, 256.26511686163064, 20.245532374928885, 38.26223520436794, 79.43197581116719, 412.17903146209414, 477.3261035177206, 1344.8948653235605, 207.50084167636072, 342.82681533825894, 6319.81330049568, 114.04069134998701, 249.71207323521327, 590.2166633744398, 3675.8615757896832, 763.6866108061433, 446.41181793417593, 374.14291367776417, 722.7362004619495, 1003.5501466410082, 2360.4663309528887, 758.0196435601065, 608.2328942327664, 1688.5451118423678, 355.9345109264788, 1184.968914830233, 1285.940638458025, 1971.1221886344297, 1255.1521629511126, 569.1807592146448, 647.9050126128866, 796.1099202521276, 680.1007804895872, 420.1079621952106, 550.1960167755402, 4.6907367021620745, 1.221060263241815, 8.492145568069601, 1.2354688675978127, 1.2393204482665197, 1.2495872247794748, 1.2351679299528453, 1.2641996775805036, 1.2855934596116025, 1.2444428664041423, 1.2758078826913202, 1.341270126613344, 1.2365272126513573, 1.2650040577809658, 1.1851373482204706, 1.2878191594387376, 1.2458335433111802, 1.1808258223638763, 1.2181477908784062, 1.2594867587289837, 1.2291144682301844, 1.2356945334748821, 1.173984151248048, 2.7295255990759104, 2.1811717371447736, 1.2481585086337912, 1.255523863049687, 1.2804642086305895, 2.1547818816305817, 1.2288333882466436, 4.6801625638555775, 2.0052269198803443, 9.318773875581487, 3.1333956404833962, 5.427406286142584, 293.5633430041045, 3675.8615757896832, 722.7362004619495, 2.1459019596407933, 9.45421546110686, 10.840612559213428, 1971.1221886344297, 45.570304434208914, 1285.940638458025, 252.27764676253344, 6319.81330049568, 766.8110759280104, 387.76637945148843, 437.9691016099637, 1184.968914830233, 342.82681533825894, 647.9050126128866, 2360.4663309528887, 154.72471642575033, 286.6660993331088, 680.1007804895872, 269.07659891926005, 550.1960167755402, 1255.1521629511126, 708.533504409662, 412.17903146209414, 254.29266298024905, 590.2166633744398, 605.5913648897136, 1344.8948653235605, 420.1079621952106, 796.1099202521276, 1688.5451118423678, 608.2328942327664, 763.6866108061433, 569.1807592146448, 758.0196435601065, 1003.5501466410082, 390.68744366853673, 2.641593253094831, 1.9205638103439382, 1.9789906979927194, 1.2427025457647003, 1.1862790758390895, 1.2398052588102604, 2.7478959890586503, 1.3097198480160028, 7.715245280904403, 1.172777276302364, 1.3367031859528355, 1.999846566807096, 1.280750496443454, 1.2660538801655388, 2.7295255990759104, 1.223563812807088, 1.2441357815905723, 1.2323655150798232, 1.2373120272945215, 1.2358079019204844, 2.0378725994284665, 1.2945548514702774, 2.2810992651869353, 1.2776333298555973, 1.2243600598294426, 2.1447466812448672, 2.0614807019373806, 2.8733667306610218, 2.9222169654058234, 5.252319443102381, 9.318773875581487, 8.492145568069601, 3.2452300496261213, 4.3222311283050425, 5.90530594616775, 19.934645811424833, 98.41368101032158, 121.05984198658, 156.18263227038426, 32.59227794143741, 182.68645405723302, 17.32958924936696, 1285.940638458025, 412.17903146209414, 766.8110759280104, 95.94607604743987, 80.60070311603019, 73.81580676946011, 65.25020846757242, 118.47008008304635, 49.26005319837895, 50.473607348032665, 44.580287526985096, 608.2328942327664, 3675.8615757896832, 183.81612659576103, 100.12471182397745, 2360.4663309528887, 111.40642688490428, 374.14291367776417, 328.8550138764397, 237.15450781542867, 1184.968914830233, 420.1319397016177, 420.1079621952106, 1344.8948653235605, 590.2166633744398, 605.5913648897136, 647.9050126128866, 437.9691016099637, 254.29266298024905, 367.1757350109187, 6319.81330049568, 1971.1221886344297, 763.6866108061433, 252.27764676253344, 1688.5451118423678, 758.0196435601065, 446.41181793417593, 708.533504409662, 550.1960167755402, 722.7362004619495, 390.68744366853673, 477.3261035177206, 1255.1521629511126, 1003.5501466410082, 796.1099202521276, 680.1007804895872, 1.2372794660470807, 1.2470014027034326, 1.2507248838950207, 1.2641523002222999, 1.2625641898808935, 1.278422856812753, 1.2604891591010523, 1.2883437600381997, 1.2566793353684058, 1.1500716355377671, 1.3061856194711758, 1.1646617190136292, 1.2800885350873088, 1.1887648300226037, 1.3483694752799589, 1.2765423623153551, 1.1552901513270812, 1.2949304836799143, 1.1671811668231697, 1.1614207876837117, 1.2504898432256621, 1.1499206711026295, 1.3099698452812292, 1.1855546449040923, 1.2914184622188618, 1.2854922296789015, 1.1895814480759652, 1.3578386885252083, 1.172777276302364, 1.3623601825211105, 1.3195445991062964, 1.3350677592332723, 1.3509529726169296, 1.2986115179285709, 1.3960321062253833, 1.3476938731870927, 1.3298139982589832, 2360.4663309528887, 1285.940638458025, 252.18593769295197, 1688.5451118423678, 6319.81330049568, 3675.8615757896832, 176.7975454639352, 1971.1221886344297, 605.5913648897136, 1344.8948653235605, 477.3261035177206, 1003.5501466410082, 1255.1521629511126, 412.17903146209414, 328.8550138764397, 209.61329987417642, 766.8110759280104, 722.7362004619495, 1184.968914830233, 569.1807592146448, 437.9691016099637, 284.20155636127987, 420.1079621952106, 647.9050126128866, 175.37064774821917, 154.72471642575033, 12.799355230687937, 286.6660993331088, 359.67613597078014, 367.1757350109187, 268.86016420069325, 368.7682431991349, 590.2166633744398, 758.0196435601065, 763.6866108061433, 390.05246045435064, 708.533504409662, 796.1099202521276, 680.1007804895872, 1.1499206711026295, 1.1671811668231697, 1.1500716355377671, 1.206445415273794, 1.2344920988328452, 1.2323655150798232, 1.2945548514702774, 1.2440240074614255, 1.172777276302364, 1.1953483315424562, 1.2335692742294746, 1.1895814480759652, 1.223563812807088, 1.1646617190136292, 1.1817445744228334, 1.1552901513270812, 1.2290611391831976, 1.1862790758390895, 1.3061856194711758, 1.225763702788162, 1.2735832387962587, 1.2566793353684058, 1.277416896588326, 1.1614207876837117, 1.2470014027034326, 1.1919528143733273, 1.2202540885585622, 1.2150767271608807, 1.2318114936298814, 1.2402551874185348, 2.7359235292136828, 1971.1221886344297, 2.641593253094831, 2.0528241889706997, 3675.8615757896832, 182.68645405723302, 49.26005319837895, 766.8110759280104, 249.71207323521327, 387.76637945148843, 34.40784653925594, 252.27764676253344, 237.15450781542867, 169.7461517747517, 1688.5451118423678, 374.14291367776417, 2360.4663309528887, 24.861368244795916, 1344.8948653235605, 722.7362004619495, 252.18593769295197, 1184.968914830233, 605.5913648897136, 180.31659023538987, 405.1317868801221, 569.1807592146448, 390.05246045435064, 268.6065863673616, 263.1210333231556, 608.2328942327664, 121.98375497410173, 117.30005388627382, 796.1099202521276, 368.9297435491398, 590.2166633744398, 1255.1521629511126, 420.1079621952106, 6319.81330049568, 1285.940638458025, 708.533504409662, 763.6866108061433, 647.9050126128866, 1003.5501466410082, 758.0196435601065, 412.17903146209414, 477.3261035177206, 437.9691016099637, 3.2051583118095937, 7.1118354427628345, 1.2827058701327192, 2.325831417993186, 1.3335575729974372, 1.3427655577685411, 2.284518606975247, 1.3735309826338116, 1.3513091637146017, 1.2765423623153551, 3.439637564433605, 1.3496734727490882, 3.0097319186212563, 2.2207364617459016, 1.2809948458923466, 1.4067635333776543, 1.3097198480160028, 40.240544269022806, 1.2369744000559193, 1.3229531973595792, 2.4285255945458757, 1.276676122681051, 106.46887901274869, 5.221645898469563, 7.722394933021617, 1.3623229793983027, 1.4232270645931264, 1.2372794660470807, 1.348959223501383, 4.476912245237995, 14.403790250140533, 139.80213730297012, 167.11993303297774, 5.02227244833713, 22.72395392120969, 144.62093546927656, 15.196379724074605, 100.12471182397745, 65.25020846757242, 708.533504409662, 9.934163487194226, 120.6419424937286, 95.94607604743987, 183.81612659576103, 34.40784653925594, 196.8449178906959, 62.65858207122556, 550.1960167755402, 237.15450781542867, 114.04069134998701, 464.2231775748252, 212.69568610541364, 121.98375497410173, 3675.8615757896832, 34.86985605674237, 608.2328942327664, 114.07747221325258, 359.67613597078014, 182.68645405723302, 605.5913648897136, 647.9050126128866, 1688.5451118423678, 374.14291367776417, 1184.968914830233, 1344.8948653235605, 2360.4663309528887, 6319.81330049568, 722.7362004619495, 758.0196435601065, 1285.940638458025, 1003.5501466410082, 590.2166633744398, 1255.1521629511126, 1971.1221886344297, 569.1807592146448, 766.8110759280104, 763.6866108061433, 796.1099202521276, 680.1007804895872, 342.82681533825894, 367.1757350109187, 477.3261035177206, 420.1079621952106, 387.76637945148843, 446.41181793417593, 1.5982051184346304, 1.250126075968357, 1.1967825817047673, 1.6108940172680977, 1.246660048238986, 1.2369744000559193, 1.2398052588102604, 1.2074028098092684, 1.181345554461191, 1.1909021759314355, 1.278088598434048, 1.185251971499371, 1.2468981687434246, 1.2859986690698533, 1.2624103776225282, 1.5408318806021775, 1.1836989587569824, 1.2083171500976146, 1.237293337483106, 1.210317246433313, 1.3098222479957828, 1.2613796145942866, 1.1499206711026295, 1.1646617190136292, 1.236738940517247, 1.2547844970626565, 1.2771189248755057, 1.2777374183412296, 1.248167401376066, 1.2743019316650608, 1.320353887804481, 1.5949704481759182, 1.6850113373955324, 1.3377362766804843, 1.5726894155291553, 284.20155636127987, 1.659786179798529, 11.695769880687273, 1.3029455494653683, 1344.8948653235605, 608.2328942327664, 3675.8615757896832, 6319.81330049568, 722.7362004619495, 1688.5451118423678, 94.43827010940228, 1971.1221886344297, 2360.4663309528887, 45.570304434208914, 1285.940638458025, 605.5913648897136, 387.76637945148843, 1255.1521629511126, 328.8550138764397, 209.61329987417642, 9.220231455158762, 169.7461517747517, 100.12471182397745, 766.8110759280104, 796.1099202521276, 390.68744366853673, 437.9691016099637, 763.6866108061433, 254.29266298024905, 1184.968914830233, 235.39816013657983, 390.05246045435064, 1003.5501466410082, 647.9050126128866, 412.17903146209414, 680.1007804895872, 420.1319397016177, 420.1079621952106, 590.2166633744398, 569.1807592146448, 550.1960167755402, 708.533504409662, 758.0196435601065, 2.065003841378245, 2.2022296229533542, 1.278088598434048, 1.2497617573141746, 1.2544717075124345, 1.2613796145942866, 1.329962379459904, 1.291069847944072, 4.06686338857215, 2.2125341109915957, 1.333706480302707, 4.854482519624242, 1.2954310980353454, 3.0703273074073594, 2.2379759196871953, 1.2859986690698533, 1.3214302695306281, 1.2791410034243023, 2.3848112781809534, 1.3315722160351797, 1.3290206940885945, 1.425570470081698, 1.2588017893345567, 1.3526002978732405, 1.3098222479957828, 1.2875012526665777, 5.427406286142584, 1.2547844970626565, 1.3268888835613937, 1.3727054008733977, 2.412944754900629, 10.24739844612079, 7.990447088272539, 9.323462823248445, 45.570304434208914, 3.8153236901005827, 10.280291175888483, 10.840612559213428, 34.60075166953441, 5.058577616406743, 387.76637945148843, 71.27262628112535, 8.383180097387653, 10.645455384066913, 1971.1221886344297, 722.7362004619495, 3675.8615757896832, 5.800119271547169, 1688.5451118423678, 100.12471182397745, 5.631663234487457, 48.83699878759217, 6319.81330049568, 420.1079621952106, 2360.4663309528887, 252.27764676253344, 32.23083474068863, 763.6866108061433, 420.1319397016177, 608.2328942327664, 1344.8948653235605, 796.1099202521276, 708.533504409662, 269.07659891926005, 369.5160753663228, 106.57632303829749, 368.9297435491398, 160.8428497801864, 249.71207323521327, 268.86016420069325, 766.8110759280104, 286.6660993331088, 1285.940638458025, 1003.5501466410082, 1255.1521629511126, 1184.968914830233, 680.1007804895872, 390.05246045435064, 647.9050126128866, 569.1807592146448, 355.9345109264788, 349.355461791069, 550.1960167755402, 590.2166633744398, 605.5913648897136, 758.0196435601065, 1.2362472320145101, 1.2405187353042306, 1.2358079019204844, 1.3029455494653683, 1.1552901513270812, 1.2470014027034326, 1.1500716355377671, 1.2027775649234933, 1.2083171500976146, 1.2442580290063223, 6.272573754704499, 1.1817445744228334, 1.1909021759314355, 1.173984151248048, 1.2042631557009442, 1.1646617190136292, 2.641593253094831, 1.2364174255484761, 1.2153183997979609, 1.262080110424003, 1.8994570992762212, 1.1671811668231697, 1.3320543357321128, 1.2392951011718172, 2.7295255990759104, 1.2074028098092684, 1.172777276302364, 1.2163552988810202, 1.2650040577809658, 1.3007316160530629, 19.934645811424833, 3.7473536558058984, 2.234337785119108, 18.057731005474334, 27.38452114711061, 15.196379724074605, 49.48147126072578, 49.26005319837895, 39.00745823444435, 349.355461791069, 38.38517487934721, 65.25020846757242, 12.324566995912928, 45.07308675759605, 42.775242274524224, 9.153739502554675, 109.03289840395134, 374.14291367776417, 46.60221914696532, 53.23563257910514, 268.86016420069325, 569.1807592146448, 390.68744366853673, 605.5913648897136, 111.9113000285157, 59.89471536536912, 119.6831942293426, 106.46887901274869, 168.3334697178693, 249.71207323521327, 367.1757350109187, 32.67593914394067, 3675.8615757896832, 80.60070311603019, 1184.968914830233, 1971.1221886344297, 590.2166633744398, 182.68645405723302, 1688.5451118423678, 342.82681533825894, 1255.1521629511126, 269.07659891926005, 6319.81330049568, 1285.940638458025, 708.533504409662, 368.9297435491398, 299.64229777364267, 437.9691016099637, 1344.8948653235605, 763.6866108061433, 2360.4663309528887, 1003.5501466410082, 758.0196435601065, 237.15450781542867, 355.9345109264788, 420.1079621952106, 680.1007804895872, 477.3261035177206, 796.1099202521276, 722.7362004619495, 608.2328942327664, 766.8110759280104, 647.9050126128866, 464.2231775748252, 1.2074028098092684, 1.181345554461191, 1.1909021759314355, 1.258792532851167, 1.2092501529363167, 1.2670101511467011, 1.1967825817047673, 1.2831719868419689, 1.3268769336280701, 1.1836989587569824, 1.185251971499371, 1.2899409180778634, 1.2358079019204844, 1.210317246433313, 1.270559426081438, 1.3024011100935096, 1.2571989976878837, 1.236738940517247, 1.265639575941831, 1.2405187353042306, 1.2660538801655388, 1.262080110424003, 1.2830502093106684, 1.280750496443454, 1.2536325851023535, 1.3137431794953027, 1.2803128537545276, 1.2918888947236835, 1.2873384864522903, 1.3019383920597043, 3.8352594668766424, 2.1111957700100414, 2.1830656136047915, 605.5913648897136, 2.7478959890586503, 342.82681533825894, 27.38452114711061, 1344.8948653235605, 1285.940638458025, 374.14291367776417, 102.27951538623665, 14.42606852250245, 708.533504409662, 2360.4663309528887, 29.244594077762827, 299.64229777364267, 139.80213730297012, 3675.8615757896832, 390.68744366853673, 758.0196435601065, 114.07747221325258, 43.01752017104689, 1971.1221886344297, 1184.968914830233, 608.2328942327664, 766.8110759280104, 81.34133796147967, 1688.5451118423678, 121.05984198658, 166.0831446805581, 328.8550138764397, 6319.81330049568, 763.6866108061433, 369.8183356151785, 722.7362004619495, 368.9297435491398, 207.50084167636072, 249.71207323521327, 412.17903146209414, 367.1757350109187, 437.9691016099637, 405.1317868801221, 1255.1521629511126, 1003.5501466410082, 369.5160753663228, 387.76637945148843, 680.1007804895872, 796.1099202521276, 569.1807592146448, 647.9050126128866, 590.2166633744398, 1.2547844970626565, 1.2771189248755057, 1.1984451920484986, 1.291069847944072, 1.3073371223733263, 1.1646617190136292, 1.1499206711026295, 1.1614207876837117, 1.1622722986047893, 2.2022296229533542, 1.2942832905855426, 1.2362472320145101, 1.1919528143733273, 1.1953483315424562, 1.2613796145942866, 1.1500716355377671, 1.3216546278464565, 1.2243600598294426, 1.275943165351237, 1.3202046215313898, 1.3729237084972885, 1.3050542297916927, 1.2954310980353454, 1.3395572308167532, 1.2867474712888836, 1.223563812807088, 1.2743019316650608, 1.335487846723194, 1.1552901513270812, 1.279374405756794, 5.800119271547169, 5.427406286142584, 4.06686338857215, 14.055868701442943, 49.26005319837895, 2.412944754900629, 71.27262628112535, 293.5633430041045, 44.580287526985096, 4.234277269388315, 368.9297435491398, 10.599227275950348, 9.323462823248445, 722.7362004619495, 82.82300031424596, 80.60070311603019, 647.9050126128866, 2.80347835526375, 1971.1221886344297, 6319.81330049568, 167.11993303297774, 120.6419424937286, 254.29266298024905, 5.631663234487457, 182.68645405723302, 3675.8615757896832, 1344.8948653235605, 1184.968914830233, 367.1757350109187, 387.76637945148843, 269.07659891926005, 173.98511856253714, 252.18593769295197, 299.64229777364267, 252.27764676253344, 2360.4663309528887, 112.89774028317336, 1688.5451118423678, 1003.5501466410082, 766.8110759280104, 758.0196435601065, 1285.940638458025, 1255.1521629511126, 796.1099202521276, 605.5913648897136, 708.533504409662, 412.17903146209414, 590.2166633744398, 608.2328942327664, 763.6866108061433, 680.1007804895872, 550.1960167755402, 477.3261035177206, 446.41181793417593, 569.1807592146448, 1.2544717075124345, 1.3338256640943285, 1.2743019316650608, 1.2777374183412296, 2.26118706509363, 1.2981167161951341, 1.3202046215313898, 1.3531384376182416, 1.2613796145942866, 1.2547844970626565, 1.1500716355377671, 1.2950507933514193, 1.2859986690698533, 1.2791410034243023, 1.3526002978732405, 1.3106620244114213, 1.3050542297916927, 1.2199326651084388, 1.36887655911732, 1.2875012526665777, 1.3405516151304042, 1.3418927574559247, 1.2954310980353454, 1.2771189248755057, 1.1919528143733273, 1.3073371223733263, 1.2996807886164075, 1.1552901513270812, 1.2588017893345567, 1.1836989587569824, 2.459500222334894, 1.3273171827404733, 2.4432920265704876, 4.359741614778525, 2.284518606975247, 3.1985025228145907, 359.67613597078014, 2.635598712206481, 722.7362004619495, 9.677288569835612, 22.540762100617695, 57.80751839745841, 387.76637945148843, 1285.940638458025, 1971.1221886344297, 249.71207323521327, 369.8183356151785, 2360.4663309528887, 50.473607348032665, 286.6660993331088, 1344.8948653235605, 80.0221701839396, 6319.81330049568, 608.2328942327664, 1184.968914830233, 763.6866108061433, 367.1757350109187, 134.94703342635444, 149.1094244685022, 1688.5451118423678, 708.533504409662, 159.508863128854, 590.2166633744398, 766.8110759280104, 139.80213730297012, 3675.8615757896832, 349.355461791069, 252.18593769295197, 1003.5501466410082, 796.1099202521276, 605.5913648897136, 420.1079621952106, 420.1319397016177, 390.05246045435064, 1255.1521629511126, 437.9691016099637, 647.9050126128866, 758.0196435601065, 569.1807592146448, 1.242567285196862, 1.2692069164598505, 1.282515343561479, 1.3480314567511336, 1.2187391260521354, 1.173984151248048, 1.3265639753652778, 1.1500716355377671, 1.2413652344661381, 1.2571989976878837, 1.181345554461191, 1.2074028098092684, 1.2083171500976146, 1.2092501529363167, 1.210317246433313, 1.2163552988810202, 1.190682357955661, 1.2405187353042306, 1.248167401376066, 1.2580809524808874, 1.2131533143434865, 1.265639575941831, 1.1552901513270812, 1.1836989587569824, 1.3325509008418175, 1.2392951011718172, 1.185251971499371, 1.1499206711026295, 1.1967825817047673, 1.2354688675978127, 1.2458335433111802, 1.63848860407432, 2.7882557905579595, 4.874837555931271, 1.3586864432295553, 1.3019383920597043, 1.5949704481759182, 1.5408318806021775, 420.1319397016177, 3675.8615757896832, 647.9050126128866, 2360.4663309528887, 368.7682431991349, 722.7362004619495, 2.150782539915753, 1184.968914830233, 590.2166633744398, 121.04559922685235, 796.1099202521276, 464.2231775748252, 6319.81330049568, 284.20155636127987, 1971.1221886344297, 412.17903146209414, 446.41181793417593, 71.62321212932073, 368.9297435491398, 1688.5451118423678, 708.533504409662, 369.8183356151785, 763.6866108061433, 550.1960167755402, 766.8110759280104, 312.84799093627885, 256.26511686163064, 106.46887901274869, 608.2328942327664, 569.1807592146448, 605.5913648897136, 1285.940638458025, 387.76637945148843, 1344.8948653235605, 1003.5501466410082, 1255.1521629511126, 680.1007804895872, 758.0196435601065, 1.264076957027223, 1.3142081205679546, 1.3124242319126662, 1.287697869607734, 1.3646668175678776, 1.4089902963912924, 1.403470849978805, 1.3229404174278814, 1.303262787130257, 1.3424997275890647, 1.333003157846786, 1.308642294058766, 1.3856085585213227, 1.2879098711197063, 1.2875496956153907, 1.3385776196803565, 1.3585021745843775, 1.3376338014216074, 1.3955157121984703, 1.3922869776994031, 1.3896287330859445, 1.3779844653823516, 1.3872322164318047, 2.220156471512099, 1.3232629352780356, 1.3929710128450663, 1.2861503981594191, 1.333756982305359, 1.3285607288028691, 1.3650919758123472, 24.861368244795916, 34.489365778195264, 3.745840106218892, 16.30934598903439, 64.25488546028404, 28.82993923287515, 1255.1521629511126, 24.414421670888927, 7.968306401362884, 6319.81330049568, 1971.1221886344297, 11.831203456704525, 32.40494259221518, 390.68744366853673, 299.64229777364267, 120.6419424937286, 766.8110759280104, 1285.940638458025, 680.1007804895872, 176.7975454639352, 73.81580676946011, 3675.8615757896832, 1344.8948653235605, 374.14291367776417, 32.39057367421083, 30.460219357741032, 25.147091000516458, 763.6866108061433, 708.533504409662, 114.07747221325258, 342.82681533825894, 605.5913648897136, 758.0196435601065, 183.81612659576103, 252.18593769295197, 237.15450781542867, 1688.5451118423678, 2360.4663309528887, 1184.968914830233, 1003.5501466410082, 722.7362004619495, 254.29266298024905, 796.1099202521276, 647.9050126128866, 608.2328942327664, 368.7682431991349, 590.2166633744398, 569.1807592146448, 412.17903146209414, 477.3261035177206, 437.9691016099637, 1.2364174255484761, 1.3124242319126662, 1.1622722986047893, 1.1855546449040923, 1.1499206711026295, 1.1887648300226037, 1.275943165351237, 1.1614207876837117, 1.335487846723194, 4.721774477241502, 1.4130755814352174, 1.3063639429116403, 2.218759137567199, 1.2867474712888836, 1.332600438146325, 1.2757842380097777, 1.2879098711197063, 1.1646617190136292, 1.3650919758123472, 1.3733848621905673, 1.21934037665747, 1.2497617573141746, 3.9441223362569118, 1.3921210238318065, 1.3779844653823516, 2.8970648003924855, 3.261130238104459, 1.1836989587569824, 1.3889927679573708, 1.3929710128450663, 49.26005319837895, 7.872293272662334, 43.32397501069283, 24.141633965112785, 14.144635118860988, 117.30005388627382, 121.98375497410173, 36.46894817958883, 43.01752017104689, 162.94936750646315, 763.6866108061433, 50.473607348032665, 25.147091000516458, 374.14291367776417, 722.7362004619495, 98.41368101032158, 106.46887901274869, 34.40784653925594, 6319.81330049568, 349.355461791069, 2360.4663309528887, 269.50199542753387, 104.83570187415114, 153.59234104242242, 608.2328942327664, 766.8110759280104, 647.9050126128866, 1344.8948653235605, 605.5913648897136, 1688.5451118423678, 1003.5501466410082, 412.17903146209414, 279.6286224051843, 252.18593769295197, 367.1757350109187, 3675.8615757896832, 1255.1521629511126, 357.21416903238196, 464.2231775748252, 1184.968914830233, 359.67613597078014, 1285.940638458025, 1971.1221886344297, 590.2166633744398, 758.0196435601065, 368.7682431991349, 796.1099202521276, 708.533504409662, 420.1319397016177, 477.3261035177206, 569.1807592146448, 446.41181793417593, 680.1007804895872, 1.173984151248048, 1.3442860177034293, 2.0707802115626777, 1.2301154610852256, 1.2354688675978127, 1.2787137377758677, 1.2365272126513573, 1.190682357955661, 1.255184806262576, 1.2894233797442534, 1.2458335433111802, 1.251944778085713, 1.2481585086337912, 2.324286791190172, 1.2580809524808874, 1.2351679299528453, 1.2122703412259221, 1.250812138119397, 2.22052731970205, 1.2795140002371423, 1.3484942774365185, 1.2150767271608807, 1.2952709813014314, 1.2650040577809658, 1.2908056271717168, 1.2372794660470807, 1.2131533143434865, 1.2867474712888836, 1.3395572308167532, 1.2393204482665197, 2.1356297826843336, 1.3766911543588434, 4.6907367021620745, 14.723520567855749, 590.2166633744398, 763.6866108061433, 722.7362004619495, 1688.5451118423678, 2360.4663309528887, 119.6831942293426, 3675.8615757896832, 137.87783281268295, 368.7682431991349, 1971.1221886344297, 6319.81330049568, 1285.940638458025, 766.8110759280104, 420.1319397016177, 293.5633430041045, 167.11993303297774, 154.72471642575033, 355.9345109264788, 1184.968914830233, 349.355461791069, 77.25060299646063, 252.27764676253344, 387.76637945148843, 605.5913648897136, 437.9691016099637, 180.31659023538987, 367.1757350109187, 197.70602222767482, 1344.8948653235605, 446.41181793417593, 708.533504409662, 357.21416903238196, 420.1079621952106, 647.9050126128866, 550.1960167755402, 608.2328942327664, 312.84799093627885, 328.8550138764397, 369.5160753663228, 796.1099202521276, 1003.5501466410082, 1255.1521629511126, 680.1007804895872, 758.0196435601065, 569.1807592146448, 464.2231775748252, 1.8994570992762212, 1.1499206711026295, 1.2042631557009442, 1.9205638103439382, 1.213483088141587, 1.1887648300226037, 1.1895814480759652, 1.172777276302364, 1.1817445744228334, 1.2735832387962587, 1.2323655150798232, 1.2286005497011927, 1.2364174255484761, 1.2402551874185348, 1.206445415273794, 1.1984451920484986, 1.223563812807088, 1.1919528143733273, 1.2779399301806924, 1.2151660911824353, 1.2126772904664338, 2.0870865819081335, 1.2430590962726125, 2.1447466812448672, 1.2373120272945215, 1.2344920988328452, 1.1862790758390895, 2.0286721943726094, 1.2290611391831976, 2.7359235292136828, 4.636922131755581, 2.7775707257150057, 49.26005319837895, 3.651277297159393, 293.5633430041045, 67.08336070269507, 8.971475630628618, 21.3875768412902, 722.7362004619495, 2.7306652758253667, 590.2166633744398, 420.1319397016177, 84.17025844426979, 121.04559922685235, 1688.5451118423678, 312.84799093627885, 2360.4663309528887, 158.505119245895, 766.8110759280104, 550.1960167755402, 250.13007576480132, 6319.81330049568, 261.44802511789516, 349.355461791069, 680.1007804895872, 22.529542116208, 367.1757350109187, 84.63549095341362, 28.503375042149933, 1971.1221886344297, 88.20070054590141, 111.40642688490428, 1184.968914830233, 647.9050126128866, 708.533504409662, 269.07659891926005, 141.96091563686005, 342.82681533825894, 3675.8615757896832, 1285.940638458025, 605.5913648897136, 796.1099202521276, 464.2231775748252, 412.17903146209414, 477.3261035177206, 446.41181793417593, 1003.5501466410082, 1255.1521629511126, 1344.8948653235605, 608.2328942327664, 763.6866108061433, 569.1807592146448, 758.0196435601065, 1.9887755614344378, 1.2181477908784062, 1.2365272126513573, 1.221060263241815, 1.173984151248048, 1.289205962250696, 1.2428017360849966, 1.2131533143434865, 1.251944778085713, 1.2758078826913202, 1.2786064238259944, 1.2301154610852256, 1.2641996775805036, 1.2354688675978127, 1.2393204482665197, 1.2413652344661381, 1.1851373482204706, 1.2351679299528453, 1.3220832394727136, 1.2288333882466436, 1.247744712572405, 1.2481585086337912, 1.2444428664041423, 1.2660497991900463, 1.2284131123895388, 1.210317246433313, 1.2199326651084388, 1.2122703412259221, 1.3391085212499976, 2.157854091477274, 2.1811717371447736, 4.6907367021620745, 1.319508157995092, 16.665374520452943, 8.492145568069601, 17.32958924936696, 9.318773875581487, 182.68645405723302, 374.14291367776417, 390.68744366853673, 1184.968914830233, 196.8449178906959, 1285.940638458025, 2360.4663309528887, 1344.8948653235605, 367.1757350109187, 763.6866108061433, 708.533504409662, 328.8550138764397, 103.25802803016732, 3675.8615757896832, 252.27764676253344, 286.6660993331088, 45.07308675759605, 412.17903146209414, 34.60075166953441, 24.28091389013766, 758.0196435601065, 269.07659891926005, 1971.1221886344297, 104.83570187415114, 121.05984198658, 237.15450781542867, 420.1319397016177, 722.7362004619495, 368.9297435491398, 605.5913648897136, 6319.81330049568, 766.8110759280104, 1688.5451118423678, 1003.5501466410082, 437.9691016099637, 293.5633430041045, 357.21416903238196, 550.1960167755402, 590.2166633744398, 569.1807592146448, 1255.1521629511126, 647.9050126128866, 608.2328942327664, 464.2231775748252, 680.1007804895872, 796.1099202521276, 1.210317246433313, 1.264076957027223, 1.2092501529363167, 1.380963013913159, 2.7295255990759104, 3.85044628672527, 1.2290611391831976, 1.2187391260521354, 1.2163552988810202, 2.7082764309264507, 2.155304475585068, 2.048110706099245, 1.181345554461191, 2.2131509409767847, 1.27866164450346, 1.2199326651084388, 2.1459019596407933, 1.2405187353042306, 1.3824856959149325, 2.1580498247264117, 1.2830502093106684, 1.2703604231185863, 1.3493569923060926, 1.2927899295925185, 1.1836989587569824, 1.2358079019204844, 1.1967825817047673, 1.2571989976878837, 1.3285607288028691, 1.3229404174278814, 3.024982984255258, 15.32883154363594, 2.166955687304742, 3.2253380034623005, 20.245532374928885, 4.0377820913400875, 3.848673188710871, 102.27951538623665, 42.54068664686396, 4.10827610070589, 1344.8948653235605, 237.15450781542867, 153.59234104242242, 359.67613597078014, 32.39057367421083, 118.47008008304635, 1184.968914830233, 2360.4663309528887, 249.71207323521327, 763.6866108061433, 109.03289840395134, 374.14291367776417, 62.406290073680104, 263.1210333231556, 149.1094244685022, 119.6831942293426, 125.63389183337082, 76.79251042465947, 1285.940638458025, 368.7682431991349, 3675.8615757896832, 355.9345109264788, 1971.1221886344297, 349.355461791069, 1688.5451118423678, 121.98375497410173, 6319.81330049568, 405.1317868801221, 420.1079621952106, 175.37064774821917, 569.1807592146448, 722.7362004619495, 368.9297435491398, 229.7855746605666, 1255.1521629511126, 369.8183356151785, 766.8110759280104, 605.5913648897136, 708.533504409662, 357.21416903238196, 1003.5501466410082, 680.1007804895872, 477.3261035177206, 796.1099202521276, 758.0196435601065, 608.2328942327664, 446.41181793417593, 590.2166633744398, 1.6225082395591532, 4.297243010337191, 4.349463974089002, 1.5408318806021775, 4.241165888450676, 1.6108940172680977, 4.11170988633673, 1.63848860407432, 1.5982051184346304, 1.5726894155291553, 1.6401547728757184, 1.659786179798529, 2.8795798788067346, 1.7219973416631762, 1.8189770584926057, 1.8231311397509802, 4.310881041614005, 1.7954840621173986, 11.695769880687273, 284.20155636127987, 2.3740264807455373, 1.6850113373955324, 1.7325068637408092, 1.7978070400487804, 8.651472348270879, 1.7981157244751904, 1.8243180546944862, 1.8220626272671698, 1.5949704481759182, 1.8410898607717407, 10.965349722710751, 3.1457179063036174, 7.367876678254737, 22.973657102458088, 18.09047315653259, 3.695149349279877, 9.220231455158762, 80.24200514390114, 2360.4663309528887, 1255.1521629511126, 3675.8615757896832, 6319.81330049568, 1184.968914830233, 446.41181793417593, 680.1007804895872, 590.2166633744398, 766.8110759280104, 293.5633430041045, 605.5913648897136, 722.7362004619495, 1688.5451118423678, 1344.8948653235605, 796.1099202521276, 1971.1221886344297, 1003.5501466410082, 355.9345109264788, 158.505119245895, 608.2328942327664, 1285.940638458025, 437.9691016099637, 268.86016420069325, 145.76435962014187, 220.88561995662477, 758.0196435601065, 299.64229777364267, 349.355461791069, 708.533504409662, 390.05246045435064, 369.5160753663228, 550.1960167755402, 569.1807592146448, 464.2231775748252, 763.6866108061433, 647.9050126128866, 1.2601929795127018, 1.2807684782095525, 1.3229531973595792, 1.2922200784559017, 1.2765423623153551, 1.1614207876837117, 1.391148850707952, 1.390659202841713, 1.3623229793983027, 1.2504898432256621, 1.2027775649234933, 1.1967825817047673, 1.3496734727490882, 1.3329972415053086, 1.185251971499371, 1.1909021759314355, 1.2470014027034326, 1.3448455409338773, 1.1836989587569824, 1.2491241499744221, 1.4362036333127624, 1.3483694752799589, 1.2641523002222999, 1.3666851830087992, 1.2604891591010523, 1.276676122681051, 1.210317246433313, 1.2625641898808935, 1.3185451235959602, 1.3427655577685411, 1.3544918671147395, 1.9243594658106167, 2360.4663309528887, 6319.81330049568, 3675.8615757896832, 254.29266298024905, 590.2166633744398, 369.8183356151785, 708.533504409662, 355.9345109264788, 605.5913648897136, 1003.5501466410082, 1971.1221886344297, 1285.940638458025, 550.1960167755402, 766.8110759280104, 60.94408909282322, 77.12653631964672, 284.20155636127987, 390.68744366853673, 569.1807592146448, 147.64811036229554, 367.1757350109187, 1344.8948653235605, 249.71207323521327, 368.7682431991349, 349.355461791069, 293.5633430041045, 412.17903146209414, 139.81218964288053, 175.37064774821917, 420.1319397016177, 1184.968914830233, 796.1099202521276, 1688.5451118423678, 647.9050126128866, 368.9297435491398, 680.1007804895872, 758.0196435601065, 464.2231775748252, 763.6866108061433, 722.7362004619495, 1255.1521629511126, 446.41181793417593, 1.5949704481759182, 1.7188376633024063, 1.1836989587569824, 1.7212321565142727, 1.2604891591010523, 1.1500716355377671, 1.5726894155291553, 1.7800885440203023, 1.2151660911824353, 2.641593253094831, 1.2858304576498165, 3.9973928777986223, 1.5408318806021775, 3.469989983856392, 1.1887648300226037, 10.965349722710751, 1.3681688301130526, 1.223563812807088, 1.254096164951479, 1.1862790758390895, 1.8291906547674492, 2.608714668649639, 1.2243600598294426, 2.69840374728978, 2.6481563202318976, 1.2507681344705948, 1.3318238488126672, 1.1646617190136292, 1.5982051184346304, 1.7954840621173986, 9.220231455158762, 11.695769880687273, 2.0870865819081335, 284.20155636127987, 49.26005319837895, 22.973657102458088, 18.09047315653259, 4.165616681319554, 7.367876678254737, 4.349463974089002, 9.390403982906033, 4.065056137088551, 250.13007576480132, 100.4392868926535, 367.1757350109187, 766.8110759280104, 77.12653631964672, 13.626058476265834, 117.30005388627382, 1003.5501466410082, 168.3334697178693, 207.50084167636072, 3675.8615757896832, 252.18593769295197, 145.76435962014187, 106.46887901274869, 125.63389183337082, 390.68744366853673, 6319.81330049568, 134.58078193577683, 605.5913648897136, 269.50199542753387, 182.68645405723302, 2360.4663309528887, 387.76637945148843, 1285.940638458025, 269.07659891926005, 175.37064774821917, 680.1007804895872, 1688.5451118423678, 374.14291367776417, 1971.1221886344297, 763.6866108061433, 420.1319397016177, 796.1099202521276, 1255.1521629511126, 590.2166633744398, 647.9050126128866, 261.44802511789516, 437.9691016099637, 708.533504409662, 722.7362004619495, 1184.968914830233, 477.3261035177206, 758.0196435601065, 1344.8948653235605, 464.2231775748252, 550.1960167755402, 569.1807592146448, 1.1836989587569824, 1.2351249981991723, 1.2083171500976146, 1.2875496956153907, 1.181345554461191, 1.2163552988810202, 1.185251971499371, 1.3376338014216074, 1.3998170807391221, 1.224924259278573, 1.262080110424003, 1.2757842380097777, 1.1909021759314355, 1.3366261421339034, 1.2578736832401136, 1.2879098711197063, 1.210317246433313, 1.270559426081438, 1.2398052588102604, 1.2784606758065522, 1.2935088567310515, 1.333756982305359, 1.2759217677823507, 1.1622722986047893, 1.2027775649234933, 1.287501552425131, 1.3929710128450663, 1.3063639429116403, 1.1967825817047673, 1.264076957027223, 1.3686257515947224, 1.3702325718701538, 2.16690703267169, 1.3896287330859445, 1.4370269792018167, 25.147091000516458, 24.861368244795916, 32.39057367421083, 1344.8948653235605, 49.26005319837895, 121.98375497410173, 1285.940638458025, 3675.8615757896832, 605.5913648897136, 1184.968914830233, 34.40784653925594, 175.37064774821917, 766.8110759280104, 6319.81330049568, 708.533504409662, 390.05246045435064, 299.64229777364267, 252.27764676253344, 758.0196435601065, 1255.1521629511126, 144.62093546927656, 100.12471182397745, 349.355461791069, 118.47008008304635, 1971.1221886344297, 608.2328942327664, 1688.5451118423678, 390.68744366853673, 374.14291367776417, 286.6660993331088, 2360.4663309528887, 647.9050126128866, 269.07659891926005, 412.17903146209414, 437.9691016099637, 477.3261035177206, 359.67613597078014, 237.15450781542867, 1003.5501466410082, 369.5160753663228, 569.1807592146448, 464.2231775748252, 763.6866108061433, 680.1007804895872, 722.7362004619495, 550.1960167755402, 590.2166633744398, 796.1099202521276, 1.5408318806021775, 1.1836989587569824, 1.181345554461191, 1.6225082395591532, 1.185251971499371, 1.1967825817047673, 1.7954840621173986, 1.237293337483106, 1.2027775649234933, 1.5726894155291553, 1.2083171500976146, 1.297423326434544, 1.1909021759314355, 1.2442580290063223, 1.2405187353042306, 1.63848860407432, 1.2385367285836142, 1.2964730418944481, 1.2358079019204844, 1.210317246433313, 1.224924259278573, 1.2468981687434246, 1.2632068343476037, 1.2971023436795963, 1.236738940517247, 1.6108940172680977, 1.2398052588102604, 1.2153183997979609, 1.2163552988810202, 1.2373100853237908, 1.2507681344705948, 1.659786179798529, 1.3320543357321128, 1.5982051184346304, 1.7219973416631762, 284.20155636127987, 11.695769880687273, 1.6850113373955324, 1.7981157244751904, 1.7396449851171871, 2.8795798788067346, 22.973657102458088, 2360.4663309528887, 3675.8615757896832, 6319.81330049568, 3.695149349279877, 1344.8948653235605, 647.9050126128866, 1688.5451118423678, 10.965349722710751, 722.7362004619495, 4.11170988633673, 4.310881041614005, 1971.1221886344297, 766.8110759280104, 94.43827010940228, 608.2328942327664, 708.533504409662, 235.39816013657983, 369.8183356151785, 569.1807592146448, 387.76637945148843, 252.18593769295197, 420.1319397016177, 605.5913648897136, 269.50199542753387, 796.1099202521276, 437.9691016099637, 141.96091563686005, 1285.940638458025, 368.7682431991349, 390.68744366853673, 1184.968914830233, 405.1317868801221, 1255.1521629511126, 590.2166633744398, 349.355461791069, 477.3261035177206, 763.6866108061433, 758.0196435601065, 1003.5501466410082, 680.1007804895872, 1.3351481169008692, 1.2470014027034326, 1.2949304836799143, 1.278422856812753, 1.3839337043209867, 1.2504898432256621, 1.2199326651084388, 2.012545165722195, 1.3648155469580807, 1.3509529726169296, 1.2625641898808935, 1.2765423623153551, 1.3099698452812292, 1.3946034155553741, 1.2153183997979609, 1.2566793353684058, 4.00884527069899, 1.2131533143434865, 1.2771189248755057, 1.210317246433313, 1.3960321062253833, 1.342970785511666, 1.1836989587569824, 1.3061856194711758, 1.291069847944072, 1.2422286600070875, 1.2995555858081769, 1.2641523002222999, 1.2888761635174069, 1.1967825817047673, 3.607244408740231, 4.484351934706129, 2.170965185418769, 3.1490230816547014, 3.848673188710871, 103.25802803016732, 1971.1221886344297, 6.209796490118595, 722.7362004619495, 605.5913648897136, 34.60075166953441, 21.17016154915912, 14.33570653421719, 6319.81330049568, 647.9050126128866, 27.38452114711061, 608.2328942327664, 252.18593769295197, 268.86016420069325, 286.6660993331088, 766.8110759280104, 708.533504409662, 390.68744366853673, 1344.8948653235605, 143.56435728752191, 3675.8615757896832, 437.9691016099637, 74.71586190610772, 30.91493841905031, 139.81218964288053, 369.8183356151785, 204.46833701808643, 367.1757350109187, 355.9345109264788, 374.14291367776417, 357.21416903238196, 1255.1521629511126, 2360.4663309528887, 1285.940638458025, 590.2166633744398, 254.29266298024905, 342.82681533825894, 405.1317868801221, 758.0196435601065, 1688.5451118423678, 796.1099202521276, 477.3261035177206, 763.6866108061433, 1003.5501466410082, 550.1960167755402, 680.1007804895872, 1184.968914830233, 412.17903146209414, 1.5408318806021775, 1.6225082395591532, 1.5726894155291553, 1.5982051184346304, 2.8795798788067346, 1.6401547728757184, 1.2784606758065522, 1.8243180546944862, 4.349463974089002, 1.6534835255480815, 1.248167401376066, 1.7954840621173986, 1.3565608658969182, 1.271931853479153, 1.7396449851171871, 1.185251971499371, 1.1836989587569824, 1.262080110424003, 1.5949704481759182, 1.659786179798529, 9.220231455158762, 3.399991060020399, 1.236738940517247, 1.2042631557009442, 1.7800885440203023, 1.3369597714211232, 2.3740264807455373, 1.6108940172680977, 1.4372343000518326, 1.254096164951479, 284.20155636127987, 22.973657102458088, 4.11170988633673, 4.297243010337191, 18.09047315653259, 10.965349722710751, 4.241165888450676, 299.64229777364267, 8.383180097387653, 14.33570653421719, 254.29266298024905, 1285.940638458025, 15.274042230872794, 252.27764676253344, 7.367876678254737, 2360.4663309528887, 29.247163130998796, 235.39816013657983, 80.0221701839396, 97.85053557571777, 369.8183356151785, 237.15450781542867, 269.50199542753387, 605.5913648897136, 1971.1221886344297, 390.05246045435064, 708.533504409662, 3675.8615757896832, 722.7362004619495, 1344.8948653235605, 159.508863128854, 105.9579451455367, 6319.81330049568, 355.9345109264788, 437.9691016099637, 1184.968914830233, 269.07659891926005, 590.2166633744398, 464.2231775748252, 477.3261035177206, 349.355461791069, 1255.1521629511126, 286.6660993331088, 647.9050126128866, 1688.5451118423678, 758.0196435601065, 680.1007804895872, 766.8110759280104, 796.1099202521276, 1003.5501466410082, 569.1807592146448, 763.6866108061433, 608.2328942327664, 1.2692069164598505, 1.3978643287508619, 2.1757290312603925, 1.242567285196862, 1.2777374183412296, 1.2497617573141746, 1.4455940138915075, 2.6282145079680355, 1.3815540683094842, 1.3265639753652778, 2.7882557905579595, 1.302692639204993, 1.275943165351237, 4.001386239444605, 1.3342473963070327, 1.4636939101724205, 1.323166011952837, 1.2859986690698533, 1.3377362766804843, 1.2369744000559193, 1.264076957027223, 1.3590639743278299, 1.2624103776225282, 3.9500831348080574, 1.2908056271717168, 1.2954310980353454, 1.3442860177034293, 1.2805459752838764, 4.960155485590944, 1.3268888835613937, 21.75622609257515, 2.232108460498582, 121.04559922685235, 106.46887901274869, 1688.5451118423678, 9.598950275403642, 446.41181793417593, 14.055868701442943, 59.22723111334677, 250.13007576480132, 3675.8615757896832, 168.3334697178693, 763.6866108061433, 590.2166633744398, 120.6419424937286, 647.9050126128866, 1255.1521629511126, 387.76637945148843, 722.7362004619495, 249.71207323521327, 608.2328942327664, 2360.4663309528887, 1184.968914830233, 176.17868691729154, 84.17025844426979, 477.3261035177206, 312.84799093627885, 299.64229777364267, 206.49594698334172, 464.2231775748252, 412.17903146209414, 342.82681533825894, 368.9297435491398, 139.46116216182696, 6319.81330049568, 355.9345109264788, 680.1007804895872, 605.5913648897136, 263.1210333231556, 758.0196435601065, 796.1099202521276, 1285.940638458025, 1344.8948653235605, 1971.1221886344297, 550.1960167755402, 708.533504409662, 569.1807592146448, 420.1319397016177, 766.8110759280104, 1003.5501466410082, 1.298147250337845, 3.2993948481434394, 1.3268769336280701, 1.2909012932564536, 1.333815412640423, 1.265639575941831, 1.2692069164598505, 1.3142081205679546, 2.1111957700100414, 1.2373100853237908, 1.2027775649234933, 2.7478959890586503, 2.93875378141307, 1.9243594658106167, 3.3212188175880053, 1.258792532851167, 2.142886659453774, 1.1967825817047673, 1.3585021745843775, 2.2174723243706462, 2.7882557905579595, 2.280329752186806, 1.2995584741214021, 1.271931853479153, 1.1909021759314355, 1.181345554461191, 2.166456614094148, 1.3744800047342147, 2.7082764309264507, 1.308642294058766, 4.447760604118348, 3.9500831348080574, 3.091140467126762, 121.04559922685235, 71.62321212932073, 84.17025844426979, 420.1319397016177, 312.84799093627885, 15.32883154363594, 3675.8615757896832, 76.30219576085665, 237.15450781542867, 250.61527746810867, 647.9050126128866, 1003.5501466410082, 355.9345109264788, 1344.8948653235605, 145.6074390471194, 369.8183356151785, 368.9297435491398, 1688.5451118423678, 722.7362004619495, 412.17903146209414, 73.81580676946011, 263.1210333231556, 194.0904560251395, 1184.968914830233, 550.1960167755402, 390.05246045435064, 680.1007804895872, 139.81218964288053, 6319.81330049568, 328.8550138764397, 1255.1521629511126, 268.86016420069325, 2360.4663309528887, 796.1099202521276, 590.2166633744398, 766.8110759280104, 763.6866108061433, 1285.940638458025, 1971.1221886344297, 605.5913648897136, 708.533504409662, 569.1807592146448, 477.3261035177206, 758.0196435601065, 1.185251971499371, 1.237293337483106, 1.1909021759314355, 1.2027775649234933, 1.2703604231185863, 1.2646566756442086, 1.3227160827383, 1.181345554461191, 1.2873384864522903, 1.1967825817047673, 1.248167401376066, 1.2830502093106684, 1.2964730418944481, 1.2859002464967575, 1.2536325851023535, 1.254096164951479, 1.2670101511467011, 1.2074028098092684, 1.2941289550856228, 1.2468981687434246, 1.2909862768563873, 1.1851373482204706, 1.2083171500976146, 2.1111957700100414, 1.297947488103993, 1.2507681344705948, 1.2286005497011927, 1.3089920533337236, 1.2481585086337912, 1.258792532851167, 9.318773875581487, 1344.8948653235605, 52.37088707134663, 8.492145568069601, 2360.4663309528887, 6319.81330049568, 11.831203456704525, 45.57078600445764, 3675.8615757896832, 680.1007804895872, 250.61527746810867, 374.14291367776417, 254.29266298024905, 261.44802511789516, 722.7362004619495, 269.07659891926005, 121.05984198658, 590.2166633744398, 32.39057367421083, 76.30219576085665, 49.26005319837895, 368.9297435491398, 55.90293730699707, 112.89774028317336, 312.84799093627885, 349.355461791069, 387.76637945148843, 605.5913648897136, 1285.940638458025, 1688.5451118423678, 708.533504409662, 1184.968914830233, 647.9050126128866, 1971.1221886344297, 189.87590682632748, 763.6866108061433, 477.3261035177206, 796.1099202521276, 766.8110759280104, 328.8550138764397, 405.1317868801221, 1255.1521629511126, 390.05246045435064, 1003.5501466410082, 608.2328942327664, 420.1319397016177, 569.1807592146448, 412.17903146209414, 758.0196435601065, 1.3442860177034293, 1.1817445744228334, 1.221060263241815, 1.1851373482204706, 1.2660497991900463, 1.2150767271608807, 1.2301154610852256, 1.1967825817047673, 1.2670101511467011, 1.294210913291452, 1.21934037665747, 1.1984451920484986, 1.2153183997979609, 1.2351679299528453, 1.2284131123895388, 1.3822840927621398, 1.1895814480759652, 1.1614207876837117, 1.2898700660798947, 1.2650040577809658, 1.2909862768563873, 1.248167401376066, 1.3835697934710594, 1.2027775649234933, 1.224924259278573, 1.2580809524808874, 1.1855546449040923, 1.210317246433313, 1.2181477908784062, 1.2764056083762751, 2.276177952418088, 1.4243265964614595, 15.139483259670069, 11.494850105741993, 26.04460261556694, 9.45421546110686, 154.72471642575033, 39.853098053884395, 19.539705624855937, 268.6065863673616, 605.5913648897136, 137.87783281268295, 367.1757350109187, 286.6660993331088, 38.38517487934721, 2360.4663309528887, 42.90792417032839, 22.043156045306365, 81.34133796147967, 1344.8948653235605, 420.1079621952106, 21.044340614371368, 167.11993303297774, 17.480925862921957, 359.67613597078014, 90.41968781861848, 387.76637945148843, 85.34868910342041, 237.15450781542867, 3675.8615757896832, 1971.1221886344297, 477.3261035177206, 722.7362004619495, 1688.5451118423678, 608.2328942327664, 758.0196435601065, 766.8110759280104, 342.82681533825894, 374.14291367776417, 590.2166633744398, 412.17903146209414, 390.68744366853673, 6319.81330049568, 1285.940638458025, 1255.1521629511126, 647.9050126128866, 796.1099202521276, 1184.968914830233, 763.6866108061433, 464.2231775748252, 1003.5501466410082, 708.533504409662, 569.1807592146448, 7.722394933021617, 1.2351249981991723, 5.788739376953855, 2.112670965937099, 5.848532023806627, 2.997320060448588, 2.16690703267169, 3.1471421056243982, 9.322469142147396, 5.633865572264222, 1.2935088567310515, 3.0391345298786425, 5.864748307549544, 1.4206988646819876, 10.182567360823562, 1.3474054979427144, 5.4839802590670645, 2.3043221810689083, 2.1322462095017296, 2.2507701957860466, 3.1304380336098427, 3.2824265855634502, 6.13462528535429, 3.306154200925988, 3.119056396701649, 3.0807458695202876, 1.3555271764999037, 3.1887641035337966, 2.1236614904242335, 1.3724489337705008, 8.38274528808684, 3.268266451332306, 4.559261944063644, 6.5147857308157615, 38.38517487934721, 19.539705624855937, 55.078177001680345, 182.68645405723302, 1344.8948653235605, 176.7975454639352, 38.6569029529459, 118.47008008304635, 2360.4663309528887, 590.2166633744398, 268.6065863673616, 13.894878765905068, 261.44802511789516, 84.96993628874132, 359.67613597078014, 6319.81330049568, 605.5913648897136, 349.355461791069, 766.8110759280104, 1285.940638458025, 1688.5451118423678, 212.69568610541364, 144.62093546927656, 1184.968914830233, 708.533504409662, 1971.1221886344297, 374.14291367776417, 1255.1521629511126, 3675.8615757896832, 390.68744366853673, 1003.5501466410082, 293.5633430041045, 357.21416903238196, 569.1807592146448, 390.05246045435064, 763.6866108061433, 608.2328942327664, 758.0196435601065, 722.7362004619495, 437.9691016099637, 446.41181793417593, 796.1099202521276, 550.1960167755402, 464.2231775748252, 680.1007804895872, 1.173984151248048, 1.2458335433111802, 1.2291144682301844, 1.9887755614344378, 1.2131533143434865, 1.2288333882466436, 1.2187391260521354, 1.255523863049687, 1.1851373482204706, 1.2354688675978127, 1.2356945334748821, 4.6907367021620745, 1.2181477908784062, 1.279057043738577, 1.3078072276244037, 1.3110369280087384, 1.3513981342229324, 1.3473345553963065, 1.2786064238259944, 2.0052269198803443, 1.2481585086337912, 1.3220274646889825, 1.2122703412259221, 1.2282669291667352, 1.190682357955661, 1.221060263241815, 1.289205962250696, 1.2641996775805036, 1.2150767271608807, 1.294210913291452, 1.3089920533337236, 9.318773875581487, 5.252319443102381, 80.07379701085414, 605.5913648897136, 1344.8948653235605, 9.45421546110686, 1285.940638458025, 45.570304434208914, 182.68645405723302, 252.18593769295197, 2360.4663309528887, 722.7362004619495, 36.499892955845404, 14.268898978719337, 412.17903146209414, 3675.8615757896832, 608.2328942327664, 387.76637945148843, 763.6866108061433, 1971.1221886344297, 74.71586190610772, 1688.5451118423678, 766.8110759280104, 117.30005388627382, 357.21416903238196, 254.29266298024905, 647.9050126128866, 6319.81330049568, 758.0196435601065, 708.533504409662, 299.64229777364267, 367.1757350109187, 328.8550138764397, 1184.968914830233, 437.9691016099637, 390.05246045435064, 369.8183356151785, 550.1960167755402, 680.1007804895872, 796.1099202521276, 368.9297435491398, 1255.1521629511126, 590.2166633744398, 1003.5501466410082, 464.2231775748252, 569.1807592146448], \"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, 0.5105, 0.4811, 0.4649, 0.4439, 0.4403, 0.4329, 0.4237, 0.4188, 0.4147, 0.4127, 0.4026, 0.4017, 0.3971, 0.3968, 0.3961, 0.3937, 0.3859, 0.3831, 0.3829, 0.3821, 0.3759, 0.3723, 0.3706, 0.3633, 0.3622, 0.362, 0.3598, 0.3547, 0.3545, 0.3535, 0.3513, 0.3266, 0.344, 0.3415, 0.1651, 0.3079, 0.3166, 0.3482, 0.2571, 0.2155, 0.2274, 0.2202, 0.2362, 0.27, 0.2337, 0.2645, 0.167, 0.1829, 0.2327, 0.1226, 0.1374, 0.189, 0.2275, 0.041, 0.1853, 0.0642, -0.0675, 0.142, 0.1549, -0.0483, -0.0068, 0.0114, 0.0383, 0.0537, 0.1426, -0.0983, 0.0304, -0.0166, -0.0265, -0.0129, -0.1612, -0.115, 0.0494, -0.1272, -0.0547, -0.1205, -0.0622, 0.0047, -0.1627, 0.0486, -0.0053, -0.0829, -0.1945, 0.7252, 0.7215, 0.6914, 0.6607, 0.66, 0.6231, 0.6141, 0.6122, 0.5885, 0.5884, 0.5773, 0.5684, 0.5555, 0.5551, 0.5463, 0.5442, 0.5372, 0.5347, 0.5344, 0.5344, 0.5311, 0.5255, 0.523, 0.5224, 0.5185, 0.5169, 0.5144, 0.5121, 0.507, 0.5061, 0.4935, 0.4409, 0.4501, 0.4941, 0.4538, 0.445, 0.4046, 0.3655, 0.3779, 0.4372, 0.311, 0.3116, 0.316, 0.3107, 0.3803, 0.2776, 0.3655, 0.4185, 0.1816, 0.2407, 0.1376, 0.0306, 0.256, 0.0225, 0.1431, 0.0988, 0.1536, 0.2207, 0.1151, 0.1817, -0.0297, 0.0998, 0.298, -0.0983, 0.1106, 0.1186, 0.0123, 0.0998, 0.0844, -0.1606, -0.2134, -0.2354, -0.0494, -0.1287, -0.2677, -0.1395, -0.017, 0.7283, 0.6243, 0.6172, 0.617, 0.5894, 0.5681, 0.5617, 0.5585, 0.5466, 0.5449, 0.5438, 0.5329, 0.5288, 0.5256, 0.5182, 0.517, 0.5059, 0.5047, 0.5041, 0.4977, 0.4961, 0.496, 0.4954, 0.494, 0.493, 0.4897, 0.4806, 0.4759, 0.4745, 0.4727, 0.4706, 0.4568, 0.4488, 0.3975, 0.4473, 0.3234, 0.4076, 0.4027, 0.3554, 0.4044, 0.2369, 0.2877, 0.3072, 0.2869, 0.3485, 0.2208, 0.1502, 0.2831, 0.1803, 0.2291, 0.2342, 0.124, 0.1081, 0.1561, 0.2403, 0.1496, 0.309, 0.3034, 0.0241, -0.1252, 0.1748, 0.1466, -0.1476, 0.0871, 0.0418, -0.0004, 0.0227, 0.0672, 0.058, 0.2106, -0.2569, 0.0029, 0.0248, -0.2264, -0.1473, -0.1391, -0.0172, 0.7236, 0.6967, 0.6842, 0.681, 0.6549, 0.6441, 0.6125, 0.6115, 0.599, 0.5955, 0.5943, 0.5829, 0.5823, 0.5818, 0.5725, 0.5693, 0.5666, 0.5624, 0.5621, 0.5597, 0.5547, 0.5543, 0.5531, 0.5519, 0.5497, 0.5488, 0.5458, 0.5451, 0.5421, 0.5354, 0.5123, 0.4914, 0.4649, 0.499, 0.5131, 0.4703, 0.3997, 0.4224, 0.3975, 0.4303, 0.2569, 0.3625, 0.4147, 0.1591, 0.3091, 0.1842, 0.0885, 0.326, 0.1584, 0.2753, 0.067, 0.3161, 0.3998, 0.2033, 0.1191, 0.1935, 0.1192, -0.0133, 0.1008, 0.1489, 0.2302, 0.0487, 0.2277, 0.1407, 0.0307, -0.0269, 0.0346, -0.3688, -0.0002, -0.0888, -0.0194, 0.0175, 0.1164, -0.055, 0.0433, 0.1368, -0.061, 0.0738, -0.0877, -0.0197, -0.3483, 0.9718, 0.9634, 0.95, 0.9306, 0.9074, 0.9026, 0.9019, 0.8977, 0.8863, 0.8846, 0.8739, 0.8674, 0.867, 0.8587, 0.8577, 0.8573, 0.8532, 0.8518, 0.8436, 0.8423, 0.8419, 0.8387, 0.834, 0.8161, 0.8119, 0.8075, 0.8072, 0.8068, 0.8048, 0.8031, 0.8008, 0.7991, 0.791, 0.7133, 0.763, 0.5304, 0.5142, 0.4957, 0.5659, 0.6491, 0.6233, 0.2444, 0.5866, 0.3152, 0.5908, 0.5331, 0.0083, 0.3392, 0.3851, 0.4522, 0.4584, 0.039, 0.3247, 0.2098, 0.2588, 0.0184, 0.1662, 0.0716, 0.0291, 0.351, 0.0175, 0.385, 0.3881, 0.0565, 0.0886, 0.3834, 0.2478, 0.0522, 0.177, 0.051, -0.0974, 0.0512, 0.0982, 0.1086, 0.0821, 0.0369, 0.1095, -0.4553, -0.1225, -0.1364, -0.1829, -0.393, -0.1115, -0.1922, -0.3762, 0.6908, 0.6881, 0.6864, 0.6685, 0.6679, 0.6503, 0.646, 0.6371, 0.6245, 0.6209, 0.6182, 0.6173, 0.6171, 0.6168, 0.6131, 0.5931, 0.5898, 0.5892, 0.5808, 0.5732, 0.5682, 0.5628, 0.5563, 0.5551, 0.5512, 0.5508, 0.5357, 0.5272, 0.5247, 0.5207, 0.5121, 0.4876, 0.5111, 0.481, 0.3372, 0.4233, 0.3663, 0.3226, 0.4546, 0.2944, 0.3075, 0.4475, 0.3965, 0.4377, 0.2072, 0.3775, 0.0974, 0.306, 0.4724, 0.2085, 0.1957, 0.2673, 0.2193, 0.2532, -0.0742, 0.0598, 0.1786, 0.1961, 0.3057, 0.2049, -0.0736, 0.3343, 0.0178, 0.0099, -0.1532, -0.1607, 0.0998, -0.2098, -0.093, -0.1393, -0.3647, -0.2023, -0.3828, -0.3836, -0.0755, 1.0603, 1.0417, 0.9302, 0.9294, 0.8856, 0.8743, 0.8647, 0.8596, 0.8584, 0.8496, 0.8489, 0.8392, 0.8243, 0.8197, 0.8124, 0.8081, 0.8029, 0.7991, 0.7945, 0.7932, 0.7869, 0.7832, 0.7736, 0.7707, 0.751, 0.7482, 0.7476, 0.741, 0.7298, 0.7284, 0.6886, 0.627, 0.4384, 0.6359, 0.6827, 0.5185, 0.3558, 0.5054, 0.5162, 0.4525, 0.3317, 0.3492, 0.2378, 0.4618, 0.2837, 0.3319, 0.2383, 0.0131, 0.3192, -0.0696, 0.2555, 0.3617, 0.0005, 0.3607, 0.2163, 0.0923, 0.2941, 0.2368, 0.0088, 0.187, 0.0629, 0.1369, 0.0406, 0.027, 0.1992, -0.0212, 0.0237, -0.1583, 0.1607, -0.1861, -0.2714, 0.1561, -0.3032, -0.034, -0.1951, -0.1996, 0.1128, 0.0357, -0.1627, -0.0039, 0.9425, 0.905, 0.8985, 0.8965, 0.8922, 0.8686, 0.8503, 0.8451, 0.7979, 0.7949, 0.7808, 0.7624, 0.7583, 0.7548, 0.742, 0.7304, 0.7295, 0.7248, 0.7208, 0.7091, 0.6999, 0.6995, 0.6746, 0.6707, 0.6706, 0.6664, 0.6661, 0.6633, 0.6591, 0.651, 0.6451, 0.6294, 0.6403, 0.5413, 0.5844, 0.6416, 0.5389, 0.3268, 0.4788, 0.211, 0.3393, 0.2499, 0.361, 0.4116, 0.4177, 0.1589, 0.3786, 0.4751, 0.3815, 0.4538, 0.0661, 0.2052, -0.1279, -0.0041, 0.2146, 0.0815, 0.0393, 0.0763, -0.0178, 0.0979, 0.3436, 0.1404, 0.1371, 0.1372, -0.0306, 0.023, 0.1194, 0.2036, 0.076, -0.0922, -0.2486, -0.1187, -0.0922, 0.0629, -0.1518, -0.2258, -0.0785, -0.0263, -0.3506, 0.9968, 0.9273, 0.8751, 0.8703, 0.8156, 0.797, 0.732, 0.701, 0.6863, 0.6669, 0.6603, 0.6564, 0.6451, 0.6193, 0.6021, 0.5935, 0.58, 0.5775, 0.5722, 0.5696, 0.5695, 0.5638, 0.5594, 0.5499, 0.5449, 0.5325, 0.529, 0.5177, 0.5098, 0.5085, 0.4916, 0.4733, 0.4634, 0.4285, 0.3349, 0.364, 0.426, 0.3644, 0.3614, 0.4662, 0.1598, 0.4018, 0.1935, 0.3695, 0.0415, 0.3255, 0.2501, 0.1554, 0.3547, 0.1978, 0.1183, 0.1316, 0.2639, 0.0784, 0.0021, 0.0622, -0.0135, -0.0935, 0.0367, -0.0067, 0.2126, 0.1002, -0.1936, -0.0569, 0.0592, 0.1018, -0.1733, -0.0646, 0.0194, -0.228, -0.1733, -0.5086, -0.2006, -0.3523, 0.8972, 0.8667, 0.8574, 0.8443, 0.8426, 0.837, 0.8329, 0.8192, 0.7966, 0.7634, 0.758, 0.7427, 0.7236, 0.7159, 0.689, 0.687, 0.6858, 0.6805, 0.6767, 0.6761, 0.6716, 0.6616, 0.6587, 0.6583, 0.653, 0.6499, 0.6477, 0.6445, 0.6398, 0.6249, 0.6104, 0.6115, 0.5499, 0.418, 0.5744, 0.4792, 0.5196, 0.4869, 0.4491, 0.2816, 0.4328, 0.1011, 0.1996, 0.3184, 0.087, 0.3227, 0.3627, 0.0676, 0.4729, 0.2554, 0.2464, 0.2037, 0.388, 0.0962, 0.2383, 0.2204, 0.072, 0.1228, 0.201, 0.0474, 0.0814, 0.2601, 0.1107, -0.1372, -0.0324, 0.1289, -0.0319, 0.0066, -0.3027, -0.0578, -0.1803, 0.0371, -0.3335, -0.1058, -0.1825, -0.025, 1.0632, 1.001, 0.9793, 0.9767, 0.9524, 0.9519, 0.9315, 0.9306, 0.9101, 0.9075, 0.9019, 0.8998, 0.8931, 0.8883, 0.8863, 0.8849, 0.8779, 0.8693, 0.8684, 0.8665, 0.8538, 0.8477, 0.8472, 0.841, 0.8409, 0.8395, 0.838, 0.8359, 0.8343, 0.8325, 0.83, 0.7967, 0.8083, 0.7061, 0.2821, 0.8088, 0.1992, 0.3332, 0.4867, 0.5276, 0.2426, -0.0265, 0.2042, 0.4402, 0.0478, 0.2301, 0.418, 0.1504, 0.213, 0.2664, 0.2843, 0.3358, 0.0182, 0.1088, 0.422, 0.0542, 0.0648, 0.1649, -0.037, 0.0356, 0.1619, 0.2468, -0.0848, 0.1278, 0.1077, -0.1854, 0.0561, 0.1557, 0.0998, -0.0416, -0.1489, -0.3376, -0.1984, -0.1128, 0.0223, -0.4833, -0.2197, -0.0594, -0.0827, 0.9557, 0.9502, 0.9125, 0.8976, 0.8882, 0.8816, 0.8604, 0.8566, 0.8489, 0.8484, 0.8419, 0.8276, 0.8117, 0.8115, 0.8072, 0.7918, 0.7905, 0.7888, 0.7831, 0.78, 0.7785, 0.7649, 0.7643, 0.7601, 0.758, 0.7577, 0.7512, 0.7475, 0.7469, 0.7435, 0.7324, 0.7336, 0.7279, 0.6792, 0.6997, 0.5709, 0.6789, 0.6671, 0.4863, 0.5031, 0.2684, 0.4043, 0.2577, 0.4863, 0.1239, 0.3962, 0.3707, 0.4063, 0.4668, 0.3368, 0.3053, 0.3399, 0.1649, -0.1098, 0.2185, 0.2995, 0.4961, 0.3634, 0.0614, 0.2184, 0.0931, 0.0078, 0.2995, -0.1034, 0.1676, -0.1461, 0.2086, 0.1286, 0.1013, -0.2, 0.0118, -0.0249, 0.0915, -0.1461, -0.1455, -0.0682, -0.1107, -0.1729, -0.1661, -0.1796, -0.1347, -0.2232, -0.5898, -0.0768, 1.6742, 1.6642, 1.6203, 1.5794, 1.5738, 1.5225, 1.5214, 1.5045, 1.4954, 1.4737, 1.4608, 1.451, 1.4449, 1.4409, 1.4315, 1.4271, 1.4216, 1.41, 1.3984, 1.3983, 1.3959, 1.3952, 1.393, 1.3922, 1.3874, 1.3693, 1.3656, 1.345, 1.3449, 1.3383, 1.2509, 1.11, 1.2779, 0.8386, 0.8211, 1.2728, 0.9974, 0.2024, 0.0878, 0.0423, 0.2291, -0.272, -0.0729, 0.3023, -0.234, 0.2084, 0.3515, 0.0934, 0.0991, -0.0999, 0.0054, -0.1658, -0.1511, 0.1645, -0.0091, -0.0131, -0.0557, 0.0033, -0.1783, -0.1255, 0.0734, -0.1465, 0.1434, -0.2607, -0.15, 0.079, 0.0137, -0.2048, 0.0336, 1.0433, 0.7851, 0.7424, 0.7198, 0.7031, 0.7004, 0.6962, 0.662, 0.6578, 0.6557, 0.6445, 0.6345, 0.6335, 0.6132, 0.5999, 0.5887, 0.5828, 0.5785, 0.5739, 0.5723, 0.5653, 0.5593, 0.5585, 0.5493, 0.549, 0.5482, 0.5464, 0.5464, 0.5408, 0.536, 0.5174, 0.5304, 0.4179, 0.3922, 0.4998, 0.3287, 0.3598, 0.396, 0.4103, 0.444, 0.4464, 0.3224, 0.1805, 0.3866, 0.2658, 0.1794, 0.3485, 0.3088, 0.2679, 0.2107, 0.066, 0.2982, 0.3137, 0.0669, 0.2314, 0.091, 0.2135, 0.0284, 0.1681, 0.1656, -0.2372, -0.0349, 0.1975, 0.0425, -0.1607, 0.0153, 0.1779, 0.1894, 0.0997, 0.0518, -0.1527, -0.1081, -0.2883, -0.0714, -0.0767, -0.1873, -0.1574, -0.1171, -0.3808, -0.0943, 0.7034, 0.6611, 0.653, 0.6494, 0.6369, 0.6013, 0.5879, 0.5673, 0.5625, 0.5465, 0.5336, 0.5272, 0.5244, 0.5106, 0.5073, 0.5071, 0.5046, 0.5019, 0.4842, 0.4777, 0.4743, 0.4727, 0.4632, 0.4601, 0.459, 0.4581, 0.4528, 0.4426, 0.442, 0.4406, 0.437, 0.4382, 0.4139, 0.3902, 0.3891, 0.4147, 0.3943, 0.2727, 0.4065, 0.3908, 0.3994, 0.3935, 0.3644, 0.3615, 0.3097, 0.3252, 0.1343, 0.3423, 0.1332, 0.194, 0.3224, 0.1432, 0.274, -0.0671, 0.0557, 0.1172, 0.1782, 0.1018, 0.255, 0.176, -0.0498, 0.1728, 0.0237, 0.1014, 0.0004, 0.0126, 0.154, 0.1366, -0.0442, 0.1372, -0.014, -0.0301, 0.0559, -0.0241, -0.0685, -0.1647, -0.2139, -0.1672, -0.393, 0.9805, 0.9457, 0.9282, 0.8993, 0.8829, 0.878, 0.8552, 0.8502, 0.8366, 0.7832, 0.7763, 0.7582, 0.7475, 0.7414, 0.737, 0.7345, 0.7345, 0.733, 0.7329, 0.7185, 0.7167, 0.7144, 0.7116, 0.7098, 0.7074, 0.697, 0.6969, 0.6953, 0.6898, 0.6895, 0.6869, 0.677, 0.645, 0.515, 0.6667, 0.5208, 0.4551, 0.3071, 0.6235, 0.2971, 0.4177, 0.5677, 0.3184, 0.4055, 0.4763, 0.3902, 0.4942, 0.3511, 0.2788, 0.2187, 0.3065, 0.2521, -0.0602, 0.3357, 0.2102, 0.1931, -0.0714, 0.3974, 0.3292, -0.0599, 0.0265, 0.0247, 0.0456, 0.1051, 0.2208, 0.0512, 0.1651, 0.0148, 0.0092, -0.0063, 0.0161, -0.0596, -0.2176, -0.2224, -0.0037, 0.0934, 0.0457, 0.1135, -0.1808, -0.3317, 1.0456, 1.0397, 0.9601, 0.9477, 0.9154, 0.9095, 0.9065, 0.9028, 0.8922, 0.885, 0.8706, 0.8698, 0.8695, 0.8664, 0.8574, 0.8418, 0.834, 0.8182, 0.8168, 0.8079, 0.7987, 0.7908, 0.7877, 0.7867, 0.7764, 0.7657, 0.7579, 0.7489, 0.7468, 0.7392, 0.7282, 0.7375, 0.7096, 0.7003, 0.6944, 0.4413, 0.5222, 0.5735, 0.6251, 0.5644, 0.3873, 0.4553, 0.4635, 0.4491, 0.156, 0.0858, 0.3286, 0.1978, 0.328, 0.3575, 0.2685, 0.2508, -0.0762, 0.1968, -0.2295, 0.2259, 0.1509, 0.1327, -0.0282, -0.1567, 0.2943, 0.03, 0.0358, 0.2019, 0.0422, 0.1476, -0.1311, 0.2354, -0.0376, -0.0471, -0.2664, 0.0007, -0.0046, -0.1461, -0.2273, -0.135, 0.0768, 0.0894, -0.2407, -0.3072, 0.9415, 0.911, 0.91, 0.8932, 0.8763, 0.8558, 0.8516, 0.848, 0.8367, 0.8289, 0.8241, 0.8198, 0.8153, 0.8125, 0.8082, 0.8071, 0.7978, 0.7974, 0.7972, 0.7971, 0.7914, 0.7865, 0.7856, 0.7835, 0.7804, 0.7797, 0.7786, 0.7765, 0.7655, 0.764, 0.7547, 0.7277, 0.7281, 0.7069, 0.683, 0.7354, 0.5293, 0.4813, 0.1573, 0.5479, 0.4446, 0.1526, 0.243, 0.3171, 0.4331, 0.11, 0.5973, 0.2852, 0.2657, 0.268, 0.3744, 0.3424, -0.1456, -0.0184, 0.121, 0.3032, 0.1962, 0.3562, 0.1637, 0.0204, -0.0246, -0.0773, 0.2097, 0.186, 0.1961, 0.0362, 0.118, -0.0256, 0.0074, -0.1377, 0.1068, 0.1, -0.1864, 0.0574, -0.1387, -0.0438, 0.0107, -0.1246, -0.1928, -0.2669, 0.0175, -0.1582, -0.3464, -0.0736, -0.105, -0.4025, 0.8889, 0.7754, 0.7752, 0.7622, 0.7473, 0.7375, 0.7371, 0.736, 0.7307, 0.7299, 0.7282, 0.7267, 0.7261, 0.7248, 0.7126, 0.7043, 0.7039, 0.7037, 0.6957, 0.6935, 0.6914, 0.6913, 0.6796, 0.6775, 0.6724, 0.6699, 0.6658, 0.6648, 0.662, 0.6598, 0.6597, 0.637, 0.63, 0.61, 0.5301, 0.4958, 0.4518, 0.3876, 0.3415, 0.4255, 0.3847, 0.2995, 0.2792, 0.3317, 0.5302, 0.4746, 0.4068, 0.2595, 0.2423, 0.1431, 0.2807, 0.2246, -0.1055, 0.334, 0.2472, 0.1274, -0.0944, 0.0939, 0.1538, 0.1673, 0.0666, 0.0029, -0.171, -0.0034, 0.0355, -0.1646, 0.1339, -0.1433, -0.1829, -0.3299, -0.2104, 0.002, -0.0609, -0.1474, -0.1797, 0.0492, -0.1236, 1.659, 1.6556, 1.6008, 1.5479, 1.5477, 1.5457, 1.5375, 1.5203, 1.5132, 1.5128, 1.5013, 1.4986, 1.4942, 1.4932, 1.485, 1.4847, 1.479, 1.4739, 1.4696, 1.4685, 1.4681, 1.4675, 1.4669, 1.4652, 1.4598, 1.4596, 1.4596, 1.4553, 1.455, 1.4392, 1.4378, 1.4361, 1.3164, 1.3304, 1.2302, 0.5757, 0.1259, 0.3887, 1.3777, 1.0737, 1.046, -0.0307, 0.7423, 0.024, 0.3639, -0.3476, 0.1029, 0.245, 0.2078, -0.026, 0.2575, 0.0948, -0.228, 0.4138, 0.2482, 0.02, 0.248, 0.066, -0.1478, -0.0039, 0.1264, 0.2488, 0.0124, -0.0012, -0.2581, 0.0826, -0.1212, -0.4008, -0.0665, -0.1625, -0.0981, -0.258, -0.5437, 0.0356, 0.9354, 0.8574, 0.842, 0.8013, 0.795, 0.7653, 0.7616, 0.7573, 0.7563, 0.752, 0.7457, 0.7427, 0.7413, 0.7373, 0.7343, 0.7291, 0.7231, 0.7206, 0.7154, 0.7149, 0.7131, 0.7091, 0.7083, 0.7067, 0.704, 0.7029, 0.6984, 0.698, 0.6973, 0.6906, 0.6805, 0.6549, 0.6794, 0.6667, 0.6532, 0.5757, 0.4703, 0.439, 0.4192, 0.5276, 0.4036, 0.5646, 0.2551, 0.3285, 0.2664, 0.4293, 0.4361, 0.4426, 0.4468, 0.3881, 0.4661, 0.4601, 0.4698, 0.226, 0.0364, 0.3289, 0.3883, 0.0352, 0.3689, 0.2342, 0.2391, 0.2769, 0.074, 0.1865, 0.1821, 0.024, 0.1179, 0.11, 0.0982, 0.1434, 0.2262, 0.1624, -0.336, -0.1453, 0.0032, 0.209, -0.1763, -0.0382, 0.0798, -0.0569, -0.0163, -0.1023, 0.0874, 0.0181, -0.3333, -0.2596, -0.2906, -0.306, 2.5275, 2.5168, 2.4966, 2.4881, 2.4769, 2.4708, 2.4666, 2.4626, 2.4596, 2.4584, 2.4583, 2.455, 2.449, 2.4457, 2.4455, 2.4433, 2.4409, 2.4406, 2.4398, 2.4388, 2.4372, 2.4346, 2.4339, 2.4269, 2.4256, 2.4247, 2.4239, 2.4232, 2.4209, 2.4201, 2.4193, 2.4179, 2.4172, 2.4194, 2.4061, 2.4124, 2.4075, -0.2467, -0.0762, 0.4184, -0.363, -0.8968, -0.8181, 0.3887, -0.6335, -0.1538, -0.5103, -0.0997, -0.4307, -0.5408, -0.0612, 0.0379, 0.2038, -0.3754, -0.3679, -0.5906, -0.2624, -0.1451, 0.0431, -0.1541, -0.3624, 0.1906, 0.2442, 1.4089, -0.0558, -0.1703, -0.1929, -0.0474, -0.2049, -0.4738, -0.6119, -0.6195, -0.2559, -0.7455, -0.8523, -0.734, 1.3091, 1.2991, 1.2878, 1.2808, 1.261, 1.258, 1.2561, 1.2459, 1.2201, 1.2152, 1.2141, 1.2127, 1.2097, 1.2022, 1.2017, 1.2, 1.1955, 1.1909, 1.1884, 1.1866, 1.1811, 1.1808, 1.1716, 1.1685, 1.1657, 1.1648, 1.1604, 1.1599, 1.1591, 1.1546, 1.111, 0.3591, 1.0694, 1.0981, 0.0946, 0.4988, 0.6677, 0.206, 0.339, 0.2272, 0.6289, 0.2789, 0.2836, 0.3313, -0.0841, 0.1867, -0.1571, 0.6602, -0.0655, 0.0343, 0.2255, -0.0721, 0.0464, 0.2762, 0.1092, 0.0292, 0.1032, 0.1789, 0.1828, 0.002, 0.3335, 0.335, -0.073, 0.0937, -0.015, -0.21, 0.0483, -0.6171, -0.2286, -0.0843, -0.1279, -0.0963, -0.2657, -0.1754, 0.0432, -0.0499, -0.0233, 0.7943, 0.7863, 0.7728, 0.7261, 0.7244, 0.7218, 0.6626, 0.6559, 0.6484, 0.6413, 0.632, 0.6304, 0.629, 0.6274, 0.6226, 0.6126, 0.6048, 0.603, 0.6006, 0.5999, 0.5978, 0.5959, 0.5933, 0.5932, 0.5919, 0.5914, 0.5895, 0.5858, 0.5839, 0.5826, 0.5713, 0.5098, 0.4992, 0.5658, 0.5196, 0.4601, 0.5244, 0.4482, 0.4504, 0.3224, 0.5281, 0.3913, 0.4036, 0.3606, 0.4537, 0.3433, 0.412, 0.2571, 0.3136, 0.3496, 0.2348, 0.2847, 0.3346, 0.0259, 0.4407, 0.1824, 0.3319, 0.2153, 0.283, 0.1562, 0.1462, 0.02, 0.1869, 0.0311, 0.0142, -0.1075, -0.2611, 0.0609, 0.0362, -0.0674, -0.0228, 0.0616, -0.0961, -0.203, 0.0618, -0.0115, -0.1041, -0.1421, -0.1252, 0.1186, 0.0641, -0.0814, -0.0271, 0.0171, -0.1231, 2.3187, 2.2924, 2.2922, 2.2864, 2.2849, 2.2764, 2.2744, 2.2705, 2.2703, 2.2698, 2.2683, 2.2675, 2.2662, 2.2631, 2.2624, 2.2603, 2.259, 2.2587, 2.2585, 2.257, 2.257, 2.2551, 2.2549, 2.2548, 2.253, 2.2529, 2.2524, 2.25, 2.2486, 2.2473, 2.2444, 2.229, 2.2223, 2.2418, 2.2059, 1.1474, 2.1919, 1.607, 2.2403, -0.0398, 0.2171, -0.4974, -0.7651, -0.0139, -0.3551, 0.6708, -0.507, -0.6291, 0.8846, -0.4242, -0.1471, 0.0033, -0.5366, -0.0362, 0.14, 1.4479, 0.2221, 0.4436, -0.4169, -0.4547, -0.159, -0.2236, -0.4692, 0.003, -0.678, 0.0209, -0.217, -0.6558, -0.4535, -0.2452, -0.5119, -0.2904, -0.2982, -0.5084, -0.4921, -0.484, -0.6799, -0.7646, 1.3665, 1.308, 1.3013, 1.2877, 1.2872, 1.2761, 1.2747, 1.2732, 1.2726, 1.2595, 1.257, 1.2509, 1.2413, 1.2305, 1.2305, 1.2304, 1.2277, 1.2188, 1.2016, 1.2015, 1.1949, 1.1909, 1.1906, 1.1896, 1.1768, 1.1735, 1.1653, 1.164, 1.1637, 1.1598, 1.1546, 1.1247, 1.1209, 1.1105, 1.034, 1.1269, 1.0665, 1.0582, 0.9592, 1.0881, 0.6771, 0.7751, 1.0067, 0.9692, 0.2363, 0.3201, 0.0069, 1.0388, 0.1238, 0.5547, 1.0434, 0.6741, -0.2869, 0.2213, -0.1303, 0.3005, 0.7074, 0.0641, 0.188, 0.0965, -0.0704, 0.0371, 0.0528, 0.2539, 0.1788, 0.462, 0.1565, 0.3626, 0.2492, 0.2247, -0.0598, 0.2045, -0.2078, -0.1941, -0.2683, -0.2623, -0.1199, 0.0763, -0.1116, -0.0809, 0.1026, 0.1054, -0.1051, -0.1433, -0.193, -0.3823, 0.9203, 0.9071, 0.8993, 0.8878, 0.8871, 0.8867, 0.8794, 0.8784, 0.8709, 0.8673, 0.8631, 0.8626, 0.8603, 0.852, 0.8499, 0.836, 0.8315, 0.8301, 0.8247, 0.823, 0.8154, 0.8082, 0.8079, 0.8064, 0.8053, 0.8042, 0.8039, 0.8036, 0.8032, 0.8026, 0.731, 0.7757, 0.7901, 0.7045, 0.6616, 0.682, 0.615, 0.6081, 0.6047, 0.4483, 0.5966, 0.5529, 0.6591, 0.5478, 0.5503, 0.6781, 0.4484, 0.3171, 0.5204, 0.5054, 0.3426, 0.2612, 0.2949, 0.2396, 0.425, 0.4806, 0.4026, 0.4132, 0.3615, 0.314, 0.2457, 0.536, -0.0586, 0.4236, 0.0405, -0.0535, 0.1248, 0.3079, -0.0488, 0.2067, -0.0293, 0.2292, -0.3564, -0.0696, 0.0374, 0.1657, 0.2057, 0.1188, -0.121, -0.0156, -0.3087, -0.1385, -0.0713, 0.2231, 0.1009, 0.0482, -0.1311, -0.0146, -0.2254, -0.1913, -0.1185, -0.2466, -0.2519, -0.0308, 1.606, 1.5959, 1.5642, 1.5589, 1.5568, 1.5444, 1.5365, 1.5312, 1.5251, 1.5218, 1.5203, 1.5175, 1.5145, 1.5014, 1.4972, 1.4971, 1.4951, 1.4935, 1.4882, 1.4871, 1.485, 1.4845, 1.4825, 1.4807, 1.4784, 1.4783, 1.4733, 1.4713, 1.4692, 1.4641, 1.3867, 1.4219, 1.4122, 0.4777, 1.3489, 0.4962, 0.951, 0.2298, 0.1072, 0.325, 0.5865, 0.9838, 0.1638, -0.1378, 0.8039, 0.2794, 0.4545, -0.3427, 0.183, 0.0162, 0.4513, 0.6833, -0.2366, -0.1183, 0.0273, -0.0308, 0.5274, -0.2341, 0.4247, 0.3398, 0.169, -0.5888, -0.0563, 0.1248, -0.0502, 0.1247, 0.2674, 0.2051, 0.0503, 0.0812, 0.01, 0.03, -0.3923, -0.3732, 0.0276, 0.0003, -0.3024, -0.4012, -0.2566, -0.3684, -0.3595, 1.3352, 1.3321, 1.2985, 1.2941, 1.2873, 1.2866, 1.2848, 1.2797, 1.2796, 1.2773, 1.276, 1.2742, 1.2652, 1.2592, 1.2562, 1.2532, 1.2516, 1.2483, 1.2476, 1.2456, 1.2423, 1.2413, 1.2413, 1.2379, 1.2335, 1.2329, 1.2318, 1.226, 1.2258, 1.2257, 1.1947, 1.1255, 1.1344, 0.9921, 0.8507, 1.1629, 0.7255, 0.5299, 0.751, 1.0772, 0.4198, 0.9415, 0.9605, 0.2953, 0.5891, 0.5798, 0.2131, 1.1269, 0.0009, -0.2183, 0.4309, 0.4865, 0.3213, 1.0035, 0.37, -0.2046, -0.0153, -0.0093, 0.2097, 0.1966, 0.2631, 0.3428, 0.2548, 0.1971, 0.2212, -0.295, 0.4014, -0.223, -0.1059, -0.0543, -0.0629, -0.2035, -0.2006, -0.1103, -0.0298, -0.0804, 0.0834, -0.0558, -0.0727, -0.1842, -0.152, -0.0809, -0.0356, -0.0452, -0.2555, 1.5869, 1.5703, 1.5638, 1.5591, 1.5578, 1.5526, 1.5355, 1.5297, 1.5273, 1.5184, 1.518, 1.5173, 1.5166, 1.5149, 1.51, 1.5075, 1.5008, 1.5001, 1.4998, 1.4991, 1.4981, 1.4977, 1.4944, 1.4942, 1.492, 1.4915, 1.4913, 1.4902, 1.4902, 1.4895, 1.4725, 1.4858, 1.4593, 1.4024, 1.4405, 1.3809, 0.5655, 1.3656, 0.3181, 1.1182, 0.9453, 0.7493, 0.3431, 0.0424, -0.0609, 0.3718, 0.2784, -0.1445, 0.7007, 0.2979, -0.0677, 0.5763, -0.4558, 0.1008, -0.0823, 0.0181, 0.1708, 0.4126, 0.3854, -0.2303, -0.0281, 0.35, -0.0167, -0.106, 0.3614, -0.5808, 0.0924, 0.1867, -0.2412, -0.1711, -0.095, 0.0185, 0.0154, 0.0386, -0.3807, -0.0295, -0.2012, -0.4182, -0.3628, 1.604, 1.5825, 1.5135, 1.4952, 1.4781, 1.4709, 1.4661, 1.4613, 1.4611, 1.4604, 1.4548, 1.4537, 1.4532, 1.4515, 1.4509, 1.4497, 1.4429, 1.4417, 1.4414, 1.4389, 1.4387, 1.4327, 1.4296, 1.4279, 1.4273, 1.4269, 1.4267, 1.4265, 1.425, 1.4242, 1.4222, 1.4008, 1.3502, 1.2896, 1.4133, 1.4163, 1.3873, 1.3894, 0.4534, 0.0842, 0.2971, 0.0476, 0.3477, 0.2112, 1.3304, 0.0668, 0.1943, 0.4988, 0.1029, 0.1718, -0.4168, 0.2533, -0.1862, 0.1643, 0.1235, 0.5337, 0.1553, -0.1957, -0.0117, 0.1324, -0.0444, 0.0231, -0.0571, 0.1235, 0.1629, 0.3747, -0.1116, -0.0991, -0.1234, -0.3524, -0.0133, -0.4244, -0.333, -0.4541, -0.2448, -0.3886, 1.8898, 1.8542, 1.8528, 1.8446, 1.8251, 1.8232, 1.8185, 1.8177, 1.8142, 1.8127, 1.8113, 1.8086, 1.7961, 1.7929, 1.7923, 1.7891, 1.7878, 1.7815, 1.7761, 1.7677, 1.7649, 1.7649, 1.7637, 1.7601, 1.7575, 1.7525, 1.7521, 1.752, 1.7477, 1.7406, 1.6947, 1.3033, 1.5966, 1.3518, 1.1088, 1.1909, 0.1653, 1.0844, 1.3445, -0.3306, -0.0623, 1.2319, 0.9552, 0.3025, 0.3732, 0.6069, 0.091, -0.0655, 0.0995, 0.4751, 0.7177, -0.39, -0.1415, 0.2203, 0.9294, 0.9468, 0.9872, -0.0452, -0.0544, 0.5062, 0.1478, -0.0381, -0.1157, 0.3403, 0.2228, 0.2181, -0.5113, -0.6433, -0.405, -0.352, -0.2879, 0.1724, -0.397, -0.323, -0.3049, -0.03, -0.3032, -0.3135, -0.132, -0.2325, -0.196, 0.8083, 0.8044, 0.7835, 0.7832, 0.7746, 0.7623, 0.7599, 0.7594, 0.7522, 0.7508, 0.75, 0.7464, 0.7443, 0.7441, 0.7421, 0.7394, 0.7361, 0.7239, 0.7205, 0.7182, 0.7111, 0.7065, 0.6924, 0.6922, 0.6911, 0.6903, 0.6885, 0.6879, 0.686, 0.6856, 0.6787, 0.6361, 0.5336, 0.5564, 0.5811, 0.4726, 0.4688, 0.5241, 0.5034, 0.4051, 0.2689, 0.4712, 0.5178, 0.2944, 0.2137, 0.38, 0.3614, 0.4616, -0.0216, 0.2422, 0.0413, 0.2568, 0.3426, 0.3032, 0.1654, 0.1366, 0.1482, 0.0539, 0.141, 0.0104, 0.0328, 0.1449, 0.184, 0.1939, 0.1322, -0.2368, -0.0781, 0.1306, 0.0832, -0.119, 0.1154, -0.1658, -0.2833, -0.0224, -0.0888, 0.0892, -0.1745, -0.1439, 0.0249, -0.0539, -0.2089, -0.0576, -0.47, 1.0636, 1.0633, 1.0513, 1.0489, 1.0319, 1.029, 1.0285, 1.0118, 1.0031, 0.9953, 0.9895, 0.982, 0.9801, 0.977, 0.9725, 0.9712, 0.9681, 0.9669, 0.9664, 0.9607, 0.9568, 0.9491, 0.9487, 0.9469, 0.9468, 0.941, 0.9409, 0.9406, 0.9378, 0.9378, 0.93, 0.936, 0.8425, 0.7235, 0.3394, 0.2516, 0.2565, 0.1069, 0.0215, 0.3929, -0.0543, 0.3708, 0.2384, 0.0035, -0.17, 0.0527, 0.1177, 0.1927, 0.2417, 0.3192, 0.3282, 0.186, 0.005, 0.179, 0.4058, 0.2065, 0.1271, 0.0479, 0.0972, 0.2458, 0.1241, 0.2138, -0.1328, 0.0632, -0.0276, 0.1013, 0.0616, -0.0754, -0.0438, -0.0991, 0.1128, 0.0949, 0.0442, -0.2888, -0.4432, -0.5928, -0.2984, -0.4047, -0.2044, -0.0681, 1.0946, 1.0788, 1.0715, 0.9974, 0.9885, 0.9825, 0.9785, 0.96, 0.9573, 0.9232, 0.921, 0.9204, 0.9069, 0.8979, 0.8925, 0.8922, 0.8762, 0.8719, 0.8718, 0.8693, 0.8676, 0.8674, 0.861, 0.8596, 0.8564, 0.856, 0.8532, 0.8512, 0.847, 0.8438, 0.8273, 0.837, 0.7723, 0.83, 0.6122, 0.6456, 0.7529, 0.6744, 0.3794, 0.8161, 0.3502, 0.3729, 0.4849, 0.4485, 0.1732, 0.3406, 0.1153, 0.4061, 0.2065, 0.2448, 0.3357, -0.0591, 0.3061, 0.2555, 0.164, 0.5971, 0.2109, 0.4137, 0.561, -0.0615, 0.4023, 0.3592, 0.002, 0.093, 0.0716, 0.222, 0.3218, 0.163, -0.2925, -0.0938, 0.0415, -0.0127, 0.0851, 0.0957, 0.05, 0.0692, -0.1975, -0.2893, -0.4246, -0.1321, -0.2925, -0.1361, -0.4336, 1.4279, 1.4085, 1.3902, 1.3817, 1.3715, 1.3658, 1.3622, 1.3565, 1.3526, 1.3338, 1.3288, 1.3217, 1.3156, 1.3126, 1.3062, 1.3059, 1.3055, 1.3023, 1.294, 1.2934, 1.2926, 1.291, 1.2785, 1.2706, 1.2705, 1.2677, 1.2676, 1.2664, 1.2652, 1.2646, 1.2496, 1.213, 1.2628, 1.0767, 1.1304, 1.0411, 1.096, 0.7283, 0.4775, 0.429, 0.2217, 0.4649, 0.135, -0.0093, 0.09, 0.3208, 0.1801, 0.1595, 0.2977, 0.5158, -0.1681, 0.339, 0.3013, 0.6541, 0.1896, 0.6938, 0.7631, 0.0402, 0.2485, -0.1909, 0.4427, 0.411, 0.257, 0.1108, -0.0202, 0.1354, -0.0122, -0.6351, -0.1291, -0.3937, -0.236, 0.022, 0.1406, 0.069, -0.0984, -0.152, -0.1498, -0.6485, -0.2784, -0.3249, -0.1111, -0.4693, -0.6214, 0.9458, 0.9062, 0.9061, 0.9014, 0.9011, 0.8994, 0.8888, 0.8885, 0.8851, 0.8781, 0.844, 0.8366, 0.8359, 0.8301, 0.83, 0.8223, 0.8191, 0.811, 0.8104, 0.8088, 0.8046, 0.8017, 0.7998, 0.7923, 0.7919, 0.7911, 0.7889, 0.7887, 0.7866, 0.7863, 0.7794, 0.7474, 0.7759, 0.7622, 0.6886, 0.7422, 0.7443, 0.5626, 0.5984, 0.7364, 0.373, 0.4616, 0.4589, 0.3741, 0.5635, 0.435, 0.2046, 0.1007, 0.3235, 0.1971, 0.4058, 0.2613, 0.4578, 0.2977, 0.358, 0.3646, 0.3458, 0.4049, 0.06, 0.2099, -0.0965, 0.2044, -0.0254, 0.1998, -0.0339, 0.3429, -0.2637, 0.1615, 0.1266, 0.2724, 0.0231, -0.0502, 0.0969, 0.1976, -0.2372, 0.0772, -0.1128, -0.0602, -0.1222, 0.0753, -0.2884, -0.1538, -0.0447, -0.3459, -0.3493, -0.2709, -0.064, -0.3031, 1.6763, 1.6086, 1.6037, 1.5958, 1.5925, 1.5828, 1.577, 1.571, 1.5616, 1.5386, 1.5239, 1.509, 1.4829, 1.4821, 1.4817, 1.4764, 1.4679, 1.4533, 1.4213, 1.4168, 1.3906, 1.3905, 1.3897, 1.3758, 1.3724, 1.3711, 1.3484, 1.3474, 1.3454, 1.3397, 1.3293, 1.3379, 1.3084, 1.2481, 1.1185, 1.2835, 1.162, 0.7766, 0.0986, 0.1707, -0.0568, -0.1684, 0.149, 0.337, 0.2206, 0.2469, 0.1831, 0.3904, 0.2174, 0.1247, -0.1308, -0.0752, 0.041, -0.2403, -0.1481, 0.15, 0.3708, -0.0707, -0.3283, 0.0296, 0.1839, 0.3833, 0.2313, -0.2232, 0.0806, 0.0153, -0.3208, -0.0705, -0.0459, -0.2682, -0.3123, -0.1988, -0.5369, -0.4601, 1.4482, 1.4009, 1.3964, 1.3903, 1.3877, 1.3745, 1.3735, 1.3714, 1.3677, 1.3656, 1.3653, 1.3578, 1.3546, 1.353, 1.3525, 1.3494, 1.3427, 1.3412, 1.3391, 1.339, 1.3369, 1.3367, 1.3321, 1.3296, 1.3265, 1.3246, 1.3245, 1.3243, 1.3213, 1.3186, 1.3139, 1.2675, 0.1922, -0.2039, -0.1265, 0.3375, 0.1584, 0.237, 0.1028, 0.2229, 0.1133, -0.0008, -0.1899, -0.1012, 0.0592, -0.022, 0.5255, 0.4697, 0.1712, 0.0904, 0.0024, 0.3123, 0.0966, -0.2033, 0.1804, 0.0889, 0.0815, 0.1221, 0.0315, 0.2903, 0.2353, 0.0088, -0.2629, -0.1659, -0.3781, -0.1397, 0.0163, -0.2124, -0.2825, -0.077, -0.3069, -0.3895, -0.7657, -0.0801, 0.9271, 0.9223, 0.9157, 0.9157, 0.9058, 0.9007, 0.8814, 0.8667, 0.8581, 0.8475, 0.8445, 0.8356, 0.8229, 0.8181, 0.8155, 0.8101, 0.8012, 0.8006, 0.8001, 0.7997, 0.7988, 0.7984, 0.7962, 0.7921, 0.7888, 0.7837, 0.7824, 0.7811, 0.7802, 0.7789, 0.7771, 0.7733, 0.7755, 0.6437, 0.6606, 0.6754, 0.6856, 0.7427, 0.7098, 0.7374, 0.6906, 0.7357, 0.4426, 0.5021, 0.3671, 0.2998, 0.4925, 0.6377, 0.4394, 0.216, 0.3916, 0.3646, 0.0301, 0.3133, 0.3596, 0.3928, 0.3648, 0.2266, -0.157, 0.3424, 0.1439, 0.2475, 0.3005, -0.0587, 0.192, 0.0237, 0.2417, 0.3, 0.0637, -0.1207, 0.1556, -0.1899, -0.0029, 0.1172, -0.0195, -0.1304, 0.0339, -0.0048, 0.2115, 0.0442, -0.1019, -0.113, -0.3124, 0.0138, -0.1772, -0.4151, 0.0034, -0.1812, -0.2095, 1.6181, 1.6147, 1.6081, 1.6028, 1.5879, 1.5675, 1.5588, 1.5582, 1.5455, 1.5437, 1.5382, 1.5351, 1.5339, 1.5292, 1.5285, 1.5252, 1.5221, 1.5209, 1.5169, 1.5143, 1.5081, 1.5078, 1.5076, 1.5074, 1.5072, 1.5049, 1.5034, 1.5024, 1.5022, 1.5011, 1.4997, 1.4966, 1.4676, 1.493, 1.4882, 1.0168, 0.9848, 0.8972, 0.1681, 0.7541, 0.5495, 0.0097, -0.2271, 0.1648, -0.0079, 0.7901, 0.4074, 0.0583, -0.4692, 0.0556, 0.1793, 0.233, 0.2723, -0.0083, -0.1375, 0.3956, 0.4809, 0.1685, 0.4322, -0.3113, -0.0067, -0.2801, 0.1044, 0.1103, 0.1749, -0.4618, -0.0826, 0.178, 0.0457, 0.0112, -0.0257, 0.0654, 0.2113, -0.3826, 0.0295, -0.1818, -0.1001, -0.3875, -0.3348, -0.4892, -0.2844, -0.3496, -0.6439, 2.0707, 2.0526, 2.043, 2.0273, 2.0263, 2.0173, 1.9994, 1.9984, 1.9968, 1.9956, 1.992, 1.9911, 1.986, 1.9856, 1.9763, 1.9733, 1.9731, 1.9712, 1.9667, 1.9636, 1.9596, 1.9585, 1.9584, 1.9578, 1.9543, 1.9525, 1.9518, 1.9502, 1.948, 1.9452, 1.9452, 1.9402, 1.9445, 1.9369, 1.9113, 1.1538, 1.5268, 1.8929, 1.873, 1.8808, 1.7493, 1.2009, -0.1042, -0.2869, -0.513, 1.6551, -0.1235, 0.0936, -0.244, 1.2992, -0.0426, 1.6112, 1.5942, -0.394, -0.0839, 0.5964, -0.0417, -0.1215, 0.2492, 0.0913, -0.0726, 0.0539, 0.1967, 0.0173, -0.1526, 0.1229, -0.2682, -0.0595, 0.3384, -0.4864, -0.0189, -0.0481, -0.4991, -0.084, -0.6036, -0.2749, -0.0941, -0.2623, -0.5331, -0.5399, -0.7528, -0.5357, 1.1035, 1.0885, 1.0865, 1.0778, 1.0755, 1.0717, 1.0622, 1.0617, 1.0561, 1.0557, 1.055, 1.0541, 1.0538, 1.0508, 1.0489, 1.0347, 1.0326, 1.0323, 1.0315, 1.0289, 1.0271, 1.025, 1.0186, 1.0169, 1.0163, 1.0159, 1.01, 1.0088, 1.0067, 1.0063, 0.9882, 0.9619, 0.9782, 0.945, 0.9083, 0.5534, 0.1964, 0.8432, 0.2651, 0.2768, 0.6202, 0.6733, 0.7209, -0.1045, 0.1983, 0.6256, 0.1819, 0.3119, 0.2988, 0.2863, 0.1364, 0.1482, 0.2305, 0.0383, 0.3699, -0.1316, 0.1703, 0.4526, 0.5907, 0.3433, 0.1735, 0.2718, 0.1527, 0.1581, 0.1382, 0.1412, -0.108, -0.2353, -0.1215, 0.0186, 0.1929, 0.1223, 0.0827, -0.0785, -0.2895, -0.1021, 0.0166, -0.1514, -0.3004, -0.1109, -0.306, -0.749, 0.0208, 1.2792, 1.1945, 1.1684, 1.1529, 1.1308, 1.1205, 1.1128, 1.0981, 1.0952, 1.0766, 1.0739, 1.069, 1.061, 1.0504, 1.0493, 1.0485, 1.0481, 1.0471, 1.0424, 1.0419, 1.0407, 1.0406, 1.0398, 1.0374, 1.0268, 1.0248, 1.0192, 1.012, 1.0065, 1.0057, 0.9169, 0.9385, 0.9795, 0.9738, 0.8943, 0.9095, 0.9412, 0.4771, 0.8392, 0.7713, 0.4254, 0.2032, 0.7455, 0.3507, 0.835, -0.0135, 0.6307, 0.3101, 0.4688, 0.43, 0.2107, 0.2772, 0.2539, 0.1143, -0.1076, 0.1825, 0.0675, -0.2303, 0.0573, -0.0792, 0.3172, 0.3912, -0.4168, 0.1548, 0.1114, -0.1078, 0.1962, 0.0183, 0.0633, 0.0461, 0.1205, -0.2018, 0.1616, -0.0809, -0.3853, -0.1982, -0.1682, -0.2384, -0.2642, -0.3839, -0.1214, -0.3228, -0.2675, 0.8863, 0.8717, 0.8485, 0.8301, 0.8023, 0.7846, 0.7801, 0.7601, 0.759, 0.7578, 0.7573, 0.7543, 0.7407, 0.7367, 0.7344, 0.7226, 0.7151, 0.6984, 0.6949, 0.6939, 0.6898, 0.669, 0.668, 0.6668, 0.6665, 0.6619, 0.66, 0.657, 0.6569, 0.6568, 0.6326, 0.6485, 0.5563, 0.5359, 0.3945, 0.5886, 0.4245, 0.5609, 0.4614, 0.352, 0.1523, 0.3678, 0.244, 0.2509, 0.3764, 0.2164, 0.1553, 0.2497, 0.1873, 0.2858, 0.1925, 0.0177, 0.088, 0.2844, 0.3622, 0.1664, 0.2117, 0.2153, 0.2527, 0.1551, 0.1644, 0.1872, 0.1774, 0.2952, -0.2556, 0.1543, 0.0268, 0.0243, 0.1908, -0.0712, -0.0882, -0.2387, -0.2764, -0.5278, -0.0431, -0.1533, -0.0618, 0.0461, -0.3157, -0.4957, 0.8525, 0.7942, 0.791, 0.7909, 0.7831, 0.7802, 0.7742, 0.7737, 0.7658, 0.7543, 0.7542, 0.74, 0.7392, 0.7344, 0.7284, 0.7204, 0.7169, 0.708, 0.7051, 0.7032, 0.7031, 0.7021, 0.7016, 0.6961, 0.6925, 0.6875, 0.6813, 0.6745, 0.6743, 0.6737, 0.6677, 0.6628, 0.6664, 0.5528, 0.5307, 0.5193, 0.3866, 0.4017, 0.5781, 0.2035, 0.4737, 0.3909, 0.3848, 0.3122, 0.2556, 0.306, 0.1835, 0.3731, 0.2784, 0.2754, 0.1311, 0.2021, 0.2432, 0.3922, 0.2563, 0.2825, 0.0828, 0.167, 0.1944, 0.1179, 0.3052, -0.1991, 0.1804, 0.0032, 0.1992, -0.1523, 0.0099, 0.063, -0.0165, -0.0554, -0.2032, -0.5558, -0.1633, -0.2387, -0.1367, -0.0693, -0.4307, 1.3497, 1.3374, 1.3238, 1.3038, 1.2982, 1.2806, 1.2752, 1.2704, 1.2678, 1.2566, 1.2549, 1.2547, 1.2528, 1.2524, 1.2523, 1.252, 1.2517, 1.2454, 1.2429, 1.2403, 1.2384, 1.2378, 1.2348, 1.2343, 1.2338, 1.23, 1.2285, 1.2276, 1.2261, 1.2214, 1.0204, 0.2399, 0.6865, 0.9522, 0.0608, -0.1026, 0.8913, 0.6711, -0.047, 0.1706, 0.3269, 0.2402, 0.3022, 0.2887, 0.0929, 0.2707, 0.42, 0.1145, 0.6644, 0.4943, 0.5652, 0.171, 0.5332, 0.3884, 0.1833, 0.1556, 0.126, 0.0318, -0.1429, -0.225, -0.0348, -0.191, -0.0673, -0.3481, 0.233, -0.1426, -0.0164, -0.1969, -0.2035, 0.0471, -0.0261, -0.4427, -0.0145, -0.4587, -0.3081, -0.0667, -0.3086, -0.0603, -0.5846, 1.052, 1.0291, 1.0279, 1.0136, 1.0054, 1.0045, 1.0034, 1.0012, 0.9934, 0.9922, 0.9831, 0.9825, 0.9806, 0.9753, 0.9749, 0.9713, 0.9668, 0.9546, 0.9519, 0.949, 0.9417, 0.94, 0.9375, 0.9362, 0.9355, 0.9353, 0.9334, 0.9326, 0.9317, 0.9316, 0.9194, 0.9278, 0.8018, 0.8097, 0.7551, 0.798, 0.5533, 0.6447, 0.7046, 0.4637, 0.3636, 0.4913, 0.3884, 0.3693, 0.5901, 0.1363, 0.5701, 0.6397, 0.4781, 0.1277, 0.2546, 0.6369, 0.3665, 0.656, 0.2517, 0.4388, 0.2311, 0.4387, 0.2893, -0.1242, -0.0395, 0.1685, 0.1004, -0.0434, 0.0958, 0.0556, 0.0465, 0.1826, 0.1615, 0.0731, 0.1159, 0.1237, -0.4636, -0.1878, -0.2026, -0.0419, -0.1053, -0.2757, -0.218, -0.0051, -0.4206, -0.2375, -0.2186, 1.1553, 1.1254, 1.1114, 1.0835, 1.0507, 1.044, 1.0414, 1.0199, 1.0019, 0.984, 0.9821, 0.979, 0.9725, 0.9581, 0.9506, 0.948, 0.9461, 0.9385, 0.9379, 0.93, 0.9276, 0.9214, 0.9203, 0.9015, 0.8694, 0.8632, 0.8561, 0.8511, 0.8502, 0.8399, 0.83, 0.8352, 0.8219, 0.8037, 0.6978, 0.7333, 0.6433, 0.4871, 0.2471, 0.4594, 0.612, 0.4836, 0.1225, 0.2883, 0.3492, 0.7174, 0.3339, 0.4782, 0.2691, -0.1534, 0.1922, 0.2676, 0.1234, 0.0266, -0.0336, 0.3068, 0.368, -0.0306, 0.0601, -0.1405, 0.1579, -0.0934, -0.337, 0.1352, -0.0866, 0.1787, 0.1233, 0.0019, 0.0865, -0.103, -0.0467, -0.1432, -0.1658, -0.0431, -0.0573, -0.4271, -0.2218, -0.1169, -0.4806, 1.5492, 1.4488, 1.3689, 1.3438, 1.3418, 1.3415, 1.3385, 1.3384, 1.3381, 1.3244, 1.3014, 1.2876, 1.2723, 1.272, 1.272, 1.2603, 1.2599, 1.2599, 1.2598, 1.2565, 1.2544, 1.2525, 1.2499, 1.2483, 1.2458, 1.244, 1.2397, 1.2358, 1.2349, 1.2323, 1.2319, 1.1349, 1.1441, 0.686, 0.3985, 0.2792, 0.9604, 0.2086, 0.7085, 0.4544, 0.3956, 0.0144, 0.2146, 0.6875, 0.8479, 0.2412, -0.1763, 0.1547, 0.239, 0.097, -0.1132, 0.5196, -0.1205, 0.0431, 0.4241, 0.1888, 0.2599, 0.0602, -0.4516, 0.0095, 0.0198, 0.1957, 0.1465, 0.1626, -0.1582, 0.0816, 0.1082, 0.1149, -0.001, -0.0721, -0.1511, 0.1091, -0.4298, -0.1103, -0.514, -0.0723, -0.2626], \"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, -9.4179, -10.401, -8.8577, -9.5664, -7.1072, -9.2172, -9.3865, -9.0645, -9.4628, -8.2605, -5.4281, -10.4787, -10.5625, -9.6697, -8.7068, -7.8933, -10.5362, -10.5759, -10.4963, -9.5004, -10.4778, -10.5228, -10.1313, -7.9827, -9.7136, -9.9723, -10.0048, -9.5437, -9.2234, -7.0002, -8.6378, -7.5856, -8.5818, -8.481, -2.5638, -7.5032, -7.818, -9.1554, -6.2945, -5.297, -5.6588, -5.7836, -6.3393, -7.1533, -6.3381, -7.0776, -5.4004, -5.7835, -6.6213, -4.9773, -5.3215, -6.0455, -6.6369, -4.2353, -6.1201, -4.853, -3.3384, -5.7674, -5.9262, -3.9423, -4.3279, -4.5576, -4.804, -5.0161, -5.8691, -3.8121, -5.1058, -4.8547, -4.8761, -4.9711, -4.21, -4.4604, -5.3489, -4.5301, -4.952, -4.9211, -5.1364, -5.4352, -5.1694, -5.5465, -5.4814, -5.4229, -5.3646, -9.8893, -6.9396, -8.9746, -9.0626, -9.4175, -10.065, -10.5818, -7.3243, -9.2708, -10.624, -9.3619, -8.9284, -10.1193, -9.4121, -9.9615, -10.0912, -10.641, -10.1386, -9.8557, -10.0941, -10.1596, -9.6022, -10.4335, -10.6189, -10.1678, -10.1519, -10.6233, -10.6544, -10.6693, -9.5311, -8.087, -5.8035, -6.3614, -9.0864, -7.7725, -7.6758, -6.4497, -5.2365, -5.9919, -7.5652, -4.5387, -4.695, -5.204, -5.1654, -6.492, -4.8925, -6.732, -7.7229, -4.3874, -5.2734, -3.9111, -2.6983, -5.5423, -3.2483, -4.6575, -4.2466, -4.8045, -5.5139, -4.7271, -5.3865, -3.9237, -4.9744, -6.4478, -3.8121, -5.2295, -5.3212, -4.885, -5.2794, -5.3554, -4.5635, -4.5345, -4.5117, -5.1493, -5.0459, -5.1058, -5.2757, -5.3292, -9.9408, -8.48, -9.1052, -10.0731, -8.8127, -9.7945, -10.646, -9.5819, -10.1807, -8.3175, -10.7318, -10.26, -9.0096, -9.3967, -8.5227, -9.2843, -8.3315, -10.7108, -9.4591, -10.6892, -10.6911, -10.7314, -7.5916, -9.9555, -7.1682, -10.6895, -8.0224, -10.7358, -10.7935, -9.8961, -9.2334, -8.1439, -7.6471, -5.1977, -7.6843, -3.9977, -6.8063, -7.2693, -6.1447, -7.3323, -4.166, -5.2681, -5.6528, -5.3978, -6.5427, -4.5798, -3.7438, -5.9895, -4.6619, -5.2909, -5.3901, -4.1523, -4.2373, -4.7611, -5.7096, -4.9202, -6.3751, -6.3584, -4.0246, -2.8541, -5.3997, -5.3675, -3.4185, -5.0491, -4.8079, -4.8385, -5.0515, -5.2728, -5.2541, -5.9245, -3.9707, -5.1672, -5.3734, -4.7955, -5.0446, -5.1457, -5.3963, -10.263, -9.3625, -9.6232, -9.3414, -10.3415, -9.3915, -8.5221, -9.4941, -7.2026, -10.2983, -8.0548, -10.3544, -10.3214, -8.6772, -7.5527, -8.2795, -10.0111, -10.04, -10.0602, -9.9984, -10.2112, -5.2764, -8.8011, -9.7824, -8.532, -8.3787, -9.2989, -10.3347, -10.6145, -9.2104, -8.3056, -7.3413, -6.8886, -8.0859, -8.5725, -7.6344, -6.039, -6.673, -6.5191, -7.1529, -4.0885, -6.1437, -7.1174, -3.5547, -5.5747, -4.0921, -3.1823, -5.9874, -4.1627, -5.6119, -3.827, -6.1834, -7.0515, -5.4398, -4.7981, -5.4307, -4.955, -4.062, -4.9058, -5.291, -5.8526, -4.7519, -5.8928, -5.415, -4.8074, -4.5959, -4.9235, -3.0977, -4.8499, -4.4917, -4.8616, -5.0523, -5.4788, -4.9523, -5.2688, -5.5479, -5.1971, -5.4944, -5.4277, -5.4595, -5.4481, -10.1078, -8.9116, -9.6586, -9.2407, -9.1247, -8.189, -8.996, -9.1949, -10.1091, -8.9409, -10.0451, -10.1016, -10.148, -10.145, -10.2088, -10.1912, -10.1818, -8.5633, -9.6298, -10.1702, -10.1676, -9.6896, -10.227, -9.4289, -10.202, -9.6973, -9.6904, -10.2067, -9.6536, -10.2353, -9.6778, -9.6649, -9.3459, -7.0423, -8.9139, -5.0393, -5.284, -5.9337, -6.7946, -7.8458, -7.6287, -3.8043, -7.5229, -5.083, -7.5888, -7.107, -2.7206, -5.4385, -5.8129, -6.4644, -6.5177, -3.2319, -5.6317, -4.86, -5.3157, -3.8756, -4.792, -4.2738, -4.2472, -6.0878, -4.3037, -6.3026, -6.3554, -4.7441, -4.9181, -6.3705, -5.7122, -4.8451, -5.4472, -5.0232, -4.5003, -5.085, -5.2809, -5.4587, -5.394, -5.2752, -5.4961, -4.1691, -4.9722, -4.9746, -5.0251, -4.9621, -5.2816, -5.2921, -5.2934, -8.972, -9.2107, -9.8435, -8.8374, -10.5166, -9.9078, -9.9317, -10.0403, -9.4693, -9.6592, -10.0846, -10.5094, -6.1787, -8.6695, -9.5375, -10.0588, -5.3686, -9.4245, -9.4257, -10.5875, -9.7321, -8.537, -10.0467, -10.5037, -4.8279, -9.4378, -10.5775, -10.1091, -7.7474, -9.4673, -7.1049, -5.8482, -8.701, -7.3045, -3.3765, -6.0768, -4.9459, -4.5155, -7.173, -4.2746, -4.5899, -7.3553, -6.701, -7.2559, -4.1957, -6.5056, -3.1734, -5.6018, -7.8166, -4.8914, -4.7624, -5.5796, -5.2205, -5.5451, -2.8031, -3.9889, -4.9915, -5.1439, -6.0812, -5.3509, -3.9676, -6.5461, -5.052, -5.0643, -4.4295, -4.5061, -5.5433, -4.531, -5.0996, -5.0564, -5.1654, -5.3385, -5.225, -5.2332, -5.5154, -8.9589, -8.044, -8.8253, -10.0842, -10.0452, -9.6978, -9.1708, -10.0791, -9.7574, -7.4964, -10.1787, -8.644, -10.0458, -10.1839, -8.4465, -8.5146, -5.0278, -9.2674, -9.7695, -10.1005, -9.6991, -10.1754, -10.212, -10.2159, -8.2701, -10.2482, -9.2748, -10.3071, -10.2438, -9.4008, -8.68, -7.2192, -3.2754, -7.9353, -8.7802, -6.3354, -4.7441, -6.5899, -6.7582, -6.0472, -4.8384, -5.0906, -4.1651, -6.5389, -5.0285, -5.5759, -4.8978, -3.2577, -5.6392, -2.7985, -5.2644, -6.0983, -3.8935, -6.1388, -5.3539, -4.7459, -5.856, -5.6101, -4.5603, -5.3828, -4.8344, -5.2614, -4.9175, -4.8901, -5.5354, -4.8218, -4.9829, -4.4346, -5.4449, -4.5315, -4.3202, -5.446, -4.6243, -5.1038, -5.0448, -5.0418, -5.4013, -5.3435, -5.2368, -5.3439, -9.7319, -9.218, -8.8877, -8.7663, -9.7863, -9.2606, -10.3787, -9.3056, -9.8572, -10.3658, -7.6881, -10.3988, -9.9192, -9.823, -10.5212, -9.6208, -9.8687, -7.5473, -9.8829, -9.6956, -9.3066, -10.033, -8.5441, -9.9677, -9.9324, -9.3928, -9.9776, -10.0394, -9.9784, -9.9713, -6.0493, -7.7762, -8.6992, -4.7987, -6.6245, -8.7921, -6.9164, -3.722, -6.1836, -3.0599, -5.0399, -4.153, -5.5888, -6.3842, -6.4785, -4.1623, -6.1614, -7.1082, -6.3027, -6.9708, -3.6477, -4.9649, -2.8569, -3.8981, -5.391, -4.7567, -4.5298, -4.7659, -4.2941, -5.0019, -6.3329, -5.3796, -5.4186, -5.4374, -4.8803, -5.1132, -5.4508, -5.7548, -5.3638, -4.8928, -4.594, -5.016, -5.0989, -5.5068, -5.226, -5.143, -5.3906, -5.4245, -5.4204, -8.9912, -9.5276, -10.3881, -9.5345, -9.3136, -9.9212, -9.5546, -9.4056, -10.4632, -9.6843, -9.9332, -10.527, -9.635, -9.681, -9.112, -10.5196, -10.103, -10.6917, -10.585, -10.6282, -7.7835, -9.7588, -9.7272, -9.8327, -9.5488, -10.7095, -9.7918, -10.5725, -10.1833, -8.1225, -6.7174, -4.9665, -6.5841, -5.7034, -3.3789, -4.8061, -6.3417, -5.2058, -5.1586, -7.7428, -3.111, -7.0535, -3.8553, -6.6613, -2.6874, -6.1307, -5.3555, -4.9144, -6.7361, -5.4265, -4.7199, -4.9683, -6.0905, -4.7713, -4.2742, -4.7385, -4.4164, -3.9876, -4.8055, -4.5758, -5.8964, -5.4139, -4.5147, -5.0636, -5.536, -5.7202, -5.0905, -5.3768, -5.5487, -5.1254, -5.2474, -4.854, -5.3367, -5.3105, -8.9991, -9.2271, -9.8609, -10.3391, -9.872, -10.3946, -8.1959, -10.3625, -9.6082, -10.4998, -7.8355, -9.3639, -9.4057, -9.8776, -8.6335, -10.4032, -8.2926, -9.2587, -9.9071, -9.5969, -9.6796, -9.6387, -7.6343, -8.1421, -9.9018, -10.4464, -9.5372, -9.3442, -10.558, -8.7437, -6.2022, -7.0055, -7.1759, -4.4201, -7.8833, -6.3747, -7.2001, -6.722, -6.2351, -4.6157, -6.438, -2.6278, -3.8492, -5.2872, -3.1838, -5.4119, -5.9917, -3.6462, -7.0075, -5.2587, -5.1934, -4.9664, -6.3791, -4.3067, -5.3315, -5.2385, -4.2733, -4.6778, -5.3664, -4.7948, -4.9884, -5.8489, -5.2875, -4.4135, -4.882, -5.4662, -4.9491, -5.0933, -4.1967, -5.0159, -4.7493, -5.342, -4.6547, -5.242, -5.1891, -5.3372, -10.2115, -9.4753, -10.2629, -9.719, -10.3618, -10.3068, -10.2733, -10.3753, -10.377, -10.3541, -10.3478, -10.2615, -10.3434, -10.3995, -10.3885, -9.8156, -10.3274, -8.379, -10.3707, -10.3901, -10.3752, -10.3983, -10.4158, -10.3815, -10.3853, -8.5017, -10.3962, -10.4397, -8.9874, -9.9521, -9.8627, -9.1403, -9.5299, -8.5278, -3.4317, -9.9437, -3.0717, -4.7667, -6.4735, -7.1445, -4.6746, -2.7554, -4.7539, -6.6827, -3.8462, -5.2098, -6.6794, -4.8562, -5.3543, -5.7453, -5.8658, -6.2829, -4.3847, -4.9654, -6.9484, -4.7464, -4.8325, -5.4096, -4.3133, -4.814, -5.5229, -6.0258, -4.4302, -5.4778, -5.4064, -4.2341, -5.2561, -5.6663, -5.5022, -5.1778, -4.9911, -4.6587, -5.0365, -5.2829, -5.4976, -5.0524, -5.2895, -5.4577, -5.4618, -10.0928, -9.8228, -10.1916, -9.6018, -10.4479, -9.8689, -10.4209, -10.21, -10.4917, -10.2126, -9.6671, -10.4355, -9.5052, -9.6643, -10.4783, -9.3493, -10.5191, -9.425, -10.527, -9.2365, -10.5194, -10.5561, -10.5615, -9.2031, -6.8253, -10.5417, -9.7227, -10.5244, -10.5151, -9.3969, -8.0269, -8.7027, -9.0237, -6.7689, -7.9282, -6.7466, -8.636, -8.4524, -5.9894, -6.2508, -3.7804, -5.394, -4.0634, -6.4897, -3.1469, -5.8018, -5.9019, -6.3371, -6.8759, -5.8568, -5.6446, -5.9265, -4.7523, -2.8387, -5.3014, -5.8605, -7.1953, -6.3107, -4.3415, -5.4248, -4.8042, -4.3376, -6.0684, -3.8171, -5.4069, -4.0401, -5.6752, -5.3839, -5.3576, -4.4763, -5.1244, -5.1248, -5.4642, -4.9843, -4.9877, -5.1424, -5.0688, -4.9736, -5.0158, -5.2494, -5.3048, -5.2298, -5.1589, -5.4559, -9.3393, -9.3133, -7.4653, -9.4321, -8.4927, -9.5256, -9.3607, -9.4263, -9.4632, -9.4061, -9.5129, -9.4281, -9.5587, -6.9051, -4.3992, -9.5693, -8.0617, -9.5766, -9.482, -7.8606, -9.5896, -9.4585, -9.5008, -9.5465, -9.5499, -7.6519, -8.6536, -8.6905, -9.592, -9.0845, -8.0718, -7.4613, -8.7324, -6.0938, -6.2742, -8.9006, -7.5875, -4.2005, -3.8062, -4.0065, -4.8407, -3.001, -3.7866, -5.2679, -3.5048, -5.1037, -5.5827, -4.9132, -4.975, -4.4211, -4.8327, -4.4421, -4.4964, -5.3496, -4.9064, -4.9712, -4.9729, -5.1329, -4.7474, -4.9262, -5.3664, -4.9887, -5.5413, -5.1104, -5.2499, -5.4908, -5.4452, -5.3749, -5.4864, -8.7353, -8.6512, -9.9506, -8.0395, -7.9642, -8.5475, -9.9864, -10.0612, -9.6629, -10.5435, -10.5795, -10.0212, -9.8423, -9.5548, -10.0573, -10.6068, -9.8722, -9.3847, -10.1233, -8.6695, -8.8708, -9.2724, -10.6645, -9.2369, -10.1834, -9.4333, -9.0158, -9.7693, -9.261, -9.1648, -8.2939, -9.0121, -5.0411, -5.1277, -8.0795, -4.5095, -5.1959, -6.0123, -6.3332, -7.0072, -7.0857, -5.1174, -3.0903, -6.426, -4.6514, -3.7146, -6.4391, -5.9966, -5.674, -5.1015, -3.6477, -6.0724, -6.4821, -4.336, -5.8776, -4.7512, -5.7466, -4.2928, -5.4017, -5.4364, -2.9662, -4.3112, -5.6879, -5.0317, -4.2094, -4.9913, -5.7092, -5.7605, -5.4749, -5.3274, -4.7217, -4.9577, -4.6337, -5.1412, -5.1766, -4.9879, -5.0547, -5.2533, -5.339, -5.4343, -9.7853, -10.3978, -9.4762, -6.3514, -10.5465, -6.6076, -10.0664, -8.7263, -8.7039, -10.6862, -7.0889, -10.1873, -9.8221, -8.851, -10.0937, -9.7421, -10.7374, -10.571, -6.3882, -9.6161, -9.9305, -8.5056, -9.8371, -9.1359, -10.6542, -8.2853, -7.9714, -8.7695, -8.9265, -10.1773, -6.2574, -7.977, -6.2703, -5.5682, -6.0964, -7.3708, -6.8801, -2.9981, -7.333, -6.9113, -7.238, -7.1121, -6.7641, -6.7809, -5.8404, -6.2174, -3.7597, -6.6885, -4.1879, -4.9059, -6.5415, -4.6575, -5.9961, -2.796, -3.9931, -4.725, -5.2616, -4.8154, -6.0572, -5.4192, -3.7636, -5.4018, -4.3217, -4.9052, -4.2759, -4.3903, -5.4158, -5.3395, -4.6133, -5.4301, -4.8522, -4.9274, -5.2563, -5.1603, -5.2386, -5.2389, -5.1721, -5.237, -5.2427, -10.0675, -10.0819, -10.1872, -8.1864, -10.1027, -7.415, -9.2113, -10.1613, -9.5861, -10.2203, -10.1173, -10.3206, -10.129, -9.8616, -9.1914, -8.2438, -10.2521, -10.0501, -10.2408, -9.2918, -10.2141, -7.6316, -10.3605, -10.6202, -9.813, -6.9255, -10.0247, -10.2822, -10.1906, -10.2371, -9.8969, -9.3422, -7.9575, -5.3157, -9.3557, -6.6881, -5.5033, -3.587, -8.6701, -3.7517, -5.8163, -7.8328, -4.7815, -6.0117, -6.979, -5.9967, -7.1993, -5.799, -5.1004, -4.6786, -5.6076, -5.1877, -2.7892, -5.9857, -5.1019, -4.977, -3.3422, -6.4857, -6.0854, -3.7736, -4.3189, -4.3782, -4.5235, -4.9015, -5.5775, -4.9069, -5.4047, -4.8274, -4.8289, -4.9235, -5.0581, -4.8602, -4.4939, -4.5435, -5.1398, -5.3465, -5.2943, -5.4567, -5.2506, -5.1813, -10.1283, -9.663, -9.7185, -9.203, -8.4913, -8.8767, -10.2542, -9.8188, -9.2308, -9.7669, -8.5464, -9.6143, -10.2871, -9.1928, -8.8054, -9.6672, -10.2927, -9.8102, -9.8659, -10.0178, -8.0502, -9.867, -8.9581, -7.8624, -9.6931, -10.5322, -9.8795, -8.4698, -9.8969, -9.9824, -7.7163, -9.3969, -8.4251, -8.3872, -8.4176, -3.835, -5.3649, -6.9586, -7.7805, -7.2372, -5.5546, -6.2212, -6.3892, -6.3048, -4.1651, -3.8082, -5.6213, -4.7193, -5.6837, -5.9282, -5.3746, -5.3049, -3.3471, -5.1823, -2.9585, -5.5518, -5.2473, -5.2073, -4.4311, -3.8705, -6.0191, -4.8197, -4.8615, -5.6202, -5.0319, -5.4476, -4.4764, -5.8078, -4.8758, -4.8893, -4.3151, -5.1355, -5.1747, -4.9467, -4.7964, -5.0931, -5.3821, -5.4247, -5.2473, -5.377, -9.2091, -10.3582, -9.8116, -9.6855, -10.3082, -10.3009, -10.3019, -10.4799, -9.2863, -10.449, -9.8278, -9.6229, -8.0471, -10.462, -9.786, -10.3885, -9.3531, -9.88, -9.801, -10.0417, -9.9633, -10.5154, -10.4617, -9.8189, -9.858, -9.923, -10.4733, -10.5021, -10.5652, -10.4652, -8.1763, -8.4911, -8.9347, -8.3316, -8.3023, -9.3238, -6.0108, -5.9574, -3.1135, -7.288, -6.3512, -3.7414, -4.5952, -5.5683, -6.645, -4.1663, -8.1427, -5.6732, -5.6205, -5.6462, -6.506, -6.3341, -2.8745, -3.7321, -4.7962, -6.0673, -5.4281, -6.4563, -5.3563, -4.5487, -4.3457, -4.1261, -5.7244, -5.6361, -5.6877, -5.0336, -5.4522, -4.8752, -5.0668, -4.5406, -5.4677, -5.4557, -4.5318, -5.4188, -4.9809, -5.2139, -5.3685, -5.2244, -5.1509, -5.0675, -5.4223, -5.2944, -5.2437, -5.4136, -5.4172, -5.4091, -10.3094, -9.0236, -9.8967, -10.3976, -10.5661, -10.5352, -7.5481, -10.5714, -10.4824, -10.4188, -10.5737, -10.4657, -10.5107, -9.4605, -10.5334, -9.5595, -10.5236, -9.6326, -9.464, -10.5136, -10.6394, -10.5375, -8.3278, -9.6434, -10.5083, -8.645, -10.1173, -10.0177, -10.53, -10.516, -9.425, -7.3027, -7.637, -6.9732, -6.1574, -5.9641, -6.0883, -5.1869, -4.4966, -6.0502, -5.5651, -4.7747, -4.638, -5.6025, -7.9422, -7.3613, -6.6987, -5.1994, -5.0698, -4.1332, -5.8645, -5.4186, -2.8345, -6.4099, -5.7129, -4.9725, -3.3652, -4.7483, -5.2254, -5.3884, -4.8307, -4.5661, -3.8847, -4.853, -5.0343, -4.2133, -5.4718, -4.5462, -4.504, -4.2239, -4.5558, -5.1342, -5.0676, -4.948, -5.1379, -5.3906, -5.2937, -8.2758, -9.6251, -7.7404, -9.721, -9.7181, -9.7119, -9.7317, -9.7257, -9.7159, -9.7488, -9.7355, -9.6882, -9.7738, -9.7521, -9.8255, -9.7428, -9.7815, -9.8403, -9.8134, -9.7811, -9.806, -9.8013, -9.8531, -9.0111, -9.2407, -9.7991, -9.7932, -9.7779, -9.2576, -9.8351, -8.4993, -9.3485, -7.9319, -9.0078, -8.5587, -5.2225, -3.1449, -4.5087, -9.3391, -8.1602, -8.0511, -3.9247, -6.9188, -4.2971, -5.5859, -3.0766, -4.7352, -5.275, -5.1905, -4.4289, -5.3856, -4.9118, -3.9417, -6.0249, -5.5738, -4.9381, -5.6374, -5.1041, -4.4932, -4.9211, -5.3325, -5.693, -5.0875, -5.0754, -4.5344, -5.3573, -4.9219, -4.4495, -5.1363, -5.0047, -5.2342, -5.1077, -5.1127, -5.4769, -9.5736, -9.9703, -9.9558, -10.4618, -10.5146, -10.5002, -9.7079, -10.4532, -8.6809, -10.5689, -10.4445, -10.0446, -10.4916, -10.5072, -9.7419, -10.5495, -10.5388, -10.5508, -10.552, -10.5537, -10.0553, -10.5131, -9.9474, -10.5287, -10.5739, -10.0145, -10.0586, -9.7268, -9.7108, -9.1311, -8.5679, -8.6863, -9.6238, -9.3499, -9.0514, -7.9122, -6.4209, -6.2451, -6.0102, -7.4687, -5.869, -8.0634, -4.066, -5.1304, -4.5717, -6.4873, -6.6548, -6.7362, -6.8554, -6.3176, -7.1171, -7.0988, -7.2133, -4.8438, -3.2344, -5.9376, -6.4856, -3.6786, -6.3983, -5.3215, -5.4456, -5.7347, -4.3289, -5.2533, -5.2577, -4.2523, -4.982, -4.9642, -4.9084, -5.2548, -5.7157, -5.4121, -3.065, -4.0393, -4.839, -5.7409, -4.2251, -4.8879, -5.2994, -4.9741, -5.1864, -4.9997, -5.4251, -5.2941, -4.6787, -4.8287, -5.0912, -5.2641, -8.74, -8.7428, -8.7601, -8.7578, -8.7704, -8.764, -8.7823, -8.7644, -8.7923, -8.8822, -8.755, -8.873, -8.7844, -8.8617, -8.7359, -8.7929, -8.8951, -8.7813, -8.886, -8.8919, -8.8197, -8.9061, -8.7765, -8.8832, -8.799, -8.8045, -8.8829, -8.7513, -8.9001, -8.7511, -8.7838, -8.7735, -8.7624, -8.7997, -8.7406, -8.7695, -8.7879, -3.9605, -4.3973, -5.5318, -4.4118, -3.6257, -4.089, -5.9167, -4.5275, -5.228, -4.7866, -5.4119, -4.9997, -4.8862, -5.5201, -5.6469, -5.9313, -5.2135, -5.2652, -4.9935, -5.3985, -5.5433, -5.7876, -5.594, -5.369, -6.1229, -6.1945, -7.5221, -5.8778, -5.7655, -5.7674, -5.9335, -5.7751, -5.5737, -5.4616, -5.4617, -5.77, -5.6626, -5.653, -5.6922, -10.0316, -10.0267, -10.0527, -10.0119, -10.0087, -10.0134, -9.9661, -10.0161, -10.1009, -10.0868, -10.0564, -10.0941, -10.0689, -10.1258, -10.1117, -10.1361, -10.0786, -10.1186, -10.0248, -10.0902, -10.0575, -10.0711, -10.0639, -10.1622, -10.0939, -10.14, -10.1209, -10.1256, -10.1128, -10.1105, -9.3629, -3.5349, -9.4395, -9.663, -3.1762, -5.7738, -6.9156, -4.6322, -5.6211, -5.2927, -7.3132, -5.6709, -5.7281, -6.0148, -4.1329, -5.369, -3.8709, -7.6069, -4.3418, -4.863, -5.7247, -4.475, -5.0278, -6.0095, -5.3669, -5.1069, -5.4109, -5.7083, -5.725, -5.0678, -6.343, -6.3806, -4.8737, -5.4761, -5.1148, -4.5553, -5.3916, -3.346, -4.5497, -5.0015, -4.9701, -5.1029, -4.8348, -5.0251, -5.4157, -5.3621, -5.4215, -9.5213, -8.7323, -10.4586, -9.9102, -10.4681, -10.4639, -9.9916, -10.5071, -10.5309, -10.5949, -9.613, -10.5502, -9.7496, -10.0551, -10.6101, -10.5265, -10.6058, -7.1825, -10.6671, -10.6006, -9.9953, -10.6402, -6.2192, -9.2344, -8.8443, -10.5798, -10.538, -10.6816, -10.5972, -9.3988, -8.2416, -6.0303, -5.8624, -9.3007, -7.8374, -6.0462, -8.2349, -6.4257, -6.8518, -4.5948, -8.6563, -6.2962, -6.513, -5.9058, -7.4884, -5.8547, -6.9307, -4.913, -5.698, -6.3942, -5.1052, -5.8358, -6.3419, -3.2449, -7.4881, -4.8874, -6.4116, -5.3798, -5.9896, -4.918, -4.8604, -4.0287, -5.3689, -4.3718, -4.2621, -3.8213, -2.99, -4.8365, -4.8135, -4.3885, -4.5919, -5.0383, -4.4414, -4.097, -5.0743, -4.8497, -4.9464, -4.9427, -5.0834, -5.5245, -5.5105, -5.3935, -5.467, -5.5028, -5.5022, -8.6928, -8.9647, -9.0085, -8.7172, -8.975, -8.9913, -8.991, -9.0214, -9.0435, -9.0358, -8.9667, -9.0429, -8.9935, -8.9657, -8.985, -8.7878, -9.0527, -9.0325, -9.0089, -9.0324, -8.9535, -8.9931, -9.0858, -9.0731, -9.0149, -9.0005, -8.9834, -8.9853, -9.0101, -8.9906, -8.9581, -8.7845, -8.7363, -8.9476, -8.8217, -4.6833, -8.7817, -7.4142, -8.9754, -4.3161, -4.8527, -3.7682, -3.494, -4.9112, -4.4038, -6.2616, -4.4011, -4.3429, -6.7765, -4.7454, -5.2213, -5.5167, -4.8819, -5.721, -5.9951, -7.811, -6.124, -6.4304, -5.2551, -5.2553, -5.6714, -5.6218, -5.3114, -5.9389, -5.0809, -5.9982, -5.7311, -5.2249, -5.4601, -5.7041, -5.47, -5.7302, -5.7381, -5.6083, -5.6283, -5.6541, -5.5971, -5.6143, -9.3888, -9.3829, -9.9337, -9.9697, -9.9665, -9.9721, -9.9205, -9.9517, -8.8049, -9.4267, -9.9354, -8.6496, -9.9802, -9.1281, -9.4443, -9.9984, -9.974, -10.0154, -9.4096, -9.9925, -10.0011, -9.9349, -10.0596, -9.9887, -10.0337, -10.0542, -8.6236, -10.0895, -10.0338, -10.0037, -9.4449, -8.0286, -8.2812, -8.1374, -6.6271, -9.0145, -8.0836, -8.0388, -6.9772, -8.7712, -4.8429, -6.4387, -8.3474, -8.1461, -3.6577, -4.5772, -3.2639, -8.6837, -3.9249, -6.3192, -8.7085, -6.9178, -3.0159, -5.2185, -3.8441, -5.6493, -7.3001, -4.7782, -5.2518, -4.9733, -4.3467, -4.7636, -4.8644, -5.6315, -5.3894, -6.3495, -5.4133, -6.0373, -5.7109, -5.6615, -4.898, -5.6175, -4.5289, -4.7632, -4.6137, -4.6652, -5.0781, -5.4378, -5.1182, -5.2171, -5.5031, -5.5189, -5.2752, -5.2432, -5.2671, -5.232, -10.348, -10.3578, -10.3693, -10.3279, -10.449, -10.3729, -10.4611, -10.4173, -10.4203, -10.3945, -8.7811, -10.4508, -10.4453, -10.468, -10.4446, -10.4919, -9.6775, -10.4381, -10.4607, -10.4246, -10.0234, -10.5176, -10.3857, -10.4594, -9.671, -10.4877, -10.5171, -10.4809, -10.442, -10.4148, -7.7569, -9.3836, -9.8863, -7.8823, -7.5088, -8.0773, -6.9637, -6.9751, -7.212, -5.176, -7.2361, -6.7492, -8.3097, -7.1243, -7.1741, -8.5881, -6.3404, -5.2386, -7.1183, -7.0002, -5.5436, -4.875, -5.2175, -4.8345, -6.3377, -6.9072, -6.293, -6.3993, -5.9929, -5.646, -5.3288, -7.4577, -3.3294, -6.6672, -4.3624, -3.9475, -4.9751, -5.9647, -4.0975, -5.4364, -4.3747, -5.6562, -3.0853, -4.3907, -4.8797, -5.404, -5.5721, -5.2794, -4.3973, -4.8578, -4.0225, -4.7075, -4.921, -5.7886, -5.5048, -5.3917, -5.0893, -5.3268, -5.026, -5.0886, -5.1883, -5.0848, -5.2585, -5.3709, -9.6859, -9.7178, -9.7414, -9.6913, -9.7335, -9.6993, -9.7642, -9.6998, -9.6724, -9.7899, -9.7901, -9.7083, -9.7542, -9.788, -9.7437, -9.7191, -9.7564, -9.7744, -9.7566, -9.7777, -9.7595, -9.7631, -9.7487, -9.7522, -9.7759, -9.7292, -9.76, -9.753, -9.7586, -9.7524, -8.7494, -9.3112, -9.2874, -4.5965, -9.1207, -5.1469, -7.2194, -4.0465, -4.2139, -5.2307, -6.2661, -7.8276, -4.7534, -3.8515, -7.3008, -5.4984, -6.0856, -3.6135, -5.3295, -4.8335, -6.2922, -7.0355, -4.1306, -4.5212, -5.0425, -4.8689, -6.5543, -4.2829, -6.2594, -6.0281, -5.5158, -3.3177, -4.8985, -5.4426, -4.9475, -5.4451, -5.8779, -5.7549, -5.4086, -5.4934, -5.3882, -5.4462, -4.7376, -4.9422, -5.5406, -5.5197, -5.2605, -5.2018, -5.3928, -5.3751, -5.4593, -9.9182, -9.9037, -10.0008, -9.9308, -9.9251, -10.0413, -10.0559, -10.051, -10.0504, -9.4136, -9.9464, -9.9941, -10.0395, -10.0427, -9.992, -10.0874, -9.9499, -10.0297, -9.9891, -9.957, -9.9212, -9.9728, -9.9802, -9.9502, -9.9948, -10.0457, -10.0062, -9.9651, -10.1103, -10.0083, -8.5278, -8.6634, -8.9431, -7.8452, -6.7325, -9.4366, -6.4883, -5.2684, -6.9321, -8.9599, -5.15, -8.1781, -8.2873, -4.6021, -6.4746, -6.5111, -4.7935, -9.3226, -3.8931, -2.9473, -5.9307, -6.201, -5.6206, -8.7484, -5.9026, -3.4754, -4.2916, -4.4122, -5.3648, -5.3234, -5.6223, -5.9786, -5.6954, -5.5807, -5.7286, -4.0088, -6.3524, -4.2717, -4.675, -4.8924, -4.9125, -4.5246, -4.546, -4.9109, -5.104, -4.9976, -5.3755, -5.1557, -5.1425, -5.0264, -5.1101, -5.251, -5.3478, -5.4243, -5.3916, -9.6667, -9.622, -9.6742, -9.6762, -9.1067, -9.6668, -9.667, -9.6482, -9.7208, -9.735, -9.8225, -9.7046, -9.7123, -9.7192, -9.6683, -9.7023, -9.7133, -9.7814, -9.6666, -9.7285, -9.6892, -9.6886, -9.7272, -9.7416, -9.8128, -9.7208, -9.727, -9.8458, -9.7601, -9.8222, -9.1079, -9.7115, -9.1277, -8.6056, -9.2137, -8.9368, -5.0296, -9.1456, -4.5792, -8.0924, -7.4197, -6.674, -5.1769, -4.2788, -3.955, -5.5883, -5.289, -3.8582, -6.8582, -5.5241, -4.344, -6.5217, -3.1847, -4.969, -4.4852, -4.8241, -5.4037, -6.1629, -6.0903, -4.279, -4.9453, -6.0583, -5.1166, -4.9442, -6.1788, -3.8516, -5.5319, -5.7635, -4.8103, -4.9717, -5.1692, -5.4214, -5.4244, -5.4755, -4.7261, -5.4278, -5.2079, -5.2678, -5.499, -9.6592, -9.6594, -9.718, -9.6865, -9.8044, -9.8491, -9.7317, -9.8792, -9.803, -9.7911, -9.8589, -9.8382, -9.838, -9.8388, -9.8386, -9.8348, -9.8629, -9.8232, -9.8173, -9.8119, -9.8484, -9.8121, -9.9064, -9.8838, -9.766, -9.8389, -9.8837, -9.9142, -9.8757, -9.8447, -9.8384, -9.5858, -9.1048, -8.6067, -9.7606, -9.8003, -9.6262, -9.6586, -4.9864, -3.1866, -4.7095, -3.6662, -5.2225, -4.6861, -9.3841, -4.3361, -4.9056, -6.1855, -4.6978, -5.1682, -3.1458, -5.5774, -4.0802, -5.2946, -5.2557, -6.6752, -5.4145, -4.2444, -4.9288, -5.435, -4.8866, -5.147, -4.8952, -5.6111, -5.7713, -6.4378, -5.1814, -5.2353, -5.1976, -4.6735, -5.5333, -4.7007, -4.9021, -4.7994, -5.2029, -5.2383, -9.3562, -9.353, -9.3557, -9.3829, -9.3443, -9.3143, -9.3229, -9.3828, -9.4013, -9.3731, -9.3816, -9.4027, -9.3582, -9.4344, -9.4353, -9.3996, -9.3862, -9.408, -9.3711, -9.3817, -9.3865, -9.3949, -9.3894, -8.9227, -9.4428, -9.3965, -9.4766, -9.4404, -9.4485, -9.4285, -6.5724, -6.6364, -8.5631, -7.3368, -6.2087, -6.9281, -4.1801, -7.2008, -8.0604, -3.0595, -3.9563, -7.7778, -7.0469, -5.2099, -5.4046, -6.0807, -4.7472, -4.3866, -4.8586, -5.8303, -6.4611, -3.6609, -4.4178, -5.3354, -7.0731, -7.1171, -7.2685, -4.8874, -4.9716, -6.2373, -5.4954, -5.1123, -4.9654, -5.9261, -5.7274, -5.7936, -4.56, -4.357, -4.8079, -4.9211, -5.1853, -5.7695, -5.1976, -5.3296, -5.3748, -5.6002, -5.4031, -5.4497, -5.5909, -5.5447, -5.5943, -10.4598, -10.4041, -10.5465, -10.527, -10.5661, -10.5451, -10.4768, -10.5713, -10.4389, -9.1774, -10.3846, -10.4667, -9.9391, -10.4841, -10.4511, -10.4974, -10.4913, -10.6041, -10.4487, -10.4449, -10.571, -10.5509, -9.4157, -10.4573, -10.4687, -9.7264, -9.6098, -10.6238, -10.4658, -10.4633, -6.9046, -8.7809, -7.1781, -7.74, -8.2499, -6.243, -6.2077, -7.3598, -7.2153, -5.9818, -4.5733, -7.0877, -7.7378, -5.2613, -4.6836, -6.5112, -6.4511, -7.4805, -2.7505, -5.3821, -3.6725, -5.627, -6.4854, -6.1429, -4.9045, -4.7015, -4.8585, -4.2225, -4.9332, -4.0384, -4.5363, -5.314, -5.6629, -5.7563, -5.4423, -3.5077, -4.4235, -5.4714, -5.2568, -4.5219, -5.4797, -4.4869, -4.1773, -5.1223, -4.9385, -5.481, -4.9751, -5.0611, -5.4149, -5.3661, -5.3451, -5.4368, -5.4281, -10.2564, -10.1212, -9.7011, -10.2244, -10.237, -10.2055, -10.2396, -10.2941, -10.25, -10.2309, -10.271, -10.2737, -10.2786, -9.66, -10.2783, -10.298, -10.3198, -10.2896, -9.7162, -10.2732, -10.2246, -10.3365, -10.2729, -10.2984, -10.2783, -10.3265, -10.3462, -10.2877, -10.2502, -10.328, -9.7916, -10.2247, -9.0923, -8.0674, -4.7604, -4.5906, -4.6408, -3.9418, -3.6923, -6.3026, -3.3251, -6.1832, -5.3319, -3.8905, -2.8989, -4.2684, -4.7205, -5.2471, -5.5566, -6.0425, -6.1105, -5.4196, -4.3979, -5.4453, -6.7276, -5.7433, -5.3928, -5.0263, -5.301, -6.0399, -5.4505, -5.9798, -4.4091, -5.3159, -4.9448, -5.5007, -5.3783, -5.082, -5.2139, -5.1689, -5.6219, -5.5899, -5.524, -5.0895, -5.0122, -4.9382, -5.2565, -5.2544, -5.3405, -5.4082, -9.7442, -10.2619, -10.223, -9.8304, -10.2984, -10.325, -10.3283, -10.361, -10.3561, -10.3153, -10.3504, -10.3541, -10.3613, -10.3671, -10.4002, -10.4071, -10.4024, -10.4328, -10.3634, -10.4162, -10.42, -9.8772, -10.4018, -9.8577, -10.411, -10.4137, -10.4564, -9.9218, -10.4271, -9.6301, -9.119, -9.6218, -6.811, -9.3553, -5.1861, -6.6288, -8.5334, -7.7432, -4.5179, -9.6597, -4.7497, -5.0669, -6.5627, -6.2357, -3.8756, -5.3941, -3.5984, -6.0085, -4.6316, -4.9252, -5.6227, -2.788, -5.608, -5.3688, -4.7941, -7.7684, -5.3636, -6.6283, -7.5693, -3.9555, -6.5985, -6.408, -4.4009, -4.9136, -4.8456, -5.6634, -6.203, -5.4801, -3.5633, -4.415, -5.0327, -4.8133, -5.2549, -5.3632, -5.2622, -5.3099, -4.7666, -4.6347, -4.7009, -5.2019, -5.1347, -5.2723, -5.2832, -9.3649, -9.8745, -9.8778, -9.8989, -9.9485, -9.8606, -9.9008, -9.9307, -9.9031, -9.903, -9.9058, -9.9516, -9.9303, -9.9564, -9.9596, -9.9583, -10.005, -9.9668, -9.9072, -9.9809, -9.9664, -9.9677, -9.9832, -9.9739, -10.0041, -10.0218, -10.014, -10.0214, -9.9232, -9.4466, -9.4509, -8.7218, -9.9403, -7.5904, -8.2108, -7.5869, -8.1523, -5.5443, -5.0783, -5.0835, -4.1812, -5.7331, -4.1862, -3.723, -4.1863, -5.2538, -4.6621, -4.7577, -5.3871, -6.3273, -3.4389, -5.6108, -5.5208, -7.018, -5.2693, -7.2427, -7.5276, -4.8095, -5.6369, -4.0849, -6.3853, -6.2731, -5.7546, -5.329, -4.9175, -5.4343, -5.0863, -3.3641, -4.9673, -4.4424, -4.8051, -5.3762, -5.6576, -5.533, -5.2685, -5.2519, -5.2859, -4.9939, -5.2851, -5.3947, -5.4511, -5.4275, -5.422, -10.3437, -10.3399, -10.3842, -10.2561, -9.5751, -9.2328, -10.3853, -10.3941, -10.3994, -9.606, -9.8685, -9.9269, -10.4778, -9.8558, -10.4045, -10.4593, -9.8977, -10.4539, -10.3461, -9.9023, -10.4265, -10.4394, -10.3809, -10.4313, -10.5198, -10.4775, -10.5118, -10.4628, -10.4097, -10.4143, -9.5941, -8.0033, -9.9311, -9.5471, -7.7838, -9.3424, -9.3883, -6.2901, -7.1315, -9.331, -3.9033, -5.5501, -5.9872, -5.2211, -7.439, -6.2708, -4.1983, -3.6131, -5.6366, -4.6451, -6.3829, -5.2945, -6.8889, -5.6101, -6.1176, -6.3309, -6.3012, -6.7344, -4.2611, -5.3603, -3.3673, -5.4012, -3.9194, -5.4245, -4.0827, -6.3336, -2.9926, -5.3147, -5.3132, -6.0411, -5.1131, -4.9475, -5.4729, -5.8456, -4.5826, -5.4902, -4.9509, -5.1343, -5.0393, -5.5267, -4.8575, -5.1119, -5.3569, -5.1465, -5.1989, -5.3408, -5.4431, -5.4029, -9.3201, -8.4138, -8.4066, -9.4523, -8.4431, -9.4208, -8.4896, -9.4156, -9.4499, -9.489, -9.4617, -9.4647, -8.9398, -9.4548, -9.4004, -9.4034, -8.5513, -9.4417, -7.5999, -4.4139, -9.2252, -9.5681, -9.5411, -9.5181, -7.9503, -9.5225, -9.5308, -9.533, -9.6681, -9.5303, -7.7563, -8.9965, -8.1748, -7.0979, -7.4665, -8.8898, -8.0969, -6.3187, -3.6151, -4.1747, -3.3276, -2.8974, -4.2539, -5.0421, -4.7375, -4.853, -4.655, -5.4079, -4.8568, -4.7726, -4.1796, -4.3515, -4.7596, -4.1344, -4.7172, -5.4556, -6.0438, -5.1405, -4.6494, -5.3686, -5.7023, -6.115, -5.8514, -5.0729, -5.6972, -5.609, -5.238, -5.5846, -5.6141, -5.4383, -5.4485, -5.5388, -5.3792, -5.4667, -9.801, -9.832, -9.8041, -9.8337, -9.8485, -9.9562, -9.7768, -9.7792, -9.8035, -9.8912, -9.9305, -9.9429, -9.826, -9.8399, -9.958, -9.9563, -9.9169, -9.8429, -9.9726, -9.9189, -9.7815, -9.8448, -9.9139, -9.8384, -9.9224, -9.9115, -9.965, -9.9229, -9.8825, -9.867, -9.863, -9.5583, -3.5215, -2.9328, -3.3974, -5.6043, -4.9415, -5.3303, -4.8144, -5.3827, -4.9609, -4.5699, -4.084, -4.4224, -5.1109, -4.8601, -6.8449, -6.6652, -5.6595, -5.4221, -5.1337, -6.1733, -5.4779, -4.4796, -5.7797, -5.4813, -5.5428, -5.6762, -5.4274, -6.2498, -6.0782, -5.431, -4.6658, -4.9665, -4.4269, -5.1463, -5.5534, -5.1705, -5.1321, -5.417, -5.1491, -5.2869, -5.1111, -5.4592, -10.0865, -10.0164, -10.396, -10.0216, -10.3431, -10.4399, -10.1462, -10.037, -10.4274, -9.6615, -10.3845, -9.2591, -10.2251, -9.4181, -10.4919, -8.2755, -10.3657, -10.478, -10.4538, -10.5098, -10.0777, -9.7231, -10.4817, -9.6956, -9.7177, -10.4729, -10.4114, -10.5469, -10.2313, -10.1162, -8.4819, -8.2478, -9.9691, -5.187, -6.9227, -7.6707, -7.8994, -9.3108, -8.7734, -9.2729, -8.5501, -9.3422, -5.5158, -6.3687, -5.2074, -4.5384, -6.6424, -8.2307, -6.2763, -4.3531, -5.9629, -5.7807, -3.2407, -5.6369, -6.1388, -6.4197, -6.2822, -5.2859, -2.8859, -6.2358, -4.9303, -5.6363, -5.9721, -3.7724, -5.328, -4.2975, -5.6436, -6.0134, -4.8944, -4.1695, -5.4001, -4.0839, -4.8451, -5.3226, -4.8202, -4.4757, -5.066, -5.0114, -5.7026, -5.354, -5.0191, -5.0103, -4.7153, -5.2984, -5.0269, -4.6914, -5.3366, -5.3513, -5.3457, -9.6936, -9.6545, -9.683, -9.6248, -9.7258, -9.717, -9.7516, -9.6313, -9.5986, -9.7338, -9.7094, -9.7017, -9.7717, -9.661, -9.7224, -9.7021, -9.7674, -9.72, -9.7485, -9.7205, -9.7149, -9.6846, -9.7291, -9.8226, -9.7886, -9.7228, -9.6455, -9.7107, -9.7986, -9.7449, -9.6669, -9.6688, -9.2395, -9.6583, -9.6296, -7.2389, -7.2823, -7.1053, -4.1082, -6.8292, -6.127, -4.3114, -3.4979, -4.9094, -4.4108, -7.152, -5.9061, -4.7798, -3.1981, -4.8616, -5.3348, -5.5448, -5.6775, -4.858, -4.4829, -6.1106, -6.393, -5.4558, -6.2735, -4.2053, -5.0765, -4.3289, -5.4081, -5.4454, -5.6471, -4.1756, -5.0892, -5.7074, -5.4132, -5.387, -5.3379, -5.5298, -5.8003, -4.9517, -5.5387, -5.318, -5.4401, -5.2297, -5.2929, -5.3865, -5.4545, -5.4495, -5.4445, -8.9773, -9.2591, -9.2707, -8.9691, -9.2841, -9.2834, -8.8957, -9.2691, -9.2989, -9.032, -9.2992, -9.2289, -9.3196, -9.2762, -9.2886, -9.0133, -9.2934, -9.2495, -9.3019, -9.3259, -9.3179, -9.3012, -9.2884, -9.2624, -9.3136, -9.0511, -9.3136, -9.3352, -9.3365, -9.3223, -9.3115, -9.0335, -9.2492, -9.0746, -9.0255, -4.6769, -7.4944, -9.0657, -9.0206, -9.0459, -8.6734, -7.1451, -3.818, -3.5577, -3.2419, -8.5182, -4.3998, -4.9131, -4.2928, -7.7864, -4.9399, -8.4554, -8.425, -4.288, -4.922, -6.336, -5.1115, -5.0387, -5.7699, -5.4761, -5.2088, -5.466, -5.7535, -5.4225, -5.2267, -5.7609, -5.0688, -5.4577, -6.1864, -4.8075, -5.5891, -5.5605, -4.902, -5.5602, -4.949, -5.3747, -5.7184, -5.5745, -5.3753, -5.3895, -5.3219, -5.4938, -10.0879, -10.1711, -10.1355, -10.1569, -10.08, -10.1851, -10.2194, -9.7192, -10.1133, -10.1239, -10.1922, -10.1821, -10.1565, -10.097, -10.2364, -10.2172, -9.0593, -10.2548, -10.2042, -10.2605, -10.1197, -10.1605, -10.2931, -10.1963, -10.2086, -10.2476, -10.2083, -10.2372, -10.2199, -10.2944, -9.2093, -9.0179, -9.727, -9.3882, -9.2243, -6.2898, -3.6976, -8.811, -4.6323, -4.7974, -7.3163, -7.7545, -8.0967, -2.8334, -4.8083, -7.5448, -4.8879, -5.6383, -5.5874, -5.5357, -4.7017, -4.769, -5.2819, -4.238, -6.1436, -3.4024, -5.2279, -6.7141, -7.4585, -6.1968, -5.3939, -5.8882, -5.4218, -5.4475, -5.4175, -5.4608, -4.4534, -3.9491, -4.4426, -5.0813, -5.749, -5.5209, -5.3935, -4.9282, -4.3383, -4.9027, -5.2955, -4.9936, -4.8694, -5.281, -5.2642, -5.1519, -5.4381, -9.7689, -9.8019, -9.8592, -9.8586, -9.2919, -9.8651, -10.1219, -9.781, -8.9151, -9.9009, -10.1848, -9.8261, -10.1144, -10.1894, -9.8773, -10.262, -10.2636, -10.2005, -9.9711, -9.9317, -8.2183, -9.216, -10.2281, -10.2571, -9.8769, -10.1652, -9.5966, -9.9916, -10.1111, -10.2483, -4.9138, -7.4075, -9.087, -9.0485, -7.6907, -8.1761, -9.0944, -5.3006, -8.5149, -8.0464, -5.5165, -4.118, -8.0087, -5.5991, -8.6483, -3.7272, -7.4739, -5.709, -6.6293, -6.4669, -5.3567, -5.7345, -5.6299, -4.9599, -4.0016, -5.3316, -4.8496, -3.5012, -4.8401, -4.3555, -6.0911, -6.4261, -3.1458, -5.4508, -5.2868, -4.5107, -5.6892, -5.0815, -5.2767, -5.2661, -5.5038, -4.5472, -5.6605, -5.0875, -4.4341, -5.0479, -5.1263, -5.0765, -5.0649, -4.953, -5.2576, -5.165, -5.3373, -10.3557, -10.2737, -9.8546, -10.4331, -10.433, -10.4728, -10.3317, -9.754, -10.3982, -10.44, -9.6976, -10.4616, -10.496, -9.3571, -10.4576, -10.3769, -10.4853, -10.5305, -10.4945, -10.5738, -10.5563, -10.5046, -10.5793, -9.4398, -10.5586, -10.5597, -10.5246, -10.5761, -9.222, -10.5407, -7.7678, -10.0289, -6.1279, -6.2766, -3.6543, -8.6302, -4.9546, -8.2765, -6.9376, -5.6064, -3.1186, -5.9866, -4.5982, -4.849, -6.3111, -4.7902, -4.19, -5.2703, -4.71, -5.6743, -4.8773, -3.696, -4.3149, -6.0245, -6.6854, -5.1458, -5.523, -5.5625, -5.8974, -5.1849, -5.2945, -5.456, -5.3923, -6.2474, -2.9845, -5.4513, -4.9313, -5.0498, -5.717, -4.9209, -4.8888, -4.5599, -4.5527, -4.4218, -5.2132, -5.0705, -5.198, -5.3937, -5.1538, -5.0647, -10.367, -9.4925, -10.4065, -10.4341, -10.4093, -10.4646, -10.4678, -10.4334, -9.9673, -10.5132, -10.5416, -9.7295, -9.6632, -10.0914, -9.5517, -10.5299, -10.0013, -10.5927, -10.4689, -9.9808, -9.7519, -9.9539, -10.5168, -10.5437, -10.6132, -10.6263, -10.026, -10.4878, -9.8098, -10.5377, -9.3202, -9.4439, -9.6855, -6.1314, -6.6782, -6.5283, -5.0532, -5.3329, -8.1725, -3.0673, -6.672, -5.6208, -5.5716, -4.6944, -4.3135, -5.2996, -4.0928, -6.1264, -5.289, -5.2943, -3.9176, -4.6952, -5.2157, -6.7866, -5.6515, -5.9295, -4.3201, -5.0031, -5.3197, -4.8402, -6.2349, -2.928, -5.5043, -4.3422, -5.687, -3.866, -4.7908, -5.0369, -4.8546, -4.8976, -4.5243, -4.4498, -5.2375, -5.1559, -5.2729, -5.3814, -5.2803, -9.9608, -9.9301, -9.9818, -9.9919, -9.9428, -9.965, -9.9255, -10.0434, -9.96, -10.0441, -10.0038, -9.9764, -9.968, -9.9765, -10.002, -10.0019, -9.992, -10.0465, -9.9797, -10.0194, -9.9866, -10.0727, -10.0563, -9.4988, -9.9858, -10.0267, -10.046, -9.9835, -10.0326, -10.0288, -8.2279, -4.0364, -6.8355, -8.3891, -3.653, -2.8315, -8.1183, -6.99, -3.3179, -4.7875, -5.6295, -5.3155, -5.6396, -5.6254, -4.8045, -5.6146, -6.2641, -4.9854, -7.3381, -6.6513, -7.018, -5.3987, -6.9236, -6.3655, -5.5514, -5.4687, -5.394, -5.0424, -4.464, -4.2737, -4.952, -4.5939, -5.074, -4.2421, -6.001, -4.9848, -5.3286, -4.9975, -5.0417, -5.6376, -5.5022, -4.7881, -5.5285, -5.0278, -5.3779, -5.5065, -5.4448, -5.5192, -5.4342, -10.1325, -10.2843, -10.2527, -10.2969, -10.2391, -10.2811, -10.2699, -10.2995, -10.2503, -10.2303, -10.2989, -10.3168, -10.3048, -10.2938, -10.2997, -10.1854, -10.34, -10.3761, -10.274, -10.2963, -10.2832, -10.3187, -10.2182, -10.3596, -10.342, -10.3155, -10.3768, -10.3569, -10.3514, -10.3048, -9.7385, -10.1989, -7.9613, -8.2287, -7.4654, -8.4359, -5.8854, -7.1505, -7.8033, -5.4234, -4.7106, -6.0627, -5.1861, -5.4528, -7.2426, -3.5775, -7.1513, -7.7477, -6.6036, -4.1486, -5.1853, -7.7968, -5.9952, -7.9632, -5.3435, -6.5371, -5.2889, -6.5949, -5.7224, -3.395, -3.9336, -5.1437, -4.7969, -4.0921, -4.974, -4.794, -4.7916, -5.4606, -5.3942, -5.0268, -5.343, -5.3888, -3.1926, -4.5089, -4.548, -5.0485, -4.906, -4.6786, -5.0602, -5.3452, -4.9897, -5.1547, -5.3548, -8.281, -10.1438, -8.6131, -9.6489, -8.6635, -9.3387, -9.6656, -9.314, -8.246, -8.7676, -10.2409, -9.3898, -8.7389, -10.1711, -8.2091, -10.2341, -8.8324, -9.7071, -9.7853, -9.7391, -9.4116, -9.3704, -8.7461, -9.3831, -9.4734, -9.492, -10.3201, -9.4696, -9.8771, -10.3239, -8.5242, -9.4609, -9.1413, -8.8026, -7.1349, -7.7746, -6.8283, -5.7855, -4.0292, -5.846, -7.2136, -6.2221, -3.5913, -4.8116, -5.5379, -8.1315, -5.5803, -6.5599, -5.326, -2.8823, -4.8819, -5.3567, -4.7147, -4.2946, -4.0823, -5.8137, -6.1382, -4.4335, -4.8571, -4.0345, -5.3979, -4.4388, -3.6078, -5.3772, -4.6557, -5.6195, -5.4788, -5.1343, -5.4276, -4.9452, -5.1165, -4.9929, -5.0631, -5.4413, -5.4364, -5.2278, -5.3919, -5.4569, -5.4387, -9.7708, -9.8117, -9.9052, -9.449, -9.9454, -9.9328, -9.9441, -9.9144, -9.9724, -9.9446, -9.9674, -8.6472, -10.0107, -9.9622, -9.9401, -9.9493, -9.9193, -9.9224, -9.9748, -9.5281, -10.0043, -9.9487, -10.038, -10.0264, -10.06, -10.0366, -9.9866, -10.0102, -10.0507, -9.9902, -9.9792, -8.1134, -8.6776, -6.4114, -4.6757, -3.9971, -8.2735, -4.1125, -6.9526, -5.8182, -5.5546, -3.6994, -4.6827, -7.1956, -7.9744, -5.2177, -3.4471, -4.9151, -5.281, -4.7452, -4.0073, -6.647, -4.1692, -4.7951, -6.2915, -5.4132, -5.682, -4.9465, -3.1805, -4.8402, -4.8973, -5.5821, -5.4281, -5.5222, -4.5611, -5.3167, -5.4059, -5.4525, -5.1711, -5.0303, -4.9518, -5.4607, -4.7751, -5.2101, -5.0831, -5.4123, -5.3987]}, \"token.table\": {\"Topic\": [1, 1, 1, 4, 1, 2, 3, 4, 6, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 1, 3, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 15, 1, 2, 3, 4, 5, 6, 7, 8, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 1, 2, 3, 4, 5, 7, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 1, 2, 3, 4, 1, 2, 3, 4, 5, 6, 7, 8, 1, 2, 3, 4, 5, 6, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 1, 1, 2, 3, 4, 5, 6, 7, 8, 2, 1, 2, 5, 1, 3, 1, 1, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 1, 2, 3, 4, 5, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 1, 4, 7, 1, 1, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 1, 2, 3, 4, 1, 3, 4, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 1, 2, 3, 4, 5, 6, 7, 1, 4, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 1, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 2, 1, 2, 3, 4, 5, 6, 7, 8, 1, 3, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 1, 2, 3, 4, 5, 1, 1, 2, 3, 4, 5, 1, 2, 3, 4, 5, 6, 7, 1, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 1, 2, 3, 1, 2, 4, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 1, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 1, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4, 5, 1, 2, 3, 1, 1, 3, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 1, 3, 4, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 1, 3, 1, 2, 3, 4, 5, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 1, 2, 3, 4, 1, 2, 6, 1, 3, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 2, 1, 2, 1, 2, 3, 4, 1, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 8, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 1, 2, 3, 4, 6, 1, 2, 6, 7, 1, 2, 3, 7, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 2, 1, 2, 3, 1, 2, 4, 1, 2, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 1, 1, 1, 1, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 1, 2, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 1, 2, 1, 2, 3, 4, 5, 6, 7, 1, 2, 4, 5, 1, 2, 3, 4, 5, 1, 1, 3, 1, 2, 3, 4, 5, 6, 7, 8, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 1, 2, 3, 4, 5, 6, 7, 1, 1, 2, 4, 5, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 1, 4, 1, 2, 3, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 1, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 1, 2, 3, 4, 5, 6, 1, 2, 4, 5, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 1, 1, 2, 3, 4, 5, 6, 7, 8, 9, 1, 2, 3, 4, 5, 6, 7, 8, 1, 2, 3, 4, 5, 6, 7, 8, 1, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 1, 1, 2, 3, 4, 5, 6, 7, 8, 9, 1, 2, 3, 4, 5, 1, 1, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 1, 2, 3, 4, 5, 6, 7, 1, 1, 2, 3, 4, 5, 6, 7, 8, 1, 1, 2, 1, 2, 3, 4, 5, 6, 7, 8, 1, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 1, 2, 3, 4, 5, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 1, 2, 6, 1, 2, 3, 4, 5, 6, 7, 8, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 1, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 1, 4, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 1, 2, 3, 4, 5, 6, 1, 2, 3, 4, 5, 6, 1, 2, 3, 4, 5, 6, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 1, 2, 3, 4, 5, 6, 7, 1, 1, 2, 3, 1, 1, 2, 3, 4, 5, 6, 7, 8, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 1, 3, 4, 5, 1, 3, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 1, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 1, 2, 3, 4, 5, 6, 7, 1, 4, 1, 2, 3, 4, 6, 7, 1, 2, 3, 4, 5, 6, 7, 8, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 1, 1, 2, 3, 1, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 1, 2, 3, 4, 5, 6, 1, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 1, 2, 3, 4, 5, 6, 7, 8, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 1, 1, 2, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 1, 2, 5, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 1, 2, 3, 4, 5, 6, 1, 4, 1, 2, 3, 4, 5, 6, 7, 8, 1, 2, 4, 6, 7, 1, 1, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 1, 2, 3, 4, 1, 2, 3, 4, 5, 6, 7, 8, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 1, 2, 3, 4, 5, 6, 7, 8, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 1, 1, 1, 1, 1, 2, 3, 4, 5, 6, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 1, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 1, 1, 2, 3, 4, 5, 6, 7, 8, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 1, 2, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 1, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 1, 2, 3, 4, 5, 6, 7, 1, 3, 1, 2, 4, 5, 1, 1, 1, 1, 1, 3, 4, 6, 1, 2, 1, 2, 3, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 1, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 1, 2, 3, 4, 5, 6, 7, 8, 9, 1, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 1, 2, 3, 4, 5, 6, 7, 8, 9, 1, 2, 3, 4, 5, 6, 7, 8, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 1, 2, 1, 2, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 1, 2, 3, 4, 5, 6, 7, 1, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 1, 2, 3, 5, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 8, 1, 2, 4, 7, 1, 2, 3, 4, 5, 6, 7, 8, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 1, 1, 2, 3, 4, 5, 6, 7, 1, 4, 1, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 8, 9, 1, 1, 2, 5, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 1, 2, 3, 4, 5, 6, 7, 2, 1, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 1, 3, 1, 5, 1, 2, 3, 1, 2, 3, 4, 5, 6, 7, 1, 1, 3, 4, 6, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 8, 1, 2, 4, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 1, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 1, 2, 3, 4, 5, 6, 7, 8, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 1, 2, 3, 4, 5, 6, 7, 8, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 1, 2, 1, 1, 1, 2, 3, 4, 5, 6, 7, 1, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 8, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 1, 2, 3, 4, 5, 6, 7, 8, 1, 1, 2, 3, 4, 5, 6, 7, 8, 9, 1, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 1, 1, 1, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 1, 1, 1, 4, 1, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 1, 2, 5, 1, 1, 2, 3, 4, 5, 6, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 1, 2, 6, 1, 2, 3, 4, 5, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 1, 2, 7, 1, 2, 3, 4, 5, 6, 7, 8, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 1, 1, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 1, 2, 3, 4, 5, 6, 7, 1, 1, 2, 3, 4, 5, 6, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 1, 2, 3, 4, 1, 2, 4, 1, 2, 3, 4, 5, 6, 7, 8, 10, 1, 2, 3, 4, 5, 6, 7, 1, 1, 2, 3, 4, 5, 6, 7, 8, 1, 5, 1, 2, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 1, 2, 3, 4, 5, 6, 7, 8, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 1, 1, 2, 3, 4, 5, 6, 7, 8, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 1, 2, 6, 1, 2, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 1, 3, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 1, 2, 4, 5, 7, 1, 1, 1, 2, 3, 4, 5, 1, 2, 5, 1, 2, 3, 4, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 1, 1, 1, 3, 1, 2, 3, 4, 1, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 1, 1, 2, 4, 6, 7, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 1, 1, 2, 3, 4, 5, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 1, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 1, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 3, 4, 7, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 1, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 1, 2, 3, 4, 1, 1, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 1, 2, 3, 4, 5, 6, 7, 8, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 2, 1, 2, 3, 4, 5, 6, 7, 8, 1, 1, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 1, 1, 1, 2, 1, 2, 3, 4, 1, 2, 4, 5, 1, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 1, 2, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 2, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 1, 2, 1, 1, 2, 3, 4, 5, 6, 7, 8, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 1, 2, 3, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 1, 1, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 1, 2, 3, 4, 6, 7, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 1, 2, 3, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 1, 2, 3, 4, 6, 7, 1, 1, 2, 3, 1, 2, 3, 4, 5, 6, 7, 8, 1, 1, 1, 2, 3, 4, 5, 6, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 1, 2, 3, 4, 5, 6, 7, 8, 9, 1, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 8, 1, 2, 3, 4, 5, 6, 7, 8, 1, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 1, 2, 3, 4, 5, 6, 7, 4, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 1, 1, 2, 3, 4, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 1, 2, 3, 4, 5, 6, 7, 8, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 1, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 1, 2, 3, 4, 5, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 1, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 1, 1, 2, 3, 4, 5, 6, 7, 1, 1, 2, 3, 1, 1, 2, 3, 4, 5, 6, 7, 8, 10, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 1, 1, 2, 3, 4, 5, 6, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 1, 2, 1, 4, 1, 2, 4, 1, 2, 3, 4, 5, 6, 7, 1, 4, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 1, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 1, 2, 3, 4, 5, 6, 7, 1, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4, 5, 1, 4, 1, 1, 2, 3, 4, 5, 6, 7, 8, 9, 1, 1, 2, 3, 4, 5, 6, 7, 8, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 1, 5, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 1, 2, 3, 4, 5, 6, 7, 8, 1, 2, 3, 4, 5, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 8, 1, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 15, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 1, 1, 2, 3, 4, 5, 6, 7, 8, 1, 2, 5, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 1, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 1, 2, 3, 4, 5, 6, 7, 1, 2, 4, 5, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 1, 1, 2, 1, 1, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 1, 2, 3, 4, 5, 6, 7, 1, 1, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 1, 2, 3, 4, 5, 6, 7, 8, 1, 2, 3, 4, 5, 6, 7, 8, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 1, 4, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 1, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 1, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 1, 1, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 1, 1, 2, 3, 4, 5, 6, 7, 8, 1, 3, 4, 1, 2, 3, 4, 5, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 1, 2, 3, 4, 5, 6, 7, 1, 2, 4, 1, 2, 3, 4, 5, 6, 7, 9, 1, 2, 3, 4, 5, 6, 7, 8, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 1, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 1, 1, 2, 3, 4, 5, 7, 1, 2, 4, 5, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 1, 1, 1, 1, 2, 3, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 1, 1, 2, 3, 4, 5, 1, 2, 3, 1, 2, 3, 4, 5, 6, 7, 8, 1, 1, 2, 3, 4, 5, 6, 7, 8, 9, 1, 2, 3, 4, 5, 6, 7, 1, 1, 1, 1, 3, 4, 1, 5, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 6, 7, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 15, 1, 2, 3, 4, 5, 6, 7, 8, 1, 1, 2, 3, 4, 5, 1, 2, 3, 4, 5, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 1, 1, 2, 3, 4, 1, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 1, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 1, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 6, 7, 1, 2, 3, 4, 6, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 1, 1, 2, 3, 4, 5, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 1, 2, 3, 4, 5, 6, 7, 1, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 1, 3, 1, 2, 3, 4, 5, 6, 7, 1, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 1, 2, 3, 4, 5, 6, 7, 1, 3, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 1, 1, 1, 2, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 1, 2, 4, 1, 1, 1, 2, 3, 4, 5, 6, 7, 1, 1, 1, 2, 5, 1, 3, 4, 1, 1, 5, 1, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 1, 2, 3, 4, 5, 6, 7, 1, 1, 1, 1, 2, 3, 1, 1, 1, 2, 3, 4, 5, 6, 7, 9, 10, 13, 1, 4, 7, 1, 4, 7, 1, 4, 7, 1, 2, 4, 7, 1, 4, 7, 1, 4, 7, 1, 4, 7, 1, 4, 7, 1, 2, 4, 5, 6, 7, 1, 1, 2, 4, 7, 1, 2, 4, 5, 6, 7, 1, 4, 7, 1, 4, 1, 3], \"Freq\": [0.4150662162749098, 0.69578077837687, 0.24143940589156207, 0.24143940589156207, 0.17647003949443307, 0.17647003949443307, 0.17647003949443307, 0.17647003949443307, 0.17647003949443307, 0.33449391178001064, 0.09730731979054855, 0.1581243946596414, 0.13379756471200424, 0.0790621973298207, 0.08210305107327534, 0.0577762211256382, 0.01520426871727321, 0.012163414973818568, 0.012163414973818568, 0.009122561230363925, 0.003040853743454642, 0.003040853743454642, 0.30079411091765396, 0.15039705545882698, 0.13368627151895732, 0.10026470363921798, 0.09190931166928315, 0.08355391969934832, 0.08355391969934832, 0.025066175909804495, 0.016710783939869665, 0.008355391969934832, 0.008355391969934832, 0.3217687383750995, 0.3217687383750995, 0.2559478352698776, 0.16287589517174028, 0.11633992512267163, 0.11633992512267163, 0.09307194009813731, 0.09307194009813731, 0.09307194009813731, 0.023267985024534327, 0.023267985024534327, 0.023267985024534327, 0.34705614672879787, 0.14360944002570947, 0.08975590001606842, 0.11967453335475789, 0.08377217334833052, 0.06582099334511685, 0.07778844668059264, 0.017951180003213683, 0.011967453335475789, 0.011967453335475789, 0.0059837266677378945, 0.0059837266677378945, 0.2635424386562847, 0.1908410762683441, 0.119957247940102, 0.07997149862673467, 0.07451889644763912, 0.09632930516402131, 0.09814683922371982, 0.025445476835779215, 0.019992874656683667, 0.014540272477588122, 0.007270136238794061, 0.0036350681193970304, 0.0018175340596985152, 0.0018175340596985152, 0.4334133730470859, 0.10197961718754962, 0.10197961718754962, 0.07648471289066221, 0.05098980859377481, 0.07648471289066221, 0.07648471289066221, 0.025494904296887406, 0.31456070889856963, 0.1545686242001592, 0.12202786121065201, 0.10304574946677282, 0.07592844697551682, 0.07321671672639121, 0.08677536797201921, 0.024405572242130403, 0.018982111743879204, 0.013558651245628002, 0.008135190747376802, 0.0027117302491256002, 0.0027117302491256002, 0.4639573346918338, 0.09279146693836676, 0.09279146693836676, 0.09279146693836676, 0.09279146693836676, 0.09279146693836676, 0.3102956580696729, 0.15844884667387552, 0.11883663500540664, 0.08582645861501591, 0.09242849389309406, 0.06602035278078147, 0.0990305291711722, 0.01980610583423444, 0.013204070556156293, 0.013204070556156293, 0.0066020352780781465, 0.0066020352780781465, 0.3939564537952144, 0.13131881793173814, 0.0984891134488036, 0.0984891134488036, 0.0984891134488036, 0.06565940896586907, 0.032829704482934534, 0.3325971627705755, 0.1623702684391786, 0.1427287037086328, 0.11523051308586868, 0.07070963302996487, 0.054996381245528234, 0.05761525654293434, 0.022260440027951904, 0.014403814135733585, 0.013094376487030532, 0.006547188243515266, 0.0026188752974061064, 0.0013094376487030532, 0.0013094376487030532, 0.0013094376487030532, 0.3766037895010174, 0.12945755264097475, 0.08238207895334757, 0.10591981579716116, 0.08238207895334757, 0.07061321053144078, 0.09415094737525435, 0.02353773684381359, 0.011768868421906794, 0.011768868421906794, 0.011768868421906794, 0.35158003083685746, 0.1823007567302224, 0.1041718609886985, 0.08463963705331753, 0.07161815442973023, 0.0911503783651112, 0.05208593049434925, 0.01953222393538097, 0.013021482623587313, 0.013021482623587313, 0.0065107413117936564, 0.4056077870335697, 0.10882160139925041, 0.09892872854477311, 0.12860734710820504, 0.08903585569029579, 0.05935723712686386, 0.05935723712686386, 0.01978574570895462, 0.00989287285447731, 0.00989287285447731, 0.00989287285447731, 0.33959269299463285, 0.13583707719785315, 0.13583707719785315, 0.13583707719785315, 0.06791853859892658, 0.06791853859892658, 0.06791853859892658, 0.3442284169613708, 0.14752646441201606, 0.13523259237768137, 0.11064484830901204, 0.06146936017167335, 0.07376323220600803, 0.06146936017167335, 0.024587744068669343, 0.012293872034334671, 0.012293872034334671, 0.012293872034334671, 0.2668549840367127, 0.2668549840367127, 0.2668549840367127, 0.2668549840367127, 0.2556188571783218, 0.14606791838761246, 0.14606791838761246, 0.14606791838761246, 0.10955093879070933, 0.10955093879070933, 0.07303395919380623, 0.036516979596903115, 0.2787368830485658, 0.09291229434952193, 0.18582458869904386, 0.18582458869904386, 0.09291229434952193, 0.09291229434952193, 0.2698908237462137, 0.13903466677835252, 0.13085615696786118, 0.11449913734687854, 0.07360658829442192, 0.10632062753638721, 0.08996360791540457, 0.02453552943147397, 0.016357019620982648, 0.016357019620982648, 0.008178509810491324, 0.008178509810491324, 0.6962800934386926, 0.27031468828092486, 0.2316983042407927, 0.07723276808026425, 0.11584915212039636, 0.11584915212039636, 0.07723276808026425, 0.07723276808026425, 0.03861638404013212, 0.4528186107390076, 0.37698925612821177, 0.37698925612821177, 0.37698925612821177, 0.32904104447127963, 0.32904104447127963, 0.3336313706352524, 0.45053103543687806, 0.3101709914863993, 0.09925471727564779, 0.1364752362540157, 0.11166155693510375, 0.09925471727564779, 0.08684787761619181, 0.07444103795673584, 0.024813679318911947, 0.024813679318911947, 0.012406839659455974, 0.30465266287999654, 0.2784839450271138, 0.1618539167678952, 0.10234880030911021, 0.11424982360086722, 0.0666457304338392, 0.09996859565075882, 0.09996859565075882, 0.021421841925162603, 0.021421841925162603, 0.011901023291757, 0.007140613975054201, 0.0023802046583514002, 0.0023802046583514002, 0.0023802046583514002, 0.0023802046583514002, 0.26563323156661356, 0.15992204757581835, 0.10300064081154403, 0.10300064081154403, 0.1436587885003114, 0.07318466583978128, 0.08673738173603708, 0.02168434543400927, 0.013552715896255793, 0.01626325907550695, 0.008131629537753475, 0.0027105431792511588, 0.0027105431792511588, 0.0027105431792511588, 0.18425007218516695, 0.18425007218516695, 0.18425007218516695, 0.18425007218516695, 0.18425007218516695, 0.273508179917934, 0.1664832399500468, 0.15062769328813758, 0.11098882663336453, 0.0872055066405007, 0.07531384664406879, 0.06738607331311418, 0.03171109332381844, 0.011891659996431913, 0.011891659996431913, 0.003963886665477305, 0.003963886665477305, 0.31612961809164075, 0.16762221610440486, 0.07204814551855998, 0.12057036596983507, 0.0999851815359608, 0.09851481121925548, 0.07351851583526528, 0.011762962533642446, 0.01029259221693714, 0.011762962533642446, 0.008822221900231835, 0.0029407406334106116, 0.0014703703167053058, 0.0014703703167053058, 0.0014703703167053058, 0.5646290736194747, 0.18820969120649156, 0.18820969120649156, 0.7211716801672569, 0.43838513091540116, 0.35147113127369073, 0.12471556271001928, 0.06802667056910143, 0.09070222742546857, 0.079364448997285, 0.11337778428183572, 0.11337778428183572, 0.022675556856367143, 0.011337778428183572, 0.011337778428183572, 0.011337778428183572, 0.3896433132454666, 0.1948216566227333, 0.1948216566227333, 0.1948216566227333, 0.27387676109343334, 0.27387676109343334, 0.27387676109343334, 0.3775082646710324, 0.13212789263486133, 0.14156559925163714, 0.0849393595509823, 0.0943770661677581, 0.04718853308387905, 0.06606394631743066, 0.00943770661677581, 0.00943770661677581, 0.00943770661677581, 0.00943770661677581, 0.2609864393535169, 0.08699547978450564, 0.08699547978450564, 0.17399095956901128, 0.08699547978450564, 0.08699547978450564, 0.08699547978450564, 0.2597101544949691, 0.2597101544949691, 0.1915491477738039, 0.09577457388690196, 0.09577457388690196, 0.1915491477738039, 0.09577457388690196, 0.09577457388690196, 0.09577457388690196, 0.2077916110907182, 0.187353091967041, 0.09537975591049361, 0.1226311147420632, 0.1396632140117942, 0.1055990154723322, 0.08175407649470881, 0.020438519123677203, 0.0136256794157848, 0.010219259561838601, 0.0068128397078924, 0.0068128397078924, 0.0034064198539462, 0.7241323554107035, 0.24768341417522435, 0.12384170708761218, 0.12384170708761218, 0.08256113805840812, 0.08256113805840812, 0.12384170708761218, 0.12384170708761218, 0.04128056902920406, 0.04128056902920406, 0.04128056902920406, 0.32601828261210497, 0.16300914130605249, 0.16300914130605249, 0.16300914130605249, 0.16300914130605249, 0.4265899547283054, 0.2820828939507638, 0.16454835480461222, 0.1410414469753819, 0.11753453914615158, 0.07052072348769095, 0.09402763131692127, 0.07052072348769095, 0.023506907829230317, 0.3566997398508256, 0.3566997398508256, 0.29021144691635137, 0.17034150145090188, 0.12617888996363102, 0.10094311197090482, 0.06308944498181551, 0.10094311197090482, 0.08832522297454172, 0.018926833494544652, 0.012617888996363102, 0.018926833494544652, 0.006308944498181551, 0.3385043208321957, 0.16925216041609786, 0.16925216041609786, 0.16925216041609786, 0.16925216041609786, 0.4596160577131718, 0.3771854204979453, 0.1257284734993151, 0.1257284734993151, 0.1257284734993151, 0.1257284734993151, 0.2632205875760704, 0.1316102937880352, 0.1316102937880352, 0.1316102937880352, 0.1316102937880352, 0.0658051468940176, 0.0658051468940176, 0.7256975859466807, 0.41864147983962874, 0.06977357997327147, 0.06977357997327147, 0.20932073991981437, 0.06977357997327147, 0.06977357997327147, 0.06977357997327147, 0.33226993760958407, 0.10030790569345935, 0.11284639390514176, 0.1379233703285066, 0.09403866158761813, 0.10030790569345935, 0.05642319695257088, 0.018807732317523626, 0.012538488211682419, 0.012538488211682419, 0.006269244105841209, 0.006269244105841209, 0.25315922877369823, 0.25315922877369823, 0.25315922877369823, 0.2602843220560005, 0.2602843220560005, 0.2602843220560005, 0.3050907338393537, 0.17433756219391638, 0.1307531716454373, 0.08716878109695819, 0.05811252073130546, 0.07748336097507395, 0.09685420121884245, 0.02421355030471061, 0.014528130182826365, 0.014528130182826365, 0.009685420121884244, 0.004842710060942122, 0.610318556695095, 0.26390552092273833, 0.08120169874545796, 0.14210297280455142, 0.1827038221772804, 0.04060084937272898, 0.12180254811818693, 0.08120169874545796, 0.04060084937272898, 0.02030042468636449, 0.02030042468636449, 0.49293326086586486, 0.38464630239596803, 0.1264590583219621, 0.09484429374147157, 0.10538254860163508, 0.08957516631138981, 0.08430603888130807, 0.057960401730899294, 0.015807382290245264, 0.010538254860163509, 0.015807382290245264, 0.005269127430081754, 0.005269127430081754, 0.2860210981558758, 0.15934323017040436, 0.13305159719228762, 0.15137606866188413, 0.09082564119713048, 0.0693143051241259, 0.05895699516304961, 0.015934323017040435, 0.007967161508520218, 0.01354417456448437, 0.006373729206816174, 0.003186864603408087, 0.0015934323017040436, 0.0007967161508520218, 0.0007967161508520218, 0.3325294139769054, 0.10792621330829386, 0.12251083672833356, 0.14292930951638916, 0.08750774052023826, 0.0904246652042462, 0.06125541836416678, 0.020418472788055593, 0.011667698736031767, 0.008750774052023826, 0.005833849368015884, 0.005833849368015884, 0.22456385210545884, 0.22456385210545884, 0.11228192605272942, 0.11228192605272942, 0.11228192605272942, 0.11228192605272942, 0.11228192605272942, 0.2880141439398895, 0.14400707196994475, 0.14400707196994475, 0.14400707196994475, 0.14400707196994475, 0.23616781244570229, 0.23616781244570229, 0.23616781244570229, 0.7233347896147291, 0.2131861290656275, 0.2131861290656275, 0.35205140917545596, 0.13201927844079597, 0.13201927844079597, 0.08801285229386399, 0.08801285229386399, 0.044006426146931996, 0.044006426146931996, 0.25967615313299336, 0.14981316526903463, 0.13982562091776565, 0.12983807656649668, 0.1198505322152277, 0.0799003548101518, 0.06991281045888283, 0.009987544351268975, 0.009987544351268975, 0.009987544351268975, 0.009987544351268975, 0.25288673284081475, 0.25288673284081475, 0.25288673284081475, 0.29550145077361917, 0.12369828171918942, 0.17180316905442974, 0.10308190143265786, 0.048104887335240334, 0.12369828171918942, 0.07559339438394909, 0.02061638028653157, 0.01374425352435438, 0.01374425352435438, 0.00687212676217719, 0.4909841949587282, 0.2454920974793641, 0.37649154649561234, 0.1254971821652041, 0.1254971821652041, 0.1254971821652041, 0.1254971821652041, 0.2830588196260973, 0.16330316516890228, 0.10886877677926819, 0.11975565445719502, 0.07620814374548773, 0.10886877677926819, 0.06532126606756092, 0.02177375535585364, 0.01088687767792682, 0.01088687767792682, 0.01088687767792682, 0.199113052962927, 0.199113052962927, 0.199113052962927, 0.199113052962927, 0.3010942834312368, 0.3010942834312368, 0.3010942834312368, 0.31360112179254573, 0.31360112179254573, 0.3064837208954858, 0.1685660464925172, 0.09194511626864574, 0.09194511626864574, 0.06129674417909716, 0.10726930231342004, 0.09194511626864574, 0.03064837208954858, 0.01532418604477429, 0.01532418604477429, 0.01532418604477429, 0.32150716024440584, 0.14289207121973593, 0.08930754451233495, 0.10716905341480194, 0.07144603560986797, 0.08930754451233495, 0.08930754451233495, 0.03572301780493398, 0.01786150890246699, 0.01786150890246699, 0.01786150890246699, 0.28946895559609226, 0.16654378267172432, 0.12689050108321853, 0.1308558292420691, 0.08327189133586216, 0.06741057870045984, 0.07534123501816099, 0.019826640794252896, 0.011895984476551736, 0.011895984476551736, 0.007930656317701158, 0.003965328158850579, 0.003965328158850579, 0.45197043292219713, 0.44414061529857884, 0.44414061529857884, 0.17749802283587415, 0.17749802283587415, 0.17749802283587415, 0.17749802283587415, 0.40928386337986955, 0.2806685169096586, 0.17541782306853665, 0.07016712922741465, 0.10525069384112198, 0.07016712922741465, 0.10525069384112198, 0.10525069384112198, 0.035083564613707326, 0.035083564613707326, 0.035083564613707326, 0.22500835064791908, 0.1687562629859393, 0.11250417532395954, 0.05625208766197977, 0.05625208766197977, 0.11250417532395954, 0.11250417532395954, 0.28748973867434335, 0.13067715394288335, 0.13067715394288335, 0.15681258473146, 0.10454172315430668, 0.05227086157715334, 0.05227086157715334, 0.02613543078857667, 0.02613543078857667, 0.3304877882694898, 0.15845304917030334, 0.09959905947847639, 0.14939858921771457, 0.06338121966812134, 0.08149013957329886, 0.06338121966812134, 0.022636149881471904, 0.009054459952588762, 0.009054459952588762, 0.004527229976294381, 0.004527229976294381, 0.27164475744711875, 0.19755982359790455, 0.10341022016452817, 0.12964863423612485, 0.09260616731151776, 0.0740849338492142, 0.07254149772735557, 0.01852123346230355, 0.012347488974869035, 0.010804052853010405, 0.007717180609293147, 0.0030868722437172587, 0.0015434361218586293, 0.0015434361218586293, 0.0015434361218586293, 0.22904212165755083, 0.22904212165755083, 0.22904212165755083, 0.22904212165755083, 0.22904212165755083, 0.2249823939576208, 0.2249823939576208, 0.2249823939576208, 0.2249823939576208, 0.2051350406093611, 0.2051350406093611, 0.2051350406093611, 0.2051350406093611, 0.2980430696819925, 0.1139576442901736, 0.14025556220329058, 0.12272361692787927, 0.12272361692787927, 0.07889375373935095, 0.05259583582623397, 0.017531945275411322, 0.017531945275411322, 0.008765972637705661, 0.008765972637705661, 0.008765972637705661, 0.45182055536684645, 0.12909158724767042, 0.08068224202979402, 0.09681869043575281, 0.06454579362383521, 0.048409345217876404, 0.06454579362383521, 0.016136448405958802, 0.016136448405958802, 0.016136448405958802, 0.18655629772113028, 0.18655629772113028, 0.18655629772113028, 0.18655629772113028, 0.18655629772113028, 0.268819112872205, 0.16925647847509204, 0.10951889783682425, 0.08960637095740166, 0.10951889783682425, 0.10951889783682425, 0.07965010751769036, 0.01991252687942259, 0.01991252687942259, 0.01991252687942259, 0.009956263439711295, 0.4539639016913088, 0.40263375224074965, 0.20131687612037483, 0.20131687612037483, 0.4810921680909982, 0.16036405603033274, 0.16036405603033274, 0.2141364458063453, 0.2141364458063453, 0.2883320740851023, 0.12414297634219681, 0.16418909774290547, 0.09611069136170076, 0.10812452778191335, 0.0921060792216299, 0.060069182101062976, 0.02402767284042519, 0.01601844856028346, 0.00800922428014173, 0.00800922428014173, 0.004004612140070865, 0.4819780982706589, 0.4383901964116885, 0.3142005027924973, 0.40793337466925006, 0.35259408974073014, 0.1699248625256531, 0.10620303907853318, 0.11894740376795716, 0.08071430969968522, 0.06372182344711991, 0.055225580320837256, 0.012744364689423983, 0.012744364689423983, 0.012744364689423983, 0.0042481215631413275, 0.0042481215631413275, 0.3030875155525338, 0.3030875155525338, 0.31559272889626255, 0.11084868576934842, 0.11997740106800064, 0.1212815032535224, 0.07302972238921779, 0.11215278795487017, 0.07824613113130477, 0.022169737153869686, 0.015649226226260953, 0.018257430597304447, 0.006520510927608731, 0.002608204371043492, 0.001304102185521746, 0.001304102185521746, 0.001304102185521746, 0.3865412555898464, 0.3865412555898464, 0.2229287669435338, 0.1114643834717669, 0.1114643834717669, 0.1114643834717669, 0.1114643834717669, 0.1114643834717669, 0.1114643834717669, 0.20081266226425218, 0.20081266226425218, 0.20081266226425218, 0.20081266226425218, 0.1629410546725617, 0.3258821093451234, 0.1629410546725617, 0.1629410546725617, 0.1629410546725617, 0.36923852697633186, 0.31944411269717965, 0.31944411269717965, 0.3619090022720189, 0.15833518849400827, 0.11309656321000591, 0.11309656321000591, 0.11309656321000591, 0.06785793792600354, 0.04523862528400236, 0.02261931264200118, 0.30301512482704246, 0.14666485493911643, 0.10377230302295974, 0.11069045655782372, 0.08855236524625898, 0.11069045655782372, 0.07609968888350381, 0.017987199190646355, 0.011069045655782372, 0.01660356848367356, 0.00830178424183678, 0.00415089212091839, 0.0013836307069727966, 0.0013836307069727966, 0.0013836307069727966, 0.3441011992336852, 0.11470039974456174, 0.11470039974456174, 0.11470039974456174, 0.11470039974456174, 0.11470039974456174, 0.11470039974456174, 0.53436012514097, 0.2349774278308685, 0.2349774278308685, 0.2349774278308685, 0.2349774278308685, 0.33882206874674814, 0.11683519611956832, 0.11683519611956832, 0.1051516765076115, 0.09346815689565466, 0.08178463728369782, 0.08178463728369782, 0.023367039223913665, 0.023367039223913665, 0.011683519611956832, 0.011683519611956832, 0.3357955358872428, 0.12371414480056314, 0.12371414480056314, 0.11782299504815538, 0.0942583960385243, 0.08247609653370877, 0.06480264727648545, 0.011782299504815538, 0.011782299504815538, 0.005891149752407769, 0.005891149752407769, 0.005891149752407769, 0.2669628098486604, 0.2669628098486604, 0.19768402816567426, 0.19768402816567426, 0.19768402816567426, 0.3432133548953157, 0.11283726736284351, 0.13634503139676926, 0.14574813701033953, 0.10343416174927322, 0.061120186488206905, 0.04701552806785147, 0.018806211227140587, 0.009403105613570294, 0.009403105613570294, 0.004701552806785147, 0.004701552806785147, 0.30814456439388904, 0.31251574223125994, 0.15625787111562997, 0.07812893555781499, 0.15625787111562997, 0.07812893555781499, 0.07812893555781499, 0.07812893555781499, 0.29457002954059425, 0.16569564161658426, 0.11046376107772285, 0.12273751230858095, 0.06750563176971952, 0.11046376107772285, 0.07364250738514856, 0.01841062684628714, 0.012273751230858094, 0.01841062684628714, 0.006136875615429047, 0.006136875615429047, 0.2385853239322809, 0.11929266196614045, 0.11929266196614045, 0.2385853239322809, 0.11929266196614045, 0.11929266196614045, 0.20546436221535, 0.20546436221535, 0.20546436221535, 0.20546436221535, 0.33190215402940176, 0.13137793596997152, 0.11063405134313392, 0.16595107701470088, 0.07606091029840457, 0.06223165388051283, 0.05531702567156696, 0.02074388462683761, 0.00691462820894587, 0.01382925641789174, 0.00691462820894587, 0.00691462820894587, 0.6269708640330272, 0.2785719075297445, 0.17142886617215045, 0.10714304135759403, 0.12857164962911283, 0.06428582481455641, 0.08571443308607522, 0.08571443308607522, 0.021428608271518806, 0.021428608271518806, 0.4513446987943433, 0.11283617469858583, 0.11283617469858583, 0.08462713102393937, 0.08462713102393937, 0.05641808734929291, 0.05641808734929291, 0.028209043674646456, 0.33137773572248036, 0.08284443393062009, 0.12426665089593013, 0.12426665089593013, 0.12426665089593013, 0.08284443393062009, 0.08284443393062009, 0.041422216965310045, 0.3705894646063914, 0.3747530883761526, 0.14722442757634566, 0.08030423322346128, 0.1204563498351919, 0.1204563498351919, 0.053536155482307515, 0.053536155482307515, 0.013384038870576879, 0.013384038870576879, 0.013384038870576879, 0.013384038870576879, 0.31178905790464984, 0.1385729146242888, 0.08660807164018051, 0.12125130029625272, 0.08660807164018051, 0.08660807164018051, 0.08660807164018051, 0.0346432286560722, 0.0173216143280361, 0.0173216143280361, 0.46633968550557076, 0.07772328091759512, 0.15544656183519023, 0.07772328091759512, 0.07772328091759512, 0.07772328091759512, 0.4011733692477845, 0.15429744971068637, 0.06171897988427454, 0.12343795976854909, 0.09257846982641181, 0.06171897988427454, 0.03085948994213727, 0.33740649544916845, 0.1624549792903404, 0.12496536868487722, 0.11246883181638949, 0.07497922121092633, 0.07497922121092633, 0.04998614747395089, 0.024993073736975444, 0.012496536868487722, 0.012496536868487722, 0.012496536868487722, 0.3578553896659928, 0.13370421152355774, 0.10617687385694291, 0.12583925790452494, 0.07078458257129527, 0.07864953619032808, 0.07078458257129527, 0.015729907238065617, 0.007864953619032809, 0.015729907238065617, 0.007864953619032809, 0.003932476809516404, 0.317748600615414, 0.2525431719855943, 0.12627158599279714, 0.12627158599279714, 0.20203453758847542, 0.10101726879423771, 0.07576295159567828, 0.050508634397118855, 0.025254317198559428, 0.025254317198559428, 0.19151049677518245, 0.19151049677518245, 0.19151049677518245, 0.19151049677518245, 0.19151049677518245, 0.31240250561603145, 0.4968832585882133, 0.3346493260769377, 0.15802884842522058, 0.09760605343910683, 0.10225396074573097, 0.06971860959936202, 0.0929581461324827, 0.08366233151923443, 0.01859162922649654, 0.01859162922649654, 0.013943721919872405, 0.00929581461324827, 0.32766889971306656, 0.16383444985653328, 0.08191722492826664, 0.08191722492826664, 0.08191722492826664, 0.08191722492826664, 0.16383444985653328, 0.4634233630297944, 0.27720674537190176, 0.13860337268595088, 0.09240224845730059, 0.18480449691460119, 0.09240224845730059, 0.09240224845730059, 0.046201124228650296, 0.046201124228650296, 0.377621212297781, 0.41443136978955925, 0.41443136978955925, 0.40592222223033825, 0.17396666667014496, 0.11597777778009663, 0.08698333333507248, 0.08698333333507248, 0.057988888890048315, 0.028994444445024158, 0.028994444445024158, 0.5488285556352447, 0.30793851290380464, 0.20715863595346856, 0.10357931797673428, 0.07278546668635383, 0.08678267181834494, 0.08398323079194672, 0.08398323079194672, 0.01959608718478757, 0.00839832307919467, 0.00839832307919467, 0.00839832307919467, 0.002799441026398224, 0.002799441026398224, 0.2616222932271949, 0.08720743107573162, 0.17441486215146323, 0.17441486215146323, 0.08720743107573162, 0.08720743107573162, 0.08720743107573162, 0.30827449700325676, 0.14047951762173727, 0.113164055861955, 0.14047951762173727, 0.09365301174782484, 0.07414196763369467, 0.08194638527934674, 0.011706626468478105, 0.011706626468478105, 0.00780441764565207, 0.003902208822826035, 0.003902208822826035, 0.003902208822826035, 0.2923013220053864, 0.19150776269318417, 0.09071420338098198, 0.09071420338098198, 0.06047613558732132, 0.12095227117464263, 0.07055549151854154, 0.03023806779366066, 0.010079355931220219, 0.020158711862440438, 0.010079355931220219, 0.19231628984483026, 0.19231628984483026, 0.19231628984483026, 0.19231628984483026, 0.19231628984483026, 0.270914405215542, 0.1625486431293252, 0.0948200418254397, 0.15577578299893666, 0.0948200418254397, 0.0948200418254397, 0.0677286013038855, 0.02031858039116565, 0.00677286013038855, 0.0135457202607771, 0.00677286013038855, 0.21566029611573204, 0.21566029611573204, 0.21566029611573204, 0.3362918135429501, 0.12934300520882697, 0.15521160625059235, 0.15521160625059235, 0.07760580312529618, 0.05173720208353079, 0.05173720208353079, 0.025868601041765395, 0.26253571491782557, 0.11485937527654869, 0.16408482182364098, 0.14767633964127688, 0.06563392872945639, 0.09845089309418459, 0.06563392872945639, 0.016408482182364098, 0.016408482182364098, 0.016408482182364098, 0.016408482182364098, 0.29821123957489487, 0.11669135461626322, 0.14262276675321062, 0.14262276675321062, 0.07779423641084214, 0.07779423641084214, 0.09075994247931583, 0.01296570606847369, 0.01296570606847369, 0.01296570606847369, 0.01296570606847369, 0.33531923266378966, 0.1422566441603956, 0.17274021076619467, 0.10161188868599687, 0.0711283220801978, 0.0711283220801978, 0.050805944342998434, 0.020322377737199374, 0.010161188868599687, 0.010161188868599687, 0.010161188868599687, 0.7402182165252585, 0.2818639339985144, 0.1232099831250991, 0.15105881492734752, 0.10717580723895608, 0.07679526345468506, 0.09958067129288832, 0.09029772735880551, 0.0270049278082409, 0.01350246390412045, 0.01350246390412045, 0.007595135946067753, 0.0033756159760301124, 0.002531711982022584, 0.0008439039940075281, 0.0008439039940075281, 0.3175588028635646, 0.3175588028635646, 0.3176874793286469, 0.1740753311389846, 0.1436121481896623, 0.10444519868339076, 0.06963013245559384, 0.06963013245559384, 0.06963013245559384, 0.01740753311389846, 0.01740753311389846, 0.00870376655694923, 0.004351883278474615, 0.004351883278474615, 0.2809169644928736, 0.0936389881642912, 0.0936389881642912, 0.1872779763285824, 0.0936389881642912, 0.0936389881642912, 0.25922701446058943, 0.12961350723029472, 0.12961350723029472, 0.12961350723029472, 0.12961350723029472, 0.12961350723029472, 0.2937377585503712, 0.1468688792751856, 0.1468688792751856, 0.1468688792751856, 0.1468688792751856, 0.1468688792751856, 0.38694399750800623, 0.11055542785943036, 0.05527771392971518, 0.16583314178914554, 0.05527771392971518, 0.05527771392971518, 0.11055542785943036, 0.23857294925862743, 0.11928647462931372, 0.11928647462931372, 0.11928647462931372, 0.11928647462931372, 0.11928647462931372, 0.32735276781503886, 0.13094110712601553, 0.13094110712601553, 0.13094110712601553, 0.06547055356300777, 0.06547055356300777, 0.06547055356300777, 0.4377289801653321, 0.25982980392651994, 0.25982980392651994, 0.25982980392651994, 0.4986966762144166, 0.32346821670645254, 0.09704046501193576, 0.16173410835322627, 0.129387286682581, 0.09704046501193576, 0.0646936433412905, 0.03234682167064525, 0.03234682167064525, 0.03234682167064525, 0.3663153542080469, 0.14652614168321876, 0.09157883855201172, 0.07326307084160938, 0.054947303131207034, 0.09157883855201172, 0.10989460626241407, 0.018315767710402345, 0.018315767710402345, 0.018315767710402345, 0.25817398054006196, 0.12908699027003098, 0.12908699027003098, 0.12908699027003098, 0.06454349513501549, 0.12908699027003098, 0.06454349513501549, 0.23136199113723674, 0.23136199113723674, 0.23136199113723674, 0.23136199113723674, 0.31365431908174163, 0.31365431908174163, 0.3534495088645415, 0.12161703530822933, 0.10641490589470066, 0.09881384118793633, 0.045606388240586, 0.11021543824808283, 0.09881384118793633, 0.022803194120293, 0.015202129413528666, 0.015202129413528666, 0.007601064706764333, 0.0038005323533821665, 0.4299537757826134, 0.3193365806427223, 0.1731995013655443, 0.11366217277113845, 0.1271933838153216, 0.07848102405626227, 0.06765605522091575, 0.073068539638589, 0.013531211044183148, 0.013531211044183148, 0.010824968835346518, 0.005412484417673259, 0.0027062422088366296, 0.0027062422088366296, 0.3601090128018215, 0.12003633760060717, 0.18005450640091075, 0.12003633760060717, 0.060018168800303584, 0.060018168800303584, 0.060018168800303584, 0.2772199182226283, 0.2772199182226283, 0.24203525360623396, 0.24203525360623396, 0.12101762680311698, 0.12101762680311698, 0.12101762680311698, 0.12101762680311698, 0.28829227893449416, 0.12355383382906893, 0.16473844510542524, 0.12355383382906893, 0.08236922255271262, 0.08236922255271262, 0.08236922255271262, 0.04118461127635631, 0.2936715786711809, 0.15662484195796314, 0.09789052622372696, 0.07831242097898157, 0.07831242097898157, 0.10767957884609966, 0.11746863146847236, 0.019578105244745393, 0.009789052622372696, 0.019578105244745393, 0.009789052622372696, 0.22694076811011732, 0.19857317209635267, 0.14957459716348642, 0.11604925641994636, 0.06962955385196781, 0.07478729858174321, 0.09283940513595709, 0.023209851283989273, 0.020630978919101574, 0.010315489459550787, 0.00773661709466309, 0.0051577447297753935, 0.0025788723648876967, 0.0025788723648876967, 0.45027980607694434, 0.21178478659239308, 0.21178478659239308, 0.21178478659239308, 0.4580714357681389, 0.27353080242920635, 0.13676540121460318, 0.13676540121460318, 0.13676540121460318, 0.10257405091095238, 0.06838270060730159, 0.06838270060730159, 0.3005326868112537, 0.16017401439940446, 0.12219460892325702, 0.1321022799170346, 0.08916903894399837, 0.08256392494814663, 0.05944602596266558, 0.018164063488592258, 0.01155894949274053, 0.008256392494814663, 0.008256392494814663, 0.0033025569979258655, 0.0016512784989629328, 0.0016512784989629328, 0.0016512784989629328, 0.2553520917822942, 0.1276760458911471, 0.11171654015475369, 0.14363555162754046, 0.11171654015475369, 0.09575703441836031, 0.06383802294557354, 0.015959505736393386, 0.015959505736393386, 0.015959505736393386, 0.3024662309216914, 0.3024662309216914, 0.3188483831696643, 0.15942419158483215, 0.15942419158483215, 0.15942419158483215, 0.15942419158483215, 0.15942419158483215, 0.36002683594765306, 0.3462286332158263, 0.11540954440527543, 0.057704772202637714, 0.17311431660791315, 0.057704772202637714, 0.11540954440527543, 0.057704772202637714, 0.3070670620732157, 0.10235568735773856, 0.15353353103660786, 0.15353353103660786, 0.05117784367886928, 0.10235568735773856, 0.05117784367886928, 0.31393128079595817, 0.190011038376501, 0.09913619393556573, 0.0743521454516743, 0.04956809696778287, 0.09913619393556573, 0.08261349494630478, 0.03304539797852191, 0.016522698989260957, 0.016522698989260957, 0.008261349494630478, 0.2767118147719308, 0.2234980042388672, 0.1117490021194336, 0.09578485895951451, 0.10110624001282087, 0.07449933474628907, 0.05853519158636998, 0.021285524213225448, 0.010642762106612724, 0.010642762106612724, 0.005321381053306362, 0.005321381053306362, 0.24640924720371013, 0.15904596864966744, 0.11648437140539025, 0.10080378294697233, 0.0940835307505075, 0.14112529612576127, 0.07392277416111304, 0.029121092851347563, 0.01120042032744137, 0.013440504392929644, 0.006720252196464822, 0.002240084065488274, 0.002240084065488274, 0.002240084065488274, 0.33265907123879346, 0.17821021673506793, 0.07128408669402717, 0.08316476780969836, 0.059403405578355974, 0.11880681115671195, 0.08316476780969836, 0.023761362231342387, 0.023761362231342387, 0.011880681115671194, 0.011880681115671194, 0.272010954239926, 0.14144569620476152, 0.10336416261117189, 0.12512503895036597, 0.10336416261117189, 0.09792394352637336, 0.0816032862719778, 0.02176087633919408, 0.01632065725439556, 0.01632065725439556, 0.01088043816959704, 0.00544021908479852, 0.2757831240799455, 0.18385541605329697, 0.09192770802664849, 0.09192770802664849, 0.04596385401332424, 0.13789156203997274, 0.09192770802664849, 0.04596385401332424, 0.24356415909870407, 0.17821767738929567, 0.12475237417250697, 0.11287119567988725, 0.09504942794095769, 0.08910883869464784, 0.07722766020202812, 0.023762356985239423, 0.017821767738929566, 0.017821767738929566, 0.005940589246309856, 0.005940589246309856, 0.5497595449767269, 0.4193203919946082, 0.4193203919946082, 0.1938927450831456, 0.16804037907205951, 0.12279873855265888, 0.17450347057483104, 0.12279873855265888, 0.09048328103880128, 0.05816782352494368, 0.02585236601108608, 0.01938927450831456, 0.01292618300554304, 0.00646309150277152, 0.25300482339235525, 0.08433494113078509, 0.16866988226157018, 0.16866988226157018, 0.08433494113078509, 0.08433494113078509, 0.08433494113078509, 0.38462072435203165, 0.16402942656189584, 0.11877992957930389, 0.11877992957930389, 0.07353043259671194, 0.039593309859767965, 0.039593309859767965, 0.02262474849129598, 0.01131237424564799, 0.005656187122823995, 0.005656187122823995, 0.005656187122823995, 0.3669439705333064, 0.07338879410666127, 0.07338879410666127, 0.22016638231998384, 0.07338879410666127, 0.07338879410666127, 0.07338879410666127, 0.30912104125308804, 0.1775801726347527, 0.09207860803283473, 0.09865565146375149, 0.07234747774008443, 0.08550156460191796, 0.09207860803283473, 0.0197311302927503, 0.0197311302927503, 0.013154086861833534, 0.006577043430916767, 0.4151709096901, 0.103792727422525, 0.13839030323003335, 0.12109151532627917, 0.08649393951877084, 0.0518963637112625, 0.034597575807508336, 0.017298787903754168, 0.017298787903754168, 0.017298787903754168, 0.3000232604352, 0.12000930417408001, 0.12000930417408001, 0.12000930417408001, 0.060004652087040006, 0.060004652087040006, 0.060004652087040006, 0.3742935069120048, 0.3742935069120048, 0.3742935069120048, 0.3040985110789912, 0.17888147710528896, 0.12521703397370226, 0.10732888626317337, 0.07155259084211558, 0.08944073855264448, 0.07155259084211558, 0.017888147710528896, 0.017888147710528896, 0.017888147710528896, 0.017888147710528896, 0.32180315689508, 0.10726771896502665, 0.2145354379300533, 0.10726771896502665, 0.10726771896502665, 0.10726771896502665, 0.2501630514113247, 0.2501630514113247, 0.3326309970111222, 0.09503742771746349, 0.19007485543492697, 0.14255614157619523, 0.09503742771746349, 0.09503742771746349, 0.04751871385873174, 0.04751871385873174, 0.1725588748794179, 0.3451177497588358, 0.1725588748794179, 0.1725588748794179, 0.1725588748794179, 0.41386719512814907, 0.4503434797344353, 0.3603748735032316, 0.12558518319052012, 0.12012495783441053, 0.12558518319052012, 0.0709829296294244, 0.08190338034164354, 0.060062478917205266, 0.02184090142443828, 0.01092045071221914, 0.01092045071221914, 0.00546022535610957, 0.00546022535610957, 0.31274768491726734, 0.1697773146693737, 0.10722777768592023, 0.12509907396690695, 0.10722777768592023, 0.08042083326444018, 0.044678240702466766, 0.017871296280986704, 0.008935648140493352, 0.008935648140493352, 0.008935648140493352, 0.2765301658283181, 0.16591809949699085, 0.09955085969819451, 0.14379568623072542, 0.13273447959759269, 0.07742844643192906, 0.05530603316566362, 0.022122413266265448, 0.011061206633132724, 0.011061206633132724, 0.011061206633132724, 0.011061206633132724, 0.2193337457397119, 0.2193337457397119, 0.2193337457397119, 0.2193337457397119, 0.2789561079366134, 0.1394780539683067, 0.11623171164025559, 0.1394780539683067, 0.11623171164025559, 0.09298536931220447, 0.06973902698415335, 0.023246342328051117, 0.023246342328051117, 0.28478742102515325, 0.18122835883418845, 0.14239371051257663, 0.10355906219096482, 0.09061417941709422, 0.07766929664322363, 0.06472441386935301, 0.025889765547741205, 0.012944882773870603, 0.012944882773870603, 0.012944882773870603, 0.24324693591798113, 0.20849737364398382, 0.17374781136998652, 0.06949912454799462, 0.06949912454799462, 0.06949912454799462, 0.06949912454799462, 0.03474956227399731, 0.3198159559767222, 0.1066053186589074, 0.1066053186589074, 0.1066053186589074, 0.1066053186589074, 0.1066053186589074, 0.1066053186589074, 0.32618272213160604, 0.19570963327896362, 0.13047308885264242, 0.13047308885264242, 0.06523654442632121, 0.06523654442632121, 0.06523654442632121, 0.32737930840223295, 0.1323448268009027, 0.1323448268009027, 0.10448275800071265, 0.08358620640057011, 0.09751724080066514, 0.06965517200047511, 0.02089655160014253, 0.01393103440009502, 0.00696551720004751, 0.00696551720004751, 0.25776611487660606, 0.1874662653648044, 0.11716641585300275, 0.10544977426770247, 0.11716641585300275, 0.0937331326824022, 0.07029984951180164, 0.02343328317060055, 0.011716641585300275, 0.011716641585300275, 0.011716641585300275, 0.3506152399572486, 0.13356771045990423, 0.1168717466524162, 0.13356771045990423, 0.08347981903744014, 0.08347981903744014, 0.06678385522995212, 0.01669596380748803, 0.01669596380748803, 0.01669596380748803, 0.3075775580369933, 0.15736526225148495, 0.11444746345562541, 0.121600429921602, 0.10729449698964882, 0.0643766981937893, 0.05007076526183612, 0.021458899397929766, 0.014305932931953176, 0.014305932931953176, 0.007152966465976588, 0.007152966465976588, 0.3273241000804201, 0.13848327311094696, 0.13848327311094696, 0.12589388464631543, 0.10071510771705235, 0.06294694232315771, 0.06294694232315771, 0.012589388464631543, 0.012589388464631543, 0.012589388464631543, 0.33808902151313047, 0.16904451075656524, 0.16904451075656524, 0.08452225537828262, 0.08452225537828262, 0.08452225537828262, 0.08452225537828262, 0.3126568051546903, 0.19656482686940444, 0.12400734044110079, 0.117411205311255, 0.07519594048024197, 0.05540753509070461, 0.058045989142642924, 0.01978840538953736, 0.014511497285660731, 0.011873043233722416, 0.007915362155814945, 0.002638454051938315, 0.0013192270259691575, 0.0013192270259691575, 0.0013192270259691575, 0.3143444403062267, 0.15268158529159584, 0.11675650639945565, 0.0898126972303505, 0.06286888806124535, 0.0898126972303505, 0.09879396695338555, 0.02694380916910515, 0.0179625394460701, 0.00898126972303505, 0.00898126972303505, 0.5562332206535728, 0.5561377315088363, 0.3662111240264487, 0.6163296898089756, 0.40265091320031693, 0.10066272830007923, 0.10066272830007923, 0.10066272830007923, 0.10066272830007923, 0.10066272830007923, 0.2950329492751711, 0.17461133732612166, 0.1264426925465019, 0.10235837015669201, 0.07827404776688213, 0.0842951283643346, 0.09031620896178708, 0.018063241792357417, 0.012042161194904944, 0.012042161194904944, 0.006021080597452472, 0.006021080597452472, 0.48403598516271223, 0.34713085328017856, 0.13885234131207144, 0.13885234131207144, 0.13885234131207144, 0.06942617065603572, 0.06942617065603572, 0.06942617065603572, 0.2115458451552836, 0.1057729225776418, 0.2115458451552836, 0.1057729225776418, 0.1057729225776418, 0.1057729225776418, 0.1057729225776418, 0.49070780984074075, 0.320480515287593, 0.14421623187941685, 0.1281922061150372, 0.11216818035065755, 0.08012012882189826, 0.08012012882189826, 0.08012012882189826, 0.01602402576437965, 0.01602402576437965, 0.28464467823359796, 0.12453204672719911, 0.16011263150639887, 0.17790292389599874, 0.08895146194799937, 0.07116116955839949, 0.053370877168799624, 0.017790292389599872, 0.017790292389599872, 0.4461785195407877, 0.4461785195407877, 0.32977656308938574, 0.10992552102979525, 0.10992552102979525, 0.16488828154469287, 0.054962760514897624, 0.054962760514897624, 0.054962760514897624, 0.3135308505389998, 0.11757406895212494, 0.11757406895212494, 0.13063785439124992, 0.07838271263474995, 0.09144649807387495, 0.07838271263474995, 0.026127570878249986, 0.013063785439124993, 0.013063785439124993, 0.013063785439124993, 0.3206097847597381, 0.1929504440016391, 0.14471283300122934, 0.14471283300122934, 0.09647522200081955, 0.1688316385014342, 0.09647522200081955, 0.07235641650061467, 0.024118805500204888, 0.024118805500204888, 0.024118805500204888, 0.625701913018183, 0.2659856632999595, 0.13299283164997974, 0.13299283164997974, 0.13299283164997974, 0.13299283164997974, 0.13299283164997974, 0.13299283164997974, 0.4046493537351317, 0.20232467686756586, 0.3803461479157399, 0.1267820493052466, 0.1267820493052466, 0.2535640986104932, 0.3276549261084453, 0.4639715693665718, 0.6358534559498734, 0.40658666785997005, 0.23069010878769705, 0.23069010878769705, 0.23069010878769705, 0.23069010878769705, 0.3963320600314936, 0.3963320600314936, 0.2535418312985265, 0.2535418312985265, 0.2535418312985265, 0.2834423427761856, 0.177151464235116, 0.132863598176337, 0.1151484517528254, 0.1240060249645812, 0.0708605856940464, 0.044287866058779, 0.0177151464235116, 0.0088575732117558, 0.0088575732117558, 0.0088575732117558, 0.0088575732117558, 0.7178900284203009, 0.3764343584358563, 0.11887400792711253, 0.1386863425816313, 0.09906167327259377, 0.07924933861807501, 0.07924933861807501, 0.059437003963556265, 0.019812334654518753, 0.019812334654518753, 0.019812334654518753, 0.32134596853289316, 0.15710247350496997, 0.11425634436725089, 0.13567940893611044, 0.06902987472188075, 0.07617089624483393, 0.06426919370657863, 0.019042724061208483, 0.011901702538255302, 0.01666238355355742, 0.009521362030604242, 0.0023803405076510604, 0.0023803405076510604, 0.48969924230648126, 0.078351878769037, 0.09793984846129626, 0.078351878769037, 0.078351878769037, 0.058763909076777754, 0.0391759393845185, 0.01958796969225925, 0.01958796969225925, 0.3999503728348433, 0.267679310389946, 0.16201642470970415, 0.11270707805892463, 0.133839655194973, 0.08453030854419347, 0.09157450092287626, 0.09157450092287626, 0.021132577136048367, 0.014088384757365579, 0.014088384757365579, 0.0070441923786827895, 0.23446552030279708, 0.13025862239044284, 0.15631034686853137, 0.18236207134661994, 0.10420689791235425, 0.05210344895617713, 0.05210344895617713, 0.026051724478088564, 0.026051724478088564, 0.356467642992674, 0.10968235169005355, 0.10968235169005355, 0.10968235169005355, 0.10968235169005355, 0.08226176376754016, 0.08226176376754016, 0.02742058792251339, 0.3434896547271528, 0.10972586192672937, 0.14789137911863523, 0.13357931017167055, 0.0858724136817882, 0.047706896489882335, 0.07633103438381174, 0.0143120689469647, 0.009541379297976467, 0.009541379297976467, 0.009541379297976467, 0.004770689648988234, 0.29062054010449323, 0.1309063365776799, 0.09235463227810427, 0.13726101311057698, 0.05337928287633549, 0.11396053248995434, 0.1101477265702161, 0.02202954531404322, 0.01906402959869125, 0.013132998167987305, 0.009743837350442193, 0.0033891608175451106, 0.0016945804087725553, 0.0012709353065794165, 0.0012709353065794165, 0.0004236451021931388, 0.42069291582910007, 0.42069291582910007, 0.27378621589973, 0.27378621589973, 0.38226959967939955, 0.16095562091764193, 0.13412968409803494, 0.1005972630735262, 0.04694538943431223, 0.053651873639213976, 0.06706484204901747, 0.02011945261470524, 0.013412968409803494, 0.006706484204901747, 0.006706484204901747, 0.006706484204901747, 0.3218380522176635, 0.0919537292050467, 0.1226049722733956, 0.16858183687591896, 0.07662810767087226, 0.0919537292050467, 0.0613024861366978, 0.01532562153417445, 0.01532562153417445, 0.01532562153417445, 0.3386784729244893, 0.16933923646224466, 0.16933923646224466, 0.16933923646224466, 0.16933923646224466, 0.16933923646224466, 0.21451257305525115, 0.21451257305525115, 0.21451257305525115, 0.10725628652762557, 0.10725628652762557, 0.10725628652762557, 0.10725628652762557, 0.3402802937506252, 0.3111269484921907, 0.13231835740472478, 0.1180136701177275, 0.11086132647422886, 0.07152343643498636, 0.10728515465247954, 0.08940429554373296, 0.021457030930495908, 0.010728515465247954, 0.010728515465247954, 0.007152343643498636, 0.003576171821749318, 0.1724102476487957, 0.1724102476487957, 0.1724102476487957, 0.1724102476487957, 0.27250547833147815, 0.09083515944382604, 0.09083515944382604, 0.1816703188876521, 0.09083515944382604, 0.09083515944382604, 0.09083515944382604, 0.2711527611156732, 0.1355763805578366, 0.20336457083675494, 0.1355763805578366, 0.10168228541837747, 0.0677881902789183, 0.0677881902789183, 0.03389409513945915, 0.4475718638570954, 0.1491906212856985, 0.1491906212856985, 0.1491906212856985, 0.28602603999398485, 0.11441041599759394, 0.11441041599759394, 0.1716156239963909, 0.05720520799879697, 0.05720520799879697, 0.05720520799879697, 0.05720520799879697, 0.3343716640127296, 0.17090107271761737, 0.10402673991507143, 0.12631818418258675, 0.07430481422505103, 0.06687433280254593, 0.06687433280254593, 0.02229144426751531, 0.014860962845010204, 0.007430481422505102, 0.007430481422505102, 0.007430481422505102, 0.3162642203309368, 0.14548154135223093, 0.13283097253899348, 0.12650568813237473, 0.06325284406618736, 0.09487926609928105, 0.05692755965956863, 0.01897585321985621, 0.01897585321985621, 0.01897585321985621, 0.0063252844066187365, 0.22388351272342438, 0.14792303519226255, 0.1279334358419568, 0.11194175636171219, 0.07596047753116185, 0.14792303519226255, 0.09595007688146759, 0.023987519220366897, 0.011993759610183449, 0.011993759610183449, 0.0079958397401223, 0.00399791987006115, 0.40590506678596067, 0.29275723158160855, 0.19517148772107237, 0.19517148772107237, 0.09758574386053619, 0.09758574386053619, 0.09758574386053619, 0.09758574386053619, 0.30947148135861563, 0.30947148135861563, 0.45487932205521114, 0.33226765855472407, 0.11075588618490802, 0.16613382927736203, 0.16613382927736203, 0.11075588618490802, 0.05537794309245401, 0.05537794309245401, 0.32455501287197186, 0.16227750643598593, 0.08113875321799296, 0.16227750643598593, 0.08113875321799296, 0.08113875321799296, 0.08113875321799296, 0.36686175076998967, 0.10088698146174715, 0.11923006900024664, 0.14674470030799586, 0.06420080638474819, 0.06420080638474819, 0.06420080638474819, 0.027514631307749227, 0.009171543769249741, 0.009171543769249741, 0.009171543769249741, 0.28303950107825326, 0.18869300071883552, 0.09434650035941776, 0.18869300071883552, 0.09434650035941776, 0.09434650035941776, 0.09434650035941776, 0.3332695999279631, 0.10254449228552712, 0.1281806153569089, 0.17945286149967246, 0.10254449228552712, 0.05127224614276356, 0.05127224614276356, 0.02563612307138178, 0.02563612307138178, 0.34802379707721776, 0.24962706402288345, 0.24962706402288345, 0.24962706402288345, 0.33564011584294784, 0.11872983689682509, 0.12329636908516452, 0.10046370814346738, 0.11644657080265537, 0.06621471673092168, 0.08219757939010967, 0.02054939484752742, 0.011416330470848566, 0.013699596565018278, 0.006849798282509139, 0.002283266094169713, 0.002283266094169713, 0.37231427906057435, 0.15513094960857263, 0.09307856976514359, 0.09307856976514359, 0.12410475968685811, 0.062052379843429054, 0.031026189921714527, 0.3586471525985388, 0.4212252930245162, 0.27295689790946087, 0.14697679118201737, 0.10498342227286955, 0.08398673781829565, 0.06299005336372174, 0.12598010672744347, 0.08398673781829565, 0.02099668445457391, 0.02099668445457391, 0.02099668445457391, 0.21884244976945644, 0.14589496651297096, 0.21884244976945644, 0.14589496651297096, 0.07294748325648548, 0.07294748325648548, 0.07294748325648548, 0.32699081331851154, 0.32699081331851154, 0.36189450985685184, 0.36189450985685184, 0.20599517991001115, 0.20599517991001115, 0.20599517991001115, 0.3272928042267048, 0.18702445955811706, 0.09351222977905853, 0.09351222977905853, 0.09351222977905853, 0.046756114889529264, 0.09351222977905853, 0.38048644696552375, 0.26455361430425844, 0.26455361430425844, 0.26455361430425844, 0.26455361430425844, 0.30098352670812506, 0.15049176335406253, 0.15049176335406253, 0.1003278422360417, 0.1003278422360417, 0.05016392111802085, 0.05016392111802085, 0.33065406627839555, 0.1417088855478838, 0.1417088855478838, 0.1417088855478838, 0.09447259036525588, 0.09447259036525588, 0.04723629518262794, 0.04723629518262794, 0.24006049440036986, 0.24006049440036986, 0.24006049440036986, 0.25282898083045713, 0.17698028658132, 0.10113159233218286, 0.07584869424913714, 0.12641449041522856, 0.12641449041522856, 0.07584869424913714, 0.025282898083045714, 0.025282898083045714, 0.025282898083045714, 0.34155053853329104, 0.12702292755370329, 0.1397252203090736, 0.13125702513882673, 0.05786600033002039, 0.07056829308539071, 0.07339102480880634, 0.01693639034049377, 0.011290926893662514, 0.011290926893662514, 0.0098795610319547, 0.004234097585123443, 0.0014113658617078142, 0.0014113658617078142, 0.0014113658617078142, 0.7275478701440778, 0.2730160993430634, 0.16582322736671964, 0.12259074308896774, 0.11548403334467976, 0.10778509778836777, 0.08646496855550381, 0.053892548894183885, 0.029019064789175937, 0.016582322736671963, 0.014805645300599968, 0.005922258120239987, 0.00473780649619199, 0.0017766774360719962, 0.0011844516240479975, 0.0011844516240479975, 0.0005922258120239988, 0.31505974326190833, 0.10501991442063612, 0.16156909910867093, 0.1373337342423703, 0.07270609459890193, 0.06462763964346838, 0.06462763964346838, 0.02423536486630064, 0.016156909910867094, 0.016156909910867094, 0.008078454955433547, 0.2535952313047928, 0.1784559035107801, 0.10331657571676743, 0.1221014076652706, 0.09392415974251585, 0.08453174376826426, 0.09392415974251585, 0.018784831948503167, 0.018784831948503167, 0.018784831948503167, 0.009392415974251583, 0.3627969863125606, 0.13366204758883812, 0.11456746936186124, 0.15275662581581498, 0.07637831290790749, 0.05728373468093062, 0.05728373468093062, 0.019094578226976872, 0.019094578226976872, 0.19981567750348062, 0.21230415734744815, 0.11239631859570784, 0.11239631859570784, 0.06244239921983769, 0.12488479843967538, 0.08741935890777276, 0.024976959687935077, 0.012488479843967538, 0.012488479843967538, 0.012488479843967538, 0.3092499651365635, 0.10308332171218784, 0.06872221447479189, 0.10308332171218784, 0.13744442894958378, 0.10308332171218784, 0.06872221447479189, 0.034361107237395945, 0.42278507881966393, 0.07046417980327732, 0.10569626970491598, 0.10569626970491598, 0.10569626970491598, 0.07046417980327732, 0.03523208990163866, 0.35491257856719816, 0.1330922169626993, 0.17745628928359908, 0.1330922169626993, 0.08872814464179954, 0.04436407232089977, 0.04436407232089977, 0.37495977741634673, 0.37495977741634673, 0.6096985580492984, 0.7470616461067034, 0.25405557576790067, 0.12702778788395033, 0.12702778788395033, 0.12702778788395033, 0.12702778788395033, 0.12702778788395033, 0.12702778788395033, 0.44224558659351454, 0.3504124605168913, 0.14016498420675652, 0.07008249210337826, 0.07008249210337826, 0.07008249210337826, 0.07008249210337826, 0.07008249210337826, 0.22301551575224696, 0.22301551575224696, 0.11150775787612348, 0.11150775787612348, 0.05575387893806174, 0.11150775787612348, 0.05575387893806174, 0.05575387893806174, 0.3302992888575543, 0.12474068887705507, 0.13001142220988837, 0.11068539998949957, 0.08784555554722187, 0.06676262221588862, 0.08960246665816632, 0.02108293333133325, 0.010541466665666625, 0.010541466665666625, 0.00702764444377775, 0.003513822221888875, 0.0017569111109444376, 0.0017569111109444376, 0.0017569111109444376, 0.28239424752329906, 0.18826283168219937, 0.09413141584109969, 0.09413141584109969, 0.04706570792054984, 0.09413141584109969, 0.09413141584109969, 0.04706570792054984, 0.4158867188153533, 0.3011058257949004, 0.1505529128974502, 0.10036860859830014, 0.12546076074787518, 0.12546076074787518, 0.0752764564487251, 0.05018430429915007, 0.025092152149575036, 0.025092152149575036, 0.3699608288638644, 0.32652601892560945, 0.13993972239668975, 0.09329314826445985, 0.09329314826445985, 0.09329314826445985, 0.09329314826445985, 0.09329314826445985, 0.3161189902585308, 0.13219521410811286, 0.1264475961034123, 0.14943806812221455, 0.06897141605640672, 0.06897141605640672, 0.0862142700705084, 0.01724285401410168, 0.01149523600940112, 0.01149523600940112, 0.00574761800470056, 0.00574761800470056, 0.30342660428987817, 0.15452280774021573, 0.10957071821578933, 0.10676121262051268, 0.09271368464412943, 0.07023763988191624, 0.08428516785829948, 0.025285550357489847, 0.016857033571659897, 0.016857033571659897, 0.008428516785829948, 0.0028095055952766495, 0.0028095055952766495, 0.5000383612411698, 0.5817885082170575, 0.5485068946475178, 0.32335336020413463, 0.1414670950893089, 0.12125751007655049, 0.12125751007655049, 0.10104792506379208, 0.060628755038275244, 0.060628755038275244, 0.020209585012758415, 0.020209585012758415, 0.020209585012758415, 0.5937410822345062, 0.37098039101924907, 0.4829097720831356, 0.28818526988618126, 0.28818526988618126, 0.3235051951325614, 0.3065267627114431, 0.14519688760015725, 0.0967979250667715, 0.193595850133543, 0.08066493755564291, 0.06453195004451433, 0.04839896253338575, 0.032265975022257164, 0.016132987511128582, 0.016132987511128582, 0.4147110566313584, 0.12760340204041795, 0.09570255153031347, 0.11165297678536572, 0.06380170102020898, 0.06380170102020898, 0.06380170102020898, 0.015950425255052244, 0.015950425255052244, 0.3599094083860366, 0.3599094083860366, 0.3599094083860366, 0.43396709375775266, 0.2751674067949757, 0.2751674067949757, 0.13758370339748785, 0.13758370339748785, 0.13758370339748785, 0.13758370339748785, 0.2601099561638831, 0.2601099561638831, 0.17340663744258872, 0.05780221248086291, 0.11560442496172582, 0.05780221248086291, 0.028901106240431455, 0.26210095950565, 0.26210095950565, 0.26210095950565, 0.22483224458485077, 0.22483224458485077, 0.22483224458485077, 0.19039207550737455, 0.19039207550737455, 0.19039207550737455, 0.19039207550737455, 0.19039207550737455, 0.3687717918614659, 0.131011031319205, 0.10432359901344102, 0.11645425006151555, 0.07521003649806213, 0.0679316458692174, 0.07763616670767703, 0.01940904167691926, 0.012130651048074537, 0.014556781257689444, 0.007278390628844722, 0.004852260419229815, 0.0024261302096149073, 0.0024261302096149073, 0.2589459062847686, 0.2589459062847686, 0.2589459062847686, 0.37047815579612053, 0.15436589824838357, 0.12349271859870685, 0.12349271859870685, 0.061746359299353425, 0.09261953894903013, 0.030873179649676712, 0.030873179649676712, 0.2937921120455107, 0.21544754883337452, 0.12730991521972132, 0.10772377441668726, 0.07834456321213619, 0.058758422409102146, 0.06855149281061917, 0.019586140803034047, 0.009793070401517024, 0.009793070401517024, 0.009793070401517024, 0.717708522586815, 0.4455076855947244, 0.33916527698841675, 0.15162682971246866, 0.10773485269043827, 0.09975449323188729, 0.11571521214898925, 0.07182323512695885, 0.059852695939132367, 0.015960718917101966, 0.015960718917101966, 0.011970539187826474, 0.007980359458550983, 0.0039901797292754915, 0.31901510460737753, 0.14178449093661222, 0.10633836820245918, 0.09452299395774148, 0.07089224546830611, 0.11815374244717686, 0.0827076197130238, 0.02363074848943537, 0.011815374244717685, 0.011815374244717685, 0.32207174634185215, 0.16103587317092607, 0.16103587317092607, 0.16103587317092607, 0.16103587317092607, 0.16103587317092607, 0.16103587317092607, 0.39744509863356237, 0.08785628496110326, 0.1338762437502526, 0.09622355019549404, 0.08785628496110326, 0.08785628496110326, 0.05020359140634472, 0.02091816308597697, 0.008367265234390787, 0.01255089785158618, 0.008367265234390787, 0.32314114191268484, 0.17054671378725034, 0.11668985680180285, 0.09873757113998703, 0.053856856985447475, 0.08976142830907911, 0.07180914264726329, 0.026928428492723738, 0.008976142830907911, 0.017952285661815823, 0.008976142830907911, 0.26420981029488394, 0.13210490514744197, 0.19815735772116294, 0.13210490514744197, 0.13210490514744197, 0.06605245257372098, 0.06605245257372098, 0.3066421537893724, 0.18375753204255854, 0.18375753204255854, 0.18375753204255854, 0.18375753204255854, 0.18375753204255854, 0.18375753204255854, 0.2605630269615083, 0.11464773186306365, 0.12507025294152396, 0.17718285833382563, 0.1354927740199843, 0.08338016862768265, 0.06253512647076198, 0.02084504215692066, 0.02084504215692066, 0.01042252107846033, 0.01042252107846033, 0.37327667333878795, 0.18663833666939397, 0.18663833666939397, 0.18663833666939397, 0.2706250561144121, 0.2706250561144121, 0.2706250561144121, 0.29707281932404334, 0.1697558967565962, 0.0848779483782981, 0.0848779483782981, 0.06365846128372357, 0.12731692256744714, 0.10609743547287262, 0.021219487094574524, 0.021219487094574524, 0.32778771776125676, 0.10926257258708558, 0.10926257258708558, 0.10926257258708558, 0.10926257258708558, 0.10926257258708558, 0.10926257258708558, 0.5940719641308828, 0.3316918297459194, 0.11056394324863979, 0.11056394324863979, 0.07370929549909319, 0.14741859099818638, 0.07370929549909319, 0.07370929549909319, 0.036854647749546596, 0.38591824873255426, 0.38591824873255426, 0.37813805286969115, 0.37813805286969115, 0.30055057533551244, 0.15027528766775622, 0.11270646575081716, 0.16905969862622575, 0.05635323287540858, 0.07513764383387811, 0.07513764383387811, 0.018784410958469527, 0.018784410958469527, 0.018784410958469527, 0.018784410958469527, 0.35067013539590386, 0.11689004513196795, 0.11689004513196795, 0.14026805415836155, 0.09351203610557436, 0.07013402707918077, 0.04675601805278718, 0.02337800902639359, 0.02337800902639359, 0.3458893559619199, 0.14091788576226366, 0.12810716887478513, 0.11529645198730662, 0.06405358443739256, 0.08967501821234959, 0.06405358443739256, 0.025621433774957028, 0.012810716887478514, 0.012810716887478514, 0.012810716887478514, 0.4518444636942138, 0.3268082020843001, 0.10893606736143337, 0.10893606736143337, 0.16340410104215006, 0.10893606736143337, 0.07262404490762224, 0.03631202245381112, 0.01815601122690556, 0.01815601122690556, 0.35702349353749924, 0.14183125085736273, 0.12715905249280796, 0.08803319018732858, 0.08803319018732858, 0.06847025903458889, 0.06847025903458889, 0.024453663940924606, 0.014672198364554764, 0.014672198364554764, 0.009781465576369842, 0.004890732788184921, 0.4060434474590834, 0.14026955457677426, 0.11073912203429548, 0.10335651389867578, 0.08120868949181669, 0.05906086508495759, 0.05906086508495759, 0.014765216271239397, 0.014765216271239397, 0.007382608135619698, 0.007382608135619698, 0.007382608135619698, 0.24991339005024438, 0.24991339005024438, 0.24991339005024438, 0.307251707700077, 0.307251707700077, 0.4095939742010649, 0.12287819226031949, 0.08191879484021299, 0.12287819226031949, 0.08191879484021299, 0.08191879484021299, 0.04095939742010649, 0.29511667365621325, 0.16156022280449628, 0.12709404193953708, 0.10770681520299753, 0.07324063433803832, 0.09909026998675773, 0.07108649803397837, 0.03662031716901916, 0.010770681520299752, 0.008616545216239802, 0.004308272608119901, 0.0021541363040599505, 0.0021541363040599505, 0.2893703958591773, 0.13153199811780786, 0.14906959786684892, 0.13153199811780786, 0.06138159912164367, 0.08768799874520525, 0.07891919887068471, 0.026306399623561575, 0.008768799874520524, 0.008768799874520524, 0.008768799874520524, 0.2618406113449343, 0.2618406113449343, 0.3231467102578803, 0.13849144725337725, 0.13849144725337725, 0.0923276315022515, 0.0923276315022515, 0.06924572362668863, 0.04616381575112575, 0.023081907875562874, 0.023081907875562874, 0.023081907875562874, 0.2752310947213351, 0.18348739648089007, 0.09174369824044504, 0.09174369824044504, 0.18348739648089007, 0.09174369824044504, 0.39396100401500705, 0.13742825721453733, 0.09161883814302489, 0.0824569543287224, 0.09161883814302489, 0.10078072195732737, 0.054971302885814935, 0.01832376762860498, 0.00916188381430249, 0.00916188381430249, 0.00916188381430249, 0.4559818087374186, 0.09119636174748372, 0.18239272349496743, 0.09119636174748372, 0.18239272349496743, 0.47913680662243685, 0.4979476173502248, 0.2812213550350417, 0.14061067751752085, 0.14061067751752085, 0.14061067751752085, 0.14061067751752085, 0.29072830531337307, 0.29072830531337307, 0.29072830531337307, 0.3454983667018082, 0.1727491833509041, 0.1727491833509041, 0.1727491833509041, 0.36257871605403336, 0.1372377383195173, 0.07793748102096044, 0.0830203602179796, 0.06946601569259518, 0.09996329087471013, 0.10165758394038318, 0.023720102919422743, 0.015248637591057478, 0.011860051459711371, 0.010165758394038318, 0.003388586131346106, 0.001694293065673053, 0.001694293065673053, 0.001694293065673053, 0.48508821793005363, 0.4614872649921899, 0.4111299874508921, 0.20556499372544604, 0.22299766266349758, 0.22299766266349758, 0.22299766266349758, 0.22299766266349758, 0.4475599019360862, 0.3201380286217722, 0.1600690143108861, 0.1024441691589671, 0.10884692973140254, 0.14086073259357978, 0.06402760572435444, 0.057624845151919, 0.012805521144870888, 0.012805521144870888, 0.006402760572435444, 0.006402760572435444, 0.006402760572435444, 0.46062461375082103, 0.20565157617409563, 0.20565157617409563, 0.20565157617409563, 0.20565157617409563, 0.20565157617409563, 0.35293320251164284, 0.1430810280452606, 0.13354229284224323, 0.1144648224362085, 0.08584861682715637, 0.05723241121810425, 0.047693676015086874, 0.019077470406034747, 0.009538735203017373, 0.009538735203017373, 0.009538735203017373, 0.46338133093232714, 0.25894759192542893, 0.12947379596271447, 0.12947379596271447, 0.12947379596271447, 0.12947379596271447, 0.33641375642956184, 0.11121115915026838, 0.1779378546404294, 0.13067311200156534, 0.06116613753264761, 0.06950697446891774, 0.05004502161762077, 0.022242231830053676, 0.013901394893783548, 0.013901394893783548, 0.0027802789787567095, 0.0027802789787567095, 0.0027802789787567095, 0.3668176737768046, 0.11812772545354723, 0.1119104767454658, 0.10569322803738436, 0.08082423320505863, 0.0746069844969772, 0.0746069844969772, 0.0186517461242443, 0.012434497416162866, 0.012434497416162866, 0.006217248708081433, 0.006217248708081433, 0.45408525504208114, 0.30019606464413523, 0.15273133113473547, 0.10533195250671411, 0.11586514775738552, 0.08426556200537129, 0.10006535488137841, 0.08426556200537129, 0.021066390501342822, 0.015799792876007118, 0.015799792876007118, 0.0052665976253357056, 0.0052665976253357056, 0.3794204312548082, 0.25848264502346463, 0.17232176334897645, 0.08616088167448822, 0.08616088167448822, 0.08616088167448822, 0.08616088167448822, 0.08616088167448822, 0.3086733241556477, 0.1299677154339569, 0.1137217510047123, 0.1137217510047123, 0.14621367986320152, 0.08122982214622307, 0.04873789328773384, 0.03249192885848923, 0.016245964429244614, 0.016245964429244614, 0.2105355193017609, 0.2105355193017609, 0.2105355193017609, 0.2105355193017609, 0.2792141955062847, 0.17211833969565493, 0.10327100381739296, 0.1415195237497607, 0.08797159584444585, 0.0803218918579723, 0.06884733587826197, 0.022949111959420655, 0.015299407972947104, 0.011474555979710328, 0.007649703986473552, 0.003824851993236776, 0.003824851993236776, 0.46158321080347414, 0.3116318385583477, 0.1608422392559214, 0.11057903948844595, 0.12063167944194103, 0.060315839720970515, 0.11057903948844595, 0.05026319976747543, 0.030157919860485258, 0.020105279906990174, 0.010052639953495087, 0.010052639953495087, 0.34102060226957226, 0.17051030113478613, 0.17051030113478613, 0.17051030113478613, 0.4736652158010167, 0.4871337766637517, 0.3284315758912419, 0.11495105156193466, 0.1587419283474336, 0.12589877075830938, 0.07116017477643574, 0.06021245558006101, 0.0766340343746231, 0.021895438392749458, 0.010947719196374729, 0.005473859598187364, 0.010947719196374729, 0.005473859598187364, 0.2357424946740801, 0.11787124733704005, 0.11787124733704005, 0.2357424946740801, 0.058935623668520024, 0.11787124733704005, 0.11787124733704005, 0.058935623668520024, 0.20835611630625922, 0.10417805815312961, 0.10417805815312961, 0.10417805815312961, 0.10417805815312961, 0.10417805815312961, 0.10417805815312961, 0.26472318871405287, 0.14824498567986963, 0.1376560581313075, 0.1376560581313075, 0.10588927548562116, 0.06353356529137269, 0.08471142038849692, 0.010588927548562116, 0.010588927548562116, 0.010588927548562116, 0.010588927548562116, 0.4468323323781657, 0.246972078034664, 0.216100568280331, 0.123486039017332, 0.123486039017332, 0.061743019508666, 0.092614529262999, 0.061743019508666, 0.030871509754333, 0.5617698082262332, 0.48825485703581056, 0.31453878568868265, 0.15726939284434133, 0.10484626189622756, 0.117952044633256, 0.06552891368514221, 0.09174047915919911, 0.06552891368514221, 0.02621156547405689, 0.013105782737028445, 0.013105782737028445, 0.013105782737028445, 0.5809791527629456, 0.29196432662752936, 0.3361303956700578, 0.3361303956700578, 0.2620447007593325, 0.2620447007593325, 0.2620447007593325, 0.2620447007593325, 0.2618356615555966, 0.2618356615555966, 0.2618356615555966, 0.2618356615555966, 0.4562600710890339, 0.32270453889659645, 0.1823982176372067, 0.1823982176372067, 0.08418379275563385, 0.08418379275563385, 0.0561225285037559, 0.04209189637781693, 0.014030632125938976, 0.014030632125938976, 0.014030632125938976, 0.014030632125938976, 0.3232964142912845, 0.3232964142912845, 0.213433980049346, 0.213433980049346, 0.213433980049346, 0.07114466001644866, 0.07114466001644866, 0.07114466001644866, 0.07114466001644866, 0.24476890763395928, 0.14170831494597644, 0.14170831494597644, 0.12882574085997858, 0.07729544451598715, 0.10306059268798286, 0.090178018601985, 0.025765148171995714, 0.012882574085997857, 0.012882574085997857, 0.012882574085997857, 0.32267047902399676, 0.14340910178844302, 0.10755682634133226, 0.13623864669902086, 0.08604546107306581, 0.08604546107306581, 0.0573636407153772, 0.021511365268266452, 0.00717045508942215, 0.0143409101788443, 0.00717045508942215, 0.00717045508942215, 0.30764179926535096, 0.21112672498602517, 0.09048288213686792, 0.11461165070669938, 0.060321921424578616, 0.09048288213686792, 0.0784184978519522, 0.018096576427373584, 0.012064384284915724, 0.006032192142457862, 0.006032192142457862, 0.30307229026344845, 0.10102409675448282, 0.10102409675448282, 0.10102409675448282, 0.15153614513172423, 0.10102409675448282, 0.05051204837724141, 0.2838803967276603, 0.16706235736627797, 0.1494768460645645, 0.1230985791119943, 0.08918366445868975, 0.056524857755507585, 0.0690859372567315, 0.01884161925183586, 0.015073295401468689, 0.013817187451346299, 0.007536647700734344, 0.0025122159002447814, 0.0012561079501223907, 0.0012561079501223907, 0.0012561079501223907, 0.3781277208377568, 0.16351469009200295, 0.08175734504600148, 0.10219668130750184, 0.09197701317675165, 0.0613180087845011, 0.0613180087845011, 0.02043933626150037, 0.010219668130750184, 0.010219668130750184, 0.010219668130750184, 0.42952906362306104, 0.3270444191484877, 0.14122372645048334, 0.12264165718068289, 0.11149241561880263, 0.08176110478712192, 0.07804469093316184, 0.07804469093316184, 0.022298483123760527, 0.01486565541584035, 0.011149241561880264, 0.007432827707920175, 0.0037164138539600875, 0.20570111044844194, 0.20570111044844194, 0.06856703681614731, 0.06856703681614731, 0.06856703681614731, 0.13713407363229463, 0.13713407363229463, 0.2514004558218028, 0.14246025829902162, 0.1257002279109014, 0.12151022031387138, 0.087990159537631, 0.11732021271684133, 0.09427517093317607, 0.018855034186635214, 0.012570022791090141, 0.012570022791090141, 0.008380015194060094, 0.0020950037985150234, 0.0020950037985150234, 0.0020950037985150234, 0.0020950037985150234, 0.3030858827226142, 0.3030858827226142, 0.4117724771959819, 0.3815478038696855, 0.17343081994076615, 0.10405849196445968, 0.06937232797630646, 0.06937232797630646, 0.06937232797630646, 0.03468616398815323, 0.03468616398815323, 0.305409783052089, 0.14002176100062552, 0.139007110558592, 0.1253093295911395, 0.08573796235183229, 0.0755914579314971, 0.07102553094234627, 0.020800334061687124, 0.012683130525418978, 0.009131853978301664, 0.007609878315251387, 0.0030439513261005546, 0.0020293008840670365, 0.0015219756630502773, 0.0015219756630502773, 0.0005073252210167591, 0.258552572342089, 0.258552572342089, 0.258552572342089, 0.4016958046614238, 0.11902097915894039, 0.11902097915894039, 0.11902097915894039, 0.06322989517818708, 0.059510489579470194, 0.059510489579470194, 0.018597027993584436, 0.011158216796150661, 0.011158216796150661, 0.007438811197433774, 0.003719405598716887, 0.003719405598716887, 0.7208598446280094, 0.43903701450161975, 0.4046384926803831, 0.10894113264471852, 0.07781509474622753, 0.10894113264471852, 0.14006717054320952, 0.06225207579698202, 0.03112603789849101, 0.015563018949245505, 0.015563018949245505, 0.015563018949245505, 0.015563018949245505, 0.4013842590018536, 0.12726817968351453, 0.11747831970785957, 0.10768845973220462, 0.05873915985392979, 0.06852901982958476, 0.05873915985392979, 0.01957971995130993, 0.009789859975654965, 0.009789859975654965, 0.009789859975654965, 0.303844459539255, 0.1519222297696275, 0.1519222297696275, 0.1519222297696275, 0.1519222297696275, 0.1519222297696275, 0.3587731505747468, 0.11389623827769739, 0.12528586210546713, 0.10250661444992765, 0.06264293105273357, 0.08542217870827304, 0.0911169906221579, 0.017084435741654608, 0.017084435741654608, 0.017084435741654608, 0.005694811913884869, 0.24588974461497554, 0.24588974461497554, 0.24588974461497554, 0.3322593582973286, 0.14239686784171227, 0.07119843392085613, 0.09493124522780817, 0.07119843392085613, 0.11866405653476021, 0.07119843392085613, 0.023732811306952043, 0.023732811306952043, 0.023732811306952043, 0.3256981747800753, 0.3256981747800753, 0.33385509274881325, 0.11376353939992968, 0.1353265632077595, 0.14053143102344257, 0.08699564777641682, 0.06989393923917249, 0.060227756152903954, 0.02007591871763465, 0.014127498356854014, 0.010409735631366115, 0.006691972905878217, 0.0029742101803903187, 0.0014871050901951594, 0.0014871050901951594, 0.0014871050901951594, 0.27766618200257953, 0.13883309100128977, 0.13883309100128977, 0.13883309100128977, 0.13883309100128977, 0.13883309100128977, 0.3451769528470758, 0.31264630647220143, 0.31264630647220143, 0.31264630647220143, 0.3672426964421387, 0.09181067411053467, 0.12241423214737956, 0.15301779018422446, 0.09181067411053467, 0.06120711607368978, 0.06120711607368978, 0.03060355803684489, 0.4733344738121295, 0.46821189982286465, 0.41333891938162465, 0.10333472984540616, 0.10333472984540616, 0.10333472984540616, 0.10333472984540616, 0.10333472984540616, 0.24830917053401896, 0.21283643188630197, 0.10641821594315098, 0.14189095459086798, 0.07094547729543399, 0.07094547729543399, 0.07094547729543399, 0.3123151429800956, 0.1519370965849114, 0.14349614677463854, 0.11817329734381996, 0.1097323475335471, 0.06752759848218283, 0.033763799241091415, 0.025322849430818563, 0.008440949810272854, 0.016881899620545707, 0.008440949810272854, 0.29820670217021905, 0.09940223405673969, 0.09940223405673969, 0.09940223405673969, 0.14910335108510953, 0.12425279257092461, 0.07455167554255476, 0.024850558514184922, 0.024850558514184922, 0.7165809680670797, 0.4829993877977444, 0.1207498469494361, 0.1207498469494361, 0.1207498469494361, 0.06037492347471805, 0.06037492347471805, 0.06037492347471805, 0.3013707468486799, 0.13698670311303632, 0.16438404373564358, 0.10958936249042905, 0.08219202186782179, 0.08219202186782179, 0.08219202186782179, 0.027397340622607264, 0.27923084587520997, 0.13961542293760498, 0.10471156720320374, 0.20942313440640747, 0.06980771146880249, 0.06980771146880249, 0.06980771146880249, 0.034903855734401246, 0.4385330670009517, 0.38833488528247245, 0.11818887812944813, 0.11818887812944813, 0.0844206272353201, 0.10130475268238412, 0.06753650178825608, 0.05065237634119206, 0.01688412544706402, 0.01688412544706402, 0.01688412544706402, 0.01688412544706402, 0.3194750732195437, 0.10649169107318124, 0.10649169107318124, 0.21298338214636248, 0.10649169107318124, 0.10649169107318124, 0.10649169107318124, 0.4054980104232163, 0.27062761094032217, 0.15919271231783658, 0.09551562739070195, 0.14327344108605292, 0.09551562739070195, 0.09551562739070195, 0.07959635615891829, 0.023878906847675487, 0.015919271231783657, 0.007959635615891828, 0.007959635615891828, 0.007959635615891828, 0.32385028400206056, 0.17338445974264163, 0.09566039158214712, 0.1135967150037997, 0.05679835750189985, 0.10861440294222954, 0.07174529368661034, 0.021922173070908713, 0.013950473772396454, 0.009964624123140324, 0.003985849649256129, 0.0019929248246280647, 0.0009964624123140324, 0.0009964624123140324, 0.0009964624123140324, 0.2655013106505615, 0.1633854219388071, 0.1429622441964562, 0.11232747758292987, 0.08169271096940355, 0.08169271096940355, 0.08169271096940355, 0.030634766613526328, 0.020423177742350886, 0.010211588871175443, 0.010211588871175443, 0.41565570165475, 0.4155285014264049, 0.1385095004754683, 0.1385095004754683, 0.1385095004754683, 0.22168498619243043, 0.1570268652196382, 0.12007936752089982, 0.12931624194558441, 0.06465812097279221, 0.1477899907949536, 0.092368744246846, 0.027710623274053804, 0.0092368744246846, 0.0092368744246846, 0.0092368744246846, 0.2720053570429224, 0.1813369046952816, 0.113335565434551, 0.0680013392607306, 0.0680013392607306, 0.1360026785214612, 0.0906684523476408, 0.0226671130869102, 0.0226671130869102, 0.0226671130869102, 0.2761390295017555, 0.15341057194541974, 0.12272845755633578, 0.15341057194541974, 0.09204634316725184, 0.06136422877816789, 0.06136422877816789, 0.030682114389083946, 0.37106610711565374, 0.11806648862770801, 0.11384982831957559, 0.13914979016837015, 0.08011654585451615, 0.059033244313854004, 0.05481658400572158, 0.021083301540662146, 0.016866641232529716, 0.008433320616264858, 0.008433320616264858, 0.004216660308132429, 0.2735548313212214, 0.1367774156606107, 0.10258306174545802, 0.17097176957576338, 0.10258306174545802, 0.06838870783030535, 0.06838870783030535, 0.03419435391515267, 0.39673657936010764, 0.143337086736555, 0.10750281505241625, 0.12030076922532296, 0.07678772503744019, 0.046072635022464115, 0.05631099836078947, 0.017917135842069377, 0.012797954172906698, 0.010238363338325358, 0.005119181669162679, 0.005119181669162679, 0.0025595908345813394, 0.5431565407572361, 0.23457367722300212, 0.22519073013408203, 0.14074420633380127, 0.15012715342272137, 0.06568062962244059, 0.07506357671136069, 0.05629768253352051, 0.01876589417784017, 0.01876589417784017, 0.009382947088920086, 0.009382947088920086, 0.17098307676686553, 0.17098307676686553, 0.17098307676686553, 0.17098307676686553, 0.17098307676686553, 0.3828787958605699, 0.133000002772619, 0.11687879031533185, 0.08060606228643576, 0.08060606228643576, 0.07254545605779218, 0.07254545605779218, 0.02418181868593073, 0.012090909342965365, 0.008060606228643576, 0.004030303114321788, 0.004030303114321788, 0.2691737630789124, 0.2919662382751033, 0.10018449352577075, 0.15170794733902426, 0.14312070503681534, 0.10018449352577075, 0.08014759482061659, 0.06583552431693505, 0.022899312805890457, 0.017174484604417842, 0.011449656402945228, 0.008587242302208921, 0.002862414100736307, 0.3715686943311012, 0.13309923379024519, 0.11091602815853767, 0.11091602815853767, 0.07764121971097636, 0.07209541830304948, 0.07209541830304948, 0.011091602815853766, 0.011091602815853766, 0.011091602815853766, 0.011091602815853766, 0.005545801407926883, 0.450301067788034, 0.21944114976096488, 0.30721760966535083, 0.19749703478486838, 0.06583234492828946, 0.08777645990438596, 0.04388822995219298, 0.04388822995219298, 0.3422059387917915, 0.22019628648780687, 0.22019628648780687, 0.22019628648780687, 0.6926540281184644, 0.30297433985374983, 0.1631400291520191, 0.1398343107017307, 0.09322287380115378, 0.11652859225144223, 0.06991715535086535, 0.06991715535086535, 0.023305718450288445, 0.023305718450288445, 0.2583250510373465, 0.12916252551867324, 0.12916252551867324, 0.12916252551867324, 0.12916252551867324, 0.12916252551867324, 0.12916252551867324, 0.36461889115437346, 0.15626523906616005, 0.1041768260441067, 0.1041768260441067, 0.06511051627756669, 0.07813261953308002, 0.07813261953308002, 0.013022103255513338, 0.013022103255513338, 0.013022103255513338, 0.013022103255513338, 0.34877946113543457, 0.13951178445417384, 0.13951178445417384, 0.13951178445417384, 0.06975589222708692, 0.06975589222708692, 0.06975589222708692, 0.3186157781112763, 0.13790832186905988, 0.10937556562028887, 0.08559826874631303, 0.1046201062454937, 0.08559826874631303, 0.07608734999672269, 0.02377729687397584, 0.019021837499180672, 0.014266378124385503, 0.009510918749590336, 0.004755459374795168, 0.37512209120048134, 0.11750812495436765, 0.07683223554708654, 0.1084690384194163, 0.0858713220820379, 0.0858713220820379, 0.0858713220820379, 0.022597716337378393, 0.013558629802427037, 0.013558629802427037, 0.009039086534951358, 0.004519543267475679, 0.4485186380134448, 0.2868228544124455, 0.14341142720622274, 0.14341142720622274, 0.14341142720622274, 0.14341142720622274, 0.14341142720622274, 0.41402621207734525, 0.08280524241546905, 0.1656104848309381, 0.08280524241546905, 0.08280524241546905, 0.08280524241546905, 0.08280524241546905, 0.2918205281029623, 0.1945470187353082, 0.1945470187353082, 0.0972735093676541, 0.0972735093676541, 0.0972735093676541, 0.0972735093676541, 0.2502988853947072, 0.1251494426973536, 0.2502988853947072, 0.1251494426973536, 0.1251494426973536, 0.1251494426973536, 0.3692466332680541, 0.1712999845057983, 0.10658665702583006, 0.10277999070347899, 0.06851999380231932, 0.06851999380231932, 0.0570999948352661, 0.015226665289404294, 0.015226665289404294, 0.011419998967053221, 0.007613332644702147, 0.0038066663223510736, 0.29512126436543235, 0.12296719348559682, 0.1311650063846366, 0.14756063218271617, 0.09017594188943766, 0.08197812899039787, 0.057384690293278515, 0.03279125159615915, 0.016395625798079575, 0.008197812899039788, 0.008197812899039788, 0.008197812899039788, 0.29898171314611083, 0.29898171314611083, 0.34727288079759355, 0.34727288079759355, 0.2646173767581805, 0.2646173767581805, 0.2646173767581805, 0.3238174425391146, 0.12952697701564583, 0.12952697701564583, 0.12952697701564583, 0.12952697701564583, 0.06476348850782292, 0.06476348850782292, 0.24599906281151965, 0.24599906281151965, 0.3287709664460657, 0.1365664014468273, 0.11127632710482224, 0.12645037171002527, 0.07081220815761416, 0.10116029736802022, 0.06575419328921314, 0.020232059473604045, 0.015174044605203033, 0.010116029736802023, 0.005058014868401011, 0.005058014868401011, 0.5771982904822733, 0.3238937703523541, 0.1191333408192567, 0.13774792532226554, 0.15263959292467263, 0.07818125491263721, 0.07818125491263721, 0.06328958731023011, 0.018614584503008857, 0.011168750701805315, 0.007445833801203543, 0.0037229169006017717, 0.0037229169006017717, 0.2807557718428634, 0.11230230873714533, 0.16845346310571802, 0.16845346310571802, 0.11230230873714533, 0.05615115436857267, 0.05615115436857267, 0.4466568849452013, 0.23145577549078064, 0.1543038503271871, 0.1543038503271871, 0.17359183161808547, 0.09643990645449194, 0.07715192516359355, 0.05786394387269516, 0.019287981290898388, 0.019287981290898388, 0.019287981290898388, 0.3433312896440019, 0.08583282241100047, 0.1287492336165007, 0.1287492336165007, 0.08583282241100047, 0.06437461680825035, 0.08583282241100047, 0.021458205602750118, 0.021458205602750118, 0.3369217720169781, 0.14186179874399077, 0.10639634905799308, 0.08866362421499423, 0.08866362421499423, 0.07093089937199538, 0.08866362421499423, 0.017732724842998846, 0.017732724842998846, 0.017732724842998846, 0.33058037192437206, 0.2775154022227025, 0.18501026814846833, 0.09250513407423416, 0.09250513407423416, 0.09250513407423416, 0.18501026814846833, 0.09250513407423416, 0.21366779173930814, 0.21366779173930814, 0.21366779173930814, 0.21366779173930814, 0.21366779173930814, 0.3100450244056688, 0.3100450244056688, 0.5481500319676809, 0.30683137199481897, 0.17533221256846798, 0.131499159426351, 0.131499159426351, 0.08766610628423399, 0.08766610628423399, 0.043833053142116996, 0.043833053142116996, 0.043833053142116996, 0.5466898693111534, 0.2615682440263122, 0.145315691125729, 0.1743788293508748, 0.1162525529005832, 0.1162525529005832, 0.0581262764502916, 0.0581262764502916, 0.0290631382251458, 0.0290631382251458, 0.2793339885094778, 0.1289233793120667, 0.1289233793120667, 0.1289233793120667, 0.15041060919741114, 0.0859489195413778, 0.06446168965603336, 0.02148722988534445, 0.02148722988534445, 0.3119970693227356, 0.3119970693227356, 0.3566250594559895, 0.1686740146075626, 0.10120440876453755, 0.08674663608388933, 0.06746960584302504, 0.08192737852367325, 0.07710812096345718, 0.02409628780108037, 0.014457772680648222, 0.009638515120432147, 0.009638515120432147, 0.004819257560216074, 0.24015977288854082, 0.1440958637331245, 0.09606390915541632, 0.1440958637331245, 0.09606390915541632, 0.09606390915541632, 0.09606390915541632, 0.04803195457770816, 0.30699397994622396, 0.15349698997311198, 0.15349698997311198, 0.15349698997311198, 0.15349698997311198, 0.49236465963402604, 0.082060776605671, 0.12309116490850651, 0.082060776605671, 0.082060776605671, 0.0410303883028355, 0.0410303883028355, 0.16508148248538754, 0.22010864331385005, 0.11005432165692502, 0.11005432165692502, 0.05502716082846251, 0.11005432165692502, 0.11005432165692502, 0.05502716082846251, 0.36391479298405727, 0.2835367364666104, 0.1466569326551433, 0.1662111903424957, 0.12710267496779085, 0.07821703074940975, 0.07821703074940975, 0.05866277306205731, 0.019554257687352437, 0.009777128843676219, 0.009777128843676219, 0.009777128843676219, 0.3534909142571527, 0.14139636570286107, 0.14139636570286107, 0.14139636570286107, 0.07069818285143054, 0.07069818285143054, 0.07069818285143054, 0.29958406700466994, 0.1388980674294379, 0.14162155894766215, 0.09259871161962525, 0.10893966072897089, 0.08442823706495244, 0.06808728795560681, 0.02451142366401845, 0.013617457591121361, 0.010893966072897089, 0.008170474554672817, 0.0054469830364485446, 0.0027234915182242723, 0.0027234915182242723, 0.28401312187676886, 0.11833880078198702, 0.18934208125117924, 0.11833880078198702, 0.09467104062558962, 0.07100328046919221, 0.07100328046919221, 0.023667760156397405, 0.023667760156397405, 0.023667760156397405, 0.3104632431241366, 0.10348774770804552, 0.10348774770804552, 0.10348774770804552, 0.10348774770804552, 0.10348774770804552, 0.10348774770804552, 0.26307101029776625, 0.17795980108378306, 0.11606073983724982, 0.10832335718143317, 0.0851112092139832, 0.1005859745256165, 0.07737382655816655, 0.023212147967449963, 0.01547476531163331, 0.01547476531163331, 0.007737382655816655, 0.6047837698706608, 0.31545871546186266, 0.14339032520993758, 0.11471226016795005, 0.17206839025192508, 0.08603419512596254, 0.05735613008397503, 0.028678065041987513, 0.028678065041987513, 0.27009127488309487, 0.27009127488309487, 0.27009127488309487, 0.2809247942516264, 0.1638727966467821, 0.09364159808387547, 0.09364159808387547, 0.09364159808387547, 0.09364159808387547, 0.09364159808387547, 0.023410399520968867, 0.023410399520968867, 0.023410399520968867, 0.3512886022267804, 0.10538658066803411, 0.1756443011133902, 0.10538658066803411, 0.10538658066803411, 0.07025772044535607, 0.07025772044535607, 0.035128860222678034, 0.6958811591383209, 0.34708050489775716, 0.13349250188375275, 0.11680593914828366, 0.11346862660118985, 0.11680593914828366, 0.07342087603606402, 0.04672237565931347, 0.013349250188375275, 0.010011937641281457, 0.010011937641281457, 0.006674625094187638, 0.003337312547093819, 0.003337312547093819, 0.1964141192617891, 0.09820705963089454, 0.1964141192617891, 0.1964141192617891, 0.09820705963089454, 0.09820705963089454, 0.09820705963089454, 0.19111861908384853, 0.19111861908384853, 0.19111861908384853, 0.19111861908384853, 0.2754179584213724, 0.16691997480083173, 0.10015198488049905, 0.11684398236058222, 0.08345998740041587, 0.10015198488049905, 0.08345998740041587, 0.04172999370020793, 0.016691997480083175, 0.008345998740041587, 0.008345998740041587, 0.3655072918969357, 0.2941184204154938, 0.2941184204154938, 0.5748299271144895, 0.3829202396123441, 0.3066926744977054, 0.14920184164753236, 0.07460092082376618, 0.12433486803961029, 0.12433486803961029, 0.09117890322904755, 0.06631192962112549, 0.016577982405281372, 0.016577982405281372, 0.016577982405281372, 0.008288991202640686, 0.008288991202640686, 0.3678872227024988, 0.12262907423416626, 0.12262907423416626, 0.12262907423416626, 0.12262907423416626, 0.06131453711708313, 0.06131453711708313, 0.5996649543191849, 0.42999006157571223, 0.293996378994751, 0.13474834037259423, 0.11024864212303163, 0.12249849124781292, 0.07349909474868775, 0.09799879299825034, 0.08574894387346906, 0.012249849124781293, 0.012249849124781293, 0.012249849124781293, 0.012249849124781293, 0.33020918546697364, 0.1727248047058016, 0.10668296761240686, 0.10668296761240686, 0.12192339155703641, 0.06604183709339473, 0.05080141314876517, 0.015240423944629551, 0.010160282629753034, 0.010160282629753034, 0.005080141314876517, 0.005080141314876517, 0.38164912604851003, 0.05452130372121572, 0.05452130372121572, 0.16356391116364716, 0.05452130372121572, 0.05452130372121572, 0.10904260744243144, 0.2828591021805828, 0.1885727347870552, 0.13055035485257668, 0.1378031523443865, 0.07978077240990797, 0.06527517742628834, 0.05076958244266871, 0.021758392475429447, 0.01450559498361963, 0.01450559498361963, 0.007252797491809815, 0.3096670722439109, 0.15483353612195544, 0.12165492123867928, 0.13271445953310468, 0.08847630635540311, 0.07741676806097772, 0.055297691472126945, 0.02211907658885078, 0.01105953829442539, 0.01105953829442539, 0.01105953829442539, 0.3785642476788378, 0.1297934563470301, 0.1189773349847776, 0.06489672817351505, 0.09464106191970945, 0.08382494055745694, 0.06489672817351505, 0.01892821238394189, 0.013520151702815635, 0.016224182043378763, 0.008112091021689381, 0.0027040303405631272, 0.0027040303405631272, 0.2460921750112122, 0.19687374000896976, 0.09843687000448488, 0.1476553050067273, 0.04921843500224244, 0.1476553050067273, 0.09843687000448488, 0.04921843500224244, 0.24255481483404903, 0.161703209889366, 0.12127740741702452, 0.12127740741702452, 0.0404258024723415, 0.12127740741702452, 0.080851604944683, 0.0404258024723415, 0.2878758474536034, 0.1439379237268017, 0.1439379237268017, 0.21590688559020255, 0.07196896186340085, 0.07196896186340085, 0.07196896186340085, 0.3460660177835682, 0.1582016081296312, 0.1384264071134273, 0.06921320355671365, 0.08898840457291755, 0.06921320355671365, 0.06921320355671365, 0.0197752010162039, 0.0197752010162039, 0.00988760050810195, 0.00988760050810195, 0.31142172233734017, 0.15571086116867008, 0.07785543058433504, 0.2335662917530051, 0.07785543058433504, 0.07785543058433504, 0.07785543058433504, 0.2905343107195051, 0.14526715535975254, 0.09684477023983504, 0.13558267833576904, 0.10652924726381853, 0.07747581619186802, 0.08716029321585153, 0.02905343107195051, 0.009684477023983503, 0.019368954047967006, 0.009684477023983503, 0.3976268255113151, 0.3976268255113151, 0.30046541043361213, 0.17900067004555617, 0.12146474038805598, 0.09269677555930587, 0.06392881073055577, 0.0863038944862503, 0.0863038944862503, 0.02237508375569452, 0.012785762146111155, 0.015982202682638943, 0.006392881073055578, 0.003196440536527789, 0.003196440536527789, 0.45505495431357446, 0.3364303020919823, 0.09693754467057118, 0.10263975318060478, 0.15966183828094077, 0.08553312765050398, 0.07983091914047039, 0.06842650212040319, 0.022808834040134396, 0.011404417020067198, 0.011404417020067198, 0.005702208510033599, 0.005702208510033599, 0.32921121740014186, 0.1589295532276547, 0.09649294303107607, 0.11919716492074103, 0.07946477661382735, 0.07946477661382735, 0.0737887211414111, 0.022704221889664956, 0.011352110944832478, 0.011352110944832478, 0.005676055472416239, 0.005676055472416239, 0.3386860558731394, 0.09042588870399353, 0.1381049936570083, 0.11837570884886425, 0.10357874524275622, 0.08220535336726684, 0.06905249682850415, 0.014796963606108032, 0.016441070673453368, 0.013152856538762695, 0.006576428269381348, 0.003288214134690674, 0.001644107067345337, 0.001644107067345337, 0.001644107067345337, 0.35144026924688515, 0.19329214808578685, 0.09664607404289342, 0.09664607404289342, 0.07907406058054917, 0.0615020471182049, 0.0615020471182049, 0.017572013462344258, 0.008786006731172129, 0.008786006731172129, 0.008786006731172129, 0.4507023692064517, 0.36054754118629057, 0.12018251372876353, 0.12018251372876353, 0.12018251372876353, 0.12018251372876353, 0.12018251372876353, 0.12018251372876353, 0.3277349108703327, 0.1092449702901109, 0.1092449702901109, 0.1092449702901109, 0.1092449702901109, 0.1092449702901109, 0.3322555054863807, 0.4614769032235261, 0.3380703414964776, 0.1448872892127761, 0.12073940767731342, 0.10866546690958208, 0.09659152614185074, 0.09659152614185074, 0.06036970383865671, 0.012073940767731342, 0.012073940767731342, 0.012073940767731342, 0.012073940767731342, 0.37855941630242373, 0.29202975423489336, 0.19468650282326225, 0.09734325141163112, 0.04867162570581556, 0.04867162570581556, 0.09734325141163112, 0.09734325141163112, 0.04867162570581556, 0.25734336679456216, 0.25734336679456216, 0.25734336679456216, 0.32944822501647253, 0.16472411250823626, 0.16472411250823626, 0.16472411250823626, 0.16472411250823626, 0.28918604750098836, 0.20941058612140537, 0.10969125939692662, 0.079775461379583, 0.05983159603468725, 0.09971932672447875, 0.06980352870713512, 0.029915798017343623, 0.01994386534489575, 0.01994386534489575, 0.009971932672447874, 0.3239555204027632, 0.14492746965386774, 0.11935203383259697, 0.11935203383259697, 0.08525145273756926, 0.08525145273756926, 0.06820116219005541, 0.017050290547513853, 0.017050290547513853, 0.008525145273756926, 0.008525145273756926, 0.3976603098861266, 0.15906412395445063, 0.11929809296583799, 0.11929809296583799, 0.07953206197722532, 0.03976603098861266, 0.03976603098861266, 0.24341109883733925, 0.24341109883733925, 0.24341109883733925, 0.2656854922650563, 0.18977535161789733, 0.1138652109707384, 0.1138652109707384, 0.07591014064715894, 0.1138652109707384, 0.07591014064715894, 0.03795507032357947, 0.23516333405847126, 0.13437904803341216, 0.20156857205011822, 0.1679738100417652, 0.10078428602505911, 0.06718952401670608, 0.03359476200835304, 0.03359476200835304, 0.29557802979882114, 0.14778901489941057, 0.08445086565680604, 0.10556358207100755, 0.08445086565680604, 0.12667629848520906, 0.08445086565680604, 0.02111271641420151, 0.02111271641420151, 0.02111271641420151, 0.3589030239052399, 0.11215719497038747, 0.13458863396446497, 0.11215719497038747, 0.04486287798815499, 0.08972575597630998, 0.06729431698223248, 0.022431438994077495, 0.27441550255658487, 0.15092852640612167, 0.10976620102263394, 0.14406813884220707, 0.08232465076697547, 0.10290581345871933, 0.07546426320306084, 0.020581162691743867, 0.013720775127829243, 0.013720775127829243, 0.0068603875639146215, 0.0068603875639146215, 0.43810887344592647, 0.2351085381921524, 0.2351085381921524, 0.1175542690960762, 0.1175542690960762, 0.1175542690960762, 0.1175542690960762, 0.1175542690960762, 0.25055401369800756, 0.14548297569561727, 0.11315342554103566, 0.14548297569561727, 0.11315342554103566, 0.08890626292509946, 0.07274148784780864, 0.03232955015458162, 0.01616477507729081, 0.01616477507729081, 0.008082387538645404, 0.36636403056214356, 0.25898701340018626, 0.12949350670009313, 0.12949350670009313, 0.12949350670009313, 0.12949350670009313, 0.12949350670009313, 0.2609283912895132, 0.2609283912895132, 0.2609283912895132, 0.2609283912895132, 0.40756731440128713, 0.11115472210944194, 0.13338566653133033, 0.08892377768755355, 0.0741031480729613, 0.0741031480729613, 0.059282518458369036, 0.022230944421888388, 0.0074103148072961296, 0.014820629614592259, 0.0074103148072961296, 0.3758917905895442, 0.38333053898824226, 0.5569528692004699, 0.20160658328251213, 0.20160658328251213, 0.20160658328251213, 0.28331419926689827, 0.1256204468447568, 0.16036652788692354, 0.13363877323910298, 0.07483771301389766, 0.0988926921969362, 0.06147383568998736, 0.024054979183038533, 0.013363877323910296, 0.010691101859128237, 0.0053455509295641185, 0.0026727754647820593, 0.0026727754647820593, 0.0026727754647820593, 0.464084095251104, 0.17756743582893075, 0.17756743582893075, 0.17756743582893075, 0.17756743582893075, 0.17756743582893075, 0.22336823802246308, 0.22336823802246308, 0.22336823802246308, 0.29636168063577906, 0.09878722687859302, 0.14818084031788953, 0.14818084031788953, 0.09878722687859302, 0.09878722687859302, 0.09878722687859302, 0.04939361343929651, 0.4265779405099417, 0.26332659697434635, 0.10971941540597765, 0.15360718156836872, 0.15360718156836872, 0.08777553232478212, 0.08777553232478212, 0.08777553232478212, 0.02194388308119553, 0.02194388308119553, 0.35649231859968583, 0.05092747408566941, 0.20370989634267764, 0.10185494817133882, 0.10185494817133882, 0.10185494817133882, 0.05092747408566941, 0.4504187037406973, 0.46600451409597105, 0.7097280957585025, 0.3059726050158337, 0.3059726050158337, 0.3059726050158337, 0.4181908163344766, 0.4181908163344766, 0.3654559647238361, 0.09136399118095903, 0.09136399118095903, 0.18272798236191806, 0.09136399118095903, 0.09136399118095903, 0.09136399118095903, 0.28181039624571713, 0.18787359749714477, 0.18787359749714477, 0.09393679874857239, 0.09393679874857239, 0.09393679874857239, 0.09393679874857239, 0.31684503083100213, 0.15842251541550106, 0.10561501027700071, 0.07921125770775053, 0.052807505138500355, 0.07921125770775053, 0.1320187628462509, 0.026403752569250177, 0.026403752569250177, 0.026403752569250177, 0.23114502121331973, 0.23114502121331973, 0.11557251060665986, 0.11557251060665986, 0.11557251060665986, 0.11557251060665986, 0.3184149064022244, 0.1974666086215345, 0.11354329995738234, 0.1061383021340748, 0.09132830648745971, 0.06664498040976789, 0.05183498476315281, 0.01727832825438427, 0.012341663038845907, 0.009873330431076726, 0.0074049978233075445, 0.0024683326077691815, 0.0024683326077691815, 0.0024683326077691815, 0.22193083082691437, 0.17754466466153151, 0.13315849849614864, 0.08877233233076576, 0.08877233233076576, 0.08877233233076576, 0.08877233233076576, 0.04438616616538288, 0.3542801891653221, 0.3374343209744914, 0.1687171604872457, 0.1687171604872457, 0.1687171604872457, 0.1687171604872457, 0.18234930702870913, 0.18234930702870913, 0.18234930702870913, 0.18234930702870913, 0.18234930702870913, 0.33488438369005424, 0.14302353886762734, 0.10813974889991335, 0.13255840187731313, 0.07674433792897076, 0.07674433792897076, 0.06627920093865657, 0.02093027398062839, 0.013953515987085593, 0.010465136990314195, 0.006976757993542797, 0.0034883789967713984, 0.0034883789967713984, 0.2773586685413199, 0.19811333467237136, 0.11886800080342282, 0.07924533386894855, 0.1584906677378971, 0.03962266693447428, 0.03962266693447428, 0.4205573634193671, 0.07009289390322786, 0.07009289390322786, 0.14018578780645571, 0.07009289390322786, 0.07009289390322786, 0.07009289390322786, 0.7076762298760628, 0.24944839036544755, 0.24944839036544755, 0.24944839036544755, 0.24944839036544755, 0.4569607948957498, 0.2922683781233111, 0.1845905546041965, 0.13844291595314737, 0.10511406581627855, 0.061530184868065496, 0.07691273108508187, 0.07947648878791792, 0.017946303919852434, 0.015382546217016374, 0.015382546217016374, 0.007691273108508187, 0.002563757702836062, 0.002563757702836062, 0.4161439129598585, 0.31805511682905757, 0.11664613086640253, 0.1648598649578489, 0.1368647935499123, 0.08554049596869519, 0.0660994741576281, 0.0521019384536598, 0.02410686704572319, 0.011664613086640253, 0.008554049596869518, 0.005443486107098785, 0.004665845234656101, 0.001555281744885367, 0.001555281744885367, 0.001555281744885367, 0.3410892241417054, 0.3465947768236903, 0.13863791072947612, 0.06931895536473806, 0.13863791072947612, 0.06931895536473806, 0.06931895536473806, 0.06931895536473806, 0.1495951418252796, 0.2991902836505592, 0.1495951418252796, 0.1495951418252796, 0.1495951418252796, 0.16241395079336785, 0.16241395079336785, 0.16241395079336785, 0.16241395079336785, 0.16241395079336785, 0.3175588824763823, 0.13609666391844957, 0.13609666391844957, 0.13609666391844957, 0.09073110927896637, 0.045365554639483184, 0.045365554639483184, 0.2988297373699177, 0.14426263183375337, 0.14426263183375337, 0.10819697387531503, 0.0927402633216986, 0.08243578961928764, 0.06182684221446573, 0.02576118425602739, 0.010304473702410956, 0.015456710553616432, 0.005152236851205478, 0.005152236851205478, 0.4032220255819315, 0.1861329636625313, 0.1861329636625313, 0.1861329636625313, 0.1861329636625313, 0.1861329636625313, 0.29952161617061784, 0.14772047010049547, 0.10310507949924085, 0.12786118038164432, 0.08759851081465844, 0.08950282626715102, 0.07181989706543425, 0.02557223607632886, 0.016050658813865987, 0.013330208167448024, 0.008977487133179281, 0.004080675969626946, 0.001360225323208982, 0.001360225323208982, 0.0016322703878507785, 0.0002720450646417964, 0.23551174246470574, 0.11775587123235287, 0.11775587123235287, 0.11775587123235287, 0.11775587123235287, 0.11775587123235287, 0.11775587123235287, 0.5722134848232416, 0.37801749615176516, 0.14873857111036387, 0.10538285995691737, 0.08101505149841096, 0.0849708645598568, 0.07547691321238677, 0.06614119438737456, 0.018196740082650896, 0.014399159543662884, 0.013607996931373715, 0.007120463510602525, 0.0031646504491566778, 0.001424092702120505, 0.0009493951347470034, 0.0011076276572048373, 0.0003164650449156678, 0.2860980870278278, 0.164506400041001, 0.10013433045973974, 0.13589659133821821, 0.10013433045973974, 0.07152452175695695, 0.07152452175695695, 0.02860980870278278, 0.01430490435139139, 0.01430490435139139, 0.007152452175695695, 0.4442923590654556, 0.4442923590654556, 0.2767371293470222, 0.18449141956468149, 0.18449141956468149, 0.09224570978234074, 0.09224570978234074, 0.09224570978234074, 0.09224570978234074, 0.4584691718539473, 0.3106066392854848, 0.0887447540815671, 0.1774895081631342, 0.1553033196427424, 0.0887447540815671, 0.04437237704078355, 0.04437237704078355, 0.022186188520391774, 0.022186188520391774, 0.022186188520391774, 0.2513151737386441, 0.19546735735227871, 0.1116956327727307, 0.09773367867613936, 0.06980977048295668, 0.08377172457954803, 0.1116956327727307, 0.04188586228977401, 0.027923908193182675, 0.013961954096591338, 0.013961954096591338, 0.3289309612262745, 0.12334911045985296, 0.08223274030656863, 0.08223274030656863, 0.08223274030656863, 0.12334911045985296, 0.08223274030656863, 0.45874278265034296, 0.22937139132517148, 0.26832287189328086, 0.17888191459552055, 0.10434778351405366, 0.10434778351405366, 0.059627304865173515, 0.10434778351405366, 0.11925460973034703, 0.014906826216293379, 0.014906826216293379, 0.014906826216293379, 0.014906826216293379, 0.31158637975512604, 0.12192510512157105, 0.1490195729263646, 0.09483063731677749, 0.09483063731677749, 0.0812834034143807, 0.06773616951198391, 0.013547233902396783, 0.013547233902396783, 0.013547233902396783, 0.013547233902396783, 0.4221122254020423, 0.4509639146381752, 0.260738552016242, 0.260738552016242, 0.32975605404715835, 0.13739835585298266, 0.10304876688973698, 0.10304876688973698, 0.08930893130443872, 0.06869917792649133, 0.10991868468238612, 0.020609753377947397, 0.013739835585298265, 0.013739835585298265, 0.006869917792649133, 0.006869917792649133, 0.41238683996207065, 0.15193199367023655, 0.08681828209727803, 0.08681828209727803, 0.05787885473151869, 0.07234856841439836, 0.07234856841439836, 0.014469713682879673, 0.014469713682879673, 0.014469713682879673, 0.007234856841439837, 0.2609756771266541, 0.13735561954034425, 0.13048783856332705, 0.1579589624713959, 0.06181002879315491, 0.08241337172420655, 0.10301671465525819, 0.02747112390806885, 0.013735561954034425, 0.013735561954034425, 0.006867780977017212, 0.2897864945802816, 0.15093046592723, 0.1328188100159624, 0.1147071541046948, 0.1147071541046948, 0.0845210609192488, 0.060372186370892, 0.0181116559112676, 0.012074437274178399, 0.012074437274178399, 0.0060372186370891995, 0.0060372186370891995, 0.3487914805635477, 0.1113164299670897, 0.1113164299670897, 0.15955354961949522, 0.07050040564582347, 0.08163204864253244, 0.05565821498354485, 0.02226328599341794, 0.014842190662278626, 0.01113164299670897, 0.007421095331139313, 0.0037105476655696565, 0.31852579910408585, 0.31852579910408585, 0.31852579910408585, 0.64900007105849, 0.593467816985533, 0.3839567125521419, 0.11518701376564258, 0.11518701376564258, 0.11518701376564258, 0.11518701376564258, 0.07679134251042839, 0.038395671255214196, 0.7026285719811554, 0.4733483767543897, 0.3672296610333975, 0.3672296610333975, 0.3672296610333975, 0.2817785770163611, 0.2817785770163611, 0.2817785770163611, 0.43023950563688446, 0.3653105207186648, 0.3653105207186648, 0.32459671857182854, 0.3685730173200813, 0.16381022992003613, 0.10238139370002258, 0.08190511496001807, 0.06142883622001355, 0.08190511496001807, 0.06142883622001355, 0.020476278740004517, 0.020476278740004517, 0.020476278740004517, 0.32193076471799265, 0.10731025490599755, 0.10731025490599755, 0.10731025490599755, 0.10731025490599755, 0.10731025490599755, 0.10731025490599755, 0.2866329169959449, 0.09969840591163301, 0.09969840591163301, 0.1744722103453578, 0.07477380443372476, 0.0872361051726789, 0.11216070665058714, 0.012462300738954126, 0.012462300738954126, 0.012462300738954126, 0.32996613674290043, 0.16498306837145021, 0.16498306837145021, 0.08249153418572511, 0.08249153418572511, 0.08249153418572511, 0.08249153418572511, 0.23154430370859413, 0.1736582277814456, 0.11577215185429707, 0.11577215185429707, 0.057886075927148534, 0.11577215185429707, 0.057886075927148534, 0.30905305059761773, 0.11079260304442899, 0.12828617194618094, 0.1166237926783463, 0.09329903414267704, 0.13411736158009824, 0.052480706705255835, 0.017493568901751945, 0.01166237926783463, 0.01166237926783463, 0.005831189633917315, 0.25607170380609356, 0.15694717330050895, 0.165207550842641, 0.12390566313198074, 0.07434339787918845, 0.0991245305055846, 0.0495622652527923, 0.0165207550842641, 0.0165207550842641, 0.0165207550842641, 0.00826037754213205, 0.00826037754213205, 0.3620074290112298, 0.1608921906716577, 0.12066914300374326, 0.12066914300374326, 0.08044609533582885, 0.08044609533582885, 0.04022304766791442, 0.46625552972977385, 0.6207733030729682, 0.5807209894030142, 0.24766071506055765, 0.24766071506055765, 0.24766071506055765, 0.2962334844183423, 0.41194120360778064, 0.4785336214947234, 0.05629807311702628, 0.007037259139628285, 0.20408051504922028, 0.04222355483776971, 0.035186295698141426, 0.1583383306416364, 0.0035186295698141426, 0.0035186295698141426, 0.007037259139628285, 0.46541468452887574, 0.23270734226443787, 0.23270734226443787, 0.635521106116869, 0.21184036870562298, 0.21184036870562298, 0.4864156410076568, 0.2432078205038284, 0.2432078205038284, 0.4623490475351814, 0.11558726188379535, 0.11558726188379535, 0.11558726188379535, 0.45982677679699624, 0.22991338839849812, 0.22991338839849812, 0.46394228481220046, 0.23197114240610023, 0.23197114240610023, 0.47156844429176814, 0.23578422214588407, 0.23578422214588407, 0.35638953595105693, 0.17819476797552847, 0.17819476797552847, 0.34200399296544215, 0.08550099824136054, 0.17100199648272107, 0.08550099824136054, 0.08550099824136054, 0.17100199648272107, 0.6024872433396112, 0.4338285887348285, 0.10845714718370712, 0.21691429436741425, 0.10845714718370712, 0.4788092705894459, 0.08705623101626289, 0.17411246203252578, 0.043528115508131446, 0.043528115508131446, 0.17411246203252578, 0.5428972517693522, 0.13572431294233805, 0.13572431294233805, 0.31789245882350975, 0.31789245882350975, 0.3191425899366247, 0.3191425899366247], \"Term\": [\"&\", \"2f\", \"aaa\", \"aaa\", \"able\", \"able\", \"able\", \"able\", \"able\", \"absolute\", \"absolute\", \"absolute\", \"absolute\", \"absolute\", \"absolute\", \"absolute\", \"absolute\", \"absolute\", \"absolute\", \"absolute\", \"absolute\", \"absolute\", \"accept\", \"accept\", \"accept\", \"accept\", \"accept\", \"accept\", \"accept\", \"accept\", \"accept\", \"accept\", \"accept\", \"accident\", \"accident\", \"accord\", \"accord\", \"accord\", \"accord\", \"accord\", \"accord\", \"accord\", \"accord\", \"accord\", \"accord\", \"accordance\", \"accordance\", \"accordance\", \"accordance\", \"accordance\", \"accordance\", \"accordance\", \"accordance\", \"accordance\", \"accordance\", \"accordance\", \"accordance\", \"account\", \"account\", \"account\", \"account\", \"account\", \"account\", \"account\", \"account\", \"account\", \"account\", \"account\", \"account\", \"account\", \"account\", \"accountant\", \"accountant\", \"accountant\", \"accountant\", \"accountant\", \"accountant\", \"accountant\", \"accountant\", \"accounting\", \"accounting\", \"accounting\", \"accounting\", \"accounting\", \"accounting\", \"accounting\", \"accounting\", \"accounting\", \"accounting\", \"accounting\", \"accounting\", \"accounting\", \"accrue\", \"accrue\", \"accrue\", \"accrue\", \"accrue\", \"accrue\", \"accumulate\", \"accumulate\", \"accumulate\", \"accumulate\", \"accumulate\", \"accumulate\", \"accumulate\", \"accumulate\", \"accumulate\", \"accumulate\", \"accumulate\", \"accumulate\", \"acn\", \"acn\", \"acn\", \"acn\", \"acn\", \"acn\", \"acn\", \"act\", \"act\", \"act\", \"act\", \"act\", \"act\", \"act\", \"act\", \"act\", \"act\", \"act\", \"act\", \"act\", \"act\", \"act\", \"action\", \"action\", \"action\", \"action\", \"action\", \"action\", \"action\", \"action\", \"action\", \"action\", \"action\", \"addition\", \"addition\", \"addition\", \"addition\", \"addition\", \"addition\", \"addition\", \"addition\", \"addition\", \"addition\", \"addition\", \"additional\", \"additional\", \"additional\", \"additional\", \"additional\", \"additional\", \"additional\", \"additional\", \"additional\", \"additional\", \"additional\", \"adequacy\", \"adequacy\", \"adequacy\", \"adequacy\", \"adequacy\", \"adequacy\", \"adequacy\", \"administration\", \"administration\", \"administration\", \"administration\", \"administration\", \"administration\", \"administration\", \"administration\", \"administration\", \"administration\", \"administration\", \"admit\", \"admit\", \"admit\", \"admit\", \"aforesaid\", \"aforesaid\", \"aforesaid\", \"aforesaid\", \"aforesaid\", \"aforesaid\", \"aforesaid\", \"aforesaid\", \"aggregate\", \"aggregate\", \"aggregate\", \"aggregate\", \"aggregate\", \"aggregate\", \"agree\", \"agree\", \"agree\", \"agree\", \"agree\", \"agree\", \"agree\", \"agree\", \"agree\", \"agree\", \"agree\", \"agree\", \"agreed\", \"alive\", \"alive\", \"alive\", \"alive\", \"alive\", \"alive\", \"alive\", \"alive\", \"amplification\", \"answer\", \"answer\", \"answer\", \"anticipate\", \"anticipate\", \"apartment\", \"apartments\", \"application\", \"application\", \"application\", \"application\", \"application\", \"application\", \"application\", \"application\", \"application\", \"application\", \"applie\", \"apply\", \"apply\", \"apply\", \"apply\", \"apply\", \"apply\", \"apply\", \"apply\", \"apply\", \"apply\", \"apply\", \"apply\", \"apply\", \"apply\", \"apply\", \"appoint\", \"appoint\", \"appoint\", \"appoint\", \"appoint\", \"appoint\", \"appoint\", \"appoint\", \"appoint\", \"appoint\", \"appoint\", \"appoint\", \"appoint\", \"appoint\", \"appointer\", \"appointer\", \"appointer\", \"appointer\", \"appointer\", \"appointment\", \"appointment\", \"appointment\", \"appointment\", \"appointment\", \"appointment\", \"appointment\", \"appointment\", \"appointment\", \"appointment\", \"appointment\", \"appointment\", \"appointor\", \"appointor\", \"appointor\", \"appointor\", \"appointor\", \"appointor\", \"appointor\", \"appointor\", \"appointor\", \"appointor\", \"appointor\", \"appointor\", \"appointor\", \"appointor\", \"appointor\", \"apportionment\", \"apportionment\", \"apportionment\", \"appraiser\", \"appreciation\", \"appropriate\", \"appropriate\", \"appropriate\", \"appropriate\", \"appropriate\", \"appropriate\", \"appropriate\", \"appropriate\", \"appropriate\", \"appropriate\", \"appropriate\", \"arbitrator\", \"arbitrator\", \"arbitrator\", \"arbitrator\", \"arbitrators\", \"arbitrators\", \"arbitrators\", \"arise\", \"arise\", \"arise\", \"arise\", \"arise\", \"arise\", \"arise\", \"arise\", \"arise\", \"arise\", \"arise\", \"ascertain\", \"ascertain\", \"ascertain\", \"ascertain\", \"ascertain\", \"ascertain\", \"ascertain\", \"aside\", \"aside\", \"aspect\", \"aspect\", \"aspect\", \"aspect\", \"aspect\", \"aspect\", \"aspect\", \"asset\", \"asset\", \"asset\", \"asset\", \"asset\", \"asset\", \"asset\", \"asset\", \"asset\", \"asset\", \"asset\", \"asset\", \"asset\", \"assignee\", \"associated\", \"associated\", \"associated\", \"associated\", \"associated\", \"associated\", \"associated\", \"associated\", \"associated\", \"associated\", \"associates\", \"associates\", \"associates\", \"associates\", \"associates\", \"asterios\", \"attach\", \"attach\", \"attach\", \"attach\", \"attach\", \"attach\", \"attach\", \"attach\", \"attache\", \"attache\", \"attorney\", \"attorney\", \"attorney\", \"attorney\", \"attorney\", \"attorney\", \"attorney\", \"attorney\", \"attorney\", \"attorney\", \"attorney\", \"attribute\", \"attribute\", \"attribute\", \"attribute\", \"attribute\", \"auction\", \"audit\", \"audit\", \"audit\", \"audit\", \"audit\", \"auditor\", \"auditor\", \"auditor\", \"auditor\", \"auditor\", \"auditor\", \"auditor\", \"authorisation\", \"authorised\", \"authorised\", \"authorised\", \"authorised\", \"authorised\", \"authorised\", \"authorised\", \"authority\", \"authority\", \"authority\", \"authority\", \"authority\", \"authority\", \"authority\", \"authority\", \"authority\", \"authority\", \"authority\", \"authority\", \"avenue\", \"avenue\", \"avenue\", \"award\", \"award\", \"award\", \"bank\", \"bank\", \"bank\", \"bank\", \"bank\", \"bank\", \"bank\", \"bank\", \"bank\", \"bank\", \"bank\", \"bank\", \"bar\", \"bearer\", \"bearer\", \"bearer\", \"bearer\", \"bearer\", \"bearer\", \"bearer\", \"bearer\", \"bearer\", \"bearer\", \"bearers\", \"beneficiaries\", \"beneficiaries\", \"beneficiaries\", \"beneficiaries\", \"beneficiaries\", \"beneficiaries\", \"beneficiaries\", \"beneficiaries\", \"beneficiaries\", \"beneficiaries\", \"beneficiaries\", \"beneficiaries\", \"beneficiary\", \"beneficiary\", \"beneficiary\", \"beneficiary\", \"beneficiary\", \"beneficiary\", \"beneficiary\", \"beneficiary\", \"beneficiary\", \"beneficiary\", \"beneficiary\", \"beneficiary\", \"beneficiary\", \"beneficiary\", \"beneficiary\", \"benefit\", \"benefit\", \"benefit\", \"benefit\", \"benefit\", \"benefit\", \"benefit\", \"benefit\", \"benefit\", \"benefit\", \"benefit\", \"benefit\", \"benevolent\", \"benevolent\", \"benevolent\", \"benevolent\", \"benevolent\", \"benevolent\", \"benevolent\", \"bills\", \"bills\", \"bills\", \"bills\", \"bills\", \"birth\", \"birth\", \"birth\", \"blank\", \"blended\", \"blended\", \"board\", \"board\", \"board\", \"board\", \"board\", \"board\", \"board\", \"body\", \"body\", \"body\", \"body\", \"body\", \"body\", \"body\", \"body\", \"body\", \"body\", \"body\", \"books\", \"books\", \"books\", \"borrow\", \"borrow\", \"borrow\", \"borrow\", \"borrow\", \"borrow\", \"borrow\", \"borrow\", \"borrow\", \"borrow\", \"borrow\", \"bound\", \"bound\", \"box\", \"box\", \"box\", \"box\", \"box\", \"breach\", \"breach\", \"breach\", \"breach\", \"breach\", \"breach\", \"breach\", \"breach\", \"breach\", \"breach\", \"breach\", \"brewery\", \"brewery\", \"brewery\", \"brewery\", \"brincat\", \"brincat\", \"brincat\", \"brokerage\", \"brokerage\", \"build\", \"build\", \"build\", \"build\", \"build\", \"build\", \"build\", \"build\", \"build\", \"build\", \"build\", \"building\", \"building\", \"building\", \"building\", \"building\", \"building\", \"building\", \"building\", \"building\", \"building\", \"building\", \"business\", \"business\", \"business\", \"business\", \"business\", \"business\", \"business\", \"business\", \"business\", \"business\", \"business\", \"business\", \"business\", \"c1\", \"c2\", \"c2\", \"cablegram\", \"cablegram\", \"cablegram\", \"cablegram\", \"calling\", \"cancel\", \"cancel\", \"cancel\", \"cancel\", \"cancel\", \"cancel\", \"cancel\", \"cancel\", \"cancel\", \"cancel\", \"cancellation\", \"cancellation\", \"cancellation\", \"cancellation\", \"cancellation\", \"cancellation\", \"cancellation\", \"capable\", \"capable\", \"capable\", \"capable\", \"capable\", \"capable\", \"capable\", \"capable\", \"capable\", \"capacity\", \"capacity\", \"capacity\", \"capacity\", \"capacity\", \"capacity\", \"capacity\", \"capacity\", \"capacity\", \"capacity\", \"capacity\", \"capacity\", \"capital\", \"capital\", \"capital\", \"capital\", \"capital\", \"capital\", \"capital\", \"capital\", \"capital\", \"capital\", \"capital\", \"capital\", \"capital\", \"capital\", \"capital\", \"carer\", \"carer\", \"carer\", \"carer\", \"carer\", \"carlett\", \"carlett\", \"carlett\", \"carlett\", \"cartland\", \"cartland\", \"cartland\", \"cartland\", \"case\", \"case\", \"case\", \"case\", \"case\", \"case\", \"case\", \"case\", \"case\", \"case\", \"case\", \"case\", \"cash\", \"cash\", \"cash\", \"cash\", \"cash\", \"cash\", \"cash\", \"cash\", \"cash\", \"cash\", \"categories\", \"categories\", \"categories\", \"categories\", \"categories\", \"category\", \"category\", \"category\", \"category\", \"category\", \"category\", \"category\", \"category\", \"category\", \"category\", \"category\", \"ceasing\", \"cgt\", \"cgt\", \"cgt\", \"characterise\", \"characterise\", \"characterise\", \"chared\", \"chared\", \"charge\", \"charge\", \"charge\", \"charge\", \"charge\", \"charge\", \"charge\", \"charge\", \"charge\", \"charge\", \"charge\", \"charge\", \"chargee\", \"chartered\", \"chose\", \"clare\", \"class\", \"class\", \"class\", \"class\", \"class\", \"class\", \"class\", \"class\", \"class\", \"class\", \"class\", \"class\", \"claus\", \"claus\", \"clause\", \"clause\", \"clause\", \"clause\", \"clause\", \"clause\", \"clause\", \"clause\", \"clause\", \"clause\", \"clause\", \"clause\", \"clause\", \"clause\", \"clause\", \"clause6\", \"clause6\", \"clauses\", \"clauses\", \"clauses\", \"clauses\", \"clauses\", \"clauses\", \"clauses\", \"cleardocs\", \"cleardocs\", \"cleardocs\", \"cleardocs\", \"clover\", \"clover\", \"clover\", \"clover\", \"clover\", \"club\", \"committed\", \"committed\", \"common\", \"common\", \"common\", \"common\", \"common\", \"common\", \"common\", \"common\", \"company\", \"company\", \"company\", \"company\", \"company\", \"company\", \"company\", \"company\", \"company\", \"company\", \"company\", \"company\", \"company\", \"company\", \"company\", \"competent\", \"competent\", \"competent\", \"competent\", \"competent\", \"competent\", \"competent\", \"complaint\", \"compulsory\", \"compulsory\", \"compulsory\", \"compulsory\", \"concern\", \"concern\", \"concern\", \"concern\", \"concern\", \"concern\", \"concern\", \"concern\", \"concern\", \"concern\", \"concern\", \"condition\", \"condition\", \"condition\", \"condition\", \"condition\", \"condition\", \"condition\", \"condition\", \"condition\", \"condition\", \"condition\", \"condition\", \"conditions\", \"conditions\", \"conditions:(a\", \"conditions:(a\", \"conditions:(a\", \"confer\", \"confer\", \"confer\", \"confer\", \"confer\", \"confer\", \"confer\", \"confer\", \"confer\", \"confer\", \"confer\", \"confer\", \"connected\", \"connexion\", \"connexion\", \"connexion\", \"connexion\", \"connexion\", \"connexion\", \"connexion\", \"consent\", \"consent\", \"consent\", \"consent\", \"consent\", \"consent\", \"consent\", \"consent\", \"consent\", \"consent\", \"consent\", \"consent\", \"constituting\", \"constituting\", \"constituting\", \"constituting\", \"constituting\", \"constituting\", \"contact\", \"contact\", \"contact\", \"contact\", \"contain\", \"contain\", \"contain\", \"contain\", \"contain\", \"contain\", \"contain\", \"contain\", \"contain\", \"contain\", \"contain\", \"contain\", \"contemplate\", \"context\", \"context\", \"context\", \"context\", \"context\", \"context\", \"context\", \"context\", \"context\", \"contingent\", \"contingent\", \"contingent\", \"contingent\", \"contingent\", \"contingent\", \"contingent\", \"contingent\", \"continue\", \"continue\", \"continue\", \"continue\", \"continue\", \"continue\", \"continue\", \"continue\", \"continued\", \"contract\", \"contract\", \"contract\", \"contract\", \"contract\", \"contract\", \"contract\", \"contract\", \"contract\", \"contract\", \"contract\", \"control\", \"control\", \"control\", \"control\", \"control\", \"control\", \"control\", \"control\", \"control\", \"control\", \"conversion\", \"conversion\", \"conversion\", \"conversion\", \"conversion\", \"conversion\", \"copyright\", \"copyright\", \"copyright\", \"copyright\", \"copyright\", \"copyright\", \"copyright\", \"corporate\", \"corporate\", \"corporate\", \"corporate\", \"corporate\", \"corporate\", \"corporate\", \"corporate\", \"corporate\", \"corporate\", \"corporate\", \"corporation\", \"corporation\", \"corporation\", \"corporation\", \"corporation\", \"corporation\", \"corporation\", \"corporation\", \"corporation\", \"corporation\", \"corporation\", \"corporation\", \"corporeal\", \"corpus\", \"corpus\", \"corpus\", \"corpus\", \"corpus\", \"corpus\", \"corpus\", \"corpus\", \"corpus\", \"counterpart\", \"counterpart\", \"counterpart\", \"counterpart\", \"counterpart\", \"counterparts\", \"couple\", \"credit\", \"credit\", \"credit\", \"credit\", \"credit\", \"credit\", \"credit\", \"credit\", \"credit\", \"credit\", \"credit\", \"creditors\", \"creditors\", \"creditors\", \"creditors\", \"creditors\", \"creditors\", \"creditors\", \"crescent\", \"cth\", \"cth\", \"cth\", \"cth\", \"cth\", \"cth\", \"cth\", \"cth\", \"cultivate\", \"cumulative\", \"cumulative\", \"d\", \"d\", \"d\", \"d\", \"d\", \"d\", \"d\", \"d\", \"dam\", \"date\", \"date\", \"date\", \"date\", \"date\", \"date\", \"date\", \"date\", \"date\", \"date\", \"date\", \"date\", \"date\", \"david\", \"david\", \"david\", \"david\", \"david\", \"david\", \"david\", \"day\", \"day\", \"day\", \"day\", \"day\", \"day\", \"day\", \"day\", \"day\", \"day\", \"day\", \"day\", \"day\", \"dealing\", \"dealing\", \"dealing\", \"dealing\", \"dealing\", \"dealing\", \"dealing\", \"dealing\", \"dealing\", \"dealing\", \"dealing\", \"debentur\", \"debentur\", \"debentur\", \"debentur\", \"debentur\", \"debenture\", \"debenture\", \"debenture\", \"debenture\", \"debenture\", \"debenture\", \"debenture\", \"debenture\", \"debenture\", \"debenture\", \"debenture\", \"debentures\", \"debentures\", \"debentures\", \"debt\", \"debt\", \"debt\", \"debt\", \"debt\", \"debt\", \"debt\", \"debt\", \"deceased\", \"deceased\", \"deceased\", \"deceased\", \"deceased\", \"deceased\", \"deceased\", \"deceased\", \"deceased\", \"deceased\", \"deceased\", \"decision\", \"decision\", \"decision\", \"decision\", \"decision\", \"decision\", \"decision\", \"decision\", \"decision\", \"decision\", \"decision\", \"declare\", \"declare\", \"declare\", \"declare\", \"declare\", \"declare\", \"declare\", \"declare\", \"declare\", \"declare\", \"declare\", \"decorating\", \"deed\", \"deed\", \"deed\", \"deed\", \"deed\", \"deed\", \"deed\", \"deed\", \"deed\", \"deed\", \"deed\", \"deed\", \"deed\", \"deed\", \"deed\", \"deeds\", \"deeds\", \"deem\", \"deem\", \"deem\", \"deem\", \"deem\", \"deem\", \"deem\", \"deem\", \"deem\", \"deem\", \"deem\", \"deem\", \"defeasance\", \"defeasance\", \"defeasance\", \"defeasance\", \"defeasance\", \"defeasance\", \"delegation\", \"delegation\", \"delegation\", \"delegation\", \"delegation\", \"delegation\", \"deletion\", \"deletion\", \"deletion\", \"deletion\", \"deletion\", \"deletion\", \"delivered\", \"delivered\", \"delivered\", \"delivered\", \"delivered\", \"delivered\", \"delivered\", \"delivery\", \"delivery\", \"delivery\", \"delivery\", \"delivery\", \"delivery\", \"denote\", \"denote\", \"denote\", \"denote\", \"denote\", \"denote\", \"denote\", \"deputy\", \"deregister\", \"deregister\", \"deregister\", \"deregistration\", \"description\", \"description\", \"description\", \"description\", \"description\", \"description\", \"description\", \"description\", \"description\", \"designated\", \"designated\", \"designated\", \"designated\", \"designated\", \"designated\", \"designated\", \"designated\", \"designated\", \"designated\", \"desire\", \"desire\", \"desire\", \"desire\", \"desire\", \"desire\", \"desire\", \"desirous\", \"desirous\", \"desirous\", \"desirous\", \"determinable\", \"determinable\", \"determination\", \"determination\", \"determination\", \"determination\", \"determination\", \"determination\", \"determination\", \"determination\", \"determination\", \"determination\", \"determination\", \"determination\", \"determinations\", \"determine\", \"determine\", \"determine\", \"determine\", \"determine\", \"determine\", \"determine\", \"determine\", \"determine\", \"determine\", \"determine\", \"determine\", \"determine\", \"develop\", \"develop\", \"develop\", \"develop\", \"develop\", \"develop\", \"develop\", \"development\", \"development\", \"dictate\", \"dictate\", \"dictate\", \"dictate\", \"dictate\", \"dictate\", \"different\", \"different\", \"different\", \"different\", \"different\", \"different\", \"different\", \"different\", \"direction\", \"direction\", \"direction\", \"direction\", \"direction\", \"direction\", \"direction\", \"direction\", \"direction\", \"direction\", \"direction\", \"director\", \"director\", \"director\", \"director\", \"director\", \"director\", \"director\", \"director\", \"director\", \"director\", \"director\", \"director\", \"director\", \"director\", \"disburse\", \"disclaimer\", \"disclaimer\", \"disclaimer\", \"disclaims\", \"disclose\", \"disclose\", \"disclose\", \"disclose\", \"disclose\", \"disclose\", \"disclose\", \"discretion\", \"discretion\", \"discretion\", \"discretion\", \"discretion\", \"discretion\", \"discretion\", \"discretion\", \"discretion\", \"discretion\", \"discretion\", \"discretion\", \"discretion\", \"discretion\", \"discretion\", \"discretionary\", \"discretionary\", \"discretionary\", \"discretionary\", \"discretionary\", \"discretionary\", \"discretionary\", \"discretionary\", \"discretionary\", \"discretionary\", \"discretions\", \"discretions\", \"disposal\", \"disposal\", \"disposal\", \"disposal\", \"disposal\", \"disposal\", \"disputant\", \"dispute\", \"dispute\", \"dispute\", \"dispute\", \"dispute\", \"dispute\", \"dispute\", \"disqualify\", \"disqualify\", \"disqualify\", \"disqualify\", \"disqualify\", \"disqualify\", \"disqualify\", \"distributable\", \"distributable\", \"distributable\", \"distributable\", \"distributable\", \"distributable\", \"distributable\", \"distributable\", \"distributable\", \"distributable\", \"distributable\", \"distribute\", \"distribute\", \"distribute\", \"distribute\", \"distribute\", \"distribute\", \"distribute\", \"distribute\", \"distribute\", \"distribute\", \"distribute\", \"distribute\", \"distribution\", \"distribution\", \"distribution\", \"distribution\", \"distribution\", \"distribution\", \"distribution\", \"distribution\", \"distribution\", \"distribution\", \"distribution\", \"distribution\", \"distribution\", \"distribution\", \"distributor\", \"distributor\", \"distributor\", \"distributor\", \"distributor\", \"distributor\", \"distributor\", \"distributor\", \"distributor\", \"distributor\", \"distributor\", \"document\", \"document\", \"document\", \"document\", \"document\", \"document\", \"document\", \"document\", \"document\", \"document\", \"document\", \"document\", \"duties\", \"duties\", \"duties\", \"duties\", \"duties\", \"duties\", \"duties\", \"duties\", \"duty\", \"duty\", \"duty\", \"duty\", \"duty\", \"duty\", \"duty\", \"duty\", \"duty\", \"duty\", \"duty\", \"duty\", \"dwell\", \"e2\", \"e2\", \"effect\", \"effect\", \"effect\", \"effect\", \"effect\", \"effect\", \"effect\", \"effect\", \"effect\", \"effect\", \"effect\", \"election\", \"election\", \"election\", \"election\", \"election\", \"election\", \"election\", \"eligible\", \"eligible\", \"eligible\", \"eligible\", \"eligible\", \"eligible\", \"eligible\", \"eligible\", \"eligible\", \"eligible\", \"eligible\", \"eligible\", \"email\", \"email\", \"email\", \"email\", \"email\", \"email\", \"email\", \"employ\", \"employ\", \"employ\", \"employ\", \"employ\", \"employ\", \"employ\", \"employ\", \"employ\", \"employ\", \"employ\", \"employee\", \"employee\", \"employee\", \"employee\", \"employee\", \"employee\", \"employee\", \"employee\", \"employee\", \"employee\", \"empower\", \"empower\", \"empower\", \"empower\", \"empower\", \"empower\", \"empower\", \"encumber\", \"encumber\", \"encumber\", \"end\", \"end\", \"end\", \"end\", \"end\", \"end\", \"end\", \"end\", \"end\", \"end\", \"end\", \"enforce\", \"enforce\", \"enforce\", \"enforce\", \"enforce\", \"enforce\", \"enforceable\", \"enforceable\", \"enjoyment\", \"enjoyment\", \"enjoyment\", \"enjoyment\", \"enjoyment\", \"enjoyment\", \"enjoyment\", \"enjoyment\", \"enterprises\", \"enterprises\", \"enterprises\", \"enterprises\", \"enterprises\", \"entirety\", \"entities\", \"entitle\", \"entitle\", \"entitle\", \"entitle\", \"entitle\", \"entitle\", \"entitle\", \"entitle\", \"entitle\", \"entitle\", \"entitle\", \"entitle\", \"entitled\", \"entitled\", \"entitled\", \"entitled\", \"entitled\", \"entitled\", \"entitled\", \"entitled\", \"entitled\", \"entitled\", \"entitled\", \"entity\", \"entity\", \"entity\", \"entity\", \"entity\", \"entity\", \"entity\", \"entity\", \"entity\", \"entity\", \"entity\", \"entity\", \"envelope\", \"envelope\", \"envelope\", \"envelope\", \"equal\", \"equal\", \"equal\", \"equal\", \"equal\", \"equal\", \"equal\", \"equal\", \"equal\", \"event\", \"event\", \"event\", \"event\", \"event\", \"event\", \"event\", \"event\", \"event\", \"event\", \"event\", \"evidence\", \"evidence\", \"evidence\", \"evidence\", \"evidence\", \"evidence\", \"evidence\", \"evidence\", \"exce\", \"exce\", \"exce\", \"exce\", \"exce\", \"exce\", \"exce\", \"excepted\", \"excepted\", \"excepted\", \"excepted\", \"excepted\", \"excepted\", \"excepted\", \"exchange\", \"exchange\", \"exchange\", \"exchange\", \"exchange\", \"exchange\", \"exchange\", \"exchange\", \"exchange\", \"exchange\", \"exchange\", \"exclude\", \"exclude\", \"exclude\", \"exclude\", \"exclude\", \"exclude\", \"exclude\", \"exclude\", \"exclude\", \"exclude\", \"exclude\", \"exclusion\", \"exclusion\", \"exclusion\", \"exclusion\", \"exclusion\", \"exclusion\", \"exclusion\", \"exclusion\", \"exclusion\", \"exclusion\", \"execute\", \"execute\", \"execute\", \"execute\", \"execute\", \"execute\", \"execute\", \"execute\", \"execute\", \"execute\", \"execute\", \"execute\", \"execution\", \"execution\", \"execution\", \"execution\", \"execution\", \"execution\", \"execution\", \"execution\", \"execution\", \"execution\", \"exemption\", \"exemption\", \"exemption\", \"exemption\", \"exemption\", \"exemption\", \"exemption\", \"exercise\", \"exercise\", \"exercise\", \"exercise\", \"exercise\", \"exercise\", \"exercise\", \"exercise\", \"exercise\", \"exercise\", \"exercise\", \"exercise\", \"exercise\", \"exercise\", \"exercise\", \"existence\", \"existence\", \"existence\", \"existence\", \"existence\", \"existence\", \"existence\", \"existence\", \"existence\", \"existence\", \"existence\", \"existent\", \"exonerate\", \"exoneration\", \"expediency\", \"expend\", \"expend\", \"expend\", \"expend\", \"expend\", \"expend\", \"expense\", \"expense\", \"expense\", \"expense\", \"expense\", \"expense\", \"expense\", \"expense\", \"expense\", \"expense\", \"expense\", \"expense\", \"experience\", \"expire\", \"expire\", \"expire\", \"expire\", \"expire\", \"expire\", \"expire\", \"expiry\", \"expiry\", \"expiry\", \"expiry\", \"expiry\", \"expiry\", \"expiry\", \"export\", \"express\", \"express\", \"express\", \"express\", \"express\", \"express\", \"express\", \"express\", \"express\", \"expression\", \"expression\", \"expression\", \"expression\", \"expression\", \"expression\", \"expression\", \"expression\", \"expression\", \"f2\", \"f2\", \"facsimile\", \"facsimile\", \"facsimile\", \"facsimile\", \"facsimile\", \"facsimile\", \"facsimile\", \"fact\", \"fact\", \"fact\", \"fact\", \"fact\", \"fact\", \"fact\", \"fact\", \"fact\", \"fact\", \"fact\", \"factor\", \"family\", \"family\", \"family\", \"family\", \"family\", \"family\", \"family\", \"family\", \"family\", \"family\", \"farm\", \"farming\", \"farming\", \"farming\", \"farming\", \"farming\", \"farming\", \"farming\", \"father\", \"father\", \"fax\", \"fax\", \"fax\", \"fax\", \"fees\", \"female\", \"fence\", \"fettered\", \"fiduciary\", \"fiduciary\", \"fiduciary\", \"fiduciary\", \"files\\\\\\\\content.outlook\\\\\\\\iodf185i\\\\\", \"files\\\\\\\\content.outlook\\\\\\\\iodf185i\\\\\", \"finance\", \"finance\", \"finance\", \"financial\", \"financial\", \"financial\", \"financial\", \"financial\", \"financial\", \"financial\", \"financial\", \"financial\", \"financial\", \"financial\", \"financial\", \"finding\", \"firm\", \"firm\", \"firm\", \"firm\", \"firm\", \"firm\", \"firm\", \"firm\", \"firm\", \"firm\", \"fit\", \"fit\", \"fit\", \"fit\", \"fit\", \"fit\", \"fit\", \"fit\", \"fit\", \"fit\", \"fit\", \"fit\", \"fit\", \"fix\", \"fix\", \"fix\", \"fix\", \"fix\", \"fix\", \"fix\", \"fix\", \"fix\", \"fixture\", \"follow\", \"follow\", \"follow\", \"follow\", \"follow\", \"follow\", \"follow\", \"follow\", \"follow\", \"follow\", \"follow\", \"forego\", \"forego\", \"forego\", \"forego\", \"forego\", \"forego\", \"forego\", \"forego\", \"forego\", \"foreign\", \"foreign\", \"foreign\", \"foreign\", \"foreign\", \"foreign\", \"foreign\", \"foreign\", \"form\", \"form\", \"form\", \"form\", \"form\", \"form\", \"form\", \"form\", \"form\", \"form\", \"form\", \"form\", \"fund\", \"fund\", \"fund\", \"fund\", \"fund\", \"fund\", \"fund\", \"fund\", \"fund\", \"fund\", \"fund\", \"fund\", \"fund\", \"fund\", \"fund\", \"fund\", \"g1\", \"g1\", \"gabrielle\", \"gabrielle\", \"general\", \"general\", \"general\", \"general\", \"general\", \"general\", \"general\", \"general\", \"general\", \"general\", \"general\", \"general\", \"generality\", \"generality\", \"generality\", \"generality\", \"generality\", \"generality\", \"generality\", \"generality\", \"generality\", \"generality\", \"genuine\", \"genuine\", \"genuine\", \"genuine\", \"genuine\", \"genuine\", \"georgia\", \"georgia\", \"georgia\", \"georgia\", \"georgia\", \"georgia\", \"georgia\", \"gifts\", \"give\", \"give\", \"give\", \"give\", \"give\", \"give\", \"give\", \"give\", \"give\", \"give\", \"give\", \"give\", \"glen\", \"glen\", \"glen\", \"glen\", \"go\", \"go\", \"go\", \"go\", \"go\", \"go\", \"go\", \"govern\", \"govern\", \"govern\", \"govern\", \"govern\", \"govern\", \"govern\", \"govern\", \"grammatical\", \"grammatical\", \"grammatical\", \"grammatical\", \"grandparent\", \"grandparent\", \"grandparent\", \"grandparent\", \"grandparent\", \"grandparent\", \"grandparent\", \"grandparent\", \"grant\", \"grant\", \"grant\", \"grant\", \"grant\", \"grant\", \"grant\", \"grant\", \"grant\", \"grant\", \"grant\", \"grant\", \"guarantee\", \"guarantee\", \"guarantee\", \"guarantee\", \"guarantee\", \"guarantee\", \"guarantee\", \"guarantee\", \"guarantee\", \"guarantee\", \"guarantee\", \"guardian\", \"guardian\", \"guardian\", \"guardian\", \"guardian\", \"guardian\", \"guardian\", \"guardian\", \"guardian\", \"guardian\", \"guardian\", \"guardian\", \"guardians\", \"halifax\", \"halifax\", \"halifax\", \"halifax\", \"halifax\", \"halifax\", \"halifax\", \"happen\", \"happen\", \"happy\", \"hereinafter\", \"hereinafter\", \"hereinafter\", \"hereinafter\", \"hereinafter\", \"hereinafter\", \"hereinafter\", \"hereinbefore\", \"hereinbefore\", \"hereinbefore\", \"hereinbefore\", \"hereinbefore\", \"hereinbefore\", \"hereinbefore\", \"hereof\", \"hereof\", \"hereof\", \"hereof\", \"hereof\", \"hereof\", \"hereof\", \"hereof\", \"hereof\", \"hereof\", \"hereof\", \"hereto\", \"hereto\", \"hereto\", \"hereto\", \"hereto\", \"hereto\", \"hereto\", \"hereunder\", \"hereunder\", \"hereunder\", \"hereunder\", \"hereunder\", \"hereunder\", \"hereunder\", \"hereunder\", \"hereunder\", \"herewith\", \"high\", \"high\", \"high\", \"hold\", \"hold\", \"hold\", \"hold\", \"hold\", \"hold\", \"hold\", \"hold\", \"hold\", \"hold\", \"hold\", \"hold\", \"hold\", \"holder\", \"holder\", \"holder\", \"holder\", \"holder\", \"holder\", \"holder\", \"holme\", \"horse\", \"house\", \"house\", \"house\", \"house\", \"house\", \"house\", \"house\", \"house\", \"house\", \"house\", \"hybrid\", \"hybrid\", \"hybrid\", \"hybrid\", \"hybrid\", \"hybrid\", \"hybrid\", \"i.\", \"i.\", \"identical\", \"identical\", \"ii\", \"ii\", \"ii\", \"iii\", \"iii\", \"iii\", \"iii\", \"iii\", \"iii\", \"iii\", \"illegality\", \"impact\", \"impact\", \"impact\", \"impact\", \"impose\", \"impose\", \"impose\", \"impose\", \"impose\", \"impose\", \"impose\", \"improve\", \"improve\", \"improve\", \"improve\", \"improve\", \"improve\", \"improve\", \"improve\", \"incapacitate\", \"incapacitate\", \"incapacitate\", \"incidental\", \"incidental\", \"incidental\", \"incidental\", \"incidental\", \"incidental\", \"incidental\", \"incidental\", \"incidental\", \"incidental\", \"include\", \"include\", \"include\", \"include\", \"include\", \"include\", \"include\", \"include\", \"include\", \"include\", \"include\", \"include\", \"include\", \"include\", \"include\", \"incom\", \"income\", \"income\", \"income\", \"income\", \"income\", \"income\", \"income\", \"income\", \"income\", \"income\", \"income\", \"income\", \"income\", \"income\", \"income\", \"income\", \"incur\", \"incur\", \"incur\", \"incur\", \"incur\", \"incur\", \"incur\", \"incur\", \"incur\", \"incur\", \"incur\", \"indemnity\", \"indemnity\", \"indemnity\", \"indemnity\", \"indemnity\", \"indemnity\", \"indemnity\", \"indemnity\", \"indemnity\", \"indemnity\", \"indemnity\", \"individual\", \"individual\", \"individual\", \"individual\", \"individual\", \"individual\", \"individual\", \"individual\", \"individual\", \"infant\", \"infant\", \"infant\", \"infant\", \"infant\", \"infant\", \"infant\", \"infant\", \"infant\", \"infant\", \"infant\", \"information\", \"information\", \"information\", \"information\", \"information\", \"information\", \"information\", \"information\", \"initial\", \"initial\", \"initial\", \"initial\", \"initial\", \"initial\", \"initial\", \"insert\", \"insert\", \"insert\", \"insert\", \"insert\", \"insert\", \"insert\", \"insist\", \"insist\", \"installation\", \"installment\", \"institute\", \"institute\", \"institute\", \"institute\", \"institute\", \"institute\", \"institute\", \"instrumental\", \"intent\", \"intent\", \"intent\", \"intent\", \"intent\", \"intent\", \"intent\", \"intentional\", \"intentional\", \"intentional\", \"intentional\", \"intentional\", \"intentional\", \"intentional\", \"intentional\", \"interest\", \"interest\", \"interest\", \"interest\", \"interest\", \"interest\", \"interest\", \"interest\", \"interest\", \"interest\", \"interest\", \"interest\", \"interest\", \"interest\", \"interest\", \"interim\", \"interim\", \"interim\", \"interim\", \"interim\", \"interim\", \"interim\", \"interim\", \"internet\", \"interpretation\", \"interpretation\", \"interpretation\", \"interpretation\", \"interpretation\", \"interpretation\", \"interpretation\", \"interpretation\", \"interpretation\", \"intervene\", \"intestate\", \"intestate\", \"intestate\", \"intestate\", \"intestate\", \"intestate\", \"intestate\", \"invest\", \"invest\", \"invest\", \"invest\", \"invest\", \"invest\", \"invest\", \"invest\", \"invest\", \"invest\", \"invest\", \"invest\", \"investment\", \"investment\", \"investment\", \"investment\", \"investment\", \"investment\", \"investment\", \"investment\", \"investment\", \"investment\", \"investment\", \"investment\", \"investment\", \"involved\", \"involvement\", \"in|\", \"irrevocable\", \"irrevocable\", \"irrevocable\", \"irrevocable\", \"irrevocable\", \"irrevocable\", \"irrevocable\", \"irrevocable\", \"irrevocable\", \"irrevocable\", \"ix\", \"jamie\", \"jenna/\", \"july\", \"july\", \"juris\", \"jurisdiction\", \"jurisdiction\", \"jurisdiction\", \"jurisdiction\", \"jurisdiction\", \"jurisdiction\", \"jurisdiction\", \"jurisdiction\", \"jurisdiction\", \"jurisdiction\", \"kind\", \"kind\", \"kind\", \"kind\", \"kind\", \"kind\", \"kind\", \"kind\", \"kind\", \"kit\", \"kit\", \"kit\", \"ktb\", \"kudla\", \"kudla\", \"kudla\", \"kudla\", \"kudla\", \"kudla\", \"l\", \"l\", \"l\", \"l\", \"l\", \"l\", \"l\", \"l.\", \"l.\", \"l.\", \"lakes\", \"lakes\", \"lakes\", \"lapse\", \"lapse\", \"lapse\", \"lapse\", \"lapse\", \"law\", \"law\", \"law\", \"law\", \"law\", \"law\", \"law\", \"law\", \"law\", \"law\", \"law\", \"law\", \"law\", \"law\", \"lawrence\", \"lawrence\", \"lawrence\", \"le\", \"le\", \"le\", \"le\", \"le\", \"le\", \"le\", \"le\", \"lease\", \"lease\", \"lease\", \"lease\", \"lease\", \"lease\", \"lease\", \"lease\", \"lease\", \"lease\", \"lease\", \"left\", \"legacy\", \"legal\", \"legal\", \"legal\", \"legal\", \"legal\", \"legal\", \"legal\", \"legal\", \"legal\", \"legal\", \"legal\", \"legal\", \"lend\", \"lend\", \"lend\", \"lend\", \"lend\", \"lend\", \"lend\", \"lend\", \"lend\", \"lend\", \"letter\", \"letter\", \"letter\", \"letter\", \"letter\", \"letter\", \"letter\", \"liability\", \"liability\", \"liability\", \"liability\", \"liability\", \"liability\", \"liability\", \"liability\", \"liability\", \"liability\", \"liability\", \"liable\", \"liable\", \"liable\", \"liable\", \"liable\", \"liable\", \"liable\", \"liable\", \"liable\", \"liable\", \"liable\", \"licence\", \"licence\", \"licence\", \"licence\", \"licence\", \"licence\", \"licence\", \"license\", \"likely\", \"likely\", \"likely\", \"likely\", \"likely\", \"likely\", \"limit\", \"limit\", \"limit\", \"limit\", \"limit\", \"limit\", \"limit\", \"limit\", \"limit\", \"limit\", \"limit\", \"link\", \"link\", \"link\", \"link\", \"livestock\", \"livestock\", \"livestock\", \"living\", \"living\", \"living\", \"living\", \"living\", \"living\", \"living\", \"living\", \"living\", \"look\", \"look\", \"look\", \"look\", \"look\", \"look\", \"look\", \"lunatic\", \"ly\", \"ly\", \"ly\", \"ly\", \"ly\", \"ly\", \"ly\", \"ly\", \"maddocks\", \"maddocks\", \"main\", \"main\", \"maintain\", \"maintain\", \"maintain\", \"maintain\", \"maintain\", \"maintain\", \"maintain\", \"maintain\", \"maintain\", \"maintain\", \"maintain\", \"maintenance\", \"maintenance\", \"maintenance\", \"maintenance\", \"maintenance\", \"maintenance\", \"maintenance\", \"maintenance\", \"maintenance\", \"make\", \"make\", \"make\", \"make\", \"make\", \"make\", \"make\", \"make\", \"make\", \"make\", \"make\", \"male\", \"manager\", \"manager\", \"manager\", \"manager\", \"manager\", \"manager\", \"manager\", \"manager\", \"manager\", \"manner\", \"manner\", \"manner\", \"manner\", \"manner\", \"manner\", \"manner\", \"manner\", \"manner\", \"manner\", \"manner\", \"manner\", \"matter\", \"matter\", \"matter\", \"matter\", \"matter\", \"matter\", \"matter\", \"matter\", \"matter\", \"matter\", \"matter\", \"matter\", \"mawson\", \"mawson\", \"mawson\", \"mcbride\", \"mcbride\", \"mcmaster\", \"mcmaster\", \"mcmaster\", \"mcmaster\", \"mcmaster\", \"mcmaster\", \"mcmaster\", \"mean\", \"mean\", \"mean\", \"mean\", \"mean\", \"mean\", \"mean\", \"mean\", \"mean\", \"mean\", \"mean\", \"mean\", \"mean\", \"meaning\", \"meaning\", \"meaning\", \"meaning\", \"meaning\", \"meaning\", \"meaning\", \"meaning\", \"meaning\", \"meaning\", \"meaning\", \"mediators\", \"mediators\", \"meeting\", \"meeting\", \"meeting\", \"meeting\", \"meeting\", \"meeting\", \"meeting\", \"meeting\", \"meeting\", \"meeting\", \"melbourne\", \"melbourne\", \"melbourne\", \"melbourne\", \"melbourne\", \"melbourne\", \"member\", \"member\", \"member\", \"member\", \"member\", \"member\", \"member\", \"member\", \"member\", \"member\", \"member\", \"mergeformat\", \"mergeformat\", \"mergeformat\", \"mergeformat\", \"mergeformat\", \"merger\", \"minimise\", \"minute\", \"minute\", \"minute\", \"minute\", \"minute\", \"miscellaneous\", \"miscellaneous\", \"miscellaneous\", \"molfetas\", \"molfetas\", \"molfetas\", \"molfetas\", \"money\", \"money\", \"money\", \"money\", \"money\", \"money\", \"money\", \"money\", \"money\", \"money\", \"money\", \"money\", \"money\", \"money\", \"money\", \"moneys\", \"moritz\", \"mother\", \"mother\", \"motor\", \"motor\", \"motor\", \"motor\", \"mutandis\", \"name\", \"name\", \"name\", \"name\", \"name\", \"name\", \"name\", \"name\", \"name\", \"name\", \"name\", \"name\", \"namely:-\", \"napoli\", \"napoli\", \"napoli\", \"napoli\", \"napoli\", \"natural\", \"natural\", \"natural\", \"natural\", \"natural\", \"natural\", \"natural\", \"natural\", \"natural\", \"natural\", \"natural\", \"negate\", \"negotiate\", \"negotiate\", \"negotiate\", \"negotiate\", \"negotiate\", \"net\", \"net\", \"net\", \"net\", \"net\", \"net\", \"net\", \"net\", \"net\", \"net\", \"net\", \"net\", \"net\", \"new\", \"new\", \"new\", \"new\", \"new\", \"new\", \"new\", \"new\", \"new\", \"new\", \"new\", \"new\", \"no.of\", \"nominate\", \"nominate\", \"nominate\", \"nominate\", \"nominate\", \"nominate\", \"nominate\", \"nominate\", \"nominate\", \"nominate\", \"nominate\", \"nominate\", \"non-\", \"normal\", \"normal\", \"normal\", \"normal\", \"normal\", \"normal\", \"normal\", \"note\", \"note\", \"note\", \"note\", \"note\", \"note\", \"note\", \"note\", \"note\", \"note\", \"noted\", \"noted\", \"noted\", \"noted\", \"notice\", \"notice\", \"notice\", \"notice\", \"notice\", \"notice\", \"notice\", \"notice\", \"notice\", \"notice\", \"notice\", \"notice\", \"notice\", \"nt\", \"object\", \"object\", \"object\", \"object\", \"object\", \"object\", \"object\", \"object\", \"object\", \"object\", \"object\", \"observance\", \"observance\", \"observance\", \"observance\", \"occurrence\", \"offend\", \"office\", \"office\", \"office\", \"office\", \"office\", \"office\", \"office\", \"office\", \"office\", \"office\", \"office\", \"office\", \"officeholder\", \"officeholder\", \"officeholder\", \"officeholder\", \"officeholder\", \"officeholder\", \"officeholder\", \"officeholder\", \"officeholders\", \"officeholders\", \"officeholders\", \"officeholders\", \"officeholders\", \"officeholders\", \"officeholders\", \"officer\", \"officer\", \"officer\", \"officer\", \"officer\", \"officer\", \"officer\", \"officer\", \"officer\", \"officer\", \"officer\", \"oflncome\", \"omission\", \"omission\", \"omission\", \"omission\", \"omission\", \"omission\", \"omission\", \"omission\", \"ompany\", \"onerous\", \"operate\", \"operate\", \"operate\", \"operate\", \"operate\", \"operate\", \"operate\", \"operate\", \"operate\", \"operate\", \"operate\", \"operating\", \"oppose\", \"ord\", \"ord\", \"override\", \"override\", \"override\", \"override\", \"package\", \"package\", \"package\", \"package\", \"painter\", \"paragraph\", \"paragraph\", \"paragraph\", \"paragraph\", \"paragraph\", \"paragraph\", \"paragraph\", \"paragraph\", \"paragraph\", \"paragraph\", \"paragraph\", \"park\", \"park\", \"participate\", \"participate\", \"participate\", \"participate\", \"participate\", \"participate\", \"participate\", \"partition\", \"partition\", \"partition\", \"partition\", \"partition\", \"partition\", \"partition\", \"partition\", \"partition\", \"partition\", \"partition\", \"partnership\", \"partnership\", \"partnership\", \"partnership\", \"partnership\", \"partnership\", \"partnership\", \"partnership\", \"partnership\", \"partnership\", \"partnership\", \"partnership\", \"party\", \"party\", \"party\", \"party\", \"party\", \"party\", \"party\", \"party\", \"party\", \"party\", \"party\", \"pass\", \"pass\", \"pass\", \"pass\", \"pass\", \"pass\", \"pass\", \"pay\", \"pay\", \"pay\", \"pay\", \"pay\", \"pay\", \"pay\", \"pay\", \"pay\", \"pay\", \"pay\", \"pay\", \"pay\", \"pay\", \"pay\", \"payable\", \"payable\", \"payable\", \"payable\", \"payable\", \"payable\", \"payable\", \"payable\", \"payable\", \"payable\", \"payable\", \"payee\", \"payment\", \"payment\", \"payment\", \"payment\", \"payment\", \"payment\", \"payment\", \"payment\", \"payment\", \"payment\", \"payment\", \"payment\", \"people\", \"people\", \"people\", \"people\", \"people\", \"people\", \"people\", \"period\", \"period\", \"period\", \"period\", \"period\", \"period\", \"period\", \"period\", \"period\", \"period\", \"period\", \"period\", \"period\", \"period\", \"period\", \"periods\", \"periods\", \"permanent\", \"permission\", \"permission\", \"permission\", \"permission\", \"permission\", \"permission\", \"permission\", \"permission\", \"person\", \"person\", \"person\", \"person\", \"person\", \"person\", \"person\", \"person\", \"person\", \"person\", \"person\", \"person\", \"person\", \"person\", \"person\", \"person\", \"person(s\", \"person(s\", \"person(s\", \"personal\", \"personal\", \"personal\", \"personal\", \"personal\", \"personal\", \"personal\", \"personal\", \"personal\", \"personal\", \"personal\", \"personal\", \"personal\", \"perth\", \"pinako\", \"pl\", \"pl\", \"pl\", \"pl\", \"pl\", \"pl\", \"pl\", \"pl\", \"pl\", \"pl\", \"pl\", \"place\", \"place\", \"place\", \"place\", \"place\", \"place\", \"place\", \"place\", \"place\", \"place\", \"place\", \"policies\", \"policies\", \"policies\", \"policies\", \"policies\", \"policies\", \"policy\", \"policy\", \"policy\", \"policy\", \"policy\", \"policy\", \"policy\", \"policy\", \"policy\", \"policy\", \"policy\", \"poll\", \"poll\", \"poll\", \"portion\", \"portion\", \"portion\", \"portion\", \"portion\", \"portion\", \"portion\", \"portion\", \"portion\", \"portion\", \"posting\", \"posting\", \"power\", \"power\", \"power\", \"power\", \"power\", \"power\", \"power\", \"power\", \"power\", \"power\", \"power\", \"power\", \"power\", \"power\", \"power\", \"precedence\", \"precedence\", \"precedence\", \"precedence\", \"precedence\", \"precedence\", \"predecessor\", \"preferred\", \"preferred\", \"preferred\", \"premium\", \"premium\", \"premium\", \"premium\", \"premium\", \"premium\", \"premium\", \"premium\", \"prepaying\", \"president\", \"presumptive\", \"presumptive\", \"presumptive\", \"presumptive\", \"presumptive\", \"presumptive\", \"price\", \"price\", \"price\", \"price\", \"price\", \"price\", \"price\", \"primary\", \"primary\", \"primary\", \"primary\", \"primary\", \"primary\", \"primary\", \"primary\", \"primary\", \"primary\", \"primary\", \"principal\", \"principal\", \"principal\", \"principal\", \"principal\", \"principal\", \"principal\", \"principal\", \"principal\", \"printing\", \"private\", \"private\", \"private\", \"private\", \"private\", \"private\", \"private\", \"privilege\", \"privilege\", \"privilege\", \"privilege\", \"privilege\", \"privilege\", \"privilege\", \"privilege\", \"procedure\", \"procedure\", \"procedure\", \"procedure\", \"procedure\", \"procedure\", \"procedure\", \"procedure\", \"procedures\", \"proceeding\", \"proceeding\", \"proceeding\", \"proceeding\", \"proceeding\", \"proceeding\", \"proceeding\", \"proceeding\", \"proceeding\", \"proceeding\", \"proceeding\", \"proceeds\", \"proceeds\", \"proceeds\", \"proceeds\", \"proceeds\", \"proceeds\", \"proceeds\", \"professionals\", \"proper\", \"proper\", \"proper\", \"proper\", \"proper\", \"proper\", \"proper\", \"proper\", \"proper\", \"proper\", \"proper\", \"proper\", \"property\", \"property\", \"property\", \"property\", \"property\", \"property\", \"property\", \"property\", \"property\", \"property\", \"property\", \"property\", \"property\", \"property\", \"property\", \"proportion\", \"proportion\", \"proportion\", \"proportion\", \"proportion\", \"proportion\", \"proportion\", \"proportion\", \"proportion\", \"proportion\", \"proportion\", \"proportionate\", \"proposal\", \"proposal\", \"proposal\", \"proposal\", \"propose\", \"propose\", \"propose\", \"propose\", \"propose\", \"propose\", \"propose\", \"propose\", \"propose\", \"propose\", \"propose\", \"protect\", \"protect\", \"protect\", \"protect\", \"protect\", \"protect\", \"protect\", \"protect\", \"protect\", \"protect\", \"protection\", \"protection\", \"protection\", \"protection\", \"protection\", \"protection\", \"protection\", \"protection\", \"provide\", \"provide\", \"provide\", \"provide\", \"provide\", \"provide\", \"provide\", \"provide\", \"provide\", \"provide\", \"provide\", \"provide\", \"provided\", \"provided\", \"provided\", \"provided\", \"provided\", \"provided\", \"provided\", \"provided\", \"provision\", \"provision\", \"provision\", \"provision\", \"provision\", \"provision\", \"provision\", \"provision\", \"provision\", \"provision\", \"provision\", \"provision\", \"provision\", \"provisos\", \"public\", \"public\", \"public\", \"public\", \"public\", \"public\", \"public\", \"public\", \"public\", \"public\", \"public\", \"pulteney\", \"pulteney\", \"pulteney\", \"pulteney\", \"pulteney\", \"purchase\", \"purchase\", \"purchase\", \"purchase\", \"purchase\", \"purchase\", \"purchase\", \"purchase\", \"purchase\", \"purchase\", \"purchase\", \"purchase\", \"purported\", \"purpose\", \"purpose\", \"purpose\", \"purpose\", \"purpose\", \"purpose\", \"purpose\", \"purpose\", \"purpose\", \"purpose\", \"purpose\", \"purpose\", \"pursuant\", \"pursuant\", \"pursuant\", \"pursuant\", \"pursuant\", \"pursuant\", \"pursuant\", \"pursuant\", \"pursuant\", \"pursuant\", \"pursuant\", \"pursuant\", \"pyrmont\", \"r\", \"r\", \"r\", \"r\", \"r\", \"r\", \"r\", \"raising\", \"rank\", \"rank\", \"rank\", \"rapuano\", \"rate\", \"rate\", \"rate\", \"rate\", \"rate\", \"rate\", \"rate\", \"rate\", \"rate\", \"read\", \"read\", \"read\", \"read\", \"read\", \"read\", \"read\", \"reason\", \"reason\", \"reason\", \"reason\", \"reason\", \"reason\", \"reason\", \"reason\", \"reason\", \"reason\", \"reason\", \"rebate\", \"rebate\", \"rebate\", \"rebate\", \"rebate\", \"rebate\", \"rebate\", \"receipt\", \"receipt\", \"receipt\", \"receipt\", \"receipt\", \"receipt\", \"receipt\", \"receipt\", \"receipt\", \"receipt\", \"receipt\", \"receipt\", \"receive\", \"receive\", \"receive\", \"receive\", \"receive\", \"receive\", \"receive\", \"receive\", \"receive\", \"receive\", \"receive\", \"receive\", \"receivership\", \"records\", \"records\", \"records\", \"records\", \"records\", \"records\", \"recoup\", \"recoup\", \"recoup\", \"recoup\", \"recoup\", \"recoup\", \"recoup\", \"redeem\", \"redeem\", \"redeem\", \"redeem\", \"redeem\", \"redeem\", \"redeem\", \"redemption\", \"redemption\", \"redemption\", \"redemption\", \"redemption\", \"redemption\", \"refer\", \"refer\", \"refer\", \"refer\", \"refer\", \"refer\", \"refer\", \"refer\", \"refer\", \"refer\", \"refer\", \"refer\", \"reference\", \"reference\", \"reference\", \"reference\", \"reference\", \"reference\", \"reference\", \"reference\", \"reference\", \"reference\", \"reference\", \"reference\", \"reflect\", \"reflect\", \"reformation\", \"reformation\", \"registerable\", \"registerable\", \"registerable\", \"registrable\", \"registrable\", \"registrable\", \"registrable\", \"registrable\", \"registrable\", \"registrable\", \"registration\", \"registration\", \"relate\", \"relate\", \"relate\", \"relate\", \"relate\", \"relate\", \"relate\", \"relate\", \"relate\", \"relate\", \"relate\", \"relate\", \"relating\", \"relation\", \"relation\", \"relation\", \"relation\", \"relation\", \"relation\", \"relation\", \"relation\", \"relation\", \"relation\", \"relation\", \"relation\", \"relationship\", \"relationship\", \"relationship\", \"relationship\", \"relationship\", \"relationship\", \"relationship\", \"relationships\", \"relative\", \"relative\", \"relative\", \"relative\", \"relative\", \"relative\", \"relative\", \"relative\", \"relative\", \"relative\", \"release\", \"release\", \"release\", \"release\", \"release\", \"release\", \"release\", \"release\", \"release\", \"relevant\", \"relevant\", \"relevant\", \"relevant\", \"relevant\", \"relevant\", \"relevant\", \"relevant\", \"relevant\", \"relevant\", \"relinquish\", \"remarry\", \"remarry\", \"remarry\", \"remarry\", \"remarry\", \"remarry\", \"remarry\", \"remote\", \"remote\", \"remote\", \"remote\", \"remote\", \"remoteness\", \"remoteness\", \"renovation\", \"rent\", \"rent\", \"rent\", \"rent\", \"rent\", \"rent\", \"rent\", \"rent\", \"rent\", \"rent-\", \"repayment\", \"repayment\", \"repayment\", \"repayment\", \"repayment\", \"repayment\", \"repayment\", \"repayment\", \"repayment\", \"replacement\", \"replacement\", \"replacement\", \"replacement\", \"replacement\", \"replacement\", \"replacement\", \"replacement\", \"replacement\", \"reproduce\", \"reproduce\", \"require\", \"require\", \"require\", \"require\", \"require\", \"require\", \"require\", \"require\", \"require\", \"require\", \"require\", \"require\", \"requirement\", \"requirement\", \"requirement\", \"requirement\", \"requirement\", \"requirement\", \"requirement\", \"requirement\", \"resettle\", \"resettle\", \"resettle\", \"resettle\", \"resettle\", \"resettlement\", \"resettlement\", \"resettlement\", \"resettlement\", \"resettlement\", \"resettlement\", \"resettlement\", \"residence\", \"residence\", \"residence\", \"residence\", \"residence\", \"residence\", \"residence\", \"residence\", \"residual\", \"resolution\", \"resolution\", \"resolution\", \"resolution\", \"resolution\", \"resolution\", \"resolution\", \"resolution\", \"resolution\", \"resolution\", \"resolution\", \"resort\", \"resort\", \"resort\", \"resort\", \"resort\", \"resort\", \"resort\", \"respect\", \"respect\", \"respect\", \"respect\", \"respect\", \"respect\", \"respect\", \"respect\", \"respect\", \"respect\", \"respect\", \"respect\", \"respect\", \"respect\", \"responsible\", \"responsible\", \"responsible\", \"responsible\", \"responsible\", \"responsible\", \"responsible\", \"responsible\", \"responsible\", \"responsible\", \"rest\", \"rest\", \"rest\", \"rest\", \"rest\", \"rest\", \"rest\", \"result\", \"result\", \"result\", \"result\", \"result\", \"result\", \"result\", \"result\", \"result\", \"result\", \"result\", \"resulting\", \"retain\", \"retain\", \"retain\", \"retain\", \"retain\", \"retain\", \"retain\", \"retain\", \"retained\", \"retained\", \"retained\", \"revenue\", \"revenue\", \"revenue\", \"revenue\", \"revenue\", \"revenue\", \"revenue\", \"revenue\", \"revenue\", \"revenue\", \"revocable\", \"revocable\", \"revocable\", \"revocable\", \"revocable\", \"revocable\", \"revocable\", \"revocable\", \"reward\", \"right\", \"right\", \"right\", \"right\", \"right\", \"right\", \"right\", \"right\", \"right\", \"right\", \"right\", \"right\", \"right\", \"robert\", \"robert\", \"robert\", \"robert\", \"robert\", \"robert\", \"robert\", \"robinson\", \"robinson\", \"robinson\", \"robinson\", \"rule\", \"rule\", \"rule\", \"rule\", \"rule\", \"rule\", \"rule\", \"rule\", \"rule\", \"rule\", \"rule\", \"rules\", \"run\", \"run\", \"running\", \"rust\", \"sa\", \"sa\", \"sa\", \"sa\", \"sa\", \"sa\", \"sa\", \"sa\", \"sa\", \"sa\", \"sa\", \"sa\", \"sample\", \"sample\", \"sample\", \"sample\", \"sample\", \"sample\", \"sample\", \"sandra\", \"saunders\", \"say\", \"say\", \"say\", \"say\", \"say\", \"say\", \"say\", \"say\", \"say\", \"say\", \"say\", \"schedule\", \"schedule\", \"schedule\", \"schedule\", \"schedule\", \"schedule\", \"schedule\", \"schedule\", \"schedule\", \"schedule\", \"schedule\", \"schedule\", \"sealed\", \"sealed\", \"sealed\", \"sealed\", \"sealed\", \"sealed\", \"sealed\", \"section\", \"section\", \"section\", \"section\", \"section\", \"section\", \"section\", \"section\", \"section\", \"section\", \"section\", \"secure\", \"secure\", \"secure\", \"secure\", \"secure\", \"secure\", \"secure\", \"secure\", \"secure\", \"secure\", \"secure\", \"security\", \"security\", \"security\", \"security\", \"security\", \"security\", \"security\", \"security\", \"security\", \"security\", \"security\", \"security\", \"security\", \"segregate\", \"segregate\", \"segregate\", \"segregate\", \"segregate\", \"segregate\", \"segregate\", \"segregate\", \"segregated\", \"segregated\", \"segregated\", \"segregated\", \"segregated\", \"segregated\", \"segregated\", \"segregated\", \"selection\", \"selection\", \"selection\", \"selection\", \"selection\", \"selection\", \"selection\", \"sell\", \"sell\", \"sell\", \"sell\", \"sell\", \"sell\", \"sell\", \"sell\", \"sell\", \"sell\", \"sell\", \"send\", \"send\", \"send\", \"send\", \"send\", \"send\", \"send\", \"separate\", \"separate\", \"separate\", \"separate\", \"separate\", \"separate\", \"separate\", \"separate\", \"separate\", \"separate\", \"separate\", \"server\", \"server\", \"set\", \"set\", \"set\", \"set\", \"set\", \"set\", \"set\", \"set\", \"set\", \"set\", \"set\", \"set\", \"set\", \"settledamount\", \"settlement\", \"settlement\", \"settlement\", \"settlement\", \"settlement\", \"settlement\", \"settlement\", \"settlement\", \"settlement\", \"settlement\", \"settlement\", \"settlement\", \"settlor\", \"settlor\", \"settlor\", \"settlor\", \"settlor\", \"settlor\", \"settlor\", \"settlor\", \"settlor\", \"settlor\", \"settlor\", \"settlor\", \"share\", \"share\", \"share\", \"share\", \"share\", \"share\", \"share\", \"share\", \"share\", \"share\", \"share\", \"share\", \"share\", \"share\", \"share\", \"shareholder\", \"shareholder\", \"shareholder\", \"shareholder\", \"shareholder\", \"shareholder\", \"shareholder\", \"shareholder\", \"shareholder\", \"shareholder\", \"shareholder\", \"shareholding\", \"shares\", \"shares\", \"shares\", \"shares\", \"shares\", \"shares\", \"shares\", \"sheet\", \"sheet\", \"sheet\", \"sheet\", \"sheet\", \"sheet\", \"short\", \"sick\", \"sign\", \"sign\", \"sign\", \"sign\", \"sign\", \"sign\", \"sign\", \"sign\", \"sign\", \"sign\", \"sign\", \"significant\", \"signing\", \"signing\", \"signing\", \"signing\", \"signing\", \"signing\", \"signing\", \"signing\", \"site\", \"site\", \"site\", \"smith\", \"smith\", \"smith\", \"smith\", \"smith\", \"society\", \"society\", \"society\", \"society\", \"society\", \"society\", \"society\", \"society\", \"society\", \"society\", \"society\", \"sole\", \"sole\", \"sole\", \"sole\", \"sole\", \"sole\", \"sole\", \"sole\", \"sole\", \"sole\", \"sole\", \"solicitors\", \"solicitors\", \"solicitors\", \"solicitors\", \"solicitors\", \"solicitors\", \"solicitors\", \"sourced\", \"sourced\", \"sourced\", \"south\", \"south\", \"south\", \"south\", \"south\", \"south\", \"south\", \"south\", \"special\", \"special\", \"special\", \"special\", \"special\", \"special\", \"special\", \"special\", \"specific\", \"specific\", \"specific\", \"specific\", \"specific\", \"specific\", \"specific\", \"specific\", \"specific\", \"specific\", \"specified\", \"specified\", \"specified\", \"specified\", \"specified\", \"specified\", \"specified\", \"specified\", \"specify\", \"specify\", \"specify\", \"specify\", \"specify\", \"specify\", \"specify\", \"specify\", \"specify\", \"specify\", \"specify\", \"specify\", \"split\", \"sporting\", \"sporting\", \"sporting\", \"sporting\", \"sporting\", \"sporting\", \"sporting\", \"spouse\", \"spouse\", \"spouse\", \"spouse\", \"spouse\", \"spouse\", \"spouse\", \"spouse\", \"spouse\", \"spouse\", \"spouse\", \"spurr\", \"spurritt\", \"spurritt\", \"spurritt\", \"spurritt\", \"spurritt\", \"spurritt\", \"st\", \"st\", \"st\", \"st\", \"state\", \"state\", \"state\", \"state\", \"state\", \"state\", \"state\", \"state\", \"state\", \"state\", \"state\", \"states\", \"station\", \"stranger\", \"subclause\", \"subclause\", \"subclause\", \"subject\", \"subject\", \"subject\", \"subject\", \"subject\", \"subject\", \"subject\", \"subject\", \"subject\", \"subject\", \"subject\", \"subject\", \"subject\", \"subject\", \"subordinate\", \"subparagraph\", \"subparagraph\", \"subparagraph\", \"subparagraph\", \"subparagraph\", \"subsection\", \"subsection\", \"subsection\", \"substitute\", \"substitute\", \"substitute\", \"substitute\", \"substitute\", \"substitute\", \"substitute\", \"substitute\", \"subtrust\", \"successor\", \"successor\", \"successor\", \"successor\", \"successor\", \"successor\", \"successor\", \"successor\", \"successor\", \"sufficient\", \"sufficient\", \"sufficient\", \"sufficient\", \"sufficient\", \"sufficient\", \"sufficient\", \"suggest\", \"sun\", \"superannuate\", \"supplemental\", \"supplemental\", \"supplemental\", \"supply\", \"supply\", \"support\", \"support\", \"support\", \"support\", \"support\", \"support\", \"support\", \"surplus\", \"surplus\", \"surplus\", \"surplus\", \"surplus\", \"surplus\", \"surplus\", \"surviving\", \"surviving\", \"surviving\", \"surviving\", \"surviving\", \"surviving\", \"surviving\", \"surviving\", \"surviving\", \"surviving\", \"takers\", \"takers\", \"takers\", \"takers\", \"takers\", \"takers\", \"tax\", \"tax\", \"tax\", \"tax\", \"tax\", \"tax\", \"tax\", \"tax\", \"tax\", \"tax\", \"tax\", \"tax\", \"tax\", \"tax\", \"taxable\", \"taxable\", \"taxable\", \"taxable\", \"taxable\", \"taxable\", \"taxable\", \"taxable\", \"technique\", \"telegram\", \"telegram\", \"telegram\", \"telegram\", \"telegram\", \"telex\", \"telex\", \"telex\", \"telex\", \"telex\", \"term\", \"term\", \"term\", \"term\", \"term\", \"term\", \"term\", \"term\", \"term\", \"term\", \"term\", \"term\", \"term\", \"termination\", \"termination\", \"termination\", \"termination\", \"termination\", \"termination\", \"termination\", \"test\", \"test\", \"test\", \"test\", \"test\", \"test\", \"test\", \"thank\", \"therewith\", \"therewith\", \"therewith\", \"therewith\", \"thetrustee\", \"think\", \"think\", \"think\", \"think\", \"think\", \"think\", \"think\", \"think\", \"think\", \"think\", \"think\", \"think\", \"think\", \"threaten\", \"time\", \"time\", \"time\", \"time\", \"time\", \"time\", \"time\", \"time\", \"time\", \"time\", \"time\", \"time\", \"time\", \"time\", \"time\", \"tiparra\", \"topdocs\", \"topdocs\", \"topdocs\", \"topdocs\", \"topdocs\", \"topdocs\", \"topdocs\", \"topic\", \"topic\", \"topic\", \"topic\", \"topic\", \"traditional\", \"traditional\", \"traditional\", \"traditional\", \"traditional\", \"transact\", \"transact\", \"transact\", \"transact\", \"transact\", \"transact\", \"transact\", \"transfer\", \"transfer\", \"transfer\", \"transfer\", \"transfer\", \"transfer\", \"transfer\", \"transfer\", \"transfer\", \"transfer\", \"transfer\", \"transfer\", \"transferee\", \"trouble\", \"trouble\", \"trouble\", \"trouble\", \"trouble\", \"trust\", \"trust\", \"trust\", \"trust\", \"trust\", \"trust\", \"trust\", \"trust\", \"trust\", \"trust\", \"trust\", \"trust\", \"trust\", \"trust\", \"trust\", \"trust\", \"trust.doc\", \"trust.doc\", \"trust.doc\", \"trust.doc\", \"trust.doc\", \"trust.doc\", \"trust.doc\", \"truste\", \"trustee\", \"trustee\", \"trustee\", \"trustee\", \"trustee\", \"trustee\", \"trustee\", \"trustee\", \"trustee\", \"trustee\", \"trustee\", \"trustee\", \"trustee\", \"trustee\", \"trustee\", \"trustee\", \"trustees\", \"trustees\", \"trustees\", \"trustees\", \"trustees\", \"trustees\", \"trustees\", \"trustees\", \"trustees\", \"trustees\", \"trustees\", \"trusteetrustees\", \"trusteetrustees\", \"tsalamangos\", \"tsalamangos\", \"tsalamangos\", \"tsalamangos\", \"tsalamangos\", \"tsalamangos\", \"tsalamangos\", \"tt\", \"uncontrolled\", \"uncontrolled\", \"uncontrolled\", \"uncontrolled\", \"uncontrolled\", \"uncontrolled\", \"uncontrolled\", \"uncontrolled\", \"uncontrolled\", \"uncontrolled\", \"undistributed\", \"undistributed\", \"undistributed\", \"undistributed\", \"undistributed\", \"undistributed\", \"undistributed\", \"undistributed\", \"undistributed\", \"undistributed\", \"undistributed\", \"unfranked\", \"unfranked\", \"unfranked\", \"unfranked\", \"unfranked\", \"unfranked\", \"unfranked\", \"unimproved\", \"unimproved\", \"union\", \"union\", \"union\", \"union\", \"union\", \"union\", \"union\", \"union\", \"union\", \"union\", \"union\", \"unit\", \"unit\", \"unit\", \"unit\", \"unit\", \"unit\", \"unit\", \"unit\", \"unit\", \"unit\", \"unit\", \"untaxed\", \"unwilling\", \"vacation\", \"vacation\", \"value\", \"value\", \"value\", \"value\", \"value\", \"value\", \"value\", \"value\", \"value\", \"value\", \"value\", \"value\", \"variation\", \"variation\", \"variation\", \"variation\", \"variation\", \"variation\", \"variation\", \"variation\", \"variation\", \"variation\", \"variation\", \"vary\", \"vary\", \"vary\", \"vary\", \"vary\", \"vary\", \"vary\", \"vary\", \"vary\", \"vary\", \"vary\", \"vest\", \"vest\", \"vest\", \"vest\", \"vest\", \"vest\", \"vest\", \"vest\", \"vest\", \"vest\", \"vest\", \"vest\", \"vesting\", \"vesting\", \"vesting\", \"vesting\", \"vesting\", \"vesting\", \"vesting\", \"vesting\", \"vesting\", \"vesting\", \"vesting\", \"vesting\", \"vigilance\", \"vigilance\", \"vigilance\", \"vii\", \"viii\", \"virtue\", \"virtue\", \"virtue\", \"virtue\", \"virtue\", \"virtue\", \"virtue\", \"visible\", \"voting\", \"waiver\", \"waiver\", \"waiver\", \"warning\", \"warning\", \"warning\", \"wayville\", \"website\", \"website\", \"whereon\", \"wind\", \"wind\", \"wind\", \"wind\", \"wind\", \"wind\", \"wind\", \"wind\", \"wind\", \"wind\", \"winjen\", \"winjen\", \"winjen\", \"winjen\", \"winjen\", \"winjen\", \"winjen\", \"witness\", \"witness\", \"witness\", \"witness\", \"witness\", \"witness\", \"witness\", \"witness\", \"witness\", \"witness\", \"work\", \"work\", \"work\", \"work\", \"work\", \"work\", \"work\", \"worthy\", \"worthy\", \"worthy\", \"worthy\", \"worthy\", \"worthy\", \"worthy\", \"write\", \"write\", \"write\", \"write\", \"write\", \"write\", \"write\", \"write\", \"write\", \"write\", \"write\", \"writing\", \"writing\", \"writing\", \"writing\", \"writing\", \"writing\", \"writing\", \"writing\", \"writing\", \"writing\", \"writing\", \"writing\", \"written\", \"written\", \"written\", \"written\", \"written\", \"written\", \"written\", \"x.x\", \"xii\", \"xiv\", \"xx\", \"xx\", \"xx\", \"yield\", \"zen\", \"|\", \"|\", \"|\", \"|\", \"|\", \"|\", \"|\", \"|\", \"|\", \"|\", \"|appointor\", \"|appointor\", \"|appointor\", \"|attorney\", \"|attorney\", \"|attorney\", \"|authorised\", \"|authorised\", \"|authorised\", \"|director\", \"|director\", \"|director\", \"|director\", \"|execut\", \"|execut\", \"|execut\", \"|name\", \"|name\", \"|name\", \"|power\", \"|power\", \"|power\", \"|presence\", \"|presence\", \"|presence\", \"|print\", \"|print\", \"|print\", \"|print\", \"|print\", \"|print\", \"|settlor\", \"|sign\", \"|sign\", \"|sign\", \"|sign\", \"|signature\", \"|signature\", \"|signature\", \"|signature\", \"|signature\", \"|signature\", \"|signed\", \"|signed\", \"|signed\", \"|trustee\", \"|trustee\", \"~\", \"~\"]}, \"R\": 30, \"lambda.step\": 0.01, \"plot.opts\": {\"xlab\": \"PC1\", \"ylab\": \"PC2\"}, \"topic.order\": [4, 41, 45, 28, 15, 23, 11, 48, 38, 37, 21, 46, 8, 40, 29, 24, 32, 14, 13, 16, 50, 12, 10, 9, 18, 7, 6, 5, 3, 2, 17, 25, 19, 20, 47, 44, 43, 42, 39, 36, 35, 34, 33, 31, 30, 27, 26, 49, 22, 1]};\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_el1207358195495205299208295\", ldavis_el1207358195495205299208295_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_el1207358195495205299208295\", ldavis_el1207358195495205299208295_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_el1207358195495205299208295\", ldavis_el1207358195495205299208295_data);\n",
" })\n",
" });\n",
"}\n",
"</script>"
],
"text/plain": [
"PreparedData(topic_coordinates= Freq cluster topics x y\n",
"topic \n",
"3 32.051210 1 1 -0.009426 0.000220\n",
"40 14.432954 1 2 -0.016656 -0.000772\n",
"44 11.951673 1 3 -0.009170 -0.006819\n",
"27 11.709898 1 4 -0.006163 -0.000390\n",
"14 8.429031 1 5 -0.008492 -0.004052\n",
"22 8.123675 1 6 -0.019578 0.002358\n",
"10 7.091608 1 7 -0.017685 0.011123\n",
"47 2.074981 1 8 -0.017349 -0.003336\n",
"37 1.377237 1 9 -0.015923 -0.000776\n",
"36 1.224570 1 10 -0.018588 0.000969\n",
"20 0.724880 1 11 -0.010825 -0.000722\n",
"45 0.352858 1 12 -0.004208 -0.003611\n",
"7 0.177558 1 13 0.000438 0.007935\n",
"39 0.116154 1 14 -0.008278 -0.001428\n",
"28 0.115098 1 15 -0.014198 -0.000870\n",
"23 0.028988 1 16 -0.014439 0.007439\n",
"31 0.000584 1 17 -0.003358 -0.007850\n",
"13 0.000516 1 18 -0.005742 -0.003039\n",
"12 0.000516 1 19 -0.004047 -0.001036\n",
"15 0.000516 1 20 0.004605 -0.000681\n",
"49 0.000516 1 21 -0.002179 -0.003746\n",
"11 0.000516 1 22 0.054969 -0.000391\n",
"9 0.000516 1 23 0.005431 -0.001062\n",
"8 0.000516 1 24 -0.003530 -0.001900\n",
"17 0.000516 1 25 0.047555 0.005476\n",
"6 0.000516 1 26 -0.002678 -0.001012\n",
"5 0.000516 1 27 0.001971 -0.004411\n",
"4 0.000516 1 28 0.012761 -0.007691\n",
"2 0.000516 1 29 0.003698 -0.001087\n",
"1 0.000516 1 30 0.013436 -0.001733\n",
"16 0.000516 1 31 0.006371 0.010257\n",
"24 0.000516 1 32 0.018824 -0.011184\n",
"18 0.000516 1 33 -0.001318 0.000892\n",
"19 0.000516 1 34 -0.001137 -0.000184\n",
"46 0.000516 1 35 -0.007494 0.005305\n",
"43 0.000516 1 36 0.009254 -0.000776\n",
"42 0.000516 1 37 -0.001399 -0.005656\n",
"41 0.000516 1 38 0.001313 0.010848\n",
"38 0.000516 1 39 0.006333 0.005802\n",
"35 0.000516 1 40 -0.003161 0.003768\n",
"34 0.000516 1 41 0.015113 -0.007060\n",
"33 0.000516 1 42 0.023363 0.011138\n",
"32 0.000516 1 43 0.002210 -0.002436\n",
"30 0.000516 1 44 0.006277 0.002179\n",
"29 0.000516 1 45 -0.009993 0.001917\n",
"26 0.000516 1 46 -0.008734 0.003355\n",
"25 0.000516 1 47 0.004174 0.000216\n",
"48 0.000516 1 48 0.003151 0.000270\n",
"21 0.000516 1 49 -0.001408 -0.005583\n",
"0 0.000516 1 50 0.005912 -0.000174, topic_info= Category Freq Term Total loglift logprob\n",
"term \n",
"17 Default 6319.000000 trustee 6319.000000 30.0000 30.0000\n",
"4 Default 3675.000000 trust 3675.000000 29.0000 29.0000\n",
"27 Default 2360.000000 fund 2360.000000 28.0000 28.0000\n",
"49 Default 1971.000000 person 1971.000000 27.0000 27.0000\n",
"61 Default 1688.000000 income 1688.000000 26.0000 26.0000\n",
"24 Default 1344.000000 power 1344.000000 25.0000 25.0000\n",
"140 Default 1285.000000 time 1285.000000 24.0000 24.0000\n",
"62 Default 1255.000000 beneficiary 1255.000000 23.0000 23.0000\n",
"5 Default 1184.000000 deed 1184.000000 22.0000 22.0000\n",
"108 Default 1003.000000 property 1003.000000 21.0000 21.0000\n",
"76 Default 766.000000 clause 766.000000 20.0000 20.0000\n",
"60 Default 763.000000 act 763.000000 19.0000 19.0000\n",
"19 Default 796.000000 pay 796.000000 18.0000 18.0000\n",
"395 Default 722.000000 company 722.000000 17.0000 17.0000\n",
"196 Default 758.000000 exercise 758.000000 16.0000 16.0000\n",
"48 Default 708.000000 include 708.000000 15.0000 15.0000\n",
"46 Default 680.000000 appointor 680.000000 14.0000 14.0000\n",
"83 Default 647.000000 capital 647.000000 13.0000 13.0000\n",
"129 Default 605.000000 discretion 605.000000 12.0000 12.0000\n",
"82 Default 608.000000 share 608.000000 11.0000 11.0000\n",
"167 Default 590.000000 money 590.000000 10.0000 10.0000\n",
"239 Default 569.000000 interest 569.000000 9.0000 9.0000\n",
"36 Default 550.000000 account 550.000000 8.0000 8.0000\n",
"37 Default 477.000000 period 477.000000 7.0000 7.0000\n",
"38 Default 464.000000 mean 464.000000 6.0000 6.0000\n",
"21 Default 437.000000 hold 437.000000 5.0000 5.0000\n",
"297 Default 446.000000 distribution 446.000000 4.0000 4.0000\n",
"252 Default 420.000000 fit 420.000000 3.0000 3.0000\n",
"244 Default 412.000000 law 412.000000 2.0000 2.0000\n",
"22 Default 420.000000 apply 420.000000 1.0000 1.0000\n",
"... ... ... ... ... ... ...\n",
"82 Topic50 0.003667 share 608.232894 0.1547 -4.9151\n",
"366 Topic50 0.002543 director 387.766379 0.2390 -5.2810\n",
"60 Topic50 0.004345 act 763.686611 0.0970 -4.7452\n",
"49 Topic50 0.009089 person 1971.122189 -0.1132 -4.0073\n",
"775 Topic50 0.000649 contract 74.715862 0.5196 -6.6470\n",
"61 Topic50 0.007730 income 1688.545112 -0.1205 -4.1692\n",
"76 Topic50 0.004134 clause 766.811076 0.0431 -4.7951\n",
"52 Topic50 0.000926 sole 117.300054 0.4241 -6.2915\n",
"41 Topic50 0.002228 date 357.214169 0.1888 -5.4132\n",
"81 Topic50 0.001703 corporation 254.292663 0.2599 -5.6820\n",
"83 Topic50 0.003553 capital 647.905013 0.0602 -4.9465\n",
"17 Topic50 0.020776 trustee 6319.813300 -0.4516 -3.1805\n",
"196 Topic50 0.003952 exercise 758.019644 0.0095 -4.8402\n",
"48 Topic50 0.003732 include 708.533504 0.0198 -4.8973\n",
"235 Topic50 0.001882 right 299.642298 0.1957 -5.5821\n",
"107 Topic50 0.002195 respect 367.175735 0.1465 -5.4281\n",
"195 Topic50 0.001998 absolute 328.855014 0.1626 -5.5222\n",
"5 Topic50 0.005224 deed 1184.968915 -0.1582 -4.5611\n",
"21 Topic50 0.002454 hold 437.969102 0.0816 -5.3167\n",
"251 Topic50 0.002244 think 390.052460 0.1082 -5.4059\n",
"377 Topic50 0.002142 security 369.818336 0.1149 -5.4525\n",
"36 Topic50 0.002838 account 550.196017 -0.0010 -5.1711\n",
"46 Topic50 0.003268 appointor 680.100780 -0.0721 -5.0303\n",
"19 Topic50 0.003534 pay 796.109920 -0.1511 -4.9518\n",
"165 Topic50 0.002125 appoint 368.929744 0.1091 -5.4607\n",
"62 Topic50 0.004217 beneficiary 1255.152163 -0.4298 -4.7751\n",
"167 Topic50 0.002730 money 590.216663 -0.1103 -5.2101\n",
"108 Topic50 0.003099 property 1003.550147 -0.5140 -5.0831\n",
"38 Topic50 0.002230 mean 464.223178 -0.0723 -5.4123\n",
"239 Topic50 0.002260 interest 569.180759 -0.2626 -5.3987\n",
"\n",
"[4051 rows x 6 columns], token_table= Topic Freq Term\n",
"term \n",
"2021 1 0.415066 &\n",
"2089 1 0.695781 2f\n",
"1459 1 0.241439 aaa\n",
"1459 4 0.241439 aaa\n",
"1507 1 0.176470 able\n",
"1507 2 0.176470 able\n",
"1507 3 0.176470 able\n",
"1507 4 0.176470 able\n",
"1507 6 0.176470 able\n",
"195 1 0.334494 absolute\n",
"195 2 0.097307 absolute\n",
"195 3 0.158124 absolute\n",
"195 4 0.133798 absolute\n",
"195 5 0.079062 absolute\n",
"195 6 0.082103 absolute\n",
"195 7 0.057776 absolute\n",
"195 8 0.015204 absolute\n",
"195 9 0.012163 absolute\n",
"195 10 0.012163 absolute\n",
"195 11 0.009123 absolute\n",
"195 12 0.003041 absolute\n",
"195 13 0.003041 absolute\n",
"168 1 0.300794 accept\n",
"168 2 0.150397 accept\n",
"168 3 0.133686 accept\n",
"168 4 0.100265 accept\n",
"168 5 0.091909 accept\n",
"168 6 0.083554 accept\n",
"168 7 0.083554 accept\n",
"168 8 0.025066 accept\n",
"... ... ... ...\n",
"2012 1 0.471568 |power\n",
"2012 4 0.235784 |power\n",
"2012 7 0.235784 |power\n",
"2009 1 0.356390 |presence\n",
"2009 4 0.178195 |presence\n",
"2009 7 0.178195 |presence\n",
"2013 1 0.342004 |print\n",
"2013 2 0.085501 |print\n",
"2013 4 0.171002 |print\n",
"2013 5 0.085501 |print\n",
"2013 6 0.085501 |print\n",
"2013 7 0.171002 |print\n",
"2008 1 0.602487 |settlor\n",
"1444 1 0.433829 |sign\n",
"1444 2 0.108457 |sign\n",
"1444 4 0.216914 |sign\n",
"1444 7 0.108457 |sign\n",
"2010 1 0.478809 |signature\n",
"2010 2 0.087056 |signature\n",
"2010 4 0.174112 |signature\n",
"2010 5 0.043528 |signature\n",
"2010 6 0.043528 |signature\n",
"2010 7 0.174112 |signature\n",
"2007 1 0.542897 |signed\n",
"2007 4 0.135724 |signed\n",
"2007 7 0.135724 |signed\n",
"2015 1 0.317892 |trustee\n",
"2015 4 0.317892 |trustee\n",
"2702 1 0.319143 ~\n",
"2702 3 0.319143 ~\n",
"\n",
"[4859 rows x 3 columns], R=30, lambda_step=0.01, plot_opts={'xlab': 'PC1', 'ylab': 'PC2'}, topic_order=[4, 41, 45, 28, 15, 23, 11, 48, 38, 37, 21, 46, 8, 40, 29, 24, 32, 14, 13, 16, 50, 12, 10, 9, 18, 7, 6, 5, 3, 2, 17, 25, 19, 20, 47, 44, 43, 42, 39, 36, 35, 34, 33, 31, 30, 27, 26, 49, 22, 1])"
]
},
"execution_count": 23,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"data = pyLDAvis.gensim.prepare(lda_model_bow, bow_corpus, dictionary)\n",
"data"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### Calculating the topics for documents 03, 12 and 17"
]
},
{
"cell_type": "code",
"execution_count": 25,
"metadata": {},
"outputs": [],
"source": [
"vec_bow_17 = dictionary.doc2bow(filtered_texts[17].split())\n",
"vec_bow_03 = dictionary.doc2bow(filtered_texts[3].split())\n",
"vec_bow_12 = dictionary.doc2bow(filtered_texts[12].split())"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### Viewing the topics of the selected documents"
]
},
{
"cell_type": "code",
"execution_count": 26,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"document 03 topics: [(3, 0.075345944039359194), (27, 0.40886112389944279), (39, 0.018643289660613249), (40, 0.02759284971293401), (44, 0.45194924764671079)]\n",
"document 12 topics: [(10, 0.16041004212835228), (22, 0.44745773180268861), (36, 0.034127220990991462), (37, 0.020306193989949425), (40, 0.30730365022374589), (47, 0.015509030752539409)]\n",
"document 17 topics: [(3, 0.43117910486800543), (14, 0.043080651275866973), (27, 0.33344959275418595), (40, 0.024718801032967929), (44, 0.16250302721191706)]\n"
]
}
],
"source": [
"vec_lda_topics_17 = lda_model_bow[vec_bow_17]\n",
"vec_lda_topics_03 = lda_model_bow[vec_bow_03]\n",
"vec_lda_topics_12 = lda_model_bow[vec_bow_12]\n",
"print ('document 03 topics: ', vec_lda_topics_03)\n",
"print ('document 12 topics: ', vec_lda_topics_12)\n",
"print ('document 17 topics: ', vec_lda_topics_17)"
]
},
{
"cell_type": "code",
"execution_count": 27,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"df1 = pd.DataFrame(vec_lda_topics_03, columns=['topic', 'contrib'])\n",
"df1['doc'] = 'doc_03'\n",
"df2 = pd.DataFrame(vec_lda_topics_12, columns=['topic', 'contrib'])\n",
"df2['doc'] = 'doc_12'\n",
"df3 = pd.DataFrame(vec_lda_topics_17, columns=['topic', 'contrib'])\n",
"df3['doc'] = 'doc_17'"
]
},
{
"cell_type": "code",
"execution_count": 33,
"metadata": {},
"outputs": [
{
"data": {
"image/png": "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\n",
"text/plain": [
"<matplotlib.figure.Figure at 0x15ae54550>"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"plt.figure(figsize=[10,3])\n",
"plt.plot(df1.topic, df1.contrib)\n",
"plt.plot(df2.topic, df2.contrib)\n",
"plt.plot(df3.topic, df3.contrib)\n",
"plt.legend(['Doc_03', 'Doc_12', 'Doc_17'], loc='upper left')\n",
"plt.show()"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### Calculating the simmilarity between the documents\n",
"Documents 3 and 17 are closer to one another than 3 is to 12 or 12 is to 17."
]
},
{
"cell_type": "code",
"execution_count": 34,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"simmilarity_03_12 = gensim.matutils.cossim(vec_lda_topics_03, vec_lda_topics_12)\n",
"simmilarity_03_17 = gensim.matutils.cossim(vec_lda_topics_03, vec_lda_topics_17)\n",
"simmilarity_12_17 = gensim.matutils.cossim(vec_lda_topics_12, vec_lda_topics_17)"
]
},
{
"cell_type": "code",
"execution_count": 35,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"similarity between docs 03 and 12 0.0242902625579\n",
"similarity between docs 03 and 17 0.691911431814\n",
"similarity between docs 12 and 17 0.0234388394818\n"
]
}
],
"source": [
"print('similarity between docs 03 and 12', simmilarity_03_12)\n",
"print('similarity between docs 03 and 17', simmilarity_03_17)\n",
"print('similarity between docs 12 and 17', simmilarity_12_17)"
]
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 3",
"language": "python",
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.6.2"
}
},
"nbformat": 4,
"nbformat_minor": 2
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment